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
| .print-template {
| overflow-x: hidden;
| min-height: 100%;
| padding: 48px 250px 0px 240px;
|
| .print-header-container {
| position: fixed;
| z-index: 1060;
| left: 0;
| top: 0;
| font-weight: bold!important;
| font-size: 20px;
| width: 100%;
| height: 48px;
| line-height: 48px;
| text-align: center;
| color: #fff;
| background: #001529;
| }
| .tools {
| width: 240px;
| position: fixed;
| top: 47px;
| left: -1px;
| bottom: 0px;
| .ant-card {
| height: 100%;
| .ant-card-head {
| background: #1890ff;
| color: #ffffff;
| }
| .ant-card-head-title {
| padding: 10px 0;
| }
| .ant-card-body {
| padding: 24px 12px;
| }
| }
| }
| .setting {
| width: 250px;
| position: fixed;
| top: 47px;
| right: -1px;
| bottom: 0px;
| .ant-card {
| height: 100%;
| .ant-card-head {
| background: #1890ff;
| color: #ffffff;
| }
| .ant-card-head-title {
| padding: 10px 0;
| }
| .ant-card-body {
| padding: 24px 12px;
| }
| }
| }
| }
|
|