index.less 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. .member {
  2. position: relative;
  3. min-height: 100vh;
  4. background-color: #f9f9f9;
  5. .member-bg {
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. width: 750px;
  10. height: 284px;
  11. background: #FFE2AB;
  12. border-radius: 0 0 0 150px;
  13. z-index: 1;
  14. }
  15. .member-content {
  16. position: relative;
  17. padding: 0 16px;
  18. z-index: 2;
  19. padding-top: 18px;
  20. }
  21. // 会员信息卡
  22. .member-info-card {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. background-color: #fefaef;
  27. border-radius: 20px;
  28. .member-info-card-header {
  29. height: 385px;
  30. padding-top: 101px;
  31. box-sizing: border-box;
  32. .avatar {
  33. width: 170px;
  34. height: 170px;
  35. border-radius: 50%;
  36. background-color: red;
  37. }
  38. .member-info-card-header-text {
  39. margin-top: 16px;
  40. display: flex;
  41. align-items: center;
  42. .user-name {
  43. font-size: 34px;
  44. line-height: 40px;
  45. font-weight: 500;
  46. color: #000000;
  47. }
  48. .member-info-card-header-text-level {
  49. width: 100px;
  50. height: 36px;
  51. position: relative;
  52. display: flex;
  53. align-items: center;
  54. padding-left: 45px;
  55. box-sizing: border-box;
  56. margin-left: 14px;
  57. .level-text {
  58. font-size: 16px;
  59. line-height: 40px;
  60. color: #000000;
  61. z-index: 1;
  62. }
  63. .level-icon {
  64. width: 100px;
  65. height: 36px;
  66. position: absolute;
  67. right: 0;
  68. top: 0;
  69. }
  70. }
  71. }
  72. }
  73. // 我的小店
  74. .my-shop {
  75. width: 100%;
  76. height: 92px;
  77. background-color: #fff5dc;
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. image {
  82. height: 30px;
  83. width: 30px;
  84. margin-right: 10px;
  85. }
  86. text {
  87. font-size: 24px;
  88. line-height: 40px;
  89. color: #000000;
  90. }
  91. }
  92. }
  93. // 预估收益
  94. .estimated-income {
  95. background: #FFFFFF;
  96. border-radius: 20px;
  97. padding: 24px;
  98. margin-top: 16px;
  99. &-title {
  100. font-size: 28px;
  101. color: #3D3D3D;
  102. margin-bottom: 30px;
  103. line-height: 40px;
  104. font-weight: 700;
  105. }
  106. &-content {
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. padding: 0 55px;
  111. margin-top: 30px;
  112. .income-item {
  113. flex: 1;
  114. text-align: center;
  115. display: flex;
  116. flex-direction: column;
  117. .amount {
  118. font-size: 36px;
  119. font-weight: bold;
  120. color: #FF8119;
  121. line-height: 40px;
  122. }
  123. .label {
  124. font-size: 26px;
  125. color: #222222;
  126. line-height: 40px;
  127. margin-top: 11px;
  128. }
  129. }
  130. .divider {
  131. width: 0;
  132. height: 80px;
  133. border-left: 2px solid #D8D8D8;
  134. margin: 0 20px;
  135. }
  136. }
  137. &-detail {
  138. display: flex;
  139. align-items: center;
  140. justify-content: center;
  141. width: 100%;
  142. text-align: center;
  143. font-size: 24px;
  144. color: #E79945;
  145. margin-top: 40px;
  146. .to-detail {
  147. width: 22px;
  148. height: 21px;
  149. margin-left: 8px;
  150. }
  151. }
  152. }
  153. // 可提现金额
  154. .withdrawable-amount {
  155. margin-top: 20px;
  156. .withdrawable-amount-header {
  157. display: flex;
  158. align-items: center;
  159. margin-bottom: 12px;
  160. .withdrawable-amount-icon {
  161. width: 36px;
  162. height: 36px;
  163. }
  164. .withdrawable-amount-title {
  165. font-size: 28px;
  166. color: #000000;
  167. line-height: 40px;
  168. font-weight: 700;
  169. margin-left: 10px;
  170. }
  171. }
  172. .withdrawable-amount-content {
  173. height: 90px;
  174. width: 100%;
  175. background-color: #fff;
  176. display: flex;
  177. justify-content: space-between;
  178. align-items: center;
  179. padding: 0 23px 0 15px;
  180. box-sizing: border-box;
  181. .left {
  182. display: flex;
  183. align-items: center;
  184. .amount {
  185. font-size: 24px;
  186. color: #000000;
  187. line-height: 40px;
  188. }
  189. .warning-icon-box {
  190. display: flex;
  191. margin-left: 10px;
  192. align-items: center;
  193. padding: 0 14px;
  194. box-sizing: border-box;
  195. background-color: #fff4e7;
  196. border-radius: 26px;
  197. .warning-text {
  198. font-size: 24px;
  199. color: #FF8119;
  200. line-height: 40px;
  201. }
  202. .warning-icon {
  203. width: 24px;
  204. height: 24px;
  205. margin-right: 10px;
  206. }
  207. }
  208. }
  209. .right{
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. width: 138px;
  214. height: 44px;
  215. background-color: #f7f3f3;
  216. border-radius: 26px;
  217. font-size: 22px;
  218. line-height: 40px;
  219. }
  220. }
  221. }
  222. }