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
| /* padding */
| .pt4 {
| padding-top: 4px;
| }
| .pr16 {
| padding-right: 16px;
| }
| /* wdith */
| .w80 {
| width: 80px;
| }
| /* table layout */
| .table-layout {
| width: 100%;
| display: table;
| }
| .table-layout .table-row {
| display: table-row;
| }
| .table-row .table-cell {
| display: table-cell;
| }
| .table-cell.text-right {
| text-align: right;
| }
|
| /* 电路图 */
| .diagram-content {
| position: relative;
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
| .diagram-stc {
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
| .diagram-flush {
| position: absolute;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| z-index: 9;
| overflow: hidden;
| }
| .diagram-stc canvas,
| .diagram-flush canvas {
| width: 100%;
| height: 100%;
| -o-object-fit: contain;
| -webkit-object-fit: contain;
| object-fit: contain;
| }
|
|