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-select-city {
| &__wrap {
| display: flex;
| flex-direction: column;
| height: 100%;
| }
|
| &__tabs {
| display: flex;
| flex-wrap: wrap;
| padding: 0 30rpx;
| }
|
| &__list {
| border-top: 1rpx solid $cl-color-bg;
| border-bottom: 1rpx solid $cl-color-bg;
| box-sizing: border-box;
| flex: 1;
|
| swiper {
| height: 100%;
|
| swiper-item {
| height: 100%;
| }
| }
| }
|
| &__item {
| display: flex;
| align-items: center;
| padding: 0 30rpx;
| height: 80rpx;
| font-size: 26rpx;
|
| .cl-icon-toast-success {
| display: none;
| }
|
| &.is-active {
| color: $cl-color-primary;
|
| .cl-icon-toast-success {
| display: inline-block;
| margin-right: 16rpx;
| }
| }
| }
| }
|
|