pdf.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .pdf-B5 {
  2. max-width: 155.7mm;
  3. padding: 0 6mm 0 10mm;
  4. font-family: 'SimSun';
  5. font-size: 9pt;
  6. zoom: 0.74;
  7. }
  8. .clearfix:after {
  9. content: ".";
  10. display: block;
  11. height: 0;
  12. clear: both;
  13. visibility: hidden;
  14. }
  15. .fl {
  16. float: left
  17. }
  18. .fr {
  19. float: right
  20. }
  21. /* 细线 */
  22. .thinline:after {
  23. display: block;
  24. content: "";
  25. position: absolute;
  26. left: 0;
  27. top: 0;
  28. /* z-index: -1; */
  29. width: 200%;
  30. height: 200%;
  31. -webkit-transform-origin: 0 0;
  32. transform-origin: 0 0;
  33. -webkit-transform: scale(0.5, 0.5);
  34. transform: scale(0.5, 0.5);
  35. }
  36. table {
  37. border-collapse: collapse;
  38. border-spacing: 0;
  39. }
  40. table {
  41. border: 1px solid #cccccc;
  42. }
  43. table td{
  44. border-right: 1px solid #cccccc;
  45. border-bottom: 1px solid #cccccc;
  46. }
  47. table td:last-child{
  48. border-right: none;
  49. }
  50. /* table tr {
  51. display: block;
  52. display: -webkit-flex;
  53. display: flex;
  54. box-sizing: border-box;
  55. page-break-inside: avoid !important;
  56. } */
  57. /* table tr td {
  58. box-sizing: border-box;
  59. vertical-align: middle;
  60. position: relative;
  61. } */
  62. /* table tr td:nth-child(n+2) {
  63. -webkit-flex: 1;
  64. flex: 1;
  65. } */
  66. /* table tr td:after {
  67. display: block;
  68. content: "";
  69. position: absolute;
  70. left: 0;
  71. top: 0;
  72. width: 200%;
  73. height: 200%;
  74. -webkit-transform-origin: 0 0;
  75. transform-origin: 0 0;
  76. -webkit-transform: scale(0.5, 0.5);
  77. transform: scale(0.5, 0.5);
  78. border: 1px solid #999999;
  79. } */
  80. .avoid-page {
  81. page-break-inside: avoid !important;
  82. }