index.wxss 6.9 KB

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