.header {
    height: 70px;
    display: block;
}
.header-container {
    width: 100vw;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: linear-gradient(to right, #00acac, #00acac);
    min-width: 950px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    top: 0;
    z-index: 99999;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10vw;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
}
.header-container .links-drawer-box {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 850px) {
    .header-container .links-drawer-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media screen and (max-width: 1000px) {
    .header-container {
        padding: 5px;
    }
    .header-title-box .company {
        font-size: 20px;
        min-width: 90px;
    }
}

.header-container .links-drawer-box .drawer-line-top {
    width: 16px;
    height: 2px;
    background: #4D4766;
    margin: 3px;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
}

.header-container .links-drawer-box .open-top {
    -webkit-transform: rotate(45deg) translateY(1.5px);
    transform: rotate(45deg) translateY(1.5px);
    margin: 0;
    width: 20px;
}

.header-container .links-drawer-box .drawer-line-bottom {
    width: 16px;
    height: 2px;
    background: #4D4766;
    margin: 3px;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}

.header-container .links-drawer-box .open-bottom {
    -webkit-transform: rotate(-45deg) translateY(-1.5px);
    transform: rotate(-45deg) translateY(-1.5px);
    margin: 0;
    width: 20px;
}

.header-title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-title {
    margin-left: 15px;
    font-size: 22px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 3px;
    font-family: 'Noto Sans SC', sans-serif,'Noto Serif SC', serif;
    letter-spacing: 1px;
    display: none;
}

.header-logo {
    height: 30px;
    padding: 0;
    margin: 0;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

.header-links-pallet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
    margin-right: 2%;
}

@media screen and (max-width: 850px) {
    .header-links-pallet {
        display: none;
        background: red;
    }
}

.header-link-box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 6px;
    padding: 1px;
    height: 100%;
    font-size: 15px;
    font-family: "microsoft yahei";
    color: #FFFFFF;
    display: block;
    min-width: 100px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    letter-spacing: 0.6px;
    cursor: pointer;
    position: relative;
}
.sub-menu {
    position: absolute;
    background-color: #ffffff;
    width: 180px;
    padding: 15px 15px;
    margin: 0;
    left: 0;
    top: 50px;
    border-radius: 6px;
    transition: 0.3s;
    opacity: 100;
    z-index: 9999999;
    border: #cccccc solid 1px;
    transition: 0.3s;
    box-shadow: 0 0 40px #333333;
    opacity: 0;
    visibility: hidden;
}
.sub-menu .item {
    line-height: 40px;
    text-align: center;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-menu .item {
    border-bottom: #F5F5F7 1px solid;
}
.sub-menu .item:last-child {
    border-bottom: none;
}
.sub-menu .item a {
    color: #333333;
}
.sub-menu .item .icon {
    margin-right: 2px;
    border: #cccccc solid 1px;
    padding: 3px;
    border-radius: 16px;
}
@media screen and (max-width: 1400px) {
    .header-container {
        padding: 20px;
    }
    .header-link-box {
        min-width: 80px;
    }
}
.header-links-pallet a:hover {
    color: gold;
}
.header-link-box a {
    color: #ffffff;
}
.header-link-box .comm-door:hover {
    color: gold;
}
.header-down-open {
    width: 11px;
    height: 6px;
    background: url(../images/header-down-open.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin-left: 8px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.header-drawer {
    position: relative;
    cursor: pointer;
}
.drawer-off {
    position: absolute;
    top: 108px;
    width: 180px;
    left: -100px;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.header-resources-drawer-box {
    background: #322D47;
    border-radius: 5px;
    width: 100%;
    min-height: 50px;
    overflow: hidden;
    margin-top: 41px;
}
.header-resources-drawer-pallet {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 180px;
    height: 50px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: PingFang SC;
}

.header-resources-drawer-pallet:hover {
    background: #4D4766;
    color: #FFFFFF;
}
.login-door {
    display: block;
    width: 80px;
    color: #FFFFFF;
}
.login-door a {
    color: #FFFFFF;
    font-size: 12px;
    margin-left:1px;
    font-weight: bold;
}
.login-btn,.register-btn {
    padding: 2px;
    border-radius: 2px;
    color: #FFFFFF;
    font-size: 13px;
}
.nav-search {
    height: 42px;
    width: 205px;
    overflow: hidden;
    padding-top: 10px;
}
.nav-search .search-input {
    height: 32px;
    width: 144px;
    border-radius: 2px;
    font-size: 12px;
    padding: 0px 0px 0px 5px;
    margin: 0px;
}
.nav-search .search-button {
    border: solid 1px #FFFFFF;
    color: #FFFFFF;
    background: #C2BE9E;
    cursor: pointer;
    font-weight: bold;
}
@media screen and (max-width: 1200px) {
    .auth-query {
        display: none;
    }
}