todayOverview.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .overview {
  2. padding: 15px;
  3. &-module {
  4. font-family: PingFangSC-Regular, PingFang SC;
  5. &-1 {
  6. background-color: #fff;
  7. border-radius: 5px;
  8. padding: 15px;
  9. margin-bottom: 14px;
  10. &-title {
  11. font-size: 20px;
  12. color: #434343;
  13. text-align: center;
  14. }
  15. &-content {
  16. display: flex;
  17. &-revenue {
  18. background-color: #EDF3FF;
  19. border-radius: 5px;
  20. margin-top: 10px;
  21. padding: 17px 0;
  22. width: calc(50% - 6px);
  23. text-align: center;
  24. margin-right: 12px;
  25. margin-bottom: 12px;
  26. .title {
  27. color: #535353;
  28. font-size: 15px;
  29. }
  30. .content {
  31. display: flex;
  32. justify-content: center;
  33. &-left {
  34. color: #878787;
  35. font-size: 14px;
  36. text {
  37. font-size: 30px;
  38. color: #1767F2;
  39. font-weight: bold;
  40. }
  41. }
  42. }
  43. &:last-child {
  44. margin-right: 0;
  45. }
  46. }
  47. }
  48. &-revenue {
  49. background-color: #EDF3FF;
  50. border-radius: 5px;
  51. margin-top: 10px;
  52. padding: 17px 18px;
  53. .title {
  54. color: #535353;
  55. font-size: 15px;
  56. }
  57. .content {
  58. display: flex;
  59. justify-content: space-between;
  60. &-left {
  61. color: #1767F2;
  62. font-size: 20px;
  63. text {
  64. font-size: 30px;
  65. font-weight: bold;
  66. }
  67. }
  68. }
  69. }
  70. &-menu {
  71. // background-color: #EDF3FF;
  72. border-radius: 5px;
  73. padding: 15px 0;
  74. margin-top: 10px;
  75. margin-bottom: 9px;
  76. .list {
  77. display: flex;
  78. justify-content: space-between;
  79. &-item {
  80. width: 33%;
  81. text-align: center;
  82. border-right: solid 1px #EDF3FF;
  83. &:last-child {
  84. border-right: none;
  85. }
  86. &-total {
  87. color: #303030;
  88. font-size: 12px;
  89. text {
  90. font-size: 16px;
  91. font-weight: bold;
  92. color: #FF0000;
  93. }
  94. }
  95. &-title {
  96. color: #878787;
  97. font-size: 11px;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. }
  104. }