/* 导航部分开始 */
.navbar{
    width: 100%;
    min-width: 1400px;
    height: 110px;
    background: white;
    border-bottom: none;
}

.fix-width{
    width: 1400px;
    margin: 0 auto;
}

.nav-left{
    width: 379px;
    height: 50px;
}

.nav-right{
    width: calc(100% - 379px);
    height: 111px;
    box-sizing: border-box;
    padding-top: 10px;
}

.nav-top{
    justify-content: flex-end;
}

.search-wrap{
    width: 215px;
    height: 32px;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
}

.search-wrap .seach{
    width: 100%;
    height: 32px;
}


.search-wrap .seach input{
    width: 100%;
    height: 32px;
    border: none;
    outline: none;

    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    box-sizing: border-box;
    padding: 0 60px 0 15px;
    background: #E4E7EA;
    color: #909396;
}

.search-wrap input::-webkit-input-placeholder {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #909396;
}

.sousuo{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    right: 20px;
    /*transform: translateY(-50%);*/
}

.sousuo input{
    width: 20px;
    height: 20px;
    border: none;
    outline: none;
    background: url(/static/home/img/index_top1.png) no-repeat;
    background-size: 100%;
}

.menber-login{
    width: 103px;
    height: 32px;
    background: #C8001B;
    border-radius: 3px;
    margin-right: 10px;
    justify-content: center;
}

.menber-login img{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.menber-login span{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
}

.download{
    width: 135px;
    height: 32px;
    background: #E4E7EA;
    border-radius: 3px;
    text-align: center;
    margin-right: 10px;
}

.download span{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 32px;
}

.nav-bot{
    margin: 15px 0 0 2%;
}

.nav-bot ul{
    justify-content: space-between;
}

.nav-bot>ul>li{
    position: relative;
}

.nav-bot>ul>li>a{
    display: flex;
    line-height: 50px;
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}

.topActive{
    font-weight:bold;
    border-bottom:2px solid #C8001B;
    color:#C8001B;
}

.dropdown{
    display: none;
    width: 163px;
    height: auto;
    background: #FFFFFF;
    border-radius: 0px 0px 5px 5px;
    position: absolute;
    top: 54px;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown li{
    
}

.dropdown li a{
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #393A45;
    box-sizing: border-box;
    padding-left: 20px;
}

.nav-active{
    background: #C8001B;
}

/* 导航部分结束 */