businessHome.scss 3.4 KB

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