index.module.scss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .A1home {
  2. :global {
  3. video {
  4. width: 100%;
  5. height: 100%;
  6. object-fit: fill;
  7. }
  8. .A1base {
  9. width: 100%;
  10. height: 100%;
  11. position: absolute;
  12. z-index: 20;
  13. opacity: 1;
  14. transition: opacity 0.5s;
  15. background-size: 100% 100%;
  16. .A1Vlogo {
  17. position: absolute;
  18. top: 56px;
  19. width: 280px;
  20. left: 50%;
  21. transform: translateX(-50%);
  22. }
  23. .A1loding {
  24. font-size: 18px;
  25. position: absolute;
  26. z-index: 10;
  27. bottom: 20px;
  28. left: 50%;
  29. transform: translateX(-50%);
  30. color: #733c00;
  31. }
  32. .A1lodingBtn {
  33. cursor: pointer;
  34. width: 100px;
  35. height: auto;
  36. bottom: 4%;
  37. & > img {
  38. width: 100%;
  39. height: auto;
  40. }
  41. & > div {
  42. position: absolute;
  43. top: 0;
  44. left: 0;
  45. width: 100%;
  46. height: 100%;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. color: #fffddc;
  51. font-size: 16px;
  52. }
  53. }
  54. // 序列帧
  55. .A1Bfloor {
  56. position: absolute;
  57. pointer-events: none;
  58. bottom: 0;
  59. width: 100%;
  60. height: 64px;
  61. }
  62. .A1Broom {
  63. z-index: 10;
  64. position: absolute;
  65. bottom: 60px;
  66. left: 49%;
  67. transform: translateX(-50%);
  68. pointer-events: none;
  69. width: 24%;
  70. }
  71. .A1Bll {
  72. position: absolute;
  73. bottom: 60px;
  74. left: -50%;
  75. width: 50%;
  76. opacity: 1;
  77. transition: opacity 2s;
  78. }
  79. .A1Brr {
  80. position: absolute;
  81. bottom: 60px;
  82. right: -50%;
  83. width: 50%;
  84. opacity: 1;
  85. transition: opacity 2s;
  86. }
  87. .A1BMoveHide {
  88. opacity: 0;
  89. }
  90. }
  91. .A1baseHide {
  92. opacity: 0;
  93. pointer-events: none;
  94. }
  95. .A1videoBox {
  96. width: 100%;
  97. overflow: hidden;
  98. position: relative;
  99. z-index: 10;
  100. opacity: 1;
  101. transition: all 0.5s;
  102. & > div {
  103. width: 100%;
  104. position: relative;
  105. }
  106. }
  107. .A1videoBoxHide {
  108. opacity: 0;
  109. pointer-events: none;
  110. }
  111. // 操作按钮
  112. .A1btnBox {
  113. width: 100%;
  114. height: 100%;
  115. z-index: 18;
  116. position: absolute;
  117. top: 0;
  118. left: 0;
  119. & > div {
  120. position: relative;
  121. width: 100%;
  122. height: 100%;
  123. opacity: 0;
  124. transition: opacity 1s;
  125. .A1videoBtnLogo {
  126. position: absolute;
  127. pointer-events: none;
  128. top: 56px;
  129. width: 280px;
  130. height: auto;
  131. left: 50%;
  132. transform: translateX(-50%);
  133. }
  134. .A1videoBtnNext {
  135. cursor: pointer;
  136. position: absolute;
  137. z-index: 10;
  138. bottom: 20px;
  139. left: 50%;
  140. transform: translateX(-50%);
  141. color: #fffddc;
  142. font-size: 16px;
  143. text-align: center;
  144. width: 100px;
  145. & > img {
  146. width: 60px;
  147. height: auto;
  148. }
  149. }
  150. }
  151. .A1videoBtnBoxShow {
  152. opacity: 1;
  153. }
  154. .A1videoBtn {
  155. cursor: pointer;
  156. position: absolute;
  157. z-index: 10;
  158. bottom: 20px;
  159. left: 50%;
  160. transform: translateX(-50%);
  161. width: 40px;
  162. height: auto;
  163. }
  164. }
  165. .A1last {
  166. width: 100%;
  167. height: 100%;
  168. position: relative;
  169. .A1videoLastBtn {
  170. position: absolute;
  171. width: 50px;
  172. height: 50px;
  173. background-size: 100% 100%;
  174. cursor: pointer;
  175. bottom: 20px;
  176. right: 20px;
  177. }
  178. }
  179. // 屏幕>=1200
  180. @media screen and (min-width: 1200px) {
  181. .A1base {
  182. .A1lodingBtn {
  183. & > div {
  184. transition: all 0.3s;
  185. &:hover {
  186. color: #ead98f;
  187. }
  188. }
  189. }
  190. }
  191. .A1btnBox {
  192. & > div {
  193. .A1videoBtnNext {
  194. transition: all 0.3s;
  195. &:hover {
  196. color: #ead98f;
  197. }
  198. }
  199. }
  200. }
  201. }
  202. }
  203. }