index.less 8.5 KB

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