#header{
    min-width: 1200px;
    /*padding: 0 30px;*/
    box-sizing: border-box;
    background-color: #3374EA;
    /*background-size: 100% 100%;*/
    position: relative;
}
#header .bg-img{
    width: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.header-container{
    width: 1200px;
    height: 230px;
    color: #ffffff;
    margin: 0 auto 30px;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.header-container .logo{
    width: 60px;
    height: 60px;
    margin-right: 16px;
}
.header-container .title-box{
    height: 60px;
    flex-direction: column;
    justify-content: space-between;
}
.header-container .title{
    line-height: 3.2rem;
    font-size: 3.2rem;
    font-weight: bold;
}
.header-container .subtitle{
    line-height: 1.4rem;
    font-size: 1.4rem;
}
.header-container .search-texts-box{
    height: 60px;
    flex-direction: column;
    justify-content: space-between;
}
.header-container .mobile-web-qrcode-container{
    width: 100px;
    text-align: right;
    cursor: pointer;
    position: relative;
}
.header-container .mobile-web-qrcode-container .mobile-web-qrcode{
    display: block;
    width: 100px;
    border-radius: 5px;
    overflow: hidden;
    /*position: absolute;*/
    /*z-index: 1;*/
    /*top: 30px;*/
    /*left: 0;*/
}
.header-container .mobile-web-qrcode-container:hover .mobile-web-qrcode{
    display: block;
}
#header .search-texts{
    line-height: 1.6rem;
    font-size: 1.6rem;
    color: #FFFFFF;
    opacity: 0.75;
}
#header .search-input-box{
    border: 1px solid #eee;
    box-sizing: border-box;
    position: relative;
}
#header .search-input-box .search-icon{
    width: 22px;
    color: #2B68C9;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
}
#header .search-input{
    width: 100%;
    height: 34px;
    border-radius: 1px;
    box-shadow: none;
    border: none;
    padding: 0 50px 0 12px;
    box-sizing: border-box;
}

.header-container .nav{
    height: 45px;
    line-height: 45px;
}
.header-container .nav .item{
    /*margin-right: 10px;*/
    background-color: #0776E9;
    justify-content: center;
}
/*.header-container .nav .item:last-child{*/
/*    margin-right: 0;*/
/*}*/
.header-container .nav .item .icon{
    width: 26px;
    height: 26px;
    margin-right: 8px;
    transform: translateX(-8px);
}
.header-container .nav .item .label{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    transform: translateX(-8px);
}
.header-container .nav .item.active,.header-container .nav .item:hover{
    background-color: rgba(51, 153, 255, 1);
}

.header-container .nav .item:hover .popover{
    display: block;
}
.header-container .nav .popover{
    display: none;
    color: #333333;
    padding: 20px 30px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 10px 10px 0 rgba(60,96,130,.2);
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}




.header-container-mobile{
    position: relative;
    z-index: 100;
}
.header-container-mobile .nav{
    padding: 0;
    margin: 0;
    background: #0076e8;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}
.header-container-mobile .nav .item{
    list-style: none;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.header-container-mobile .nav .item .label{
    color: #ffffff;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    padding: 0 12px;
    align-items: center;
}
.header-container-mobile .nav .item .icon{
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.header-container-mobile>.nav .item.active,.header-container-mobile>.nav .item:hover{
    background-color: #2686e3;
}


