#header {
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

.head-box .head-item img {
    width: 147px;
}

.head-box .head-item .footer-logo img {
    width: 133px;
}

.header {
    position: relative;
}

#header.noTop {
    transform: translateY(-100%);
}

.header .head-box {
    /* height: Max(1.08rem, 90px); */
    padding: 0.3rem 0 0.18rem;
    border-bottom: 1px solid #CCCCCC;
}

.head-box .head-item {
    height: 100%;
    align-items: center;
}

.head-nav {
    flex: 1;
    padding-left: 1.12rem;
    padding-right: 0.86rem;
    border-right: 1px solid #CCCCCC;
}

.head-nav .nav-ul {
    height: 100%;
}

.head-nav .nav-ul .nav-li span img {
    display: inline-block;
    cursor: pointer;
}

.head-nav .nav-ul .nav-li i {
    display: inline-block;
    cursor: pointer;
    font-size: 6px;
    vertical-align: middle;
}

.login-box {
     
}

.login-box .login {
    margin-left: 0.48rem;
    font-size: 0.16rem;
    font-size: Max(0.16rem, 12px);
    font-weight: 350;
    line-height: normal;
    color: #000000;
    cursor: default;
}

.login-box .zh-en {
    cursor: pointer;
    width: 0.8rem;
    height: 0.4rem;
    font-size: 0.16rem;
    font-size: Max(0.16rem, 12px);
    font-weight: 350;
    line-height: normal;
    color: #000000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box .zh-en img {
    width: Max(0.24rem, 18px);
}

.login-box .zh-en i {
    font-size: 0.24rem;
    color: #000000;
}

.zh-en-select {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 0.08rem;
    padding: 0.032rem;
    display: none;
    height: 0.7rem !important;
}

.zh-en-select .option {
    display: block;
    width: 100%;
    text-align: center;
    font-size: .18rem;
    font-weight: normal;
    line-height: .32rem;
    font-family: "Muli-Bold";
    border-bottom: 1px solid #ddd;
}

.zh-en-select .option:last-child {
    border-bottom: 0;
}

.head-nav .nav-ul .nav-li {
    position: relative;
}

.head-nav .nav-ul .nav-li .txt {
    /* pointer-events: none; */
    /* a 禁止跳转 */
    padding: 0.2rem 0;
    font-size: 0.16rem;
    font-size: Max(0.16rem, 12px);
    font-weight: 350;
    line-height: normal;
    color: #000000;
    white-space: nowrap;
    opacity: 1;
    /* transition: all 0.3s ease-in-out; */
}

.head-nav .nav-ul .nav-li .txt[href="javascript:;"],
.sub_list li a[href="javascript:;"] {
    cursor: default;
}

.head-nav .nav-ul .nav-li .sub_list {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0.24rem;
    background: #FFFFFF;
}

.sub_list li {
    white-space: nowrap;
    color: #000000;
    padding-bottom: 0.12rem;
    cursor: pointer;
    position: relative;
}

.sub_list li:hover a {
    opacity: 1;
}

.sub_list li:hover:before {
    opacity: 1;
}

.sub_list li a {
    /* pointer-events: none; */
    /* a 禁止跳转 */
    white-space: nowrap;
    display: block;
    font-size: 0.16rem;
    font-size: Max(0.16rem, 12px);
    font-weight: normal;
    line-height: normal;
    color: #000;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease-in;
}

.sub_list li a:hover {
    opacity: 1;
}

.submenu_show .bg_hover {
    width: 100%;
    height: 0.56rem;
    background: #004FFF;
    z-index: 1;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-animation: a_bg_hover_show 0.2s ease-out both;
    -webkit-transform-origin: 50% 0%;
}

.submenu_show .nav-ul .nav-li.sublist_show .sub_list {
    -webkit-animation: a_menu_item_show 0.2s ease-out both;
}

.submenu_show .nav-ul .nav-li.sublist_hide .sub_list {
    -webkit-animation: a_menu_item_hide 0.15s ease-out both;
}

.submenu_hide,
.sublist_hide {
    pointer-events: none;
}

.header .nav-ul,
.header .button-list,
.header .logo {
    /* transition: transform 0.4s ease-out; */
}

.header.animateHeadFadeIn .nav-ul,
.header.animateHeadFadeIn .button-list {
    transform: translateX(0);
    opacity: 1;
}

.header.animateHeadFadeIn .button-list {
    display: flex;
    align-items: center;
}

.header.animateHeadFadeIn .logo {
    transform: translateX(0);
    opacity: 1;
}

.header.animateHeadFadeOut .nav-ul,
.header.animateHeadFadeOut .button-list {
    transform: translateX(100vw);
    opacity: 0;
}

.header.animateHeadFadeOut .logo {
    transform: translateX(-100vw);
    opacity: 0;
}


/*避免鼠标快速移动触发鼠标对菜单收回动画延迟 一进多出显示bug*/

.submenu_hide .bg_hover {
    -webkit-animation: a_bg_hover_hide 0.15s ease-out both;
    -webkit-transform-origin: 50% 0%;
}

@keyframes a_menu_item_show {
    0% {
        -webkit-transform: translate(0px, -30px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        opacity: 1;
    }
}

@keyframes a_menu_item_hide {
    0% {
        -webkit-transform: translate(0px, 0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0px, -30px);
        opacity: 0;
    }
}

@keyframes a_bg_hover_show {
    0% {
        -webkit-transform: scale(1, 0.5);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }
}

@keyframes a_bg_hover_hide {
    0% {
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1, 0.5);
        opacity: 0;
    }
}

.nav-en-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.roganiza-button {
    width: 0.96rem;
    height: 0.35rem;
    border-radius: 0.08rem;
    opacity: 1;
    background: #F9A61A;
    font-family: "Muli-Bold";
    font-size: 0.14rem;
    font-weight: normal;
    line-height: 0.35rem;
    text-align: center;
    color: #FFFFFF;
}

.search {
    margin: 0 0.14rem 0 0.2rem;
    width: 1.71rem;
    height: 0.35rem;
    border-radius: 0.08rem;
    background: #FFFFFF;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.search img {
    width: 0.18rem;
    height: 0.18rem;
}

.search .search-input {
    width: 1.12rem;
    border: none;
}

.search .search-input::-webkit-input-placeholder {
    font-family: "Muli-Bold";
    font-size: .14rem;
    font-weight: normal;
    line-height: .14rem;
    text-transform: capitalize;
    color: rgba(22, 81, 159, 0.17);
}

.button-list {
    position: relative;
    z-index: 4;
}

.menu-btn {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #F9A61A;
    border-radius: .08rem;
    width: Max(.48rem, 32px);
    height: Max(.48rem, 32px);
    position: fixed;
    right: 5%;
    top: .6rem;
    transition: border-color .9s cubic-bezier(.165, .84, .44, 1);
    z-index: 11111;
}

.menu-btn:after,
.menu-btn:before {
    background-color: #fff;
    content: "";
    height: 0.04rem;
    opacity: 1;
    position: absolute;
    transition: transform .9s cubic-bezier(.165, .84, .44, 1);
    width: 0.32rem;
    z-index: 1
}

.menu-btn:before {
    transform: translate3d(0, -.5333333333vw, 0)
}

.menu-btn:after {
    transform: translate3d(0, .5333333333vw, 0)
}

.header_menu.isOpen .menu-btn {
    /* border: .2666666667vw solid #928975 */
}

.header_menu.isOpen .menu-btn {
    will-change: border-color
}

.header_menu.isOpen .menu-btn:before {
    transform: translateZ(0) rotate(45deg)
}

.header_menu.isOpen .menu-btn:after {
    transform: translateZ(0) rotate(-45deg)
}


/*  */

.header-nav-m.show {
    opacity: 1;
    visibility: visible;
}

.header-nav-m {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: .2s ease opacity, .2s ease visibility;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1001;
}

.header-nav-m .header-nav-container {
    opacity: 1;
    max-width: 100%;
    width: 480px;
    height: 100%;
    position: relative;
    z-index: 1;
    background-color: #fff;
    transition: .26s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.header-nav-m .header-nav-container .header-nav-content {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    font-size: Max(0.24rem, 14px);
    line-height: 0.3rem;
    height: 100%;
    justify-content: space-between;
    padding: 2rem 1.2rem;
    width: 100%;
}

.header-nav-m .header-nav-container .header-nav-content li {
    /* margin: 1.5em 0; */
    border-bottom: 1px solid #28509A;
    padding: .36rem 0;
}

.header-nav-m .header-nav-container .header-nav-content li a {
    color: #28509A;
}

.header-nav-m .header-nav-container .header-nav-close {
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 0.32rem;
    color: #28509A;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: transform .3s ease;
}

.header-nav-m .header-mask {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #000;
    opacity: .5;
    z-index: 0;
}

@media screen and (max-width: 980px) {
    .head-nav {
        display: none;
    }
    .menu-btn {
        display: flex !important;
    }
}

@media screen and (max-width:768px) {
    /* .menu-btn {
        display: flex !important;
    } 
    .head-nav {
        display: none;
    } */
}

@media screen and (max-width:750px) {}

@media screen and (max-width: 480px) {}