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
84
| @charset "utf-8";
|
| body{
| margin:0;
| padding:0;
| font-size:12px;
| }
| #printContent{
| width:100%;
| }
| .buttonright{
| text-algin:right;
| padding-right:10px;
| }
|
| #table_head{
| width:100%;
| font-size:13px;
| text-align: left;
| }
| #table_head .fengeTd{
| height:5px;
| }
| #table_head .countPage{
| float: left;margin-left: 40px;
| }
| #table_head .headTitle{
| font-size:25px;
| font-weight:700;
| margin-right:15px;
| margin-top:7px;
| }
|
| #table-content,#table_subtotal{
| width:100%;
| text-align: center;
| table-layout:fixed;
| }
| #table-content th{
| /*border:1px solid #919191;*/
| border:1px solid #000;
| height:26px !important;
| font-size:14px;
| font-weight:700;
| }
|
| #table-content td{
| /*border:1px solid #919191;*/
| border:1px solid #000;
| height:24px !important;
| font-size:13px;
| font-weight:normal;
| }
|
| #table-content,#table_subtotal {
| border-collapse: collapse;
| }
|
| #table_subtotal td{
| /*border:1px solid #919191;*/
| border:1px solid #000;
| height:24px !important;
| font-size:13px;
| font-weight:normal;
| }
|
|
| #table_foot{
| width:100%;
| font-size:13px;
| text-align: left;
| margin-top:5px;
| }
|
|
| .tdright{
| text-align:right;
| }
| .tdleft{
| text-align:left;
| }
| .tdcenter{
| text-align:center;
| }
|
|