index.module.less 861 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .eChartSection {
  2. background-color: #fff;
  3. box-shadow: 0px 2px 10px 0px rgba(229, 229, 229, 0.1);
  4. border-radius: 10px;
  5. padding: 12px 0 0;
  6. margin: 0;
  7. .eChartTitle {
  8. display: flex;
  9. justify-content: space-between;
  10. background: #F8F8F8;
  11. border-radius: 4px;
  12. padding: 6px 12px;
  13. .left {
  14. display: flex;
  15. align-items: center;
  16. }
  17. .item {
  18. display: flex;
  19. align-items: center;
  20. margin-right: 12px;
  21. --color: #2DC7AA;
  22. &:last-child {
  23. margin-right: 0;
  24. }
  25. .text {
  26. font-size: 12px;
  27. color: #333333;
  28. line-height: 16px;
  29. padding: 0 4px 0 0;
  30. }
  31. .num {
  32. font-weight: 600;
  33. font-size: 12px;
  34. color: var(--color);
  35. line-height: 16px;
  36. }
  37. }
  38. }
  39. .eChart {
  40. height: 240px;
  41. padding: 10px 0 0;
  42. }
  43. }