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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.cl-card {
    border-radius: 16rpx;
    margin-bottom: 20rpx;
 
    &__header {
        display: flex;
        align-items: center;
        height: 80rpx;
        border-bottom: $cl-border-width solid #f6f7fa;
        position: relative;
        padding: 0 20rpx;
    }
 
    &__loading {
        position: absolute;
        right: 20rpx;
        line-height: 0;
    }
 
    &__more {
        display: flex;
        align-items: center;
        position: absolute;
        right: 20rpx;
        color: $cl-color-info;
 
        .text {
            font-size: 24rpx;
            margin-right: 4rpx;
        }
 
        .cl-icon-arrow-right {
            font-size: 30rpx;
            line-height: 1;
        }
    }
 
    &__container {
        padding: 20rpx;
    }
 
    &__footer {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 90rpx;
        padding: 0 20rpx;
    }
}