body{
    font-size: 16px;
}
a{
    color: #333;
}
.flexbox{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.logos img{
    width: 3.2rem;
    margin-top: 0.06rem;
    margin-left: 0.37rem;
}
.header{
    position: fixed;
    z-index: 9;
    width: 100%;
    background-color: #FFFFFF;
    left: 0;
    top: 0;
}
.navbar-collapse{
    margin-left: 0.6rem;
}
.navbar-nav li{
    /*margin-right: 0.8rem;*/
    margin-right: 0.4rem;
    position: relative;
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.2rem;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.navbar-nav li:hover{
    background-color: #195AA0;
    color: #FFFFFF;
}
.navbar-nav li:hover a{
    color: #FFFFFF;
    height: 0.6rem;
    line-height: 0.6rem;
    display: block;
}
.navbar-nav li .child{
    position: absolute;
    width: 4rem;
    background-color: red;
    left: 50%;
    z-index: 999;
    margin-left: -2rem;
}
.navbar-nav li .active:after{
    content: '';
    display: block;
    width: 0.8rem;
    height: 0.04rem;
    background: #195AA0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.navbar-nav li a{
    font-size: 0.18rem;
    font-weight: 600;
}
.search-box{
    width: 1.5rem;
    height: 0.52rem;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    border-radius: 0.33rem;
    background: rgba(245,245,245,0.39);
    border: 1px solid rgba(25, 90, 160, 0.13);
    cursor: pointer;
}
.search-box .search-icon{
    width: 0.22rem;
    height: 0.22rem;
    margin-left: 0.3rem;
}
.search-box .search-txt{
    margin-left: 0.1rem;
    color: rgba(25, 90, 160, 0.32);
    font-size: 0.18rem;
}

@media screen and (min-width: 1023px){
    .navbar-collapse-phone{
        display: none;
    }
    .navbar-collapse{
        display: block;
    }
}

@media screen and (max-width:1023px){
    .navbar{
        position: fixed;
        height: 1rem;
        left: 0;
        top: 0;
        z-index: 9;
        width: 100%;
        background-color: #FFFFFF;
    }
    .logos img{
        width: 3rem;
        margin-left: 0.1rem;
    }
    .navbar-toggle{
        height: 0.3rem;
        display: flex !important;
        display: -webkit-flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        flex-direction: column;
        /*margin-left: auto;*/
        margin-right: 0.3rem;
    }
    .navbar-toggle .icon-bar{
        width: 0.42rem;
        height: 0.04rem;
        background: #000;
        display: block;
    }
    .navbar-collapse{
        margin-left: 60px;
        display: none;
    }
    .navbar-collapse-phone{
        position: fixed;
        top: 1rem;
        left: 0;
        z-index: 99;
        border-top: 1px solid #E6E6E6;
        width: 100%;
        /*background-color: #FFFFFF;*/
        background-color: #004A91;
    }
    .navbar-nav{
        display: block !important;
    }
    .navbar-nav li{
        position: relative;
        padding: 0.3rem;
    }
    .navbar-nav li .active:after{
        display: none;
    }
    .navbar-nav li a{
        font-size: 0.28rem;
        display: block;
        width: 100%;
        color: #FFFFFF;
    }
    .navbar-nav li .active{
        /*color: #195AA0;*/
        font-weight: bold;
    }
    .search-box{
        margin-left: auto;
        margin-right: 0.3rem;
    }
}