@font-face {
    font-family: 'Saira Condensed';
    src: url("../fonts/SAIRACONDENSED-SEMIBOLD.TTF");
}
@font-face {
    font-family: 'Futura Md BT';
    src: url("../fonts/Futura-Book-2.ttf");
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
}

body {
    width: 100%;
    overflow-x: hidden;
}

*, *::after, *::before {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0;
}

#my-scrollbar {
    height: 100vh;
}

.scrollbar-thumb{
    width: 5px!important;
}

.scrollbar-track-y{
    z-index: 9999!important;
}

.scrollbar-track {
    background-color: transparent !important;
    right: 0 !important;
}

.scrollbar-track:hover {
    cursor: grab;
}

img {
    object-fit: cover;
}

/* header */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    padding: 0 60px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 1.2s;
}

.header .logo{
    width: 60px;
    height: 60px;
    position: relative;
    display: block;
    overflow: hidden;
}
.header .logo div{
    display: flex;
    flex-direction: column;
    transition: 0.5s;
}

.header .other{
    display: flex;
    align-items: center;
}
.header .other .search{
    display: flex;
    align-items: center;
    margin: 0 20px 0 0;
    cursor: pointer;
}
.header .other .search .iconfont{
    color: #FFFFFF;
    font-size: 18px;
    margin: 0 10px 0 0;
    transition: 0.6s;
}
.header .other .search p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    transition: 0.6s;
}
.header .other .language{
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-left: 1px solid rgba(255,255,255,0.3);
    border-right: 1px solid rgba(255,255,255,0.3);
    margin: 0 25px 0 0;
    cursor: pointer;
    transition: 0.6s;
}
.header .other .language p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 9px 0 0;
    transition: 0.6s;
}
.header .other .language .triangle{
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 7px solid #fff;
    position: relative;
    top: 2px;
    transition: 0.6s;
}
.header .other .menu{
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.header .other .menu p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 6px 0 0;
    transition: 0.6s;
}
.header .other .menu .carte div:first-child{
    margin-top: 0;
}
.header .other .menu .carte div{
    width: 11px;
    height: 1px;
    background: #fff;
    margin-top: 3px;
    transition: 0.6s;
}
.header .other .hidden{
    position: absolute;
    top: 93px;
    left: -300px;
    width: 384px;
    background: #FFFFFF;
    border-radius: 22px;
    padding: 56px 0 49px 0;
    transform: translateY(20px);
    transition: 1s;
    opacity: 0;
    pointer-events: none;
    display: none;
    box-shadow: 0 7px 32px -12px rgb(192 196 204 / 72%);
}
.header .other .active{
    opacity: 1;
    pointer-events: unset;
    transform: translateY(0);
}
.header .other .hidden .big{
    padding: 0 43px 48px 43px;
    border-bottom: 1px solid rgba(227, 227, 227, 0.5);
}
.header .other .hidden .big a{
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #151515;
    line-height: 38px;
    display: block;
    transition: 0.6s;
    width: fit-content;
}
.header .other .hidden .big a:hover{
    color: #CD0811;
}
.header .other .hidden .middle{
    padding: 34px 46px 33px 46px;
    border-bottom: 1px solid rgba(227, 227, 227, 0.5);
}
.header .other .hidden .middle a{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #151515;
    line-height: 29px;
    display: block;
    transition: 0.6s;
    width: fit-content;
}
.header .other .hidden .middle a:hover{
    color: #CD0811;
}
.header .other .hidden .small{
    padding: 31px 46px 0 46px;
}
.header .other .hidden .small span{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #969595;
    margin: 0 0 21px 0;
    display: block;
}
.header .other .hidden .small div{
    display: flex;
}
.header .other .hidden .small div a{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #151515;
    margin: 0 16px 0 0;
    transition: 0.6s;
}
.header .other .hidden .small div a:hover{
    color: #CD0811;
}
.header .other .hidden .small div a:last-child{
    margin: 0;
}
.public_on{
    box-shadow: 0 7px 32px -12px rgba(192, 196, 204, 0.72);
    background: rgba(255,255,255,0.5);
}
.header:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
    transition: all 0.6s;
    opacity: 0;
}
.public_on:after{
    opacity: 1;
}
.public_on .logo div{
    transform: translateY(-60px);
}
.public_on .other .search .iconfont{
    color: #000;
}
.public_on .other .search p{
    color: #000;
}
.public_on .other .language p{
    color: #000;
}
.public_on .other .language .triangle{
    border-top: 7px solid #000;
}
.public_on .other .language{
    border-left: 1px solid rgba(0,0,0,0.3);
    border-right: 1px solid rgba(0,0,0,0.3);
}
.public_on .other .menu p{
    color: #000;
}
.header .other .menu .burger{
    cursor: pointer;
    z-index: 900;
    width: 50px;
    height: 50px;
    position: relative;
    transition: 0.6s;
}

.burger div {
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    will-change: transform;
    -webkit-transition: .75s cubic-bezier(.19,1,.22,1);
    transition: .75s cubic-bezier(.19,1,.22,1);
}
.public_on .other .menu .burger{
    filter: brightness(0.1);
}
.burger div:nth-child(1) {
    -webkit-transform: translateY(-6px) scaleX(1);
    transform: translateY(-6px) scaleX(1);
}
.burger div:nth-child(1) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.burger div:nth-child(2) {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.burger div:nth-child(2) {
    -webkit-transition-delay: 350ms;
    transition-delay: 350ms;
}
.burger div:nth-child(3) {
    -webkit-transform: translateY(6px) scaleX(1);
    transform: translateY(6px) scaleX(1);
}
.burger div:nth-child(3) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.burger div:nth-child(4) {
    -webkit-transform: rotate(45deg) scaleX(0);
    transform: rotate(45deg) scaleX(0);
    background: #fff;
}
.burger div:nth-child(4) {
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms;
}
.burger div:nth-child(5) {
    -webkit-transform: rotate(-45deg) scaleX(0);
    transform: rotate(-45deg) scaleX(0);
    background: #fff;
}
.burger div:nth-child(5) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.nav-deployed .burger div:nth-child(1) {
    -webkit-transform: translateY(-6px) scaleX(0);
    transform: translateY(-6px) scaleX(0);
}
.nav-deployed .burger div:nth-child(1) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.nav-deployed .burger div:nth-child(2) {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}
.nav-deployed .burger div:nth-child(2) {
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms;
}
.burger div:nth-child(2) {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.nav-deployed .burger div:nth-child(3) {
    -webkit-transform: translateY(6px) scaleX(0);
    transform: translateY(6px) scaleX(0);
}

.nav-deployed .burger div:nth-child(3) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.nav-deployed .burger div:nth-child(4) {
    -webkit-transform: rotate(45deg) scaleX(1);
    transform: rotate(45deg) scaleX(1);
}
.nav-deployed .burger div:nth-child(4) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.nav-deployed .burger div:nth-child(5) {
    -webkit-transform: rotate(-45deg) scaleX(1);
    transform: rotate(-45deg) scaleX(1);
}
.nav-deployed .burger div:nth-child(5) {
    -webkit-transition-delay: 350ms;
    transition-delay: 350ms;
}
.opacity_active{
    top: -105px !important;
    pointer-events: none;
}



.search-in-nav {
    position: absolute;
    display: none;
    width: 420px;
    top: 108px;
    margin-top: 20px;
    right: 59px;
    padding: 20px 20px;
    background-color: #fff;
    box-shadow: 0 7px 32px -12px rgb(192 196 204 / 72%);
    z-index: 999999;
}
.header .other .search.__ .search-in-nav {
    display: block;
}
.search-in-nav:before {
    content: '';
    position: absolute;
    top: -13px;
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #fff
}

.search-in-nav.search-show {
    display: block
}

.search-group {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.search-group input {
    width: 300px;
    font-size: 14px;
    padding: 10px 20px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #f3f3f3;
    border: 1px solid rgb(11 77 101 / 21%)
}

.search-group a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    font-size: 14px;
    text-align: center;
    padding: 0 14px;
    background-color: #CD0811;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
}

.search-group a .iconfont {
    font-size: 15px;
    position: relative;
    top: 1px;
    color: #fff!important;
}
.search-group a span{
    color: #fff!important;
    white-space: nowrap;
}

.search-fast {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #dedede;
    font-size: 14px;
    padding: 20px 0
}

.search-fast p {
    flex-shrink: 0;
    font-weight: 700
}

.search-fast div {
    width: 100%
}

.search-fast a {
    color: #333;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px
}

.search-fast a:hover {
    color: #92000b;
}


/* fixed */
.fixed{
    width: 100%;
    height: 660px;
    position: fixed;
    top: 0;
    left: 0;
}
.fixed img{
    width: 100%;
    height: 100%;
}

/* footer */
.footer{
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.footer .background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.footer .warp{
    margin: 163px auto 47px;
    width: 1578px;
}
.footer .warp .content{
    display: flex;
    justify-content: space-between;
}
.footer .warp .content .footer_nav{
    display: flex;
    justify-content: space-between;
    width: calc( 60vw - 50px );
    margin: 0 50px 0 0;
}

.footer .warp .content .footer_nav ul:last-child{
    margin: 0;
}
.footer .warp .content .footer_nav ul > a{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.footer .warp .content .footer_nav ul .second{
    margin: 42px 0 0 0;
}
.footer .warp .content .footer_nav ul .second a{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: #858585;
    line-height: 30px;
    display: block;
    transition: 0.6s;
}
.footer .warp .content .footer_nav ul .second a:hover{
    color: #fe0100;
}
.footer .warp .content .sales{
    display: flex;
    align-items: center;
}
.footer .warp .content .sales .phone{
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 51px 0 0;
}
.footer .warp .content .sales .phone .iconfont{
    color: #FFFFFF;
    font-size: 20px;
    box-shadow: 13px 6px 40px 0px rgba(60,60,60,0.0800);
}
.footer .warp .content .sales .text{
    text-align: left;
}
.footer .warp .content .sales .text p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.37;
    margin: 0 0 14px 0;
}
.footer .warp .content .sales .text span{
    font-size: 28px;
    font-family: Roboto;
    font-weight: 500;
    color: #FFFFFF;
    white-space: nowrap;
}
.footer .warp .content .code{
    margin: 126px 25px 0 156px;
    width: 103px;
    height: 103px;
}
.footer .warp .content .code img{
    width: 100%;
    height: 100%;
}

.footer .warp .link{
    margin: 62px 0 0 0;
    padding: 46px 0 0 0;
    border-top: 1px solid rgba(243, 243, 243, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .warp .link a{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: #DADADA;
    opacity: 0.4;
    transition: 0.6s;
}
.footer .warp .link a:hover{
    opacity: 1;
}

    /* public */
.public .banner{
    width: 100%;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.public .banner .warp{
    text-align: center;
}
.public .banner .warp span{
    font-size: 38px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.public .banner .warp div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 58px 0 0 0;
}
.public .banner .warp div a{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 65px 0 0;
    position: relative;
}

.public .banner .warp div a:last-child{
    margin: 0;
}
.public .banner .warp div a:after{
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.6s;
}
.public .banner .warp div a:hover:after{
    width: 100%;
    left: 0;
}
.public .banner .warp div .active:after{
    width: 100%;
    left: 0;
}

/* common_paging */
.common_paging{
    display: flex;
    align-items: center;
    justify-content: center;
}
.common_paging a:not(:first-child,:last-child){
    font-size: 16px;
    font-family: Futura Bk;
    font-weight: normal;
    color: rgba(128, 129, 132, 1);
    margin: 0 30px 0 0;
}
.common_paging a:nth-last-child(2){
    margin: 0;
}
.common_paging .on{
    color: rgba(17, 76, 191, 1) !important;
}
.common_paging a:first-child,.common_paging a:last-child{
    width: 49px;
    height: 49px;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    transition: 0.6s;
}
.common_paging a:first-child .iconfont,.common_paging a:last-child .iconfont{
    color: #5c595c;
    font-size: 12px;
    transition: 0.6s;
}
.common_paging a:first-child .iconfont{
    transform: rotate(180deg);
}
.common_paging a:first-child:hover,.common_paging a:last-child:hover{
    background: rgba(17, 76, 191, 1);
}
.common_paging a:first-child:hover .iconfont,.common_paging a:last-child:hover .iconfont{
    color: #fff;
}
.language{
    position: relative;
    padding: 10px 20px!important;
}
.language .hide{
    position: absolute;
    width: 100%;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    padding: 10px 0;
    display: none;
    z-index: 9;
}
.language .hide a{
    display: block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 35px;
}
.header.public_on .language .hide{
    background: #fff;
    box-shadow: 0 7px 32px -12px rgb(192 196 204 / 72%);
}
.header.public_on .language .hide a{
    color: #333;
}
.language:hover .hide{
    display: block;
}
@media screen and (max-width: 1856px) {
    body,html{
        width: 100%;
        overflow-x: hidden;
    }
}
@media screen and (max-width: 1792px) {

}
@media screen and (max-width: 1680px) {
    .footer .warp{
        width: 90%;
    }
    .footer .warp .content .footer_nav ul {
        margin: 0 100px 0 0;
    }
}
@media screen and (max-width: 1600px) {

}
@media screen and (max-width: 1595px) {
    .footer .warp .content .footer_nav ul {
        margin: 0 89px 0 0;
    }
    .footer .warp .content .footer_nav{
        justify-content: unset;
    }
}
@media screen and (max-width: 1510px) {
    .footer .warp .content .footer_nav ul {
        margin: 0 70px 0 0;
    }
}
@media screen and (max-width: 1440px) {
    .footer .warp .content .footer_nav ul {
        margin: 0 77px 0 0;
    }
}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1366px) {
    .footer .warp .content .footer_nav ul {
        margin: 0 70px 0 0;
    }
}

@media screen and (max-width: 1025px) {
    .header{
        padding: 0 5%;
        height: 70px;
    }
    .header .logo{
        width: 40px;
        height: 40px;
    }
    .public_on .logo div {
        transform: translateY(-50%);
    }
    .header .other .search p{
        font-size: 16px;
    }
    .header .other .hidden{
        position: fixed;
        top: 100px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        padding: 10% 0;
    }
    .header .other .menu{
        position: static;
    }
    .header .other .search{
        display: none;
    }
    .header .other .language{
        border-left: 1px solid transparent;
    }
    .header .other .hidden .big{
        padding: 0 5% 5% 5%;
    }
    .header .other .hidden .middle{
        padding: 5%;
    }
    .header .other .hidden .small{
        padding: 5%;
    }
    .header .other .hidden .big a{
        font-size: 24px;
    }
    .header .other .hidden .middle a,.header .other .hidden .small div a,.header .other .hidden .small span{
        font-size: 13px;
    }
    .scrollbar-thumb {
        width: 2px!important;
    }
    .header .other .menu p{
        margin: 0;
    }
    .footer .warp{
        margin: 55px auto 20px;
    }
    .footer .warp .content{
        flex-direction: column;
    }
    .footer .warp .content .footer_nav{
        flex-wrap: wrap;
        width: 100%;
    }
    .footer .warp .content .footer_nav ul .second{
        display: none;
    }
    .footer .warp .content .footer_nav ul{
        margin: 0 25px 28px 0;
        width: 130px;
    }
    .footer .warp .content .footer_nav ul > a{
        font-size: 18px;
    }
    .footer .warp .content .sales{
        flex-direction: column;
        align-items: unset;
    }
    .footer .warp .content .sales .phone{
        margin: 25px 0 20px 0;
    }
    .footer .warp .content .sales .text span{
        font-size: 24px;
    }
    .footer .warp .content .sales .text p{
        font-size: 13px;
    }
    .footer .warp .content .code{
        margin: 20px 0 0 0;
    }
    .footer .warp .link {
        margin: 43px 0 0 0;
        padding: 34px 0 0 0;
    }
    .footer .warp .link{
        flex-direction: column;
        align-items: unset;
    }
    .footer .warp .link a{
        font-size: 14px;
        line-height: 30px;
    }
    .public .banner .warp span{
        font-size: 28px;
    }
    .public .banner .warp div a{
        font-size: 14px;
        margin: 0 0 20px 0!important;
        width: 33%;
    }
    .public .banner .warp div{
        width: 90%;
        margin: 58px auto 0;
        flex-wrap: wrap;
    }
    .public .banner .warp div .active:after{
        width: 60%;
        left: 50%;
        transform: translateX(-50%);
    }
    .public .banner .warp{
        width: 100%;
    }
    .header .logo img{
        width: 100%;
    }

}
