index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .container {
  2. position: relative;
  3. height: 100vh;
  4. padding: 38rpx 24rpx;
  5. background: url(https://reader-wx.ai160.com/images/reader/sell/bg1.jpg) no-repeat;
  6. background-size: contain;
  7. }
  8. .container .userBox {
  9. display: flex;
  10. align-items: flex-start;
  11. justify-content: space-between;
  12. }
  13. .container .userBox .left {
  14. display: flex;
  15. }
  16. .container .userBox .left .avatar {
  17. width: 106rpx;
  18. height: 106rpx;
  19. border-radius: 50%;
  20. border: 1rpx solid white;
  21. }
  22. .container .userBox .left .identity {
  23. margin-left: 24rpx;
  24. }
  25. .container .userBox .left .identity .nickName {
  26. margin: 6rpx 0 20rpx;
  27. font-size: 30rpx;
  28. }
  29. .container .userBox .left .identity .tag {
  30. padding: 5rpx 20rpx;
  31. border-radius: 20rpx;
  32. font-size: 22rpx;
  33. font-weight: bold;
  34. color: #FC6E1C;
  35. background: #FFFFFF;
  36. }
  37. .container .userBox .right {
  38. padding: 8rpx 20rpx;
  39. margin-right: -24rpx;
  40. border-radius: 26rpx 0rpx 0rpx 26rpx;
  41. font-size: 28rpx;
  42. color: #FFFFFF;
  43. background: #F19511;
  44. }
  45. .container .statistics {
  46. margin: 44rpx 0 30rpx;
  47. padding: 25rpx 41rpx;
  48. background: #FFFFFF;
  49. box-shadow: 0rpx 2rpx 14rpx 0rpx rgba(0, 0, 0, 0.02);
  50. border-radius: 20rpx;
  51. }
  52. .container .statistics .above {
  53. display: flex;
  54. align-items: center;
  55. justify-content: space-between;
  56. padding-bottom: 18rpx;
  57. border-bottom: 1rpx solid #EEEEEE;
  58. }
  59. .container .statistics .above .left .label {
  60. font-size: 28rpx;
  61. font-weight: bold;
  62. color: #000000;
  63. }
  64. .container .statistics .above .left .money {
  65. margin-top: 12rpx;
  66. font-size: 43rpx;
  67. font-weight: 600;
  68. color: #FF8200;
  69. }
  70. .container .statistics .above .withdrawal {
  71. padding: 8rpx 20rpx 8rpx 24rpx;
  72. background: #FFA343;
  73. border-radius: 28rpx;
  74. color: white;
  75. }
  76. .container .statistics .above .withdrawal .rbtn {
  77. margin-left: 2rpx;
  78. width: 16rpx;
  79. height: 22rpx;
  80. }
  81. .container .statistics .below {
  82. padding-top: 26rpx;
  83. display: flex;
  84. justify-content: space-between;
  85. }
  86. .container .statistics .below .box {
  87. font-size: 28rpx;
  88. }
  89. .container .statistics .below .box .label {
  90. color: #666666;
  91. }
  92. .container .statistics .below .box .money {
  93. margin-top: 18rpx;
  94. font-weight: bold;
  95. }
  96. .container .boxs {
  97. display: flex;
  98. align-items: flex-start;
  99. justify-content: space-between;
  100. }
  101. .container .boxs .box {
  102. width: 220rpx;
  103. height: 172rpx;
  104. display: flex;
  105. flex-direction: column;
  106. justify-content: center;
  107. align-items: center;
  108. background: #FFFFFF;
  109. border-radius: 10rpx;
  110. }
  111. .container .boxs .box .b1 {
  112. width: 74rpx;
  113. height: 74rpx;
  114. }
  115. .container .boxs .box .b2 {
  116. width: 62rpx;
  117. height: 70rpx;
  118. }
  119. .container .boxs .box .b3 {
  120. width: 70rpx;
  121. height: 63rpx;
  122. }
  123. .container .boxs .box .name {
  124. margin-top: 12rpx;
  125. font-size: 28rpx;
  126. }
  127. .container .bottom {
  128. position: absolute;
  129. width: 100%;
  130. padding: 26rpx 0;
  131. bottom: 0;
  132. left: 0;
  133. background-color: white;
  134. }
  135. .container .bottom .btn {
  136. margin: 0 auto;
  137. width: 466rpx;
  138. padding: 14rpx 0;
  139. background: linear-gradient(180deg, #6EC8FF 0%, #31BDFE 100%);
  140. border-radius: 39rpx;
  141. color: white;
  142. }