businessHome.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. .wrapper {
  2. padding: 66rpx 0 100rpx;
  3. }
  4. .width-690 {
  5. width: 690rpx;
  6. margin: 0 auto;
  7. }
  8. .user-info {
  9. display: flex;
  10. align-items: center;
  11. }
  12. .portrait {
  13. width: 100rpx;
  14. height: 100rpx;
  15. border-radius: 50%;
  16. overflow: hidden;
  17. image {
  18. display: block;
  19. width: 100%;
  20. height: 100%;
  21. background: pink;
  22. }
  23. }
  24. .user-name-wrap {
  25. margin-left: 12rpx;
  26. .name {
  27. line-height: 48rpx;
  28. font-size: 32rpx;
  29. color: rgba(37, 31, 57, 1);
  30. }
  31. .account {
  32. margin-top: 4rpx;
  33. line-height: 40rpx;
  34. font-size: 24rpx;
  35. color: rgba(67, 70, 101, 1);
  36. }
  37. }
  38. .dashboard {
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. justify-content: space-between;
  43. width: 100%;
  44. height: 329rpx;
  45. padding: 46rpx 0 33rpx;
  46. margin-top: 52rpx;
  47. margin-bottom: 50rpx;
  48. border-radius: 32rpx;
  49. background: pink;
  50. .data,
  51. .btn {
  52. display: flex;
  53. flex-direction: column;
  54. align-items: center;
  55. }
  56. .label {
  57. line-height: 40rpx;
  58. font-size: 28rpx;
  59. color: rgba(157, 151, 177, 1);
  60. }
  61. .value {
  62. margin-top: 6rpx;
  63. line-height: 80rpx;
  64. font-size: 64rpx;
  65. color: rgba(37, 31, 57, 1);
  66. }
  67. image {
  68. width: 40rpx;
  69. height: 40rpx;
  70. background: pink;
  71. }
  72. .check {
  73. line-height: 40rpx;
  74. font-size: 24rpx;
  75. color: rgba(157, 151, 177, 1);
  76. }
  77. }
  78. .excellent-goods-title {
  79. position: relative;
  80. left: 0;
  81. top: 0;
  82. display: flex;
  83. align-items: center;
  84. width: 690rpx;
  85. padding-left: 24rpx;
  86. line-height: 40rpx;
  87. font-size: 36rpx;
  88. font-weight: 500;
  89. color: #1F1F39;
  90. &:before {
  91. content: '';
  92. position: absolute;
  93. left: 0;
  94. top: 1rpx;
  95. width: 14rpx;
  96. height: 37rpx;
  97. border-radius: 40rpx;
  98. background: #91B379;
  99. }
  100. &:after {
  101. content: '';
  102. position: absolute;
  103. right: 36rpx;
  104. top: 0;
  105. width: 40rpx;
  106. height: 40rpx;
  107. background: pink;
  108. }
  109. }
  110. .nav-wrap {
  111. display: flex;
  112. justify-content: space-between;
  113. align-items: center;
  114. margin-top: 50rpx;
  115. margin-bottom: 80rpx;
  116. & > view {
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. flex: 1;
  121. }
  122. image {
  123. width: 104rpx;
  124. height: 104rpx;
  125. background: pink;
  126. }
  127. text {
  128. margin-top: 30rpx;
  129. line-height: 40rpx;
  130. font-size: 28rpx;
  131. color: rgba(37, 31, 57, 1);
  132. }
  133. }
  134. .list {
  135. display: flex;
  136. margin-top: 40rpx;
  137. }
  138. .photo-wrap {
  139. width: 82rpx;
  140. height: 82rpx;
  141. border-radius: 16rpx;
  142. overflow: hidden;
  143. image {
  144. display: block;
  145. width: 100%;
  146. height: 100%;
  147. background: pink;
  148. }
  149. }
  150. .box {
  151. width: 326rpx;
  152. padding-left: 19rpx;
  153. }
  154. .goods-name {
  155. width: 100%;
  156. line-height: 48rpx;
  157. font-size: 32rpx;
  158. color: rgba(37, 31, 57, 1);
  159. white-space: nowrap;
  160. overflow: hidden;
  161. text-overflow: ellipsis;
  162. }
  163. .add-time {
  164. margin-top: 6rpx;
  165. line-height: 40rpx;
  166. font-size: 24rpx;
  167. color: rgba(157, 151, 177, 1);
  168. }
  169. .price {
  170. width: 282rpx;
  171. line-height: 40rpx;
  172. font-size: 28rpx;
  173. color: rgba(166, 166, 166, 1);
  174. text-align: right;
  175. }