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
| .content-box {
| padding-top: 48px;
| max-width: calc(100% - 235px);
| transition: max-width 0.2s;
| .content-header {
| width: 100%;
| height: 100%;
| .ant-tabs .ant-tabs-top-content.ant-tabs-content-animated {
| transition: margin-left 0s cubic-bezier(0.645, 0.045, 0.355, 1);
| }
| .ant-tabs-bar { // 去除标签页header与content之间的间隙
| margin-bottom: 0;
| }
| .ant-tabs-tab {
| padding: 18px 16px 6px;
| cursor: default;
| span i {
| position: relative;
| left: 7px;
| top: -6px;
| font-size: 10px;
| margin: 0px;
| cursor: pointer;
| }
| span.tab-name {
| cursor: pointer;
| }
| }
| iframe {
| width: 100%;
| height: calc(100vh - 115px);
| overflow-y: scroll;
| border: 0;
| margin-top: 16px;
| }
| }
| .main-copy {
| position: fixed;
| z-index: 2;
| bottom: 75px;
| right: 30px;
| width: 40px;
| height: 40px;
| i {
| font-size: 18px;
| }
| }
| .main-copy.ifr-copy {
| bottom: 65px;
| right: 40px;
| width: 30px;
| height: 32px;
| border: 2px solid #687991;
| opacity: 0.6;
| i {
| font-size: 14px;
| color: #687991;
| }
| }
| .main-copy.ifr-copy:hover {
| opacity: 1;
| }
| }
| .content-box.collapsed {
| max-width: calc(100% - 80px);
| }
| .ant-message {
| top: 50px;
| z-index: 1080;
| }
|
|