style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. font-family: 微軟正黑體;
  8. }
  9. .body {
  10. background-color: #000 !important;
  11. }
  12. .propertytitle {
  13. -webkit-text-stroke: 0.7px #fff;
  14. -moz-text-stroke: 0.7px #fff;
  15. }
  16. p {
  17. font-size: 24px;
  18. }
  19. .bgslider {
  20. position: relative;
  21. width: 100% !important;
  22. }
  23. ul {
  24. list-style-type: none;
  25. width: 100% !important;
  26. }
  27. ul > li {
  28. position: absolute;
  29. width: 100% !important;
  30. }
  31. ul > li:nth-child(3) {
  32. -webkit-animation: li3 12s infinite;
  33. animation: li3 12s infinite;
  34. }
  35. ul > li:nth-child(2) {
  36. -webkit-animation: li2 12s infinite;
  37. animation: li2 12s infinite;
  38. }
  39. ul > li:nth-child(1) {
  40. -webkit-animation: li1 12s infinite;
  41. animation: li1 12s infinite;
  42. }
  43. @-webkit-keyframes li3 {
  44. 0% {
  45. opacity: 1;
  46. }
  47. 35% {
  48. opacity: 0;
  49. }
  50. 75% {
  51. opacity: 0;
  52. }
  53. }
  54. @keyframes li3 {
  55. 0% {
  56. opacity: 1;
  57. }
  58. 35% {
  59. opacity: 0;
  60. }
  61. 75% {
  62. opacity: 0;
  63. }
  64. }
  65. @-webkit-keyframes li2 {
  66. 40% {
  67. opacity: 1;
  68. }
  69. 80% {
  70. opacity: 0;
  71. }
  72. 75% {
  73. opacity: 0;
  74. }
  75. }
  76. @keyframes li2 {
  77. 40% {
  78. opacity: 1;
  79. }
  80. 80% {
  81. opacity: 0;
  82. }
  83. 75% {
  84. opacity: 0;
  85. }
  86. }
  87. @-webkit-keyframes li1 {
  88. 80% {
  89. opacity: 1;
  90. }
  91. 95% {
  92. opacity: 0;
  93. }
  94. }
  95. @keyframes li1 {
  96. 80% {
  97. opacity: 1;
  98. }
  99. 95% {
  100. opacity: 0;
  101. }
  102. }
  103. .bg-item {
  104. display: none;
  105. }
  106. .bg-item3 {
  107. display: none;
  108. }
  109. .bg-item3 img {
  110. -webkit-animation-name: BgFadein;
  111. animation-name: BgFadein;
  112. -webkit-animation-duration: 1s;
  113. animation-duration: 1s;
  114. -webkit-animation-timing-function: ease-out;
  115. animation-timing-function: ease-out;
  116. }
  117. .bg-item2 {
  118. display: none;
  119. }
  120. .bg-item2 img {
  121. -webkit-animation-name: BgFadein;
  122. animation-name: BgFadein;
  123. -webkit-animation-duration: 1s;
  124. animation-duration: 1s;
  125. -webkit-animation-timing-function: ease-out;
  126. animation-timing-function: ease-out;
  127. }
  128. .bg-active {
  129. display: block;
  130. }
  131. @-webkit-keyframes BgFadein {
  132. 0% {
  133. opacity: 0.5;
  134. }
  135. 50% {
  136. opacity: 0.8;
  137. }
  138. 100% {
  139. opacity: 1;
  140. }
  141. }
  142. @keyframes BgFadein {
  143. 0% {
  144. opacity: 0.5;
  145. }
  146. 50% {
  147. opacity: 0.8;
  148. }
  149. 100% {
  150. opacity: 1;
  151. }
  152. }
  153. /*# sourceMappingURL=style.css.map */