index.less 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. .mine {
  2. padding: 1px 40px;
  3. min-height: 100vh;
  4. position: relative;
  5. background-color: #041129;
  6. .banner {
  7. position: relative;
  8. border-radius: 20px;
  9. width: 100%;
  10. .banner-content {
  11. position: relative;
  12. border-radius: 20px;
  13. left: 50%;
  14. transform: translateX(-50%);
  15. width: 100%;
  16. height: 740px;
  17. }
  18. .content-img {
  19. // background-color: #545353;
  20. border-radius: 20px;
  21. width: 100%;
  22. height: 100%;
  23. }
  24. .content-wait {
  25. border-radius: 20px;
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. width: 100%;
  30. height: 100%;
  31. background: rgba(0, 0, 0, 0.6);
  32. .wait-date {
  33. margin-top: 12px;
  34. margin-left: 16px;
  35. font-size: 36px;
  36. font-family: PingFang SC;
  37. font-weight: bold;
  38. color: #FFFFFF;
  39. }
  40. .wait-middle {
  41. position: absolute;
  42. top: 50%;
  43. left: 50%;
  44. transform: translate(-50%, -50%);
  45. font-size: 40px;
  46. font-family: PingFang SC;
  47. font-weight: 800;
  48. color: #FFFFFF;
  49. }
  50. .wait-bottom {
  51. width: 100%;
  52. position: absolute;
  53. bottom: 40px;
  54. left: 0;
  55. font-size: 40px;
  56. font-family: PingFang SC;
  57. font-weight: 500;
  58. color: #FFFFFF;
  59. .wait-num {
  60. text-align: center;
  61. }
  62. .wait-get-num {
  63. text-align: center;
  64. margin-top: 16px;
  65. text-decoration: underline
  66. }
  67. }
  68. }
  69. }
  70. .recharge {
  71. margin-top: 30px;
  72. width: 100%;
  73. white-space: nowrap;
  74. .recharge-info {
  75. position: relative;
  76. border-radius: 10px;
  77. margin-right: 20px;
  78. display: inline-block;
  79. .recharge-image {
  80. width: 130px;
  81. height: 230px;
  82. display: block;
  83. background-color: #545353;
  84. border-radius: 10px;
  85. }
  86. .lock {
  87. border-radius: 10px;
  88. position: absolute;
  89. top: 0;
  90. left: 0;
  91. width: 100%;
  92. height: 100%;
  93. background: rgba(0, 0, 0, 0.6);
  94. .lock-content {
  95. position: relative;
  96. top: 50%;
  97. transform: translateY(-50%);
  98. .lock-img {
  99. position: relative;
  100. left: 50%;
  101. transform: translateX(-50%);
  102. width: 36px;
  103. display: block;
  104. height: 36px;
  105. }
  106. .lock-title {
  107. text-align: center;
  108. margin-top: 10px;
  109. font-size: 26px;
  110. font-family: PingFang SC;
  111. font-weight: 500;
  112. color: #FFFFFF;
  113. }
  114. }
  115. }
  116. }
  117. }
  118. .tips {
  119. margin-top: 30px;
  120. font-size: 26px;
  121. font-family: PingFang SC;
  122. font-weight: 500;
  123. color: #c7c5c5;
  124. text-align: center;
  125. }
  126. .send {
  127. width: 100%;
  128. display: flex;
  129. justify-content: center;
  130. }
  131. .sendTT {
  132. margin-top: 100px;
  133. width: 460px;
  134. height: 80px;
  135. line-height: 80px;
  136. text-align: center;
  137. font-size: 28px;
  138. font-family: PingFang SC;
  139. font-weight: 500;
  140. color: #FFFFFF;
  141. background: linear-gradient(90deg, #1cbd67, #13c027);
  142. border-radius: 14px;
  143. }
  144. /* 定义动画 */
  145. @keyframes shrink {
  146. 0%,
  147. 100% {
  148. transform: translateY(0) scale(1);
  149. }
  150. 50% {
  151. transform: translateY(0px) scale(0.95);
  152. }
  153. }
  154. /* 应用动画 */
  155. .sendTT {
  156. animation: shrink 1.2s ease-in-out infinite;
  157. }
  158. .control {
  159. width: 100%;
  160. margin-top: 100px;
  161. display: flex;
  162. justify-content: space-between;
  163. align-items: center;
  164. font-size: 28px;
  165. font-family: PingFang SC;
  166. font-weight: 500;
  167. color: #FFFFFF;
  168. .download {
  169. width: 260px;
  170. height: 80px;
  171. line-height: 80px;
  172. text-align: center;
  173. background: linear-gradient(90deg, #038EFF, #3342FF);
  174. border-radius: 14px;
  175. }
  176. .toIndex {
  177. width: 260px;
  178. height: 80px;
  179. line-height: 80px;
  180. text-align: center;
  181. background: linear-gradient(90deg, #038EFF, #3342FF);
  182. border-radius: 14px;
  183. }
  184. }
  185. }