style.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .filter-tab {
  2. width: 100%;
  3. height: 76rpx;
  4. // box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
  5. background-color: white;
  6. margin-bottom: 10rpx;
  7. @include left;
  8. .line {
  9. width: 1rpx;
  10. height: 60%;
  11. margin: auto;
  12. background-color: #CBCBCB;
  13. }
  14. .filter-box {
  15. flex: 1;
  16. @include center;
  17. .icon {
  18. width: 0;
  19. height: 0;
  20. border-left: 10rpx solid transparent;
  21. border-right: 10rpx solid transparent;
  22. border-top: 10rpx solid $gray;
  23. margin-left: 10rpx;
  24. }
  25. .text {
  26. font-size: 24rpx;
  27. }
  28. }
  29. }
  30. .container {
  31. flex: 1;
  32. overflow: hidden;
  33. .statistics {
  34. width: 100%;
  35. background-color: white;
  36. padding: 0 32rpx;
  37. .row {
  38. position: relative;
  39. width: 100%;
  40. border-bottom: 1rpx solid #EBEEF1;
  41. @include center;
  42. &:last-child {
  43. border-bottom: 0 none;
  44. }
  45. .column {
  46. flex: 1;
  47. flex-direction: column;
  48. padding: 32rpx 0;
  49. @include center;
  50. .yellow {
  51. color: #FF7300;
  52. }
  53. .text {
  54. color: $dark;
  55. .number {
  56. font-size: 36rpx;
  57. font-weight: 500;
  58. }
  59. .unit {
  60. font-size: $wk-font-base;
  61. margin-left: 7rpx;
  62. }
  63. }
  64. .desc {
  65. font-size: $wk-font-base;
  66. color: $gray;
  67. margin-top: 10rpx;
  68. }
  69. }
  70. .line {
  71. position: absolute;
  72. width: 1rpx;
  73. height: 70%;
  74. background-color: #EBEEF1;
  75. margin: auto;
  76. }
  77. }
  78. }
  79. .section-item {
  80. width: 100%;
  81. background-color: white;
  82. border: 1rpx solid $border-color;
  83. padding: 20rpx 32rpx;
  84. margin-top: 10rpx;
  85. .section-title {
  86. width: 100%;
  87. @include left;
  88. .left {
  89. flex: 1;
  90. .icon {
  91. width: 40rpx;
  92. height: 40rpx;
  93. vertical-align: middle;
  94. margin-right: 10rpx;
  95. }
  96. .text {
  97. font-size: 28rpx;
  98. font-weight: bold;
  99. color: #212121;
  100. vertical-align: middle;
  101. }
  102. }
  103. }
  104. }
  105. }