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
25
26
27
28
29
30
31
.cl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
 
    &__icon {
        height: 120rpx;
        margin-bottom: 20rpx;
    }
 
    &__text {
        font-size: 26rpx;
        color: $cl-color-info;
        letter-spacing: 1rpx;
    }
 
    &__container {
        pointer-events: all;
        margin-top: 60rpx;
    }
 
    &.is-fixed {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
    }
}