/*顶部菜单*/
.header-wrapper {
    height: 150px;
    background: url(../images/background.jpg);
}


.header-container {
    width: 1200px;
    margin: 0px auto;
    padding: 30px 0px 30px 0px;
}

.Search {
    float: right;
    margin-top: 30px;
}

.Search .Searchico {
    cursor: pointer;
    display: none;
    color: #113a7e;
}

.Search .Searchico .icongb1 {
    display: none;
}

.Search .Searchico.on .icongb1 {
    display: block;
}

.Search .Searchico.on .iconso {
    display: none;
}

.Search .iconfont {
    font-size: 22px;
}

.Search .searchbox {
    width: 282px;
    position: relative;
}

.Search .searchbox .input {
    background: #fff;
    width: 100%;
    height: 40px;
    border: 1px solid #dfe8f0;
    border-radius: 3px;
    height: 40px;
    text-indent: 1em;
    background: #f6f8fa;
}

.Search .searchbox .input::-webkit-input-placeholder {
    color: #666666;
}

.Search .searchbox .btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #005bac;
    border: none;
    cursor: pointer;
}

.nav {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: #005bac;
    font-size: 16px;
}

.nav .menu {
    width: 1200px;
    margin: 0 auto;
}

.nav .menu>li {
    float: left;
    width: 10%;
    text-align: center;
    transition: all .3s;
}

.nav .menu>li:hover {
    background-color: #439be7;
}

.nav .menu>li>a {
    display: block;
    line-height: 60px;
    color: #fff;
}

.menu>li:hover .sub-menu {
    display: block;
}

.nav .sub-menu {
    display: none;
    width: 100%;
    position: relative;
    z-index: 999;
    background-color: rgba(250, 250, 250);
    font-size: 14px;
    transition: all .3s;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.nav .menu>li .sub-menu:hover {
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.15);
}


.nav .sub-menu>li {
    display: block;
    min-height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #eee;
}

.nav .sub-menu>li:hover {
    background-color: #fff;
}

.nav .sub-menu>li>a {
    display: block;
    width: 100%;
}