1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .pdf-B5 {
- max-width: 155.7mm;
- padding: 0 6mm 0 10mm;
- font-family: 'SimSun';
- font-size: 9pt;
- zoom: 0.74;
- }
- .clearfix:after {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
- .fl {
- float: left
- }
- .fr {
- float: right
- }
- /* 细线 */
- .thinline:after {
- display: block;
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- /* z-index: -1; */
- width: 200%;
- height: 200%;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- -webkit-transform: scale(0.5, 0.5);
- transform: scale(0.5, 0.5);
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- table {
- border: 1px solid #cccccc;
- }
- table td{
- border-right: 1px solid #cccccc;
- border-bottom: 1px solid #cccccc;
- }
- table td:last-child{
- border-right: none;
- }
- /* table tr {
- display: block;
- display: -webkit-flex;
- display: flex;
- box-sizing: border-box;
- page-break-inside: avoid !important;
- } */
- /* table tr td {
- box-sizing: border-box;
- vertical-align: middle;
- position: relative;
- } */
- /* table tr td:nth-child(n+2) {
- -webkit-flex: 1;
- flex: 1;
- } */
- /* table tr td:after {
- display: block;
- content: "";
- position: absolute;
- left: 0;
- top: 0;
- width: 200%;
- height: 200%;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- -webkit-transform: scale(0.5, 0.5);
- transform: scale(0.5, 0.5);
- border: 1px solid #999999;
- } */
- .avoid-page {
- page-break-inside: avoid !important;
- }
|