index.less
1.1 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
80
81
82
83
.viewTable {
width: 100%;
height: auto;
}
.viewTableHide {
display: none;
}
.tabs {
height: auto;
flex: 1;
:global {
.ant-tabs-tabpane {
height: 100%;
}
}
}
.tabsHide {
:global {
.ant-tabs-nav {
display: none;
}
}
}
.btns {
margin-right: 20px;
width: 210px;
display: flex;
justify-content: space-between;
:global {
button {
border-radius: 5px;
}
button:first-child {
background-color: #53b637;
border-color: #53b637;
}
}
}
.process {
width: 100%;
height: 100%;
background: #25292e;
color: #e57c84;
display: flex;
.processContent {
flex: 1;
width: auto;
height: 100%;
overflow: auto;
border-right: 1px solid #d9d9d9;
}
.processImg {
width: 400px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
// 图片居中,长宽自适应
img {
max-width: 100%;
max-height: 100%;
}
}
}
.fullScreen {
position: absolute;
top: 11.5px;
right: 126px;
background: transparent !important;
border: transparent !important;
}