.fuxuan-head .fuxuan-head-top{
    background: #30373E;
    
}
.fuxuan-head-top .fuxuan-head-top-content{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fuxuan-head-top .top-desc{
    color: #FFF;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.fuxuan-head-top .top-contact{
    display: flex;
    gap: 24px;
    align-items: center;
}
.fuxuan-head-top .top-contact .top-contact-line{
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.09);
}
.fuxuan-head-top .top-contact .top-contact-item{
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-contact .top-contact-item .icon{
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}
.top-contact .top-contact-item .top-contact-desc{
    color: #FFF;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.fuxuan-head .fuxuan-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fuxuan-head .fuxuan-nav.head-fix{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.fuxuan-nav .nav-logo img{
    max-width: 120px;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.fuxuan-nav .nav-list{
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-list .menu-item-wrap{
    padding: 38px 0;
    color: var(--second-color);
    font-family: var(--font--family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}
.nav-list .menu-item-wrap.active .menu-item{
    color: var(--primary-color);
}
.nav-list .menu-item-wrap:hover .menu-item{
    color: var(--primary-color) !important;
}
.nav-list .menu-item-wrap:hover .subMenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-list .menu-item-wrap .subMenu{
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(20%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9;
}
.nav-list .menu-item-wrap .subMenu .sub-item-wrap{
    /* color: var(--primary-color); */
    padding: 10px 30px;
    white-space: nowrap;
    background: #fff;
    position: relative;
}
.nav-list .menu-item-wrap .subMenu .sub-item-wrap:hover .sub-item-wrap{
    background: #F9FAFB;
    color: var(--primary-color);
}

.fuxuan-nav .nav-list .fuxuan-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}
.fuxuan-hamburger span {
    display: block;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}


.fuxuan-mobile-menu{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9999;
    padding: 30px;
    transition: all 0.5s ease;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}
.fuxuan-mobile-menu.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.fuxuan-mobile-menu .mobile-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.mobile-top img{
    width: 100px;
    object-fit: cover;
}
.mobile-top .close-hamburger {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.mobile-top .close-hamburger .bar {
    position: absolute;
    top: 16px;
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transform: rotate(-45deg);
}
.mobile-top .close-hamburger .bar:first-child {
    transform: rotate(45deg);
}
.fuxuan-mobile-menu ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fuxuan-mobile-menu .mobile-item-wrap .mobile-submenu-list{
    margin-top: 10px;
}
.fuxuan-mobile-menu .mobile-item-wrap{
    position: relative;
}
.fuxuan-mobile-menu .mobile-item-wrap .menu-item{
    display: inline-block;
    width: 90%;
}
.fuxuan-mobile-menu .mobile-item-wrap .ico{
    position: absolute;
    right: 30px;
}
.fuxuan-mobile-menu .mobile-item-wrap .mobile-submenu-wrap{
    padding-left: 30px;
}

.fuxuan-head .threeMenu{
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    transform: translateY(20%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.fuxuan-head .three-menu-wrap{
    padding: 10px 30px;
    white-space: nowrap;
}
.nav-list .menu-item-wrap .subMenu .sub-item-wrap:hover .threeMenu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.mobile-threemenu-list{
    margin-top: 10px;
}
.mobile-threemenu-list .mobile-threemenu-wrap{
    padding-left: 30px;
}

.head-fix .fuxuan-nav-wrap{
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
}

.fuxuan-lang{
    position: relative;
}
.fuxuan-lang .global-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fuxuan-lang .current-lang{
  display: none !important;
}
.fuxuan-lang .lang-selector{
  width: 16px;
  height: 16px;
}
.fuxuan-lang .lang-selector .lang-box::before{
  right: 5px;
}
.fuxuan-search i{
  line-height: 1.5 !important;
}

@media screen and (max-width: 1500px) {
    /* .fuxuan-nav .nav-list{
        gap: 20px;
    } */
}
@media screen and (max-width: 1200px) {
    .fuxuan-head .fuxuan-nav{
        padding: 10px;
    }
    .fuxuan-nav .nav-list .fuxuan-hamburger{
        display: flex;
    }
    .nav-list .menu-item-wrap{
        display: none;
    }
}
@media screen and (max-width: 992px) {
    .fuxuan-head .fuxuan-head-top{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .fuxuan-nav .nav-list{
        gap: 10px;
    }
    .nav-list .fuxuan-button{
        padding: 10px 19px 0 19px;
    }
    .fuxuan-nav .nav-logo img{
        max-width: 100px;
    }
}

.bootstrap-select{
    display: none !important;
}
.crmForm-error{
    position: relative !important;
    top: 0 !important;
}
.custom-pop-inquiry .phone_number{
    border: 1px solid #D9D9D9 !important ;
}