1234567891011121314151617181920212223242526272829303132333435 |
- @import (reference) '~antd/es/style/themes/index';
- .statistic {
- display: flex;
- justify-content: space-between;
- margin-bottom: 15px;
- .num_style {
- position: relative;
- width: 49.5%;
- height: 128px;
- padding: 0 30px;
- background: #fff;
- .title {
- margin-top: 30px;
- font-weight: bold;
- font-size: 13px;
- }
- .num {
- font-weight: bold;
- font-size: 35px;
- }
- .statistic_icon {
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- }
- .device_status {
- margin-bottom: 10px;
- padding-bottom: 10px;
- font-weight: bold;
- font-size: 20px;
- border-bottom: 1px solid #efefef;
- }
|