index.less 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. .mine {
  2. min-height: 100vh;
  3. background-color: #041129;
  4. padding-bottom: 120px;
  5. .banner {
  6. display: flex;
  7. justify-content: space-between;
  8. align-items: center;
  9. .banner-left {
  10. margin-left: 60px;
  11. .banner-title {
  12. font-family: PingFangSC-Regular;
  13. font-size: 28px;
  14. color: rgba(255, 255, 255, .75);
  15. }
  16. .banner-num {
  17. font-family: DINPro-Medium;
  18. font-size: 64px;
  19. color: #0F84EC;
  20. }
  21. }
  22. .banner-right{
  23. .banner-img{
  24. width: 350px;
  25. height: 270px;
  26. }
  27. }
  28. }
  29. .content {
  30. position: relative;
  31. z-index: 1111;
  32. margin-top: -60px;
  33. padding: 0 30px;
  34. .register {
  35. margin-bottom: 12px;
  36. border-radius: 16px;
  37. width: 100%;
  38. background: #0F1A2F;
  39. height: 112px;
  40. display: flex;
  41. align-items: center;
  42. .register-left {
  43. padding-left: 30px;
  44. flex: 1;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. font-size: 28px;
  49. color: rgba(255, 255, 255, .75);
  50. .register-title {
  51. display: flex;
  52. align-items: center;
  53. .register-icon {
  54. width: 48px;
  55. height: 48px;
  56. margin-right: 20px;
  57. }
  58. font-family: PingFangSC-Regular;
  59. font-size: 32px;
  60. color: #FFFFFF;
  61. letter-spacing: 0;
  62. }
  63. }
  64. .register-right {
  65. padding: 0 22px;
  66. height: 64px;
  67. line-height: 64px;
  68. text-align: center;
  69. margin-left: 20px;
  70. margin-right: 20px;
  71. font-family: PingFangSC-Regular;
  72. font-size: 32px;
  73. color: #FFFFFF;
  74. background-image: linear-gradient(-45deg, #4EC3F8 0%, #0F84EC 100%);
  75. border-radius: 8px;
  76. }
  77. }
  78. .register:nth-child(1) {
  79. border-radius: 16px 16px 0 0;
  80. }
  81. .contact-title {
  82. margin-top: 48px;
  83. font-family: PingFangSC-Medium;
  84. font-size: 32px;
  85. color: #FFFFFF;
  86. }
  87. .contact-content {
  88. margin-top: 30px;
  89. height: 112px;
  90. line-height: 112px;
  91. background: #0F1A2F;
  92. border-radius: 16px;
  93. font-family: PingFangSC-Regular;
  94. font-size: 32x;
  95. color: #FFFFFF;
  96. display: flex;
  97. align-items: center;
  98. .contact-icon {
  99. margin-right: 20px;
  100. width: 48px;
  101. height: 48px;
  102. }
  103. }
  104. .recharge {
  105. margin-top: 30px;
  106. width: 100%;
  107. white-space: nowrap;
  108. .recharge-info {
  109. margin-right: 18px;
  110. display: inline-block;
  111. padding: 50px 0 24px 0;
  112. width: 260px;
  113. position: relative;
  114. background: #0F1A2F;
  115. border-radius: 16px;
  116. .recharge-icon {
  117. width: 100%;
  118. display: flex;
  119. justify-content: center;
  120. .recharge-img {
  121. width: 92px;
  122. height: 64px;
  123. display: block;
  124. }
  125. }
  126. .recharge-tips {
  127. margin-top: 16px;
  128. position: absolute;
  129. top: 0;
  130. left: 0;
  131. padding: 0 26px;
  132. background: #DF5E5F;
  133. border-radius: 16px 0 16px 0;
  134. font-family: PingFangSC-Regular;
  135. font-size: 20px;
  136. color: #FFFFFF;
  137. }
  138. .recharge-title {
  139. margin-top: 16px;
  140. font-family: PingFangSC-Regular;
  141. font-size: 28px;
  142. color: #FFFFFF;
  143. letter-spacing: 0;
  144. text-align: center;
  145. letter-spacing: 0;
  146. }
  147. .recharge-tag {
  148. margin-top: 4px;
  149. font-family: PingFangSC-Medium;
  150. font-size: 24px;
  151. color: #DF5E5F;
  152. letter-spacing: 0;
  153. text-align: center;
  154. line-height: 31px;
  155. }
  156. .recharge-button {
  157. margin-top: 24px;
  158. position: relative;
  159. left: 50%;
  160. transform: translateX(-50%);
  161. width: 120px;
  162. height: 64px;
  163. line-height: 64px;
  164. background-image: linear-gradient(-45deg, #4EC3F8 0%, #0F84EC 100%);
  165. border-radius: 32px;
  166. font-family: PingFangSC-Regular;
  167. font-size: 32px;
  168. color: #FFFFFF;
  169. letter-spacing: 0;
  170. text-align: center;
  171. }
  172. }
  173. }
  174. .member-list {
  175. .member-info {
  176. margin-top: 30px;
  177. padding: 15px;
  178. background: #0F1A2F;
  179. border-radius: 16px;
  180. .member-top {
  181. display: flex;
  182. justify-content: space-between;
  183. font-family: PingFangSC-Medium;
  184. font-size: 32px;
  185. .member-title {
  186. color: #0F84EC;
  187. }
  188. .member-tag {
  189. color: #FC4F79;
  190. }
  191. }
  192. .member-bottom {
  193. margin-top: 12px;
  194. display: flex;
  195. justify-content: space-between;
  196. align-items: center;
  197. font-family: PingFangSC-Regular;
  198. font-size: 28px;
  199. color: #FFFFFF;
  200. line-height: 44px;
  201. .member-button {
  202. width: 136px;
  203. height: 64px;
  204. line-height: 64px;
  205. text-align: center;
  206. background-image: linear-gradient(-45deg, #45B7F2 0%, #0F84EC 100%);
  207. border-radius: 64px;
  208. }
  209. }
  210. }
  211. }
  212. }
  213. .ios-tips{
  214. font-family: PingFangSC-Regular;
  215. font-size: 32rpx;
  216. color: rgba(255, 255, 255, 0.75);
  217. margin-top: 100px;
  218. text-align: center;
  219. }
  220. }