index.less 950 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @import "~assets/less/variable";
  2. .overview-container {
  3. padding: 20px;
  4. flex: 1;
  5. display: flex;
  6. flex-direction: column;
  7. .charts {
  8. margin-top: 20px;
  9. flex: 1;
  10. display: flex;
  11. > div {
  12. flex: 1;
  13. background-color: #fff;
  14. margin-right: 20px;
  15. padding: 20px;
  16. &:last-child {
  17. margin-right: 0;
  18. }
  19. .chart-title {
  20. font-size: 16px;
  21. }
  22. .chart-desc {
  23. font-size: 12px;
  24. opacity: .8;
  25. }
  26. }
  27. }
  28. .card-list {
  29. display: flex;
  30. width: 100%;
  31. justify-content: space-between;
  32. .item {
  33. background-color: #fff;
  34. height: 120px;
  35. padding: 10px 20px;
  36. flex: 1;
  37. margin-right: 20px;
  38. &:last-child {
  39. margin-right: 0;
  40. }
  41. .title {
  42. font-size: 16px;
  43. padding-bottom: 10px;
  44. }
  45. .num {
  46. font-size: 24px ;
  47. font-weight: bold;
  48. color: @blue;
  49. }
  50. }
  51. }
  52. }