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
| /* 默认表格样式 */
| table {
| border-collapse : collapse;
| /* margin : 0 auto; */
| text-align : center;
| /* vertical-align : middle; */
| table-layout : fixed;
| }
|
| table td,
| table th {
| border : 1px solid #cad9ea;
| color : #666;
| height : 25px;
| white-space: center;
| word-wrap : break-word;
| word-break : break-all;
| }
|
| table thead th {
| background-color : #CCE8EB;
| /* width : 100px; */
| }
|
| table tr:nth-child(odd) {
| background: #fff;
| }
|
| table tr:nth-child(even) {
| background: #F5FAFA;
| }
|
| .trc:hover {
| background-color: #deeaeb;
| }
|
|