index.less 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. .container {
  2. padding: 0rpx 20rpx 30rpx;
  3. .userBox {
  4. background-color: white;
  5. padding: 20rpx 20rpx 0rpx;
  6. border-radius: 20rpx;
  7. .above {
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. padding-bottom: 30rpx;
  12. border-bottom: 1rpx solid #D6D6D6;
  13. .identity {
  14. position: relative;
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. text-align: center;
  19. .avatar {
  20. width: 106rpx;
  21. height: 106rpx;
  22. border-radius: 50%;
  23. position: relative;
  24. }
  25. .identityText {
  26. position: absolute;
  27. bottom: -10rpx;
  28. width: 80rpx;
  29. font-size: 24rpx;
  30. color: white;
  31. background-color: #10CA61;
  32. border-radius: 25rpx;
  33. }
  34. }
  35. .userRight {
  36. flex: 1;
  37. margin-left: 40rpx;
  38. padding: 0px 10rpx;
  39. .uRtop {
  40. display: flex;
  41. justify-content: space-between;
  42. .uRtopleft {
  43. .nickName {
  44. margin: 10rpx 0rpx 18rpx;
  45. max-width: 340rpx;
  46. color: #333;
  47. font-size: 32rpx;
  48. }
  49. .gradeText {
  50. font-size: 24rpx;
  51. color: #989A9C;
  52. }
  53. }
  54. .uRtopRight {
  55. display: flex;
  56. align-items: center;
  57. .edit {
  58. width: 22rpx;
  59. height: 28rpx;
  60. }
  61. text {
  62. margin: 0px 10rpx;
  63. font-size: 24rpx;
  64. color: #666;
  65. }
  66. }
  67. }
  68. }
  69. }
  70. }
  71. .below {
  72. padding: 20rpx 0rpx;
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-between;
  76. background-color: white;
  77. border-radius: 20rpx;
  78. .sBox {
  79. width: 110rpx;
  80. position: relative;
  81. display: flex;
  82. flex-direction: column;
  83. align-items: center;
  84. .img {
  85. width: 69rpx;
  86. height: 69rpx;
  87. }
  88. .title {
  89. margin-top: 8rpx;
  90. font-size: 26rpx;
  91. color: #333;
  92. }
  93. .noticeTips {
  94. position: absolute;
  95. right: 8rpx;
  96. top: -8rpx;
  97. width: 34rpx;
  98. padding: 4rpx 0rpx;
  99. border-radius: 40rpx;
  100. color: white;
  101. font-size: 18rpx;
  102. text-align: center;
  103. background-color: #FF0000;
  104. }
  105. }
  106. .contactBtn {
  107. border: none;
  108. padding: 0rpx;
  109. line-height: normal;
  110. margin: 0;
  111. }
  112. }
  113. .medalBox {
  114. margin: 30rpx 0rpx;
  115. padding: 20rpx 30rpx;
  116. background-color: white;
  117. border-radius: 20rpx;
  118. .header {
  119. display: flex;
  120. align-items: center;
  121. justify-content: space-between;
  122. .title {
  123. font-size: 30rpx;
  124. font-weight: bold;
  125. color: #000;
  126. }
  127. .jump {
  128. font-size: 26rpx;
  129. color: #666666;
  130. .jumpIcon {
  131. width: 12rpx;
  132. height: 22rpx;
  133. }
  134. }
  135. }
  136. .body {
  137. margin-top: 20rpx;
  138. display: flex;
  139. align-items: center;
  140. justify-content: space-between;
  141. .medal {
  142. width: 112rpx;
  143. height: 94rpx;
  144. }
  145. }
  146. }
  147. .activation {
  148. margin-top: 30rpx;
  149. padding: 13rpx 40rpx;
  150. display: flex;
  151. align-items: center;
  152. justify-content: space-between;
  153. background-color: white;
  154. border-radius: 50rpx;
  155. .tips {
  156. font-size: 28rpx;
  157. color: #666666;
  158. }
  159. .subBtn {
  160. padding: 10rpx 50rpx;
  161. border-radius: 50rpx;
  162. color: white;
  163. font-size: 25rpx;
  164. background-color: #FC614E;
  165. }
  166. }
  167. .activationModal {
  168. position: fixed;
  169. z-index: 2;
  170. left: 0rpx;
  171. top: 0rpx;
  172. width: 100vw;
  173. height: 100vh;
  174. background: rgba(0, 0, 0, 0.7);
  175. .box {
  176. position: absolute;
  177. left: 0;
  178. right: 0;
  179. top: 30%;
  180. margin: auto;
  181. width: 496rpx;
  182. height: 365rpx;
  183. background-color: white;
  184. border-radius: 20rpx;
  185. text-align: center;
  186. .sLcon {
  187. margin-top: 34rpx;
  188. width: 100rpx;
  189. height: 100rpx;
  190. }
  191. .tips1 {
  192. margin: 36rpx 0rpx 24rpx;
  193. color: #131313;
  194. font-weight: bold;
  195. font-size: 34rpx;
  196. }
  197. .tips2 {
  198. font-size: 30rpx;
  199. color: #12C962;
  200. }
  201. .close {
  202. position: absolute;
  203. padding: 40rpx;
  204. width: 54rpx;
  205. height: 54rpx;
  206. left: 0;
  207. right: 0;
  208. bottom: -140rpx;
  209. margin: auto;
  210. }
  211. }
  212. }
  213. .payBox {
  214. position: relative;
  215. margin-top: 36rpx;
  216. width: 710rpx;
  217. height: 184rpx;
  218. border-radius: 20rpx;
  219. background: url(http://reader-wx.ai160.com/images/reader/v3/learn/vip_center.png);
  220. background-size: cover;
  221. .copywriting {
  222. position: absolute;
  223. bottom: 70rpx;
  224. left: 30rpx;
  225. color: #FBF3CD;
  226. font-size: 26rpx;
  227. letter-spacing: 2rpx;
  228. text {
  229. margin: 0 6rpx;
  230. }
  231. }
  232. .goPay {
  233. position: absolute;
  234. top: 30rpx;
  235. right: 28rpx;
  236. border-radius: 50rpx;
  237. display: inline-block;
  238. padding: 14rpx 36rpx;
  239. color: #292020;
  240. font-weight: bold;
  241. letter-spacing: 2rpx;
  242. background-image: linear-gradient(116deg, #FFF3DF 0%, #FEC98D 95%);
  243. font-size: 30rpx;
  244. }
  245. }
  246. }