index.wxss 3.0 KB

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