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
| .tablebox{
| width: 1853px;
| height: 470px;
| overflow: hidden;
| position: relative;
| /* background-color: rgba(6,26,103,1); */
|
| }
|
|
| .title1{width: 100%; height: 60px; font-size: 16px; color: #ff9000; line-height: 60px; padding-left: 20px; background: url(../images/title_icon.png) left center no-repeat; float: left;}
|
| .tbl-header {
| width: 100%;
| position: absolute;
| top: 0;
| left: 0;
| z-index: 999;
| }
|
| .tbl-body {
| width: 100%;
| position: absolute;
| top: 0;
| left: 0;
| }
| .tablebox table {
| width: 1853px;
| }
|
| .tablebox table th,
| .tablebox table td {
| font-size: 20px;
| /* color: #7ca6f4; */
| color: #FFFFFF;
| line-height: 45px;
| text-align: center;
| }
|
| .tablebox table tr th {
| background-color: #1f1f9c;
| cursor: pointer;
| }
|
| .tablebox table tr td {
| background-color: transparent;
| }
|
| .tbl-body tr:nth-child(even) td,.tbl-body1 tr:nth-child(even) td {
| background-color: rgba(31, 31, 156, .5);
| }
|
| .tablebox table tr td span,
| .tablebox table tr td span {
| font-size: 16px;
| }
|
|