index.less
1.22 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
@import "~@/mixins.less";
.equipmentRepair {
.size(300px, 350px);
float: left;
padding: 0 10px 10px 10px;
}
.equipmentInfo {
.size();
.title {
.size(100%, 40px);
.flex(center);
font-size: 20px;
color: #1890ff;
font-weight: bold;
}
.image {
.size(100%, 200px);
border: 1px solid #ddd;
}
.info {
.size(100%, 100px);
.flex(center, center);
background: #ddd;
font-size: 18px;
.content {
.size();
display: grid;
grid-template-columns: 100px auto;
grid-template-rows: 1fr 1fr;
gap: 10px;
>div:nth-of-type(1) {
.flex(flex-end, flex-end)
}
>div:nth-of-type(2) {
.flex(flex-end, flex-start)
}
>div:nth-of-type(3) {
.flex(flex-start, flex-end)
}
>div:nth-of-type(4) {
.flex(flex-start, flex-start)
}
}
}
}
.equipmentFaultAnalysis {
.size();
.title {
.size(100%, 40px);
.flex(center);
font-size: 20px;
color: #1890ff;
font-weight: bold;
}
.charts {
.size(100%, calc(100% - 40px - 10px));
border: 1px solid #ddd;
.noData {
.size();
.flex(center, center);
font-size: 18px;
font-weight: bold;
}
}
}