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
| .cl-select-popup {
| &__list {
| padding: 10rpx 30rpx;
| }
|
| &__item {
| display: flex;
| align-items: center;
| justify-content: space-between;
| font-size: 28rpx;
| height: 90rpx;
| border-bottom: $cl-border-width solid #eee;
|
| .is-check {
| display: none;
| }
|
| &:last-child {
| border-bottom: 0;
| }
|
| &.is-active {
| color: $cl-color-primary;
|
| .is-check {
| display: inline-block;
| }
| }
| }
|
| &__empty {
| padding: 30rpx 0 60rpx 0;
| }
|
| &__footer {
| padding: 30rpx;
| }
| }
|
|