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
.cl-pay {
    &__title {
        font-size: 32rpx;
        text-align: center;
        padding-top: 30rpx;
    }
 
    &__container {
        display: flex;
    }
 
    &__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        height: 300rpx;
 
        &:active {
            opacity: 0.8;
        }
    }
 
    &__icon {
        height: 100rpx;
        width: 100rpx;
    }
 
    &__label {
        font-size: 26rpx;
        margin-top: 20rpx;
    }
 
    &__footer {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100rpx;
        border-top: 4rpx solid #f6f7fa;
        font-size: 28rpx;
    }
}