zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
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
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
 
* {
    margin: 0;
    padding: 0;
}
 
.realtime-equipment-history-box {
    padding: 10px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color:#677788;
    font-size: 12px;
}
 
.realtime-equipment-history-box .table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
 
.realtime-equipment-history-box .table td,
.realtime-equipment-history-box .table th {
    padding: 0 4px;
    border: 1px solid  rgba(231, 234, 243, 0.7);
    height: 36px;
    line-height: 36px;
    text-align: center;
    word-break:break-all;
}
 
.realtime-equipment-history-box .table thead tr th:first-child,
.realtime-equipment-history-box .table tbody tr td:first-child,
.realtime-equipment-history-box .table thead tr th:last-child,
.realtime-equipment-history-box .table tbody tr td:last-child {
    width: 56px;
}
 
.realtime-equipment-history-box .table thead tr th:nth-child(3),
.realtime-equipment-history-box .table tbody tr td:nth-child(3) {
    width: 68px;
}
 
.realtime-equipment-history-box .table thead tr th:nth-child(4),
.realtime-equipment-history-box .table tbody tr td:nth-child(4) {
    width: 124px;
}
 
.realtime-equipment-history-box .table thead tr th:nth-child(7),
.realtime-equipment-history-box .table tbody tr td:nth-child(7) {
    width: 56px;
}