@font-face {
    font-family: 'Canela';
    src: url("/static/fonts/GideonRoman-Regular.ttf");
}

@font-face {
    font-family: Roboto;
    src: url("/static/fonts/Roboto-Medium.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{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 64px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    overflow: hidden;
}
.header:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(240, 240, 240, 1);
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translateY(-100%);
    transition: 0.6s;
}

.header .logo{
    position: relative;
    width: 148px;
    height: 39px;
}
.header .logo img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.6s;
}
.header .logo img:nth-child(2){
    opacity: 0;
}
.header nav{
    display: flex;
    align-items: center;
    pointer-events: unset;
    transition: 0.6s;
}
.header nav a{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 99px 0 0;
    padding: 10px;
    transition: 0.6s;
}

.header nav a:last-child{
    margin: 0;
}
.header .other{
    display: flex;
    align-items: center;
}
.header .other .search{
    margin: 0 29px 0 0;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}
.header .other .search input{
    display: block;
    width: 150px;
    height: 100%;
    background-color: transparent!important;
    border: 0;
    font-size: 15px;
    color: #fff!important;
    transition: 0.3s;
    outline: none;
    position: absolute;
    left: -150px;
    opacity: 0;
    pointer-events: none;
}
.header .other .search input::placeholder{
    color: #fff;
    opacity: 0.5;
}
.header .other .search .iconfont{
    color: #fff;
    font-size: 18px;
    transition: 0.6s;
}
.header .other .login{
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    transition: 0.6s;
}

.header .other .line{
    width: 1px;
    height: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    margin: 0 36px 0 26px;
    transition: 0.6s;
}
.header .other .menu_click{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header .other .menu{
    width: 26px;
    cursor: pointer;
    margin: 0 20px 0 0;
    position: relative;
    transition: 0.6s;
}
.header .other .menu span{
    width: 0;
    height: 1px;
    background: #fff;
    margin: 0 0 8px 0;
    display: block;
    animation: menu 2s linear infinite;
    transition: 0.6s;
    transition-delay: 0.7s;
}

.header .other .menu span:nth-child(2){
    margin: 0;
    animation: menu_2 2s linear infinite;
    animation-delay: 400ms;
}
.header .other .menu .iconfont{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-118%);
    font-size: 18px;
    color: #fff;
    opacity: 0;
    transition: 1s;
}
.header .other .menu_click_on span{
    opacity: 0;
    transition-delay: unset;
}
.header .other .menu_click_on .iconfont{
    opacity: 1;
    transform: translate(-50%,-50%);
    transition-delay: 0.3s;
}
.header .other p {
    font-size: 14px;
    font-family: Canela;
    font-weight: 400;
    color: #FFFFFF;
    transition: 0.6s;
}

.header .other .header_shopping{
    position: relative;
    margin: 0 25px 0 0;
    width: 16px;
    height: 15px;
    cursor: pointer;
}
.header .other .header_shopping img{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.6s;
}
.header .other .header_shopping img:nth-child(2){
    opacity: 0;
}
.header .other .header_shopping:hover img:nth-child(1){
    opacity: 0;
}
.header .other .header_shopping:hover img:nth-child(2){
    opacity: 1;
}
.header_on .logo img:nth-child(1){
    opacity: 0;
}
.header_on .logo img:nth-child(2){
    opacity: 1;
}

.header_on:after{
    transform: translateY(0);
}
.header_on nav a{
    color: rgba(49, 49, 49, 1);
}
.header_on .other .login {
    color: rgba(49, 49, 49, 1);
}
.header_on .other .search .iconfont{
    color: rgba(49, 49, 49, 1);
}
.header_on .other .search input,.header_on .other .search input::placeholder{
    color: rgba(49, 49, 49, 1) !important;
}
.header_on .other .line{
    background: rgba(0,0,0,0.15);
}
.header_on .other .menu{
    filter: brightness(0.1);
}
.header_on .other p{
    color: rgba(49, 49, 49, 1);
}

@keyframes menu {
    0% {
        width: 0;
    }

    25% {
        width: 50%;
    }
    50% {
        width: 100%;
    }
    75% {
        width: 50%;
    }
    100% {
        width: 0;
    }
}

@keyframes menu_2 {
    0% {
        width: 0;
    }

    25% {
        width: 9px;
    }
    50% {
        width: 18px;
    }
    75% {
        width: 9px;
    }
    100% {
        width: 0;
    }
}
.common_button {
    width: 148px;
    height: 46px;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.common_button div{
    display: flex;
    align-items: center;
    justify-content: center;
}

.common_button .iconfont{
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 0 10px;
    position: relative;
    z-index: 1;
    transition: 0.56s;
}

.common_button .line{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%,-50%);
    width: 100%;
    height: 1px;
    background: rgba(61, 48, 39, 1);
    transition: 0.3s;
    transition-delay: 0.7s;
}
.common_button:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(61, 48, 39, 1);
    transition: 0.3s;
    transition-delay: 0.4s;
}
.common_button:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(61, 48, 39, 1);
    transition: 0.3s;
    transition-delay: 0.4s;
}

.common_button p {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    transition: 0.6s;
}
.common_button:hover{
    border: 1px solid transparent;
}
.common_button:hover .line{
    transform: translate(0,-50%);
    transition-delay: unset;
}
.common_button:hover:after,.common_button:hover:before{
    height: 50%;
}
.common_button:hover p{
    color: rgba(221, 193, 143, 1);
}
.common_button:hover .iconfont{
    color: rgba(221, 193, 143, 1);
}

.common_active {
    background: rgba(61, 48, 39, 1);
    border: 1px solid transparent;
}
.common_active p {
    color: rgba(221, 193, 143, 1);
}
footer{
    position: relative;
    overflow: hidden;
    background: #fff;
}
footer .black{
    width: calc(100% - 223px);
    background: #262626;
    overflow: hidden;
    margin: 76px 0 0 0;
    position: relative;
}
footer .black .more_text{
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}
footer .black .warp{
    width: 1466px;
    margin: 65px auto 22px;
    position: relative;
    left: -50px;
}
footer .black .warp .footer_top{
    display: flex;
    justify-content: space-between;
}
footer .black .warp .footer_top nav {
    display: flex;
}
footer .black .warp .footer_top nav ul{
    margin: 0 78px 0 0;
}
footer .black .warp .footer_top nav ul:last-child{
    margin: 0;
}
footer .black .warp .footer_top nav ul > a{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #747474;
    transition: 0.6s;
}
footer .black .warp .footer_top nav ul > a:hover{
    color: #fff;
}
footer .black .warp .footer_top nav ul .list{
    margin: 31px 0 0 0;
    /*display: block;*/
}
footer .black .warp .footer_top nav ul .list a{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #747474;
    line-height: 32px;
    display: block;
    transition: 0.6s;
}
footer .black .warp .footer_top nav ul .list a:hover{
    color: #fff;
}

footer .black .warp .footer_top .contact p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #747474;
    margin: 0 0 18px 0;
}
footer .black .warp .footer_top .contact .tel{
    font-size: 22px;
    font-family: Roboto;
    font-weight: 400;
    color: #FFFFFF;
}
footer .black .warp .footer_top .contact form{
    margin: 56px 0 0 0;
    width: 299px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
}
footer .black .warp .footer_top .contact form .import{
    width: calc(100% - 48px);
    height: 100%;
}
footer .black .warp .footer_top .contact form .import input{
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 0 0 0 21px;
    border: none;
    background: transparent;
}
footer .black .warp .footer_top .contact form .import input::placeholder{
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: #FFFFFF;
    opacity: 0.2;
}
footer .black .warp .footer_top .contact form button{
    width: 48px;
    border: none;
    border-left: 1px solid rgba(116, 116, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}
footer .black .warp .footer_top .contact form button .iconfont{
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
}
footer .black .warp .footer_bottom{
    margin: 52px 0 0 0;
}
.footer_bottom .logo_list{
    display: flex;
    align-items: center;
}
.footer_bottom .logo_list .images{
    position: relative;
    margin: 0 50px 0 0;
    cursor: pointer;
    width: 143px;
    height: 33px;
}
.footer_bottom .logo_list .images:nth-child(4),.footer_bottom .logo_list .images:nth-child(5){
    width: 110px;
}
.footer_bottom .logo_list .images:nth-child(1){
    width: 50px;
}
.footer_bottom .logo_list .images:nth-child(6){
    width: 110px;
    height: 40px;
}
.footer_bottom .logo_list .images img{
    max-width: 100%;
    max-height: 100%;
}
.footer_bottom .logo_list .images img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.6s;
    object-fit: contain;
}
.footer_bottom .logo_list .images:nth-last-child(1) img {
    /*transform: translate(-50%,-50%) rotateY(180deg);*/
}
.footer_bottom .logo_list .images img:nth-child(2){
    opacity: 0;
}
.footer_bottom .logo_list .images:last-child{
    margin: 0;
    /*transform: scale(0.7);*/
}
.footer_bottom .logo_list .images:not(:first-child):hover img:nth-child(1){
    opacity: 0;
}
.footer_bottom .logo_list .images:not(:first-child):hover img:nth-child(2){
    opacity: 1;
}
.footer_bottom .footer_link{
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 22px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 76px 0 0 0;
}
.footer_bottom .footer_link a{
    font-size: 14px;
    font-family: Roboto;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 21px;
    opacity: 0.1;
    transition: 0.6s;
}
.footer_bottom .footer_link a:hover{
    opacity: 1;
}

footer .gray{
    width: calc(100% - 619px);
    height: 701px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
footer .gray img{
    width: 100%;
    height: 100%;
}

/*fixed*/
.fixed_background {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.fixed_background .swiper{
    width: 100%;
    height: 100%;
}

.fixed_background .background {
    width: 100%;
    height: 100%;
}

/*paging*/
.common_paging{
    display: flex;
    align-items: center;
    justify-content: center;
}
.common_paging a.page-item{
    width: 38px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #959595;
    margin: 0 10px 0 0;
}
.common_paging .on{
    background: #844439;
    color: #fff!important;
}
.common_paging .prev,.common_paging .next{
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #313131;

}
.common_paging .prev{
    margin: 0 44px 0 0;
}
.common_paging .next{
    margin: 0 0 0 44px;
}
/**/
.menu-bg{
    width: 100%;
    height: 100vh;
    position: fixed;
    transform: translateY(-100%);
    z-index: 9;
    background: #0A0909;
    transition: 1s;
    opacity: 0;
    display: none;
}
.menu-bg .warp{
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    opacity: 0;
    position: relative;
    transform: translateX(-50px);
    transition: 1s;
}
.menu-warp-active{
    opacity: 1!important;
    transform: translateX(0px)!important;
}
.menu-active{
    transform: translateY(0)!important;
    opacity: 1!important;
}

.menu-bg .left{
    width: 30%;
    height: 100%;
    border-right: 1px solid rgba(201, 203, 202, 0.1);
    position: relative;
}
.menu-bg .left .center{
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}
.menu-bg .left .menu-nav .nav-con{
    margin-bottom: 34px;
    cursor: pointer;
}
.menu-bg .left .menu-nav .nav-con li{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.menu-bg .left .menu-nav .nav-con li a{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.menu-bg .left .menu-nav .nav-con .li-bot{
    display: none;
    position: absolute;
    top: -8px;
    left: 177px;
}
.menu-bg .left .menu-nav .nav-con .li-bot .flex-box{
    display: flex;
    flex-wrap: wrap;
    flex-direction:column ;
    height:  600px;
}
.menu-bg .left .menu-nav .nav-con .li-bot:first-child{
    display: block;
}
.menu-bg .left .menu-nav .nav-con .li-bot a{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #878787;
    line-height: 40px;
    display: block;
    white-space: nowrap;
    transition: 0.6s;
    width: 120px;
}
.menu-bg .left .menu-nav .nav-con .li-bot li:hover a{
    color: #C2A470;
}
.menu-bg .left .menu-nav .nav-con .li-bot a:hover{
    color: #C2A470;
}
.menu-bg .left .menu-nav .nav-con .li-bot li:hover .li-bot-three li a{
    color: #878787;
}
.menu-bg .left .menu-nav .nav-con .li-bot li .li-bot-three li:hover a{
    color: #C2A470;
}
.menu-bg .left .search{
    width: 305px;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    justify-content: space-between;
    padding: 0 10px 12px 10px;
    margin-top: 145px;
}
.menu-bg .left .search input{
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}
.menu-bg .left .search span{
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}
.menu-bg .right{
    margin-left: 152px;
    position: relative;
}
.menu-bg .right .center{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.menu-bg .right .center .images{
    width: 942px;
    height: 515px;
    overflow: hidden;
    margin-bottom: 60px;
}
.menu-bg .right .center .images .style-warp{
    width: 100%;
    height: 100%;
}
.menu-bg .right .center .images .style-warp .swiper-wrapper{
    width: 100%;
    height: 100%;
}
.menu-bg .right .center .images .style-warp .swiper-wrapper .swiper-slide{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.menu-bg .right .center .images{
    position: relative;
}
.menu-bg .right .center .images img{
    width: 100%;
    height: 100%;
    transition: 1.5s;
}
.menu-bg .right .center .connect{
    display: flex;
}
.menu-bg .right .center .connect div{
    margin-right: 151px;
}
.menu-bg .right .center .connect div p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 18px;
}
.menu-bg .right .center .connect div h1{
    font-size: 20px;
    font-family: Nexa Demo;
    font-weight: normal;
    color: #FFFFFF;
    white-space: nowrap;
}

.menu-bg .left .menu-nav .nav-con .li-bot li{
}
.menu-bg .left .menu-nav .nav-con .li-bot li .li-bot-three{
    position: absolute;
    top: 125px;
    left: 208px;
    z-index: 9;
    display: none;
}
/*.header___on nav {*/
/*    opacity: 0;*/
/*    pointer-events: none!important;*/
/*}*/

/*footer .black .warp .footer_top nav ul > a:hover+.list {*/
/*    display: block;*/
/*    transition: 0.6s;*/
/*}*/
footer .black .warp .footer_top {
    position: relative;
}
footer .black .warp .footer_top nav ul {
    min-width: 100px;
    margin: 0 78px 0 0;
}
footer .black .warp .footer_top .contact {
    position: absolute;
    top: 0;
    right: 0;
}


.header__on:after {
    transform: translateY(0);
}
.header__on .logo img:nth-child(1) {
    opacity: 0;
}
.header__on .logo img:nth-child(2) {
    opacity: 1;
}
.header__on nav a {
    color: rgba(49, 49, 49, 1);
}
.header__on .other .login {
    color: rgba(49, 49, 49, 1);
}
.header__on .other .line {
    background: rgba(0,0,0,0.15);
}
.header__on .other .menu {
    filter: brightness(0.1);
}
.header__on .other p {
    color: rgba(49, 49, 49, 1);
}
.header__on .other .search .iconfont {
    color: rgba(49, 49, 49, 1);
}
.header__on .other .search input,.header__on .other .search input::placeholder{
    color: rgba(49, 49, 49, 1) !important;
}

@media screen and (max-width: 1856px) {
    body,html{
        width: 100%;
        overflow-x: hidden!important;
    }
    footer .black .warp .footer_top nav ul{
        margin: 0 9% 0 0;
    }
    footer .black .warp{
        left: 0;
    }
}
@media screen and (max-width: 1792px) {

}
@media screen and (max-width: 1680px) {
    footer .black .warp{
        width: 90%;
    }
    .menu-bg .right .center .images{
        width: 84%;
    }
}
@media screen and (max-width: 1600px) {

}
@media screen and (max-width: 1577px) {
    footer .black .warp .footer_top nav ul {
        margin: 0 7% 0 0;
    }

}
@media screen and (max-width: 1500px) {
    footer .black .warp .footer_top nav ul {
        margin: 0 5% 0 0;
    }
}
@media screen and (max-width: 1440px) {
    .menu-bg .left{
        width: 16%;
    }
    .menu-bg .right .center .images{
        height: auto;
    }
    footer .black .warp .footer_top nav ul {
        margin: 0px 4% 0 0;
    }
    .menu-bg .left .menu-nav .nav-con .li-bot{
        left: 121px;
    }
    .menu-bg .left{
        width: 18%;
    }
}
@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1366px) {
    .menu-bg .right .center .images {
        height: 320px;
    }
}

@media screen and (max-width: 1025px) {
    .header{
        padding: 0 5%;
        height: 71px;
    }
    .header nav,.header .other p{
        display: none;
    }
    .header .other .menu{
        margin: 0;
    }
    .header .logo img{
        width: 100%;
    }
    .header .logo{
        width: 113px;
        height: 29px;
    }
    .header .other .line{
        margin: 0 17px;
    }
    .header .other .header_shopping,.header .other .search{
        margin: 0 17px 0 0;
    }
    .common_button{
        width: 135px;
        height: 42px;
    }
    .common_button p{
        font-size: 13px;
    }
    .scrollbar-thumb {
        width: 2px!important;
    }
    .scrollbar-track-y{
        width: 5px;
    }
    footer .black{
        margin: 0;
        width: 100%;
    }
    footer .gray,footer .black .more_text,footer .black .warp .footer_top nav ul .list{
        display: none;
    }

    footer .black .warp .footer_top nav,footer .black .warp .footer_top{
        flex-wrap: wrap;
    }
    footer .black .warp .footer_top nav ul{
        margin: 0 0 4% 0;
    }
    footer .black .warp .footer_top nav ul{
        min-width: 33%;
    }
    footer .black .warp .footer_top .contact{
        position: static;
        margin: 15px 0 0 0;
    }
    footer .black .warp .footer_top .contact .tel{
        font-size: 20px;
    }
    footer .black .warp .footer_top .contact p{
        font-size: 13px;
        margin: 0 0 10px 0;
    }
    footer .black .warp{
        margin: 21px auto 15px;
    }
    .footer_bottom .logo_list{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer_bottom .logo_list .images{
        width: 45%;
        margin: 0 0 10% 0;
    }
    .footer_bottom .logo_list .images img{
        width: 80%;
        left: 0;
        transform: translate(0,-50%);
    }
    .footer_bottom .logo_list .images:nth-child(5){
        width: 45%;
        transform: scale(1);
    }
    .footer_bottom .logo_list .images:nth-child(5) img{
        width: 49px;
    }
    .footer_bottom .logo_list .images:nth-child(4){
        width: 45%;
    }
    .footer_bottom .logo_list .images:nth-child(4) img{
        width: 55px;
    }
    footer .black .warp .footer_bottom {
        margin: 30px 0 0 0;
    }
    .footer_bottom .footer_link{
        margin: 28px 0 0 0;
        padding: 23px 0 0 0;
        flex-direction: column;
        align-items: unset;
    }
    .footer_bottom .footer_link a{
        line-height: 26px;
        font-size: 12px;
    }
    .menu-bg .warp{
        display: none;
    }
    .header .other .search input{
        display: none;
    }
    footer .black .warp .footer_top nav ul > a{
        font-size: 14px;
    }
    .common_paging{
        flex-wrap: wrap;
        margin: 0 0 30px 0;
    }
    .footer_bottom .logo_list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 40px;
    }
    .footer_bottom .logo_list .images{
        width: 100% !important;
        height: 50px!important;
    }
    .footer_bottom .logo_list .images img{
        position: static!important;
        transform: none!important;
        width: 100% !important;
    }
    .footer_bottom .logo_list .images img:nth-child(2) {
        display: none;
    }
    .footer_bottom .logo_list{
        display: none!important;
    }
}
