index.wxss 5.7 KB

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