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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
| @charset "utf-8";
| /* CSS Document */
| table {
| border-collapse: collapse;
| border-spacing: 0;
| }
| td, th {
| padding: 0;
| }
|
| /*table css*/
| .reportTable {
| width: 190mm;
| margin: 0px auto;
| font-size: 12px;
| color: #121212;
| text-align: center;
| border-collapse: collapse;
| line-height: 22px;
| font-family: "宋体";
| }
| .reportTable tr.bgcolor{
| background:#f0f0f0;
| }
| .reportTable.tablew{
| width:290mm;
| }
| .reportTable.tablewid{
| width:150%;
| margin:0px;
| }
| .reportTable td {
| border: 1px solid #888;
| margin: 0;
| padding:5px;
| line-height: 22px;
| }
| .reportTable td.tdbg {
| background: #f0f0f0;
| }
| .reportTable td.nop{
| padding:0px;
| text-align:left;
| }
| .reportTable td.noptop{
| padding:0px 10px 0px 0px;
| border-top:none;
| text-align:right;
| }
| .reportTable td.noptop span{
| margin-right:10px;
| }
| .reportTable td.nopbot{
| padding:0px 0px 0px 3px;
| border-bottom:none;
| text-align:left;
| font-weight:bold;
| }
| .reportTable td.noptobo{
| height:50px;
| padding:12px 5px 17px;
| border-top:none;
| border-bottom:none;
| text-align:left;
| vertical-align:top;
| }
| .nameTr {
| border: 0px;
| }
| .nameTr td {
| border: 0px;
| color: #121212;
| line-height: 20px;
| padding:0px;
| text-align:left;
| font-size:12px;
| }
| .titleTr {
| border: 0px;
| }
| .titleTr td {
| border: 0px;
| font-size:24px;
| font-weight:bold;
| line-height:70px;
| }
| .reportTabletitle{
| text-align:center;
| font-size:24px;
| line-height:80px;
| font-family: "宋体";
| font-weight:bold;
| }
| .reportTable td font{
| font-size:12px;
| margin-right:1px;
| padding:4px 10px;
| }
| .reportTable td.checking,.reportTable td font.checking{
| background:#70eadf;
| }
| .reportTable td.have_checked,.reportTable td font.have_checked{
| background:#bde5ff;
| }
| .reportTable td.no_check,.reportTable td font.no_check{
| background:#bde5ff;
| color:#999;
| }
| .reportTable td.go_checking,.reportTable td font.go_checking{
| background:#f7fcd9;
| color:#999;
| }
|
|