| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .eChartSection {
- background-color: #fff;
- box-shadow: 0px 2px 10px 0px rgba(229, 229, 229, 0.1);
- border-radius: 10px;
- padding: 12px 0 0;
- margin: 0;
- .eChartTitle {
- display: flex;
- justify-content: space-between;
- background: #F8F8F8;
- border-radius: 4px;
- padding: 6px 12px;
- .left {
- display: flex;
- align-items: center;
- }
- .item {
- display: flex;
- align-items: center;
- margin-right: 12px;
- --color: #2DC7AA;
- &:last-child {
- margin-right: 0;
- }
- .text {
- font-size: 12px;
- color: #333333;
- line-height: 16px;
- padding: 0 4px 0 0;
- }
- .num {
- font-weight: 600;
- font-size: 12px;
- color: var(--color);
- line-height: 16px;
- }
- }
- }
- .eChart {
- height: 240px;
- padding: 10px 0 0;
- }
- }
|