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
| @charset "utf-8";
| /* CSS Document */
| .knowledge-box{
| width:1200px;
| margin-top: 0;
| margin-right: auto;
| margin-bottom: 0;
| margin-left: auto;
| }
| .knowledge-table{
| margin-bottom: 10px;
| }
| .knowledge-table th{
| width: 178px;
| border: 1px solid #d7eefe;
| background-color: #eef8fc;
| padding-left: 15px;
| padding-right: 15px;
| text-align: center;
| }
| .knowledge-table th span{
| font-size: 14px;
| font-weight: bold;
| color: #333;
| display:inline-block;
| line-height: 24px;
| }
| .knowledge-right{
| float: left;
| height: auto;
| width: 1008px;
| border: 1px solid #e5e5e5;
| margin-left: 10px;
| }
| .knowledge-right-box{
| background-color: #f3f3f3;
| width: 1008px;
| border-bottom: 1px dashed #ddd;
| float: left;
| }
| .knowledge-right-box:last-child{
| border-bottom:0;
| }
| .subheadings{
| width: 160px;
| float: left;
| text-align: center;
| padding-top: 12px;
| font-size: 14px;
| color: #333;
| line-height: 12px;
| }
| .subheadings span{
| margin-left: 5px;
| margin-right: 5px;
| }
| .three-title{
| width:820px;
| height:14px;
| padding: 11px 5px;
| float:right;
| background-color: #fff;
|
| }
| .three-title a{
| font-size: 12px;
| color:#333;
| text-decoration: none;
| line-height: 14px;
| padding: 0 10px;
| float:left;
| font-weight: normal;
| border-right: solid 1px #ddd;
| }
| .three-title a:hover{
| color: #007cce;
| }
|
|