| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * 导出预览打印样式
- * */
- /*设置打印样式 二号 22pt 小二 18pt 三号 16pt 小三 15pt 四号 14pt 小四 12pt 五号 10.5pT*/
- #printPreview {
- padding: 30px 0 0 0!important;
- margin: 0!important;
- }
- .headerAlign h3 div:nth-of-type(1) {
- color: #111!important;
- font-size: 16pt!important;
- /*三号*/
- margin-left: 110px;
- font-family: "仿宋_GB2312"!important;
- }
- .tableLists tr:nth-of-type(1),
- .tableLists tr:nth-of-type(2),
- .tableLists tr:nth-of-type(3),
- .tableLists tr:nth-of-type(4),
- .tableLists tr:nth-of-type(9),
- .tableLists tr:nth-of-type(10) {
- height: 43px!important;
- }
- .tableLists tr:nth-of-type(5) {
- height: 246px!important;
- }
- .tableLists tr:nth-of-type(6) {
- height: 188px!important;
- /*208*/
- }
- .tableLists tr:nth-of-type(7) {
- height: 123px!important;
- /*143*/
- }
- .tableLists tr:nth-of-type(8) {
- height: 64px!important;
- /*84*/
- }
- @page {
- size: A4 portrait;
- table{
- page-break-after: avoid;/*避免表格断开*/
- page-break-inside: avoid;/*避免文字断裂*/
- }
- }
|