index.wxss 5.0 KB

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