index.module.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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. transition: all 0.3s;
  53. &:hover {
  54. color: #ead98f;
  55. }
  56. }
  57. }
  58. // 序列帧
  59. .A1Bfloor {
  60. position: absolute;
  61. pointer-events: none;
  62. bottom: 0;
  63. width: 100%;
  64. height: 64px;
  65. }
  66. .A1Broom {
  67. z-index: 10;
  68. position: absolute;
  69. bottom: 60px;
  70. left: 49%;
  71. transform: translateX(-50%);
  72. pointer-events: none;
  73. width: 24%;
  74. }
  75. .A1Bll {
  76. position: absolute;
  77. bottom: 60px;
  78. left: -50%;
  79. width: 50%;
  80. opacity: 1;
  81. transition: opacity 2s;
  82. }
  83. .A1Brr {
  84. position: absolute;
  85. bottom: 60px;
  86. right: -50%;
  87. width: 50%;
  88. opacity: 1;
  89. transition: opacity 2s;
  90. }
  91. .A1BMoveHide {
  92. opacity: 0;
  93. }
  94. }
  95. .A1baseHide {
  96. opacity: 0;
  97. pointer-events: none;
  98. }
  99. .A1videoBox {
  100. width: 100%;
  101. overflow: hidden;
  102. position: relative;
  103. z-index: 10;
  104. opacity: 1;
  105. transition: all 0.5s;
  106. & > div {
  107. width: 100%;
  108. position: relative;
  109. }
  110. }
  111. .A1videoBoxHide {
  112. opacity: 0;
  113. pointer-events: none;
  114. }
  115. // 操作按钮
  116. .A1btnBox {
  117. width: 100%;
  118. height: 100%;
  119. z-index: 18;
  120. position: absolute;
  121. top: 0;
  122. left: 0;
  123. & > div {
  124. position: relative;
  125. width: 100%;
  126. height: 100%;
  127. opacity: 0;
  128. transition: opacity 1s;
  129. .A1videoBtnLogo {
  130. position: absolute;
  131. pointer-events: none;
  132. top: 56px;
  133. width: 280px;
  134. height: auto;
  135. left: 50%;
  136. transform: translateX(-50%);
  137. }
  138. .A1videoBtnNext {
  139. cursor: pointer;
  140. position: absolute;
  141. z-index: 10;
  142. bottom: 20px;
  143. left: 50%;
  144. transform: translateX(-50%);
  145. color: #fffddc;
  146. font-size: 16px;
  147. text-align: center;
  148. width: 100px;
  149. transition: all 0.3s;
  150. &:hover {
  151. color: #ead98f;
  152. }
  153. & > img {
  154. width: 60px;
  155. height: auto;
  156. }
  157. }
  158. }
  159. .A1videoBtnBoxShow {
  160. opacity: 1;
  161. }
  162. .A1videoBtn {
  163. cursor: pointer;
  164. position: absolute;
  165. z-index: 10;
  166. bottom: 20px;
  167. left: 47%;
  168. width: 40px;
  169. height: auto;
  170. transition: transform 0.3s;
  171. &:hover {
  172. transform: scale(1.1);
  173. }
  174. }
  175. }
  176. }
  177. }