index.module.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. .BaseImg {
  2. width: 100%;
  3. height: 100%;
  4. position: absolute;
  5. top: 0;
  6. left: 0;
  7. z-index: 11;
  8. opacity: 1;
  9. transition: opacity 1s;
  10. &::after {
  11. content: '';
  12. position: absolute;
  13. pointer-events: none;
  14. width: 100%;
  15. height: 100%;
  16. background-color: rgba(0, 0, 0, 0.4);
  17. }
  18. :global {
  19. .BIcon {
  20. position: absolute;
  21. top: -60px;
  22. left: 50%;
  23. transform: translateX(-50%);
  24. width: 30px;
  25. z-index: 10;
  26. cursor: pointer;
  27. }
  28. .BIlogo {
  29. z-index: 5;
  30. position: absolute;
  31. top: -60px;
  32. width: 650px;
  33. max-width: 90%;
  34. left: 50%;
  35. transform: translateX(-50%);
  36. }
  37. .BItxt {
  38. position: absolute;
  39. top: 32%;
  40. left: 12%;
  41. z-index: 10;
  42. width: 34.6%;
  43. max-height: 200px;
  44. background-size: 100% 100%;
  45. padding: 10px;
  46. background-color: rgba(242, 242, 215, 0.3);
  47. backdrop-filter: blur(4px);
  48. & > div {
  49. text-align: justify;
  50. width: 100%;
  51. max-height: 180px;
  52. color: #fffddc;
  53. font-size: 14px;
  54. letter-spacing: 3px;
  55. line-height: 22px;
  56. overflow-y: auto;
  57. &::-webkit-scrollbar {
  58. display: none;
  59. }
  60. }
  61. }
  62. .BIbaseBtn {
  63. position: absolute;
  64. bottom: 40px;
  65. left: 50%;
  66. transform: translateX(-50%);
  67. cursor: pointer;
  68. width: 120px;
  69. height: 36px;
  70. z-index: 10;
  71. background-size: 100% 100%;
  72. background-image: url('../../assets/img/btn.png');
  73. color: #fffddc;
  74. transition: all 0.3s;
  75. .BIBtxt {
  76. font-size: 18px;
  77. position: absolute;
  78. top: 0;
  79. left: 0;
  80. width: 100%;
  81. height: 100%;
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB',
  86. 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif !important;
  87. }
  88. .BIBtxtFont {
  89. font-family: 'qfk' !important;
  90. }
  91. &:hover {
  92. background-image: url('../../assets/img/btnAc.png');
  93. color: #b67150;
  94. }
  95. }
  96. // 进度条
  97. .BIBxian {
  98. position: absolute;
  99. bottom: 7%;
  100. left: 50%;
  101. transform: translateX(-50%);
  102. width: 120px;
  103. padding: 0 10px;
  104. height: 2px;
  105. z-index: 10;
  106. & > div {
  107. width: 100%;
  108. height: 100%;
  109. background-color: rgba(231, 214, 142, 0.6);
  110. & > div {
  111. width: 0%;
  112. height: 100%;
  113. background-color: #fffddc;
  114. }
  115. }
  116. }
  117. .birdBox {
  118. position: absolute;
  119. bottom: -122px;
  120. left: 70%;
  121. transform: translateX(-50%);
  122. z-index: 100;
  123. width: 250px;
  124. height: 260px;
  125. transition: all 0.5s;
  126. .bird1 {
  127. position: absolute;
  128. top: 0;
  129. left: 0;
  130. pointer-events: none;
  131. width: 250px;
  132. height: 260px;
  133. object-fit: fill !important;
  134. }
  135. .bird2 {
  136. position: absolute;
  137. bottom: 80px;
  138. left: 50%;
  139. transform: translateX(-50%);
  140. background-image: url('../../assets/img/bird/quan.png');
  141. background-size: 100% 100%;
  142. z-index: 2;
  143. cursor: pointer;
  144. width: 90px;
  145. height: 90px;
  146. color: #fffddc;
  147. text-align: center;
  148. font-size: 16px;
  149. padding-top: 18px;
  150. transition: all 0.3s;
  151. &:hover {
  152. color: #a55b41;
  153. background-image: url('../../assets/img/bird/quanAc.png');
  154. }
  155. }
  156. .bird3 {
  157. cursor: pointer;
  158. position: absolute;
  159. left: 50%;
  160. transform: translateX(-50%);
  161. top: -55px;
  162. width: 33px;
  163. height: 55px;
  164. background-image: url('../../assets/img/bird/ji.png');
  165. background-size: 100% 100%;
  166. transition: all 0.3s;
  167. &:hover {
  168. background-image: url('../../assets/img/bird/jiAc.png');
  169. }
  170. }
  171. }
  172. #HotOpCss {
  173. z-index: 1000;
  174. }
  175. // 屏幕>=1200
  176. @media screen and (min-width: 1200px) {
  177. .BItxt > div {
  178. font-size: 12px !important;
  179. }
  180. }
  181. }
  182. }
  183. .BaseImgHide {
  184. opacity: 0;
  185. pointer-events: none;
  186. }