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
.divBox {
display: flex;
flex-wrap: wrap;
border: 1px solid #b5b8c8;
margin-top: 20px;
min-height: 50px;
padding: 10px 20px;
.topCheckbox{
height: 20px;
background-color: #fff;
margin: -20px 0 0 0;
font-weight: bold;
line-height: 20px;
span{
font-size: 15px;
}
}
.checkdiv {
display: flex;
padding: 10px 0;
.ant-checkbox-group{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
.ant-checkbox-group-item{
flex:0 0 150px;
margin-bottom: 5px;
}
}
.check {
}
}
}
.isSearch{
color: red;
background-color: yellow;
}
.btnBox{
position: sticky;
bottom: 0px;
background-color: #fff;
width: 100%;
height: 80px;
padding: 0 20px;
display: flex;
align-items: center;
}