@charset "utf-8";

.nav1 {

    line-height: 60px;
    height: 62px;
    background: #004c92;
    border-bottom: 2px #003b82 solid;
}
.fixednav{
    position:fixed;/*固定作用*/
    top:0px;
    /*ie6下样式，加下划线表示只针对ie6 的hack */
    _position:absolute;/* 把导航栏位置定义为绝对位置  关键*/
    _top:expression(documentElement.scrollTop + "px"); /* 把导航栏位置放在浏览器垂直滚动条的顶端  关键 */
    z-index:9999; /* 让导航栏浮在网页的高层位置，遇到flash和图片时候也能始终保持最外层 */
    font-size: 16px;
}
.nav1 li {
    float: left;
    line-height: 60px;
    position: relative;
    z-index: 201;
    width: 12.5%;
    text-align: center;
}
.nav1 li > a {
    color: #fff;
    display: block;
}
.nav1 li .child {
    top: 60px;
    left: 0;
    width: 100%;
    display: none;
    padding: 10px 0 10px 0;
    position: absolute;
    z-index: 209;
    background-color: #023564;
    background: rgba(2, 53, 100, 0.95);
    font-size: 14px;
    border-top: 2px #004c92 solid;
    text-align: left;
}
.nav1 li .child div {
    position: relative;
}
.nav1 li .child div:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../../images/all-icon.png) no-repeat 0 -720px;
    position: absolute;
    left: 20px;
    top: 10px;
    display: none;
}

.nav1 li div.child-product div:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../../images/all-icon.png) no-repeat 0 -720px;
    position: absolute;
    left: 11px;
    top: 10px;
    display: none;
}

.nav1 li div.child-product a {
    color: #fff;
    display: block;
    line-height: 43px;
    height: 43px;
    overflow:hidden;
    font-weight: normal;
    margin: 0 7px 0 7px;
    padding: 0 0 0 28px;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.nav1 li .child div:after {
    content: "";
    display: block;
    width: 100%;
    max-width: 136px;
    background: #aeda7f;
    height: 1px;
    margin: 0px 7px 0 7px;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.nav1 li .child div:last-child:after {
    display: none;
}
.nav1 li .child div:hover {
    background: #004c92;
    color: #fff;
}
.nav1 li .child div:hover:before {
    display: block;
}
.nav1 li .child a {
    color: #fff;
    display: block;
    line-height: 43px;
    height: 43px;
    overflow:hidden;
    font-weight: normal;
    margin: 0 7px 0 7px;
    padding: 0 0 0 35px;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.nav1 li:hover {
    z-index: 201;
}
.nav1 li:hover:after {
    width: 100%;
}
.nav1 li:hover > a {
    background: #023564;
    color: #fff;
}
.nav1 li.active {
    z-index: 201;
}
.nav1 li.cur > a {
    background: #023564;
    color: #fff;
}
.nav1 li:hover .child {
    display: block;
}
.nav1 a:hover {
    color: #004c92;
}


