ad5081d3
孙向锦
初始化项目
|
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
@charset "utf-8";
/*
=======================================================================
General Rules
=======================================================================
*/
#wrapper_sec {
width:1020px;
margin:0px auto;
z-index:2;
float: left;
}
* {
padding:0px;
margin:0px;
}
/*
=======================================================================
Banner Rules
=======================================================================
*/
#banner {
width:1010px;
height:510px;
padding:8px;
background-color:#111111;
border:#f9f9f9 solid 10px;
border-bottom:none;
}
#banner .leftsecbanner{
width:660px;
height:510px;
overflow:hidden;
float:left;
}
#banner object{
z-index:1;
position:absolute;
}
#banner #paginate-slider2 {
width:309px;
height:490px;
float:right;
background-color:#202020;
}
#banner ul.idTabs{
float:left;
list-style:none;
border-bottom:#4b7eff solid 2px;
margin:2px 0px 0px 2px;
}
#banner ul.idTabs li{
float:left;
cursor:pointer;
}
#banner ul.idTabs li a{
float:left;
display:inline-block;
background-image:url(../images/tab.gif);
background-repeat:no-repeat;
background-position:left;
height:36px;
padding-left:20px;
font-size:12px;
color:#fff;
cursor:pointer;
}
#banner ul.idTabs li a span{
float:left;
display:inline-block;
background-image:url(../images/tab.gif);
background-repeat:no-repeat;
background-position:right;
height:36px;
padding:10px 20px 0px 0px;
cursor:pointer;
}
#banner ul.idTabs li a:hover{
background-image:url(../images/tab_rol.gif);
}
#banner ul.idTabs li a:hover span{
background-image:url(../images/tab_rol.gif);
}
#banner ul.idTabs li a.selected{
background-image:url(../images/tab_rol.gif);
}
#banner ul.idTabs li a.selected span{
background-image:url(../images/tab_rol.gif);
}
#banner .tabssection{
width:100%;
float:left;
}
#banner .tabssection a.toc{
float:left;
display:inline-block;
padding:10px 8px 10px 2px;
}
#banner .tabssection a.toc:hover{
background-image:url(../images/slider_hover.gif);
background-repeat:repeat-x;
background-color:#0a0a0a;
}
#banner .tabssection a.selected{
background-image:url(../images/slider_hover.gif);
background-repeat:repeat-x;
background-color:#0a0a0a;
}
#banner .tabssection a.toc span.thumb{
float:left;
border:#8f8f8f solid 1px;
background-color:#f7f7f7;
padding:1px;
margin:0px 10px;
}
#banner .tabssection a.toc span.desc{
float:right;
width:175px;
}
#banner .tabssection a.toc span.title{
font-size:12px;
color:#fefefe;
width:180px;
display:inline-block;
margin-bottom:10px;
}
#banner .tabssection a.toc span.time{
color:#666666;
float:left;
width:39px;
height:16px;
padding-top:2px;
display:inline-block;
background-image:url(../images/time1.png);
font-size:11px;
text-align:center;
}
#banner .tabssection a.toc span.channel{
font-size:12px;
color:#666666;
float:left;
margin-left:10px;
padding-top:1px;
}
/*
=======================================================================
Content Section
=======================================================================
*/
#content_sec {
width:1000px;
float:left;
background-color:#f9f9f9;
border:#f9f9f9 solid 10px;
}
|