index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .container {
  2. padding: 0 20rpx;
  3. }
  4. .container .statistics {
  5. width: 100%;
  6. padding: 40rpx;
  7. display: flex;
  8. align-items: center;
  9. box-sizing: border-box;
  10. background: #FFFFFF;
  11. border-radius: 20rpx;
  12. }
  13. .container .statistics .col {
  14. flex: 1;
  15. }
  16. .container .statistics .col .row {
  17. margin-bottom: 60rpx;
  18. }
  19. .container .statistics .col .row .label {
  20. margin-bottom: 20rpx;
  21. font-size: 30rpx;
  22. color: #666666;
  23. }
  24. .container .statistics .col .row .money {
  25. font-size: 32rpx;
  26. font-weight: 500;
  27. color: #000000;
  28. }
  29. .container .statistics .col .row:last-child {
  30. margin: 0;
  31. }
  32. .container .statistics .col2 {
  33. padding-left: 80rpx;
  34. }
  35. .container .detailsBox {
  36. margin-top: 40rpx;
  37. }
  38. .container .detailsBox .title {
  39. font-size: 25rpx;
  40. color: #7B7B7B;
  41. }
  42. .container .detailsBox .categoryBox {
  43. margin-top: 24rpx;
  44. margin-bottom: 38rpx;
  45. display: flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. }
  49. .container .detailsBox .categoryBox .category {
  50. width: 126rpx;
  51. padding: 8rpx 0;
  52. font-size: 30rpx;
  53. text-align: center;
  54. color: #7A7A7A;
  55. background: #FFFFFF;
  56. border-radius: 29rpx;
  57. }
  58. .container .detailsBox .categoryBox .currentClass {
  59. color: #FEAC57;
  60. font-weight: bold;
  61. }
  62. .container .detailsBox .detailsList {
  63. padding-bottom: 60rpx;
  64. }
  65. .container .detailsBox .detailsList .group {
  66. margin-bottom: 20rpx;
  67. border-radius: 20rpx;
  68. overflow: hidden;
  69. background: #FFFFFF;
  70. }
  71. .container .detailsBox .detailsList .group .header {
  72. display: flex;
  73. align-items: center;
  74. justify-content: space-between;
  75. padding: 12rpx 24rpx;
  76. font-size: 26rpx;
  77. background-color: #FFFAEA;
  78. }
  79. .container .detailsBox .detailsList .group .body {
  80. padding: 0 35rpx;
  81. }
  82. .container .detailsBox .detailsList .group .body .row {
  83. display: flex;
  84. align-items: center;
  85. justify-content: space-between;
  86. padding: 20rpx 0;
  87. color: #7B7B7B;
  88. font-size: 26rpx;
  89. text-align: center;
  90. border-bottom: 1rpx solid #eee;
  91. }
  92. .container .detailsBox .detailsList .group .body .row .col {
  93. display: flex;
  94. flex-direction: column;
  95. }
  96. .container .detailsBox .detailsList .group .body .row .col .num {
  97. margin-bottom: 8rpx;
  98. }
  99. .container .detailsBox .detailsList .group .body .row .col .add {
  100. color: #BA5858;
  101. }
  102. .container .detailsBox .detailsList .group .body .row .col .reduce {
  103. color: #38B358;
  104. }
  105. .container .detailsBox .detailsList .group .body .row:last-child {
  106. border: none;
  107. }