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
50
.cl-action-sheet {
    position: relative;
 
    .cl-popup__container {
        background-color: $cl-color-bg;
        border-radius: 32rpx 32rpx 0 0;
        overflow: hidden;
    }
 
    &__title {
        font-size: 28rpx;
        padding: 0 46rpx;
        margin: 32rpx;
        text-align: center;
        color: $cl-color-info;
    }
 
    &__list {
        padding: 0 24rpx;
    }
 
    &__item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24rpx;
        line-height: 1.4;
        font-size: 28rpx;
        background-color: #fff;
        border-radius: 18rpx;
        margin: 24rpx 0;
 
        &:last-child {
            border-bottom: 0;
        }
 
        &.is-disabled {
            color: $cl-color-disabled;
            background-color: transparent;
        }
 
        &:not(.is-disabled):active {
            background-color: $cl-color-active;
        }
 
        &:after {
            border: 0;
        }
    }
}