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
.indexContainer {
.anticon svg {
margin-top: 0px;
}
}
.mapContent {
display: flex;
.mapTool {
width: 350px;
.title {
text-align: center;
font-weight: 700;
font-size: 14px;
}
.colorContent {
width: 100%;
display: flex;
justify-content: space-between;
.colorBox {
width: 15px;
height: 15px;
border: 1px solid #ccc;
}
.currentColor {
border: 2px solid #faad14;
}
}
}
.mapBox {
display: flex;
align-items: center;
position: relative;
margin-left: 15px;
width: 100%;
height: 600px;
}
}
.ant-cascader-menu {
height: 330px;
}