@charset "utf-8";
/* 顶部 */
header{
    position: relative;
    background: #014328;
    z-index: 9;
    animation: 0.8s ease .3s 1 normal backwards running fadeInDown;
}
header .w1400{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    align-items: flex-end;
}
header>.w1400{
    padding: 0.345rem 0;
    position: relative;
}
.logo a{
    display: block;
    width: auto;
    height: auto;
}
.logo a img{
    display: block;
    width: auto;
    height: auto;
    max-height: 0.7rem;
}
.linkTop{
    position: absolute;
    right: 8px;
    top: 25px;
}
.linkTop a {
    color: #fff;
    display: block;
    font-size: 13px;
    float: left;
    line-height: 24px;
    margin-left: 24px;
    position: relative;
}

.linkTop a::before {
    display: block;
    content: "";
    width: 1px;
    height: 13px;
    background: #fff;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.linkTop a:first-of-type::before {
    display: none;
}
.linkTop a:first-of-type{
    margin-left:0;
}
/* 搜索 */
.search>div{
    width: 2.4rem;
    height: 0.36rem;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0.18rem;
    overflow: hidden;
    box-sizing: border-box;
}
.search .text {
    float: left;
    display: block;
    width: calc(100% - 0.38rem);
    outline: none;
    line-height: 0.34rem;
    height: 0.34rem;
    padding: 0 0.1rem 0 0.18rem;
    font-size: 0.14rem;
    margin: 0;
    background: transparent;
    color: #ffffff;
    box-sizing: border-box;
    border: none;
}
.search .submit {
    width: 0.38rem;
    height: 0.34rem;
    float: right;
    border: none;
    box-sizing: content-box;
    position:relative;
    background: url(../img/search.png) no-repeat left center;
}
.nav {
    width: 100%;
    background: #ffffff;
    z-index: 99;
    position: relative;
}
.nav ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav ul>li{
    position: relative;
    width: auto;
}
.nav ul>li>a{
    font-family: Microsoft YaHei;
    display: block;
    width: auto;
    font-size: 0.18rem;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 0.46rem;
    color: #373737;
    text-align: center;
    position: relative;
    white-space: nowrap;
    letter-spacing: 1px;
}
.nav ul>li>a.hover{
    font-weight: bold;
    color: #014328;
}
.nav ul>li ol{
    display: none;
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    z-index: 99;
    top: 100%;
    transform: translateX(-50%);
    min-width: 100%;
}
.nav ul>li ol li a{
    display: block;
    width: auto;
    font-size: 0.16rem;
    color: #fff;
    text-align: center;
    line-height: 0.24rem;
    padding: 0.1rem 0.2rem;
    background: #014328;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
    letter-spacing: 1px;
}
.nav ul>li>a:hover,.nav ul>li ol li a:hover{
    font-weight: bold;
}
footer{
    background: #014328;
    margin-top: 0.85rem;
}
footer .footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 0;
}
footer .footer .bq{
   
    color: rgba(255,255,255,0.5);
   margin-left: 10px;
}
@media only screen and (max-width: 1460px){
    .w1400{
        width: 100%;
        padding: 0 0.3rem;
        box-sizing: border-box;
    }
    header>.w1400{
        padding: 0.3rem;
    }
}