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
@import '~antd/es/style/themes/default.less';
.normChart {
display: flex;
width: 100%;
height: 100%;
.listWrapper {
width: 160px;
margin-right: 40px;
.normList {
height: 600px;
padding: 12px 14px 0 6px;
overflow: scroll;
//padding-top: 7px;
box-shadow: 1px 0 0 0 #eeeeee;
.listTitle {
color: rgba(0, 0, 0, 0.85);
font-weight: 500;
}
}
}
.chartWrapper {
position: relative;
flex: 1;
.normSpin {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.selectedNorm {
padding: 10px 0;
.selectedNormWrapper {
height: 50px;
overflow-y: scroll;
}
}
.filters {
}
.chart {
width: 100%;
height: 500px;
}
}
}