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
.header {
background: #2b3032;
height: 108px;
}
.header .logo {
margin-top: 21px;
}
.nav {
font-size: 14px;
text-align: center;
height: 56px;
overflow: visible;
}
.nav .link {
position: relative;
display: inline-block;
width: 16.66%;
vertical-align: top;
background: #fff;
z-index: 1;
float: left;
}
.nav .link:last-child .border-rt {
border: 0;
}
.nav .link:hover .inner {
display: block;
}
.nav .link>a {
display: block;
height: 56px;
line-height: 56px;
font-size: 16px;
font-weight: bold;
}
.nav .link>a .border-rt {
display: inline-block;
width: 100%;
border-right: solid 1px #808080;
height: 16px;
line-height: 16px;
vertical-align: middle;
}
.nav .link .inner {
display: none;
padding-bottom: 8px;
}
.nav .link .inner a {
display: block;
border-top: solid 1px #ccc;
height: 33px;
line-height: 33px;
margin: 0 25px;
}
.nav .link .inner a.active {
color: #a98058;
}