.site-title {
    position: relative;
    top: 55px;
    padding: 0 0 0 60px;
    transition: all .5s ease;
}
.site-header:before {
    height: 0%;
}
.site-header > .container {
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding-top: 0;
}
.header-fixed .site-title{
    top: 0;
}
.site-title .logo {
    width: 201px;
    height: 138px;
    transition: all .5s ease;
}
.nav_box{
    margin-top: 0;
}

/*------------ wrapper ------------*/
.wrapper {
    position: relative;
    background: #F4F2F0;
    padding-top: 128px;
}

/*------------ banner ------------*/
.banner {
    position: relative;
}
.banner .container,
.banner_m .container {
    position: relative;
    max-width: 1600px;
    padding: 0 15px;
    box-sizing: border-box;

}
.banner .slider::before{
    content: '';
    display: block;
    width: 770px;
    height: 100%;
    background: url('../../images/common/banner_cover.svg') no-repeat;
    background-size: contain;
    position: absolute;
    left: -170px;
    top: 0;
    bottom: 0;
    z-index: 100;
}
.banner .slick-slider{
    position: relative;

}
.slogan{
    width: 100%;
    max-width: 650px;
    position: absolute;
    left: 75px;
    top: calc(50% - 215px);
    z-index: 300;

}
.banner_m .slogan{
        position: relative;
    left: inherit;
    top: inherit;
}

/*------------ bn-info basic set ------------*/

.banner_m .bn-info{
    position: relative;
    max-width: 320px;
    margin: 0 auto -15px;
}

.banner_m .bn-info .ed_t_en,
.banner .bn-info .ed_t_en{
    width: fit-content;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    box-sizing: border-box;
    padding: 0 10px 0 5px;
    letter-spacing: -0.02em;
    position: relative; 
    will-change: transform; 
    overflow: hidden;
    animation-name: unset !important;
}
.banner_m .bn-info .ed_t_en{
    font-size: 25px;
}
.banner_m .bn-info .ed_t_en span,
.banner .bn-info .ed_t_en span{
    font-size: 55px;
    display: inline-block;
    line-height: 1;
}
.banner_m .bn-info .ed_t_en span{
    font-size: 25px;
}
.banner_m .bn-info .ed_t_en.word_b,
.banner .bn-info .ed_t_en.word_b{
    font-weight: 600;
}
.banner_m .bn-info .ed_t,
.banner .bn-info .ed_t{
    font-size: 17px;
    color: #8F8F8D;
    text-align: left;
    letter-spacing: 0.45em;
    margin-top: 20px;
}
.banner_m .bn-info .ed_t{
    font-size: 15px;
    margin-top: 8px;
}
/*------------ bn-info animate set ------------*/
.banner .slogan .bn-info,
.banner_m .bn-info,
.banner .bn-info{
    opacity: 0;
}

.banner .slogan .item.slick-active .bn-info,
.banner_m .item.slick-active .bn-info,
.banner .item.slick-active .bn-info{
    opacity: 1;
}
.banner .slogan .bn-info .ed_t_en_box,
.banner_m .bn-info .ed_t_en_box,
.banner .bn-info .ed_t_en_box{
    width: fit-content;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, #EDD7A9 0, #EDD7A9 100%);
    background-position: 0 2em;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    line-height: 1.2;
    transition: all 1.8s;
    color: #202020;
    
}
.banner_m .bn-info .ed_t_en_box{
    background-position: 0 1em;
}
.banner .slogan .slick-active .bn-info .ed_t_en_box,
.banner_m .slick-active .bn-info .ed_t_en_box,
.banner .slick-active .bn-info .ed_t_en_box{
    background-size: 100% 100%;
}

.banner .slogan .slick-active .bn-info .ed_t_en,
.banner_m .slick-active .bn-info .ed_t_en,
.banner .slick-active .bn-info .ed_t_en{
    animation-name: title-move;
    animation-duration:1.8s;
    animation-fill-mode: forwards;
    position: relative; will-change: transform; 

}

.banner .slogan .bn-info .ed_t_en span,
.banner_m .bn-info .ed_t_en span,
.banner .bn-info .ed_t_en span {
    opacity: 0; 
}
.banner .slogan .slick-current .bn-info .ed_t_en span,
.banner_m .slick-current .bn-info .ed_t_en span,
.banner .slick-current .bn-info .ed_t_en span {
    animation-name: title-move2;
    animation-duration:1.5s;
    animation-fill-mode: forwards;
}
@keyframes title-move2{
    from{
        opacity: 0;
        transform: translate(0px, 111%) scale(1.1) rotate(1deg);
    }
    to{
        opacity: 1; 
        transform: translate(0px, 0%) scale(1);
    }
}
.banner .slogan .slick-active .bn-info .ed_t,
.banner_m .slick-active .bn-info .ed_t,
.banner .slick-active .bn-info .ed_t{
    animation-name: title-move;
    animation-duration:1.8s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

@keyframes title-move{
    from{
        opacity: 0;
        transform: translate(0px, 111%) scale(1.1) rotate(1deg);
    }
    to{
        opacity: 1; 
        transform: translate(0px, 0%) scale(1);
    }
}
/*------------ bn-info animate set END------------*/
/*---------- fadeInUp animate ----------*/
/*@-webkit-keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translate(0px, 111%) scale(1.1) rotate(5deg);
    transform: translate(0px, 111%) scale(2) rotate(5deg);

  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translate(0px, 0%) scale(1) rotate(0deg);
  }
}

.fadeInUp2 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}*/
/*---------- fadeInUp animate ----------*/

.banner .slick-list {
    overflow: visible;
}
.banner_m .slick-list {
    overflow: hidden;
}
.banner> .container:before{
    right: calc(100% - 15px);
}
.banner >.container:after{
    left: calc(100% - 15px);
}
.banner >.container:before,
.banner >.container:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 68, 68, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    visibility: visible;
    z-index: 10;
}

.banner .slick-arrow {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 76px;
    color: transparent;
    border-radius:50%;
    background: rgba(38, 38, 38,0.87);
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 40%;
    margin: -38px 0 0 0;
    left: 2%;
    z-index: 150;
    opacity:1;
    transition:all .5s ease;
}
.banner .slick-arrow:hover {
    opacity:0.7;
}
.banner .slick-arrow:before {
    content: "";
    font-size: 20px;
    display: block;
    color: #fff;
    margin: 19px 0px;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.banner .slick-next {
    left: auto;
    right: 2%;
}
.banner .slick-prev:before {
    content: "\f053";
}
.banner .slick-next:before {
    content: "\f054";
}
.banner .slick-dots {
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 15%;
    z-index: 100;
    line-height: 0;
}
.banner .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    line-height: 0;
}
.banner .slick-dots button {
    background: #B5C82B;
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: transparent;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.48);
    cursor: pointer;
    padding:0;
}
.banner .slick-active button {
    background: #F27900;
}


/*------------ banner_m------------*/

.banner_m{
    position: relative;
}
.banner_m .banner_link img{
    border-radius: 15px;
}
.banner_m .slick-arrow {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 76px;
    color: transparent;
    border-radius:50%;
    background: rgba(38, 38, 38,0.87);
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 40%;
    margin: -38px 0 0 0;
    left: 2%;
    z-index: 150;
    opacity:1;
    transition:all .5s ease;
}
.banner_m .slick-arrow:hover {
    opacity:0.7;
}
.banner_m .slick-arrow:before {
    content: "";
    font-size: 20px;
    display: block;
    color: #fff;
    margin: 19px 0px;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.banner_m .slick-next {
    left: auto;
    right: 2%;
}
.banner_m .slick-prev:before {
    content: "\f053";
}
.banner_m .slick-next:before {
    content: "\f054";
}
.banner_m .slick-dots {
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 10px;
    z-index: 100;
}
.banner_m .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.banner_m .slick-dots button {
    background: #B5C82B;
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: transparent;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.48);
    cursor: pointer;
    padding:0;
}
.banner_m .slick-active button {
    background: #F27900;
}

.banner_m{
    display: none;
}
/*------------ banner scroll ------------*/
.banner .btn-scroll {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 10%;
    right: 10%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 200;
}
.banner .btn-scroll span.text {
    color: #ffffff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.banner .btn-scroll span.mouse {
    width: 24px;
    height: 35px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    position: relative;
    margin: 13px auto 0;
}
.banner .btn-scroll span.mouse:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    margin: auto;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-animation: floating 1.1s infinite ease-in-out;
    animation: floating 1.1s infinite ease-in-out;
}
@keyframes floating {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/*------------ search-sect ------------*/
.search-sect{
    position: absolute;
    left: 0;
    /*right: 0;*/
    bottom: calc(50% - 323px);
    z-index: 150;
    width: fit-content;
    padding-left: calc((100% - 1510px)/2);
}
.search-sect .container{
    max-width: 1600px;
    padding: 0 15px;
}
/*---- search_form ----*/
.search_div{
    display: flex;
    align-items: center;
    max-width: 700px;
    box-sizing: border-box;
    position: relative;
    padding: 45px 70px 45px 0px;
    z-index: 10;
    border-radius:0 500px 500px 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.search_form{

}
.search_form:before {
    content: "";
    display: block;
    background: linear-gradient(135deg, rgba(0,0,0,1) 0%,rgba(24,24,24,1) 100%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity:0.94;
    position: absolute;
    left: -380px;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border-radius:0 500px 500px 0;
    overflow:hidden;
}
.mmenu-show #mobile-search .search-box .search_form:before{
    display: none;
}

.btn.search{
    width: 125px;
    height: 125px;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    transition: all .5s;
    position: absolute;
    right: -80px;
}
.btn.search:hover{
    color: #fff;
    background: #D39F32;
}
.btn.search .search_ic{
    display: block;
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
    background: #222;
    -webkit-mask: url(../../images/common/search_ic.svg) ;
    mask: url(../../images/common/search_ic.svg) ;
    transition: all .5s;
}
.btn.search:hover .search_ic{
    background: #fff;
}

/*------------ arrow_box ------------*/
.slick-arrow {
    width: 80px;
    height: 80px;
    padding: 0;
    
    min-width: 80px;
    text-align: center;
    color: transparent;
    background: #111;
    border-radius: 100%;
    border: 0;
    cursor: pointer;
    z-index: 150;
    opacity: 1;
    transition: all .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.feature-sect .slick-arrow {
    margin-top: -83px;
}
.slick-arrow.slick-disabled{
    background: #8A857F;
    cursor: default;
}
.slick-arrow.slick-prev{
    
}

.products-sect .slick-arrow.slick-prev{
    margin-bottom: 5px;
}
.products-sect .slick-arrow.slick-next{
    margin-top: 5px;
}
.arrow_box{
    display: block;
    position:relative;
        
}
.slick-arrow:hover .arrow_box{
    animation: arrow_box_hover .5s cubic-bezier(.86,0.000,.07,1.000);
}
.slick-arrow.slick-next:hover .arrow_box{
    animation: arrow_box_hover_reverse .5s cubic-bezier(.86,0.000,.07,1.000);
}
.slick-arrow.slick-disabled:hover .arrow_box{
    animation: inherit;
}
.arrow_box .line_1{
    width: 9px;
    height: 1px;
    background: #fff;
    transform: rotate(-30deg);
    transform-origin: bottom left;
    position:relative;
    left:1px;
    bottom:-1px;
    transition: all .5s;
}
.arrow_box .line_2{
    width: 21px;
    height: 1px;
    background: #fff;
    transition: all .5s;
}
.arrow_box .line_3{
    width: 9px;
    height: 1px;
    background: #fff;
    transform: rotate(30deg);
    transform-origin: top left;
    position:relative;
    left:1px;
    top:-1px;
    transition: all .5s;
}
.slick-arrow.slick-next .arrow_box .line_1{
    transform: rotate(-30deg);
    transform-origin: bottom right;
    position: absolute;
    right: 1px;
    left: auto;
    top: 0;
}
.slick-arrow.slick-next .arrow_box .line_3{
    transform: rotate(30deg);
    transform-origin: top right;
    position: absolute;
    right: 1px;
    left: auto;
    top: 0;
}
.slick-arrow:hover .arrow_box .line_3,
.slick-arrow:hover .arrow_box .line_2,
.slick-arrow:hover .arrow_box .line_1{
    background: #D39F32;
}
.slick-arrow.slick-disabled:hover .arrow_box .line_3,
.slick-arrow.slick-disabled:hover .arrow_box .line_2,
.slick-arrow.slick-disabled:hover .arrow_box .line_1{
    background: #fff;
}
@keyframes arrow_box_hover {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    55% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    100% {
        opacity: 1;
        transform: translate3d(0,0,0)
    }
}

@keyframes arrow_box_hover_reverse {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    55% {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    100% {
        opacity: 1;
        transform: translate3d(0,0,0)
    }
}
.slick-arrow_circle {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: 0;
}
.slick-arrow.slick-next .slick-arrow_circle {
    transform: scaleX(-1);
}
.slick-arrow_circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.slick-arrow_circle circle {
    fill: transparent;
    stroke: #D39F32;
    stroke-width: 2;
    transform-origin: center center;
    stroke-dasharray: 0 250;
    transition: stroke-dasharray .35s cubic-bezier(.39,.575,.565,1.000);
}
.slick-arrow:hover .slick-arrow_circle circle {
    stroke-dasharray: 250 250;
}
.slick-arrow.slick-disabled:hover .slick-arrow_circle circle{
    stroke-dasharray: 0 250;
}
/*------------ index_more ------------*/
.index_more{
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.feature-sect .index_more{
    margin: 55px auto 0;
}
.products-sect .index_more{
    position: absolute;
    right: 15px;
    top: 0;
}

.index_more span{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    font-family: 'Poppins', sans-serif;
    z-index: 1;

}
.index_more .arrow_item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    position: relative;
    z-index: 0;
    transition: transform .4s cubic-bezier(.645,.045,.355,1.000);
}
.index_more:hover .arrow_item{
    transform: translate3d(1em,0,0);
}
.index_more .arrow_item::before{
    content: "";
    border: 2px solid #ccc;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .4s cubic-bezier(.645,.045,.355,1.000);
}
.index_more:hover .arrow_item::before{
    transform: scale(1.5) translate3d(-0.5em,0,0);
}
.index_more .arrow_box{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: all .5s cubic-bezier(.645,.045,.355,1.000);
}
.index_more:hover .arrow_box{
    
    animation: arrow_box_hover_reverse .5s cubic-bezier(.645,.045,.355,1.000);
}
.index_more .arrow_box .line_1,
.index_more .arrow_box .line_2,
.index_more .arrow_box .line_3{
    background: #000;
}
.index_more .arrow_box .line_1{
    transform: rotate(30deg);
    transform-origin: bottom right;
    position: relative;
    right: 1px;
    bottom: -1px;
}
.index_more .arrow_box .line_2{
    width: 21px;
    height: 1px;
}
.index_more .arrow_box .line_3{
    transform: rotate(-30deg);
    transform-origin: top right;
    position: relative;
    right: 1px;
    top: -1px;
}
/*------------ title_box ------------*/
.title_box{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.products-sect .title_box{
    margin-left: 60px;
} 
.feature-sect .title_box{
    justify-content: center;
}
.title_box .title_b{
    display: block;
    color: #111;
    font-weight: 800;
    font-size: 125px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -5px;
    
    line-height: 0.8;
}
.products-sect .title_box .title_b{
    margin-right: 30px;
}
.feature-sect .title_box .title_b{
    order: 2;
}
.title_box .title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.feature-sect .title_box .title{
    align-items: flex-end;   
}
.title_box .title span{
    font-size: 55px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #111;
    line-height: 1;
}
.products-sect .title_box .title span{
    order: 2;
    /*margin-bottom: -10px;*/
}

.title_box .title h3{
    color: #8E8E8C;
    font-size: 22px;
    margin: 0;
    font-weight: normal;
    letter-spacing: 5px;
}

.products-sect .title_box .title h3{
    order: 1;
}

/*------------ products ------------*/
.products-sect {
    padding: 100px 0 60px;
    position: relative;
}
.products-sect::before{
    content: '';
    display: block;
    position: absolute;
    top: calc(50% + 32px);
    left: 0;
    right: 0;
    bottom: 0;
    background: #EBE8E4;
}
.products-sect .container {
    max-width: 1600px;
    
}

.products-sect .flex_box{
    box-sizing: border-box;
    padding-left: 140px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}
.arrows{
    display: block;
    width: 80px;
    margin-right: 20px;
}
/*---- product-list ----*/
.products-sect .slick-slider >*{
    overflow: visible;   
}
.product-list {
    margin: 0 -10px;
    width:100%;
}
.product-list li {
    padding: 0 0px 10px;
    margin: 0 10px;
    max-width: 360px;
}
.product-list li .box {
    margin: 0 auto;
    max-width: 360px;
    box-sizing: border-box;
    position:relative;
}
.product-list li .pic {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
}
.product-list .box.new:before {
    content: 'Hot';
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background: #D39F32;
    border-radius: 50px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.product-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 0;
    z-index: 5;
}
.product-list .text {
    box-sizing: border-box;
    padding: 0 20px;
}
.product-list .name {
    font-size: 20px;
    color: #404040;
    font-weight: normal;
    line-height: 1.2;
    display: block;
    margin: 20px auto 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .5s;
}
.product-list .box:hover .name {
    color: #D29F32;
}
.product-list .info_box{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.product-list .info_box .location{
    box-sizing: border-box;
    padding: 8px 16px;
    border-radius: 60px;
    background: #111;
    font-size: 15px;
    color: #fff;
    max-width: calc(50% - 10px);
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.product-list .info_box .price{
    font-size: 22px;
    color: #D29F32;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: 0.025em;
}
/*------------ feature-sect ------------*/
.feature-sect{
    padding: 80px 0;
    background: #EBE8E4;
    position: relative;
}
.feature-sect::before{
    content: '';
    display: block;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: absolute;
    top: calc(43% + 18px);
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px 60px 0 0;
    background: rgba(255,255,255,0.6);
}
.feature-sect .flex_box{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.feature-sect .slick-slider{
    overflow: hidden;
}
.feature-sect .product-list{
    margin: 0 auto;
}


/*------------ sect4 ------------*/
.sect4 {
    background: url('../../images/common/index/ad_bg.jpg') no-repeat center top;
    background-size: cover;
    padding: 130px 0 200px;
}
/*------------ ad-sect ------------*/
.ad-sect{

}
.ad-sect .flex_box{
    display: flex;
}
.ad-sect .flex_box .box{
    position: relative;
    flex-grow: 1;

}
.ad-sect .flex_box .box .pic img{
    object-fit: cover;
    width: 100%!important;
    height: 100%!important;
    max-width: inherit;
}
.ad-sect .flex_box .box .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 0;
    z-index: 5;
}
/*------------ editor-sect ------------*/
.editor-sect{
    position: relative;
    background: #EBE8E4;
    padding: 75px 0;
    z-index: 10;
}
.logo_word{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    opacity: 0.3;
    font-size: 220px;
    letter-spacing: -0.02em;
    position: absolute;
    left: 30%;
    bottom: -30px;
    line-height: 1;
    z-index: -1;
}
.logo_word b{
    font-weight: 700;
    margin-right: 40px;
}

/*------------ site-footer ------------*/

/*------------ rwd ------------*/
@media screen and (max-width: 1440px) {

}
@media screen and (max-width: 1300px) {
    .site-title{
        padding: 0;
        top: 25px;
    }
    .slogan{
        left: auto;
        top: auto;
        position: relative;
        margin: 0 auto;
        max-width: 528px;
        max-height: 140px;
        margin-bottom: -15px;
    }
    .banner .btn-scroll{
        right: 2%;
        bottom: 2%;
    }
    .banner .slider::before{
        display: none;
    }
    .banner >.container:before, 
    .banner >.container:after{
        display: none;
    }
    .banner .slick-list{
        overflow: hidden;
    }
    .banner .bn-info .ed_t_en span{
        font-size: 45px;
    }
    .banner .slick-active .bn-info .ed_t{
        
    }
    .banner .banner_link img{
        overflow: hidden;
        border-radius: 30px;
    }
    .search-sect{
        
    }
}
@media screen and (max-width: 1100px) {

    .banner {
        padding-top: 0;
        margin-top: 20px;
    }
    .search-sect{
        display: none;
    }
    /*-----title-----*/
    .title_box{
        margin: 0 auto 20px;
    }
    .products-sect .title_box {
        margin: 0 auto 20px;
        justify-content: center;
    }
    .title_box .title_b{
        font-size: 56px;
        letter-spacing: -2px;
    }
    .products-sect .title_box .title_b {
        margin-right: 10px;
    }
    .title_box .title span{
        font-size: 24px;
        font-weight: 300;
    }
    .products-sect .title_box .title span{
        margin: -5px 0 0;
    }
    .title_box .title h3{
        font-size: 16px;
        letter-spacing: 2px;
    }
    /*-----index_more-----*/
    .index_more .arrow_item{
        width: 65px;   
        height: 65px;
    }
    .slick-arrow{
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    .products-sect .index_more {
        position: relative;
        right: inherit;
        top: inherit;
        margin: 25px auto 0;
    }
    /*-----products-sect-----*/
    .products-sect{
        padding: 35px 0 45px;
    }
    .products-sect::before{
        top: calc(50% - 87px);
    }
    .products-sect .slick-slider >*{
        overflow: hidden;
    }
    .products-sect .flex_box{
        padding: 0;
        max-width: 740px;
        margin: 0 auto;
    }
    .arrows{
        width: 50px;
        position: absolute;
        left: -15px;
        top: calc(50% - 102px);
        margin: 0;
    }
    .products-sect .product-list{
        margin: 0 auto;
    }
    /*-----feature-sect-----*/
    .feature-sect .slick-arrow{
        position: absolute;
    }
    .feature-sect .slick-arrow.slick-prev{
        
        left: -15px;
    }
    .feature-sect .slick-arrow.slick-next{        
        right: -15px;
    }
    .arrow_box {
        
    }
    .arrow_box .line_2{
        width: 13px;
    }
    .arrow_box .line_1,
    .arrow_box .line_3{
        width: 7px;
    }
/*    .hot-products .stage,
    .hot-products .txt {
        width: 100%;
        float: none;
        text-align: center;
    }*/

    .feature-sect{
        padding: 0 0 50px;
    }
    .feature-sect .flex_box{
        max-width: 740px;
        margin: 0 auto;
    }
    .feature-sect .index_more {
        margin: 25px auto 0;
    }
    /*-----ad-sect-----*/
    .ad-sect .flex_box{
        /*flex-wrap: wrap;*/
        flex-direction: column;
    }
    .ad-sect .flex_box .box{
        /*width: 50%;*/
    }
    /*-----editor-sect-----*/
    .editor-sect{
        padding: 45px 0 35px;
        overflow: hidden;
    }
    .logo_word{
        font-size: 132px;
        line-height: 0.7;
        left: 80%;
        bottom: 0;
    }
}


@media screen and (max-width: 767px) {
.banner{
        display: none;
    }

    .banner_m{
        display: block;
        padding: 0 15px;
        overflow: hidden;
        margin-top: 20px;
    }


    .banner_m .slick-arrow {
        width: 35px;
        height: 35px;
        line-height: 35px;
        left: 0;
        top: 50%;
        margin: -17px 0 0 0;
    }
    .banner_m .slick-arrow:before {
        font-size: 20px;
        margin: 8px 0px;
    }
    .banner_m .slick-next {
        left: auto;
        right: 0;
    }
    .banner_m .slick-dots {
        bottom: 0;
    }
   
    .products-sect .flex_box{
        max-width: 380px;
        margin: 0 auto;
    }
    .feature-sect .flex_box{
        max-width: 380px;
        margin: 0 auto;
    }
    body .fancybox-nav span {
        width: 30px;
        height: 30px;
        font-size: 18px;
        line-height: 30px;
    }
    .photo-pager {
        float: none;
        margin: 0 0 10px;
    }
    body .fancybox-opened .fancybox-title {
        padding: 10px;
    }
}
