index.wxss 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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 30rpx;
  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. position: relative;
  80. display: flex;
  81. flex-direction: column;
  82. align-items: center;
  83. }
  84. .container .below .sBox .img {
  85. width: 69rpx;
  86. height: 69rpx;
  87. }
  88. .container .below .sBox .title {
  89. margin-top: 8rpx;
  90. font-size: 26rpx;
  91. color: #333;
  92. }
  93. .container .below .sBox .noticeTips {
  94. position: absolute;
  95. right: 10rpx;
  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. .container .below .contactBtn {
  106. border: none;
  107. padding: 0rpx;
  108. line-height: normal;
  109. margin: 0;
  110. }
  111. .container .iosVip {
  112. margin: 4rpx 0px 0px 6rpx;
  113. font-size: 24rpx;
  114. color: #333;
  115. }
  116. .container .medalBox {
  117. margin: 30rpx 0rpx;
  118. padding: 20rpx 30rpx;
  119. background-color: white;
  120. border-radius: 20rpx;
  121. }
  122. .container .medalBox .header {
  123. display: flex;
  124. align-items: center;
  125. justify-content: space-between;
  126. }
  127. .container .medalBox .header .title {
  128. font-size: 30rpx;
  129. font-weight: bold;
  130. color: #000;
  131. }
  132. .container .medalBox .header .jump {
  133. font-size: 26rpx;
  134. color: #666666;
  135. }
  136. .container .medalBox .header .jump .jumpIcon {
  137. width: 12rpx;
  138. height: 22rpx;
  139. }
  140. .container .medalBox .body {
  141. margin-top: 20rpx;
  142. display: flex;
  143. align-items: center;
  144. justify-content: space-between;
  145. }
  146. .container .medalBox .body .medal {
  147. width: 112rpx;
  148. height: 94rpx;
  149. }
  150. .container .payBox {
  151. margin-top: 20rpx;
  152. padding: 13rpx 30rpx;
  153. background-color: white;
  154. border-radius: 20rpx;
  155. }
  156. .container .payBox .title {
  157. font-size: 30rpx;
  158. font-weight: bold;
  159. color: #000;
  160. }
  161. .container .payBox .pay {
  162. margin: 20rpx 0rpx;
  163. display: flex;
  164. align-items: center;
  165. justify-content: space-between;
  166. padding: 0rpx 30rpx;
  167. border-radius: 22rpx;
  168. overflow: hidden;
  169. }
  170. .container .payBox .pay .payLeft .pLTitle {
  171. font-size: 36rpx;
  172. font-weight: bold;
  173. }
  174. .container .payBox .pay .payLeft .pLcontent {
  175. font-size: 22rpx;
  176. }
  177. .container .payBox .pay .payRight {
  178. margin: 24rpx 0rpx;
  179. padding: 12rpx 28rpx;
  180. border-radius: 40rpx;
  181. font-size: 24rpx;
  182. font-weight: bold;
  183. }
  184. .container .payBox .vipPay {
  185. background: url('http://reader-wx.ai160.com/images/reader/v3/year.png') no-repeat;
  186. background-size: cover;
  187. }
  188. .container .payBox .vipPay .vipTitle {
  189. color: #FFE6B9;
  190. }
  191. .container .payBox .vipPay .vipContent {
  192. margin-top: 4rpx;
  193. color: #FFE6B9;
  194. }
  195. .container .payBox .vipPay .vipBtn {
  196. background-image: linear-gradient(to bottom, #F4E7A8, #F9EDCF);
  197. color: #211501;
  198. }
  199. .container .payBox .buyPay {
  200. background: url('http://reader-wx.ai160.com/images/reader/v3/10yuan.png') no-repeat;
  201. background-size: cover;
  202. }
  203. .container .payBox .buyPay .payLeft {
  204. color: #7D320A;
  205. font-size: 36rpx;
  206. font-weight: bold;
  207. }
  208. .container .payBox .buyPay .buyBtn {
  209. border: 1rpx solid white;
  210. color: white;
  211. background-color: #7D320A;
  212. }
  213. .container .bindNumber {
  214. margin-top: 20rpx;
  215. height: 100rpx;
  216. padding: 0rpx 24rpx;
  217. display: flex;
  218. align-items: center;
  219. justify-content: space-between;
  220. background: url('http://reader-wx.ai160.com/images/reader/v3/phone.png') no-repeat;
  221. background-size: cover;
  222. font-size: 30rpx;
  223. border-radius: 20rpx;
  224. }
  225. .container .bindNumber .desc {
  226. color: white;
  227. margin-left: 120rpx;
  228. }
  229. .container .bindNumber .bindBtn {
  230. background-color: white;
  231. color: #FC614E;
  232. padding: 6rpx 24rpx;
  233. font-size: 30rpx;
  234. font-weight: bold;
  235. border-radius: 25rpx;
  236. }
  237. .container .surplus {
  238. margin-top: 20rpx;
  239. padding: 22rpx 30rpx;
  240. background-color: white;
  241. border-radius: 20rpx;
  242. display: flex;
  243. align-items: center;
  244. justify-content: space-between;
  245. font-size: 32rpx;
  246. }
  247. .container .surplus .title {
  248. font-size: 30rpx;
  249. font-weight: bold;
  250. color: #000;
  251. }
  252. .container .surplus .num {
  253. color: #F97419;
  254. font-weight: bold;
  255. margin-right: 10rpx;
  256. }
  257. .container .taskBox {
  258. margin-top: 20rpx;
  259. padding: 20rpx 10rpx 0rpx;
  260. background-color: white;
  261. border-radius: 20rpx;
  262. }
  263. .container .taskBox .title {
  264. padding: 0rpx 20rpx;
  265. font-size: 30rpx;
  266. font-weight: bold;
  267. color: #000;
  268. }
  269. .container .taskBox .task {
  270. display: flex;
  271. align-items: center;
  272. justify-content: space-between;
  273. padding: 30rpx 22rpx;
  274. border-bottom: 1px solid #EAEAEA;
  275. }
  276. .container .taskBox .task .taskLeft {
  277. display: flex;
  278. align-items: center;
  279. justify-content: space-between;
  280. }
  281. .container .taskBox .task .taskLeft .img {
  282. width: 76rpx;
  283. height: 76rpx;
  284. border-radius: 50%;
  285. }
  286. .container .taskBox .task .taskLeft .taskContent {
  287. margin-left: 40rpx;
  288. }
  289. .container .taskBox .task .taskLeft .taskContent .tcTitle {
  290. font-size: 30rpx;
  291. font-weight: bold;
  292. color: #333;
  293. }
  294. .container .taskBox .task .taskLeft .taskContent .tcNum {
  295. color: #FF6259;
  296. font-size: 26rpx;
  297. }
  298. .container .taskBox .task .taskRightBox {
  299. display: flex;
  300. flex-direction: column;
  301. align-items: flex-end;
  302. /* */
  303. }
  304. .container .taskBox .task .taskRight {
  305. width: 138rpx;
  306. text-align: center;
  307. padding: 10rpx 0rpx;
  308. border-radius: 40rpx;
  309. color: white;
  310. background-color: #FC614E;
  311. font-size: 30rpx;
  312. }
  313. .container .taskBox .task .taskRight-close {
  314. color: #6C6C6C;
  315. background: #D0D0D0;
  316. box-shadow: 0 2px 2px 0 #AEABAB;
  317. }
  318. .container .taskBox .task .taskSurplus {
  319. text-align: center;
  320. margin-top: 4rpx;
  321. color: #686868;
  322. font-size: 20rpx;
  323. }
  324. .container .taskBox .advert {
  325. border: none;
  326. }