/* 页面头部 */
#header {
    width: 100%;
    min-width: 1047px;
    height: 64px;
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 2000;
    border-bottom: 1px solid #e5e5e5;
}

#header > .wrap {
    width: 100%;
    /*min-width: 1047px;*/
    margin: 0 20px;
    position: relative;
}

#header .logo {
    float: left;
    margin-top: 11px;
}

#header .logo img {
    display: block;
    height: 38px;
}

#header .nav {
    float: left;
    margin-left: 30px;
}

#header .nav > li {
    float: left;
    height: 60px;
    line-height: 60px;
    margin-right: 18px;
}

#header .nav > li:last-child {
    margin: 0;
}

.nav .help {
    position: relative;
}

.nav .current {
    border-bottom: 4px solid #faa801;
    position: relative;
    color: #000;
}

.nav .current:before,
.nav .current:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #faa801;
    bottom: -4px;
}

.nav .current:before {
    left: -2px;
}

.nav .current:after {
    right: -2px;
}

#header .nav a {
    font-size: 16px;
    color: #616161;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    outline: none;
    position: relative;
    display: block;
    height: 100%;
    padding: 0 8px;
}

#header .nav a:hover {
    /*color: #000;*/
    text-decoration: none;
}

#header .nav a.current {
    color: #212121;
    /*text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
}
