wangzhibo
4 天以前 10595d8632f959d0954d1939243196f4eed02372
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.cl-page {
    box-sizing: border-box;
    position: relative;
    z-index: 2;
 
    .safe-area-bottom {
        height: env(safe-area-inset-bottom);
    }
 
    &__loading {
        position: relative;
        z-index: 9999;
    }
 
    &__bg {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: $cl-color-bg;
        z-index: -1;
    }
}