com_screen.wxss
1.63 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*--三角形的显示--*/
.arrow_down,.arrow_up{
width: 0px;
height: 0px;
font-size: 0;
line-height: 0;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
}
.arrow_down {
border-top: 5px solid #a5a5a5; margin-top: 4rpx;
}
.arrow_up{
border-bottom: 5px solid #a5a5a5;
}
.arrow_down.on{
border-top: 5px solid #F4281C ;
}
.arrow_up.on{
border-bottom: 5px solid #F4281C;
}
.f_cate_item{ height:80rpx; display:flex; justify-content: space-between; align-items: center; border-bottom: 1rpx solid #dcdcdc;}
.filter-items{ color: #666; overflow:hidden}
.filter-items.normal_to{ max-height: 260rpx}
.filter-items.back_to{ height: 0rpx}
.up_ar{ transform: rotate(180deg)}
.fil_btn{ width: 47%; height:80rpx; border-radius:10rpx; display: flex;
justify-content:center; align-items: center; font-size:28rpx;color:#fff}
.fil_cancle{ background-color: #25c6fc }
.fil_sure{ background-color:#dd272c }
.filter-modal {
position: fixed;
left: 150rpx;
top: 0;
right: 0;
bottom: 0;
z-index: 1120;
background-color: white;
overflow-x: hidden;
}
.filter-box {
box-sizing: border-box;
width: 100%;
font-size: 28rpx;
padding: 20rpx;
}
.filter-name {
width: 100%;
padding: 20rpx 0;
word-break: keep-all;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font-size: 30rpx;
}
.filter-item {
float: left;
width: fit-content;
max-width: 500rpx;
word-break: keep-all;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding: 10rpx;
border-radius: 10rpx;
border: 1rpx #ddd solid;
margin: 0 10rpx 10rpx 0;
background-color: #fdfdfd;
color: #666;
}