1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // @import '../color.less';
- .chart {
- display: flex;
- justify-content: space-between;
- flex-flow: wrap wrap;
- }
- .middle {
- tr,
- td {
- font-size: 14px !important;
- }
- }
- .small {
- tr,
- td {
- font-size: 13px !important;
- }
- }
- .large {
- tr,
- td {
- font-size: 14px !important;
- }
- }
- .item_img {
- width: 25px;
- border-radius: 2px;
- margin-right: 5px;
- background-color: #efefef;
- }
- .gktitle{
- width: 100%;
- position: absolute;
- text-align: center;
- font-size: 16px;
- font-weight: 500;
- &>div{
- position: absolute;
- top: -45px;
- left: 50%;
- transform: translateX(-50%);
- }
- }
|