index.scss
717 Bytes
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
.workplatform {
color: #4A4A4A;
height: 100%;
overflow: hidden;
.district {
margin: 10px 0;
/deep/.el-radio__label {
font-size: 20px;
}
&-name {
font-size: 20px;
font-weight: 600;
}
}
.data-statistics {
.sta-item {
height: 150px;
background-color: #FFFFFF;
border-radius: 5px;
@include flex-center();
flex-direction: column;
margin: 15px 0;
h5 {
font-size: 20px;
margin-bottom: 8px;
}
}
}
.statistical-chart-content {
height: calc(100% - 210px);
}
.statistical-chart {
display: flex;
.chart {
width: 50%;
min-height: 460px;
height: 100%;
}
}
}