area-agent.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. page {
  2. min-height: 100%;
  3. background: linear-gradient(180deg, #FFFFFF, #F2F2F2);
  4. }
  5. .wrap {
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. padding: 20rpx 24rpx;
  10. box-sizing: border-box;
  11. }
  12. .card {
  13. width: 100%;
  14. min-height: 292rpx;
  15. background: linear-gradient(43deg, #E77E1E, #FF5E45);
  16. border-radius: 24rpx;
  17. padding: 24rpx 42rpx 14rpx;
  18. box-sizing: border-box;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: space-between;
  22. }
  23. .card-label {
  24. color: #FAE6D7;
  25. font-size: 28rpx;
  26. }
  27. .card-middle {
  28. width: 100%;
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. }
  33. .money {
  34. color: #FFFFFF;
  35. font-size: 40rpx;
  36. }
  37. .money text {
  38. font-size: 70rpx;
  39. font-weight: bold;
  40. }
  41. .btn {
  42. width: 182rpx;
  43. height: 64rpx;
  44. line-height: 64rpx;
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. background-color: #FFFFFF;
  49. border-radius: 100rpx;
  50. color: #F2501A;
  51. font-size: 28rpx;
  52. }
  53. .card-bottom {
  54. width: 100%;
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. }
  59. .card-bottom-row {
  60. display: flex;
  61. flex-direction: column;
  62. }
  63. .card-bottom-row-label {
  64. font-size: 30rpx;
  65. color: rgba(255, 255, 255, 0.8);
  66. margin-bottom: 5rpx;
  67. }
  68. .small-money {
  69. color: #fff;
  70. font-size: 30rpx;
  71. }
  72. .small-money text {
  73. font-size: 40rpx;
  74. font-weight: bold;
  75. }
  76. .password-msg {
  77. color: #FEF2EE;
  78. font-size: 24rpx;
  79. }
  80. .bottom {
  81. width: 100%;
  82. display: flex;
  83. flex-direction: column;
  84. }
  85. .row-between {
  86. width: 100%;
  87. height: 82rpx;
  88. display: flex;
  89. justify-content: space-between;
  90. align-items: center;
  91. }
  92. .row-label {
  93. color: #F6793F;
  94. font-size: 32rpx;
  95. }
  96. .tab-list {
  97. display: flex;
  98. align-items: center;
  99. padding-right: 5rpx;
  100. }
  101. .child {
  102. display: flex;
  103. align-items: center;
  104. font-size: 30rpx;
  105. color: #A7A7A7;
  106. margin-right: 60rpx;
  107. }
  108. .child text {
  109. font-size: 38rpx;
  110. margin-left: 10rpx;
  111. }
  112. .child:last-child {
  113. margin-right: 0;
  114. }
  115. .child.active {
  116. color: #F2501A;
  117. }
  118. .list {
  119. width: 100%;
  120. display: flex;
  121. flex-direction: column;
  122. }
  123. .item {
  124. width: 100%;
  125. display: flex;
  126. flex-direction: column;
  127. background-color: #FFFFFF;
  128. border-radius: 16rpx;
  129. padding: 0 24rpx 24rpx;
  130. box-sizing: border-box;
  131. margin-bottom: 20rpx;
  132. }
  133. .item-top {
  134. width: 100%;
  135. display: flex;
  136. align-items: center;
  137. padding: 32rpx 0;
  138. }
  139. .item-avatar {
  140. width: 76rpx;
  141. height: 76rpx;
  142. border-radius: 50%;
  143. margin-right: 30rpx;
  144. }
  145. .item-top-column {
  146. flex: 1;
  147. display: flex;
  148. flex-direction: column;
  149. }
  150. .item-top-name {
  151. width: 100%;
  152. color: #000000;
  153. font-size: 32rpx;
  154. margin-bottom: 10rpx;
  155. }
  156. .item-top-msg {
  157. width: 100%;
  158. color: #A7A7A7;
  159. font-size: 24rpx;
  160. }
  161. .item-bottom {
  162. width: 100%;
  163. display: flex;
  164. align-items: center;
  165. }
  166. .item-img {
  167. width: 186rpx;
  168. height: 186rpx;
  169. border-radius: 12rpx;
  170. margin-right: 24rpx;
  171. }
  172. .item-bottom-sidebar {
  173. flex: 1;
  174. height: 186rpx;
  175. display: flex;
  176. flex-direction: column;
  177. justify-content: space-between;
  178. }
  179. .item-bottom-sidebar-top {
  180. width: 100%;
  181. display: flex;
  182. justify-content: space-between;
  183. align-items: center;
  184. }
  185. .product-name {
  186. width: 60%;
  187. display: -webkit-box;
  188. -webkit-line-clamp: 2;
  189. overflow: hidden;
  190. text-overflow: ellipsis;
  191. -webkit-box-orient: vertical;
  192. font-size: 26rpx;
  193. color: #202020;
  194. }
  195. .product-column-row {
  196. display: flex;
  197. flex-direction: column;
  198. align-items: flex-end;
  199. }
  200. .product-column-row text:first-child {
  201. color: #202020;
  202. font-size: 26rpx;
  203. }
  204. .product-column-row text:last-child {
  205. color: #A7A7A7;
  206. font-size: 24rpx;
  207. }
  208. .product-tag {
  209. width: 100%;
  210. color: #A7A7A7;
  211. font-size: 24rpx;
  212. }
  213. .item-bottom-sidebar-bottom {
  214. width: 100%;
  215. text-align: right;
  216. color: #F2501A;
  217. }
  218. .font {
  219. font-size: 26rpx;
  220. margin-right: 8rpx;
  221. }
  222. .price {
  223. font-size: 24rpx;
  224. }
  225. .price text {
  226. font-size: 40rpx;
  227. font-weight: bold;
  228. }