index.scss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. .financial {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. padding: 32rpx;
  6. padding-bottom: 50rpx;
  7. box-sizing: border-box;
  8. .financial-box {
  9. width: 100%;
  10. background: linear-gradient(108deg, #fe4b1e 0%, #fb8857 100%);
  11. padding: 32rpx;
  12. border-radius: 16rpx;
  13. box-sizing: border-box;
  14. position: relative;
  15. @include flex(space-between, null);
  16. .drawable-price {
  17. display: flex;
  18. justify-content: space-between;
  19. flex-direction: column;
  20. text {
  21. &:nth-of-type(1) {
  22. color: rgba(255, 255, 255, 0.8);
  23. font-size: 32rpx;
  24. font-weight: 500;
  25. }
  26. &:nth-of-type(2) {
  27. color: #ffffff;
  28. font-size: 64rpx;
  29. font-weight: 900;
  30. }
  31. }
  32. }
  33. .detailed {
  34. width: 152rpx;
  35. height: 60rpx;
  36. text-align: center;
  37. line-height: 60rpx;
  38. background: rgba(255, 255, 255, 0.2);
  39. color: #ffffff;
  40. font-size: 24rpx;
  41. border-radius: 30rpx;
  42. }
  43. }
  44. .financial-price {
  45. width: 100%;
  46. margin-top: 32rpx;
  47. padding: 16rpx 32rpx 32rpx 32rpx;
  48. box-sizing: border-box;
  49. border-radius: 16rpx;
  50. background-color: #ffffff;
  51. position: relative;
  52. &::after {
  53. content: "";
  54. position: absolute;
  55. left: 0;
  56. top: 26rpx;
  57. width: 8rpx;
  58. height: 24rpx;
  59. background-color: #ea5c1e;
  60. }
  61. .price-title {
  62. color: #000000;
  63. font-size: 28rpx;
  64. font-weight: 600;
  65. margin-top: 3rpx;
  66. }
  67. .price-list {
  68. width: 100%;
  69. @include flex(space-between, null, null);
  70. flex-wrap: wrap;
  71. .price-item {
  72. width: 202rpx;
  73. height: 124rpx;
  74. margin-top: 16rpx;
  75. background-color: #fff3ee;
  76. padding: 16rpx;
  77. box-sizing: border-box;
  78. display: flex;
  79. flex-direction: column;
  80. justify-content: space-between;
  81. border-radius: 8rpx;
  82. text {
  83. &:nth-of-type(1) {
  84. color: rgba(77, 51, 39, 0.41);
  85. font-size: 24rpx;
  86. line-height: 40rpx;
  87. font-weight: 600;
  88. }
  89. &:nth-of-type(2) {
  90. color: #ea5c1e;
  91. font-size: 28rpx;
  92. line-height: 44rpx;
  93. font-weight: 900;
  94. }
  95. }
  96. &.hide {
  97. visibility: hidden;
  98. }
  99. }
  100. }
  101. }
  102. .water {
  103. width: 100%;
  104. margin-top: 32rpx;
  105. .water-title {
  106. margin-bottom: 16rpx;
  107. font-size: 32rpx;
  108. font-weight: 600;
  109. color: rgba(0, 0, 0, 0.9);
  110. }
  111. .water-box {
  112. background-color: #ffffff;
  113. border-radius: 16rpx;
  114. padding-bottom: 32rpx;
  115. .water-header {
  116. width: 100%;
  117. height: 92rpx;
  118. line-height: 92rpx;
  119. @include flex(space-between, null);
  120. border-bottom: 2rpx solid #e7e7e7;
  121. .header-item {
  122. flex: 1;
  123. text-align: center;
  124. font-size: 28rpx;
  125. font-weight: 600;
  126. color: rgba(0, 0, 0, 0.4);
  127. &:nth-of-type(1) {
  128. position: relative;
  129. &::after {
  130. content: "";
  131. width: 2rpx;
  132. height: 50%;
  133. background-color: #e7e7e7;
  134. position: absolute;
  135. right: 0;
  136. top: 50%;
  137. transform: translateY(-50%);
  138. }
  139. }
  140. &.active {
  141. color: rgba(0, 0, 0, 0.9);
  142. position: relative;
  143. &::before {
  144. content: "";
  145. width: 32rpx;
  146. height: 4rpx;
  147. background-color: #ea5c1e;
  148. position: absolute;
  149. left: 50%;
  150. transform: translateX(-50%);
  151. bottom: 0;
  152. }
  153. }
  154. }
  155. }
  156. .water-container {
  157. padding: 0 32rpx;
  158. box-sizing: border-box;
  159. .water-date {
  160. margin: 32rpx 0;
  161. font-size: 28rpx;
  162. color: #3d3d3d;
  163. font-weight: 400;
  164. @include flex(flex-start, null, 13rpx);
  165. }
  166. .water-all {
  167. @include flex(space-between, null);
  168. .all-item {
  169. width: 304rpx;
  170. height: 104rpx;
  171. border-radius: 8rpx;
  172. background-color: #fff3ee;
  173. padding: 16rpx;
  174. box-sizing: border-box;
  175. display: flex;
  176. flex-direction: column;
  177. justify-content: space-between;
  178. text {
  179. &:nth-of-type(1) {
  180. font-size: 24rpx;
  181. color: rgba(77, 51, 39, 0.41);
  182. font-weight: 500;
  183. }
  184. &:nth-of-type(2) {
  185. font-size: 28rpx;
  186. color: #ea5c1e;
  187. font-weight: 900;
  188. }
  189. }
  190. }
  191. }
  192. .water-order {
  193. width: 100%;
  194. margin-top: 32rpx;
  195. .order-title {
  196. position: relative;
  197. color: rgba(0, 0, 0, 0.9);
  198. font-size: 28rpx;
  199. font-weight: 600;
  200. &::after {
  201. content: "";
  202. position: absolute;
  203. left: -32rpx;
  204. top: 50%;
  205. transform: translateY(-50%);
  206. width: 8rpx;
  207. height: 24rpx;
  208. background-color: #ea5c1e;
  209. }
  210. }
  211. .order-list {
  212. width: 100%;
  213. margin-top: 32rpx;
  214. .order-item {
  215. margin-top: 16rpx;
  216. padding: 0 16rpx 16rpx;
  217. box-sizing: border-box;
  218. width: 100%;
  219. background-color: #F5F4F3;
  220. border-radius: 16rpx;
  221. .item-text {
  222. width: 100%;
  223. @include flex(flex-start);
  224. height: 44rpx;
  225. line-height: 44rpx;
  226. padding-top: 16rpx;
  227. text {
  228. font-size: 28rpx;
  229. &:nth-of-type(1) {
  230. width: 208rpx;
  231. color: rgba(0, 0, 0, 0.4);
  232. }
  233. &:nth-of-type(2) {
  234. color: #000000;
  235. // 单行溢出
  236. overflow: hidden;
  237. text-overflow: ellipsis;
  238. white-space: nowrap;
  239. }
  240. }
  241. }
  242. }
  243. }
  244. .no-data{
  245. height: 736rpx;
  246. @include flex(center, column,32rpx);
  247. image{
  248. width: 320rpx;
  249. height: 320rpx;
  250. display: block;
  251. }
  252. text{
  253. color: rgba(0, 0, 0, 0.4);
  254. font-size: 28rpx;
  255. font-weight: 600;
  256. }
  257. }
  258. }
  259. }
  260. }
  261. }
  262. }