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
51
52
53
54
55
56
57
58
59
| .filter-wrap {
| /* width: 100%; */
| height: 88rpx;
| display: flex;
| align-items: center;
| justify-content: space-between;
| position: relative;
| background: #fff;
| z-index: 1000;
| border-bottom: 1px solid rgba(128, 128, 128, 0.11);
| padding: 0 8px;
| }
|
| .filter-item {
| /* width: 33.33vw; */
| height: 100%;
| display: flex;
| align-items: center;
| justify-content: center;
| font-size: 28rpx;
| line-height: 36rpx;
| font-weight: 400;
| color: rgba(51, 51, 51, 1);
| gap: 2px;
| }
|
| .filter-sort {
| display: flex;
| flex-direction: column;
| margin-left: 6rpx;
| justify-content: space-between;
| }
|
| .switch-btn {
| border: 1px solid rgba(128, 128, 128, 0.171);
| background: rgba(128, 128, 128, 0.171);
| border-radius: 4px;
| display: flex;
| justify-content: space-between;
| }
|
| .switch-btn-left {
| border-top-left-radius: 4px;
| border-bottom-left-radius: 4px;
| padding: 2px 4px;
|
| }
|
| .switch-btn-right {
| border-top-right-radius: 4px;
| border-bottom-right-radius: 4px;
| padding: 2px 4px;
| }
|
| .switch-selected {
| background-color: rgb(255, 255, 255);
| }
|
| .switch-unselected {}
|
|