
.h5-header {
    display: none;
}
.h5-nav {
    left: -100%;
    position: absolute;
}
.header {
    height: 100px;
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 11;
}
.msg-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.header .top-msg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.header .top-msg .hello {
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #004893;
    line-height: 18px
}
.header .top-msg .tips {
    margin-left: 15px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #7B7B7B;
    line-height: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position:relative;
}
.header .top-msg .tips img {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
}
.header .top-msg .tips .code-img {
    width: 73px;
    height: 73px;
    display: none;
}
.header .top-msg .tips:hover > .code-img {
    display: block;
    position: absolute;
    z-index: 10;
    bottom: -80px;
    left: 20px
  }
.header .nav {
    display: flex;
    justify-content: space-between;
}
.header .nav .logo img {
    width: 188px;
    height: auto;
    cursor: pointer;
}
.header .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .nav-item.active .nav-a {
    color: #004893;
}

.header .nav-item {
    min-width: 100px;
    height: 60px;
    position: relative;
    padding: 10px 8px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}
.header .nav-item .nav-a {
    font-size: 20px;
    font-weight: 400;
    color: #181818;
    line-height: 24px;
    text-decoration: none;
}
.header .nav-item .nav-item-line {
    display: none;
    margin: 0 auto;
}
.header .nav-item .sec-nav {
    height: 0;
    width: 100%;
    transition: all 1s;
    left: 0;
    position: absolute;
    top: 60px;
    overflow: hidden;
    background-color: #fff;
    z-index: 3;
    cursor: pointer;
}
.sec-nav .sec-nav-item {
    color: #181818;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    text-decoration: none;
}
.sec-nav .sec-nav-item.hover {
    color: #fff;
    background-color: #004893;
}
.header .nav-item.hover .nav-a {
    color: #004893;
}
.header .nav-item.hover .nav-item-line {
    display: block;
}
.header .nav-item.hover .sec-nav {
    height: auto;
}

.footer {
    width: 100%;
    background: #1C232C;
    color: #fff;
    padding-top: 50px;
}
.footer .foot-info {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 30px;
}
.foot-nav {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.foot-nav-item {
    text-align: left;
    margin-left: 60px;
}
.foot-nav-item .nav-item-title {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}
.foot-nav-item .title-line {
    width: 24px;
    height: 1px;
    background: #FFFFFF;
    margin-top: 16px;
}
.nav-item-label {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    cursor: pointer;
    display: block;
}
.nav-item-label:hover {
    color: #fff;
}
.foot-info .spilt-line {
    width: 2px;
    height: 190px;
    background: #D8D8D8;
}
.foot-desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left-desc {
    margin-right: 60px;
}
.left-desc .company {
    font-size: 20px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 28px;
    margin-bottom: 16px;
}
.left-desc .phone,.email,.address {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 16px;
}
.other-company {
    margin-bottom: 16px;
    cursor: pointer;
}
.links {
    cursor: pointer;
}
.right-qrcode {
    display: flex;
    flex-flow: column;
    align-items: center;
}
.qrcode-img {
    margin-bottom: 10px;
}
.copyright {
    background: #1C232C;
    border-top: 1px solid #DDDDDD;
    width: 100%;
    text-align: center;
    height: 72px;
    line-height: 72px;
}



@media (max-width: 750px){
    .h5-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        height: 68px;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        position: sticky;
        top: 0;
        z-index: 3;
    }
    .h5-nav {
        width: 100%;
        height: 100%;
        position: fixed;
        left: -100%;
        z-index: 11;
        top: 0;
        overflow-x: hidden;
        transition: all 1s;
    }
    .h5-nav.show {
        left: 0;
    }
    .h5-nav-wrap {
        display: flex;
        flex-flow: column;
        justify-content: start;
        width: 50%;
        background: rgba(0, 72, 147, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        padding-top: 65px;
        z-index: 13;
        box-sizing: border-box;
        height: auto;
        min-height: 100%;
    }
    .h5-nav-item {
        width: 100%;
        min-height: 50px;
        color: #fff;
        line-height: 50px;
        text-align: left;
        padding-left: 60px;
        cursor: pointer;
        box-sizing: border-box;
        -webkit-tap-highlight-color:transparent;
    }
    .h5-nav-item .nav-a {
        display: block;
        width: 100%;
        color: #fff;
    }
    .h5-nav-item .sec-nav {
        display: none;
        margin-top: 10px;
    }
    .h5-nav-item .sec-nav .h5-sec-nav-item {
        width: 100%;
        height: 40px;
        color: #fff;
        line-height: 20px;
        text-align: left;
        cursor: pointer;
        padding-left: 20px;
        box-sizing: border-box;
        display: block;
    }
    .nav-mask {
        width: 100%;
        height: 100%;
        background: transparent;
        position: fixed;
        z-index: 12;
        top: 0;
    }
    body.fix {
        overflow: hidden;
    }
    .nav-icon-line {
        margin-top: 5px;
        width: 22px;
        height: 2px;
        border-radius: 1px;
        background: #004893;
        display: block;
    }
    .header {
        display: none;
    }
    .footer {
        padding-top: 10px;
    }
    .footer .nav-item-title {
        font-size: 14px;
    }
    .footer .foot-info {
        display: block;
        padding: 0;
    }
    .foot-info .spilt-line {
        display: none;
    }
    .footer .title-line{
        width: 100%;
        margin-top: 0;
    }   
    .foot-desc {
        padding: 10px 10px;
        position: relative;
    } 
    .left-desc .company {
        font-size: 18px;
    }
    .right-qrcode {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .qrcode-img {
        margin-bottom: 0;
    }
    .foot-desc .left-desc {
        margin-right: 0;
    }
    .foot-nav {
        justify-content: space-around;
    }
    .footer .nav-item-wrap{
        display: none;
    }    
    .foot-nav-item {
        margin-left: 0;
    }
    .copyright {
        line-height: 24px;
        font-size: 14px;
        padding: 10px ;
        box-sizing: border-box;
    }
}