linwenling
2023-07-24 228302bc93feabc7b51a965db4374781844cc033
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@import "mixins/mixins";
@import "common/var";
 
@include b(statistic) {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: $--color-black;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    font-feature-settings: "tnum";
 text-align: center;
    .head {
        margin-bottom: 4px;
        color: #00000073;
        font-size: 14px;
 
    }
 
    .con{
        display: flex;
        justify-content :center;
        align-items: center  ;
        .number{
            font-size: 20px;
            padding: 0 4px;
        }
        span{  display: inline-block;
              margin: 0;
            line-height: 100%;
        }
    }
}