index.wxss 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. height: 310rpx;
  172. white-space: nowrap;
  173. }
  174. .container .goodsList .payBox {
  175. position: relative;
  176. margin-right: 22rpx;
  177. width: 268rpx;
  178. height: 268rpx;
  179. background-size: cover;
  180. text-align: center;
  181. display: inline-block;
  182. border-radius: 20rpx;
  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 .payBox::after {
  195. content: '';
  196. position: absolute;
  197. width: 268rpx;
  198. height: 45rpx;
  199. left: 0;
  200. bottom: -42rpx;
  201. background: linear-gradient(180deg, #2A2116 0%, rgba(255, 255, 255, 0) 100%);
  202. border-radius: 22rpx 22rpx 0rpx 0rpx;
  203. opacity: 0.26;
  204. }
  205. .container .goodsList .pbbg1 {
  206. background-image: url(http://reader-wx.ai160.com/images/reader/v3/12992x.png);
  207. }
  208. .container .goodsList .pbbg1 .pay {
  209. background: linear-gradient(325deg, #FFBD96 0%, #FFF1E7 100%);
  210. }
  211. .container .goodsList .pbbg2 {
  212. background-image: url(http://reader-wx.ai160.com/images/reader/v3/2992x.png);
  213. }
  214. .container .goodsList .pbbg2 .pay {
  215. background: linear-gradient(285deg, #DFF2EE 0%, #D8E9FD 39%, #BDE6F8 72%, #BAE7F7 100%);
  216. }
  217. .container .goodsList .pbbg3 {
  218. background-image: url(http://reader-wx.ai160.com/images/reader/v3/55152x.png);
  219. }
  220. .container .goodsList .pbbg3 .pay {
  221. background: linear-gradient(325deg, #FFBD96 0%, #FFF1E7 100%);
  222. }
  223. .container .activationModal {
  224. position: fixed;
  225. z-index: 2;
  226. left: 0rpx;
  227. top: 0rpx;
  228. width: 100vw;
  229. height: 100vh;
  230. background: rgba(0, 0, 0, 0.7);
  231. /* .vipModal {
  232. position: relative;
  233. left: 0;
  234. right: 0;
  235. top: 30%;
  236. margin: auto;
  237. border-radius: 20rpx;
  238. text-align: center;
  239. .mBg {
  240. width: 600rpx;
  241. }
  242. }
  243. */
  244. }
  245. .container .activationModal .box {
  246. position: absolute;
  247. left: 0;
  248. right: 0;
  249. top: 30%;
  250. margin: auto;
  251. width: 496rpx;
  252. height: 365rpx;
  253. background-color: white;
  254. border-radius: 20rpx;
  255. text-align: center;
  256. }
  257. .container .activationModal .box .sLcon {
  258. margin-top: 34rpx;
  259. width: 100rpx;
  260. height: 100rpx;
  261. }
  262. .container .activationModal .box .tips1 {
  263. margin: 36rpx 0rpx 24rpx;
  264. color: #131313;
  265. font-weight: bold;
  266. font-size: 34rpx;
  267. }
  268. .container .activationModal .box .tips2 {
  269. font-size: 30rpx;
  270. color: #12C962;
  271. }
  272. .container .activationModal .close {
  273. position: absolute;
  274. padding: 40rpx;
  275. width: 54rpx;
  276. height: 54rpx;
  277. left: 0;
  278. right: 0;
  279. bottom: -140rpx;
  280. margin: auto;
  281. }