default.css
3.6 KB
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
163
164
165
166
167
168
169
170
171
.banner{
overflow: hidden;
background-repeat: no-repeat;
-webkit-background-size: cover;
background-size: cover;
background-position: 50% 50%;
width:100%;
height: 300px;
position: relative;
}
.inside{
padding-top: 50px;
}
.inside .inside-left{
width: 25%;
float: left;
}
.inside .inside-left .top{
height: 60px;
background: #2aad6f;
color: #ffffff;
text-align: center;
line-height: 60px;
font-size: 24px;
font-weight: bold;
}
.inside .inside-left ul{
margin: 0;
list-style: none;
padding: 0;
}
.inside .inside-left ul li{
padding: 0 10px;
margin-top: 10px;
border: 1px solid #ededed;
background: #ffffff;
height: 35px;
line-height: 35px;
}
.inside .inside-left ul li a{
display: inline-block;
width: 100%;
height: 100%;
font-weight: bold;
color: #333333;
}
.inside .inside-left ul li:hover,
.inside .inside-left ul li.active{
background: #2aad6f;
}
.inside .inside-left ul li:hover a,
.inside .inside-left ul li.active a{
color: #ffffff;
}
.inside .inside-right{
width: 75%;
float: left;
}
.inside .inside-right .detail{
padding-left: 20px;
}
.inside .inside-right .detail .title{
height: 40px;
border-bottom: 1px solid #ededed;
margin-bottom: 20px;
}
.inside .inside-right .detail .title h3{
margin: 0;
}
.inside .inside-right .detail .title small{
float: right;
}
.inside .inside-right .detail .title small a{
color: #7b7b7b;
}
.inside .inside-right .detail .title small a:hover{
color: #1f8657;
}
.inside .inside-right .detail .preview{
}
.inside .inside-right .detail .preview .item{
cursor: pointer;
margin-bottom: 50px;
position: relative;
height: 150px;
padding-bottom: 10px;
border-bottom: 1px solid #ccc;
}
.inside .inside-right .detail .preview .item img{
max-width: 200px;
}
.inside .inside-right .detail .preview .item .posth4{
position: absolute;
left: 220px;
top: 0;
margin: 0;
font-size: 18px;
}
.inside .inside-right .detail .preview .item .posth4 a{
color: #1f8657;
}
.inside .inside-right .detail .preview .item .posth4 a:hover,
.inside .inside-right .detail .preview .item .posth4 a:visited{
color: #1f8657;
}
.inside .inside-right .detail .preview .item .postdesc{
position: absolute;
left: 220px;
top: 30px;
line-height: 22px;
}
.inside .inside-right .detail .preview p,
.inside .inside-right .detail .preview li{
line-height: 30px;
margin: 0.5em auto;
}
.inside .inside-right .detail .preview li{
line-height: 26px;
}
.inside .inside-right .detail .preview img{
max-width: 100%;
}
.inside .inside-right .detail .preview .mp4 video,
.inside .inside-right .detail .preview .mp4 object,
.inside .inside-right .detail .preview .mp4 object img{
width: 100%;
height: auto;
}
.inside .inside-right .detail .preview form .field{
margin: auto auto 20px auto;
}
.inside .inside-right .detail .preview form .field label{
width: 70px;
display: inline-block;
vertical-align: middle;
overflow: hidden;
font-size: 14px;
padding: 0 20px 0 0;
}
.inside .inside-right .detail .preview form .field input,
.inside .inside-right .detail .preview form .field textarea{
width: 320px;
line-height: 20px;
border: 1px solid #2aad6f;
font-size: 12px;
padding: .5em .8em;
border-radius: 2px;
vertical-align: middle;
background: #ffffff;
}
.inside .inside-right .detail .preview form .field input.captcha{
width: 160px;
}
.inside .inside-right .detail .preview form .field input.submit{
width: 120px;
padding: 0 30px;
border: none;
color: #fff;
background-color: #2aad6f;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
line-height: 34px;
font-size: 14px;
cursor: pointer;
}
.inside .inside-right .detail .preview form .field textarea{
height: 120px;
resize: none;
}