:root{
--default-primary-color: #333333;
--default-secondary-color: #777777;
--primary-text-color: #333333;
--secondary-text-color: #666666;
--third-text-color: #999999;
--decoration-text-color: #dddddd;
--primary-bg-color: #333333;
--secondary-bg-color: #666666;
--decoration-bg-color: #eeeeee;
--primary-color: #2068FF;
--primary-4t-color: rgba(32 104 255 / 4%);
--primary-8t-color: rgba(32 104 255 / 8%);
--primary-12t-color: rgba(32 104 255 / 12%);
--primary-20t-color: rgba(32 104 255 / 20%);
--primary-28t-color: rgba(32 104 255 / 28%);
--primary-40t-color: rgba(32 104 255 / 40%);
--primary-48t-color: rgba(32 104 255 / 48%);
--primary-56t-color: rgba(32 104 255 / 56%);
--primary-64t-color: rgba(32 104 255 / 64%);
--primary-72t-color: rgba(32 104 255 / 72%);
--primary-80t-color: rgba(32 104 255 / 80%);
--primary-88t-color: rgba(32 104 255 / 88%);
--primary-96t-color: rgba(32 104 255 / 96%);
--secondary-color: #fc9905;
/* --primary-color: #00233f;
--secondary-color: #de0000; */
--decoration-color: #f7ba11;
--primary-hover-color: #5087ff;
--primary-light-hover-color: #1bac1b13;
--secondary-hover-color: #ff6640;
/* --primary-hover-color: #012a4a;
--secondary-hover-color: #e42b2b; */
}
::selection{
color: #ffffff;
background-color: var(--secondary-color);
}
*{ 
    box-sizing: border-box;
margin: 0; 
padding: 0;
font-family: "PingFang SC",PingHei,STHeitiSC-Light,"Myriad Set Pro","Lucida Grande","microsoft yahei",SimHei,tahoma,Arial,Verdana,sans-serif;
list-style: none;
}
a{
text-decoration: none;
}
a:visited{
/* color: #333333; */
}
.clearfix::after{
clear: both;
display: block;
content: "";
}
.t-a-c{
text-align: center;
}
.t-a-l{
text-align: left;
}
.t-a-r{
text-align: right;
}
.f-c-c{
display: flex;
justify-content: center;
align-items: center;
}
.f-s-c{
display: flex;
justify-content: flex-start;
align-items: center;
}
.f-e-c{
display: flex;
justify-content: flex-end;
align-items: center;
}
.f-s-s{
display: flex;
justify-content: flex-start;
align-items: flex-start;
}
.f-c-s{
display: flex;
justify-content: center;
align-items: flex-start;
}
.f-e-s{
display: flex;
justify-content: flex-end;
align-items: flex-start;
}
.f-c-e{
display: flex;
justify-content: center;
align-items: flex-end;
}
.f-b-c{
display: flex;
justify-content: space-between;
align-items: center;
}
.f-b-s{
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.f-b-e{
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.f-row{
flex-direction: row;
}
.f-col{
flex-direction: column;
}
.f-wrap{
flex-wrap: wrap;
}
.v-top{
vertical-align: top;
}
.v-middle{
vertical-align: middle;
}
.v-bottom{
vertical-align: bottom;
}
.animated{
-webkit-animation-duration: .8s;
animation-duration: .8s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.fadeInDown{
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@keyframes fadeInDown{
0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    -o-transform: translate3d(0, -30px, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
.fadeInUp{
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@keyframes fadeInUp{
0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
.fadeInRight{
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@keyframes fadeInRight{
0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
.fadeInLeft{
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@keyframes fadeInLeft{
0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
}
100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
}
@keyframes bounceAni{
    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1.1, 0.9);
    }
    50% {
        transform: scale(0.9, 1.1);
    }
    75% {
        transform: scale(1.1, 0.9);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes bannerScroll{
    0% {
        transform: translateY(-8px);
        height: 8px;
    }
    50% {
        transform: translateY(8px);
        height: 10px;
    }
    100% {
        transform: translateY(-8px);
        height: 8px;
    }
    /* 0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
} */
}

.swiper-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet{
    margin: 0 6px !important;
    width: 40px;
    border-radius: 4px;
}

.swiper-history-decor{
    width: 100%;

}
.swiper-history-con{
    text-align: center;
    position: relative;
}
.swiper-history-con-main h1::before{
    content: '';
    position: absolute;
    right: calc(100% + 60px);
    top: 80px;
    width: 160px;
    height: 2px;
    background-color: #dddddd;
}
.swiper-history-con-main h1::after{
    content: '';
    position: absolute;
    left: calc(100% + 60px);
    top: 80px;
    width: 160px;
    height: 2px;
    background-color: #dddddd;
}
.swiper-history-con h1{
    position: relative;
    max-width: 472px;
}
.swiper-history-con p{
    position: relative;
    max-width: 472px;
    margin-bottom: 10px;
    text-align: left;
}
.swiper-history-con h1{
    font-size: 120px;
    font-weight: bolder;
    color: #222222;
}
.swiper-history-con p{
    font-size: 17px;
    font-weight: normal;
}
.swiper-history-con h4{
    font-size: 30px;
    font-weight: normal;
    color: #999999;
    margin-top: 60px;
}
.swiper-button{
    width: 48px;
    height: 48px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-image: none;
    color: #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-button-next, .swiper-button-prev{
    top: 20%;
}
.next3{
    /* right: calc(50%); */
}
.prev3{
    /* left: calc(50%); */
}
.go_top {
    cursor: pointer;
    width: 64px;
    height: 64px;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border-radius: 6px;
    background-color: #222222;
    border: 2px solid rgb(255, 255, 255, .3);
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 48px;
    opacity: 0;
    transition: 0.25s ease-in-out;
    z-index: 997;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.go_top.active{
    opacity: 1;
}
.go_top:hover{
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

.pub-inner-info-page-all{
    text-align: center;
    margin-top: 28px;
}
.pagination{
    text-align: center;
    margin-bottom: 28px;
}
.pagination .active a{
    background-color: var(--primary-color);
    color: #ffffff!important;
}
.pagination .active span{
    background-color: var(--primary-color);
    color: #ffffff!important;
}
.page-item{
    display: inline-block;
}
.page-item a{
    font-size: 14px;
    display: inline-block;
    padding: 8px 16px;
    /*border-radius: 4px;
    */border: 1px solid #eeeeee;
    background-color: #ffffff;
    color: #444444;
    transition: .2s ease-in-out;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.page-item a:hover{
    background-color: var(--primary-color);
    color: #ffffff!important;
}
.page-item span{
    font-size: 14px;
    display: inline-block;
    padding: 8px 16px;
    /*border-radius: 4px;*/
    border: 1px solid #eeeeee;
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

@media(max-width: 640px){
    .go_top {
        bottom: 80px;
        z-index: 1009;
    }
    .swiper-history-con h1{
        font-size: 80px;
    }
    .swiper-history-con{
        width: 100%;
    }
    .swiper-history-con-main h1::before{
        display: none;
    }
    .swiper-history-con-main h1::after{
        display: none;
    }
}



.top-all{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #f6f6f6;
    z-index: 1000;
}
.top-l-all{
    color: #999999;
    font-size: 13px;
}
.top-l-all a{
    color: inherit;
}
.top-l-all a:hover{
    color: var(--primary-color);
}
.top-l-all span{
    /* font-size: 16px; */
    font-weight: bold;
}
.header{
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #eeeeee;
    position: fixed;
    top: 40px;
    left: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 1000;
    /* backdrop-filter: blur(8px); */
}
.header-m{
    display: none;
}
.header-m-navs{
    display: none;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
.ad-block-all{
    width: 100%;
    height: 160px;
    background-color: #eeeeee;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.logo-img{
    height: 40%;
}
.logo-img img{
    height: 100%;
}
.nav-list{

}
.nav-list li{
    height: 100px;
    margin-left: 40px;
}
.nav-list li a{
    position: relative;
    color: #333333;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 15px;
    font-weight: normal;
    transition: .3s ease-in-out;
}
.nav-list li a:hover{
    color: var(--primary-color) !important;
    transform: translateY(4px);
}
.nav-list li a .xydl{
    position: absolute;
    font-size: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    right: -16px;
    top: calc(50% - 30px);
    padding: 2px 5px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.nav-active{
    position: relative;
}
.nav-active a{
    color: var(--primary-color) !important;
    font-weight: bold;
}
.nav-active::after{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
}
.header-have-sub:hover .header-sub{
    height: 80px;
    opacity: 1;
    visibility: visible;
    /* border-bottom: 1px solid #eeeeee; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}
.header-sub{
    width: 100%;
    height: 0;
    position: fixed;
    top: 117px;
    left: 0;
    background-color: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(2) blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}
.header-sub-list{
    height: 100%;
    /* display: none; */
}
.header-sub-list li{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-sub-list a{
    color: #333333;
    font-size: 15px !important;
    margin-left: 32px;
}
.header-sub-list a img{
    width: 48px;
    margin-bottom: 8px;
}
.header-sub-list li a{
    color: #333333;
    font-size: 14px !important;
    margin-left: 48px;
}
.header-sub-list li a:hover{
    color: var(--primary-color);
}
.header-nav-btn{
    width: 108px;
    height: 36px;
    margin-left: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666666;
    border-radius: 6px;
    border: 1px solid #dddddd;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 13px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.header-nav-btn:hover{
    background-color: #f6f6f6;
}
.header-nav-btn i{
    margin-right: 8px;
}
.header-div-full-all{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    /*left: 0;
    */z-index: 1000;
    /*display: none;
    */opacity: 0;
    visibility: hidden;
    left: 100%;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}
.header-div-full-all.active{
    /* display: block; */
    opacity: 1;
    visibility: visible;
    left: 0;
}
.header-div-full-con{
    width: 100%;
    height: 100%;
    position: relative;
    color: #222222;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(20px);
}
.header-div-full-l{
    width: 30%;
    height: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 150px 60px;
}
.header-div-full-r{
    width: 70%;
    height: 100%;
    padding: 150px 200px;
    box-sizing: border-box;
}
.header-div-full-r a{
    color: #222222;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.header-div-full-r a:hover{
    transform: translateX(-15px);
    color: var(--primary-color);
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    -o-transform: translateX(-15px);
}
.header-div-full-close{
    width: 108px;
    height: 108px;
    background-color: #222222;
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.footer{
    width: 100%;
    /* border-top: 1px solid #dddddd; */
    padding: 44px 0 0;
    background-color: #222222;
}
.footer-logo-img{
    height: 50px;
    margin-bottom: 20px;
}
.footer-logo-img img{
    height: 100%;
}
.footer-num{
    margin-top: 4px;

}
.footer-num span{
    font-weight: bold;
    color: #333333;
    font-size: 18px;
}
.footer-num a{
    font-weight: bold;
    color: var(--primary-color);
    font-size: 30px;
    margin-left: 8px;
}
.footer-qrcode{
    width: 140px;
    margin-top: 12px;
}
.footer-qrcode img{
    width: 100%;
    border: 1px solid #eeeeee;
}
.footer-copyright{
    font-size: 14px;
    color: #777777;
}
.footer-copyright a{
    font-size: 13px;
    color: #777777;
}
.footer-qrcode-list{
    color: #ffffff;
}
.footer-nav-list li{
    position: relative;
    margin-left: 56px;
}
.footer-nav-list li a{
    color: #ffffff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    transition: .3s ease-in-out;
}
.footer-nav-list li a:hover{
    color: var(--primary-color) !important;
    transform: translateX(-4px);
}
.footer-sub-list{
    margin-top: 10px;
}
.footer-sub-list a{
    color: #999999 !important;
    font-size: 12px !important;
    margin-top: 12px;
    font-weight: normal !important;
}
.footer-sub-list a:hover{
    color: #333333 !important;
    transform: translateX(-4px);
}
.banner{
    width: 100%;
    height: 100vh;
    background-color: #eeeeee;
    margin-top: 0;
    position: relative;
}
.banner-scroll-btn-all{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
}
.banner-scroll-single{
    width: 20px;
    height: 36px;
    border-radius: 12px;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, .08);
    position: relative;
}
.banner-scroll-single::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -1px;
    background-color: #ffffff;
    width: 2px;
    height: 8px;
    border-radius: 2px;
    /* transition: .3s ease-in-out; */
    animation:bannerScroll 3s infinite;
    -webkit-animation:bannerScroll 3s infinite;
}
.header-scroll-active{
    background-color: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(2) blur(10px);
}
.banner-single{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.search-global{
    width: 100%;
    background-color: #eeeeee;
    padding: 16px 0;
}
.search-block{
    padding: 0 12px;
    background-color: #ffffff;
}
.search-input{
    width: 300px;
    background-color: #ffffff;
    padding: 12px 0;
    border: none;
    outline: none;
    color: #333333;
}
.search-input::placeholder{
    color: #999999;
}

.about{
    width: 100%;
    padding: 64px 0;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.about-width{
    width: 48%;
}
.about-title{
    width: 140px;
    font-size: 32px;
    color: #333333;
    font-weight: normal;
    position: relative;
    padding-right: 24px;
}
.about-title::after{
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 3px solid var(--secondary-color);
    box-sizing: border-box;
}
.about-sec-title{
    text-transform: capitalize;
    color: #999999;
    font-weight: normal;
    font-size: 16px;
}
.about-title-line{
    display: block;
    margin-top: 20px;
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
}
.about-article-all{
    width: 100%;
    margin-top: 24px;
    line-height: 32px;
    color: #777777;
    font-size: 16px;
    text-align: justify;
}
.about-a-href{
    margin-top: 18px;
    transition: .3s ease-in-out;
    display: inline-block;
    padding: 12px 20px;
    color:  #ffffff;
    background-color: var(--primary-color);
    font-size: 15px;
}
.about-a-href:hover{
    opacity: .88;
}
.about-img-all{
    width: 100%;
    position: relative;
    min-height: 320px;
}
.about-img-bg{
    position: absolute;
    top: -20px;
    left: 0;
    /* width: 500px; */
    height: 320px;
    background-color: var(--primary-color);
    transition: .3s ease-in-out;
}
.about-img-content{
    position: absolute;
    top: 0;
    right: 0;
    width: 520px;
    height: 340px;
    background-color: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .3s ease-in-out;
}
.about-img-all:hover .about-img-bg{
    top: -12px;
    left: -8px;
}
.about-img-all:hover .about-img-content{
    top: 0;
    right: -8px;
}

.product{
    width: 100%;
    padding: 64px 0;
    background-color: #f8f8f8;
}
.product-title{
    font-size: 32px;
    color: #333333;
    font-weight: normal;
    display: none;
    margin-bottom: 24px;
}
.product-list-all{
    /* margin-top: 28px; */
}
.product-list-all li{
    margin-bottom: 24px;
}
.product-list-all li:last-child{
    margin-bottom: 0;
}
.product-list-all li a{
    font-size: 32px;
    font-weight: bolder;
    color: #c5c7ca;
    display: flex;
    transition: .3s ease-in-out !important;
    /* font-family: "microsoft yahei"; */
}
.product-nav::after{
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    height: 0;
    width: 0;
    border-radius: 100%;
    border: 3px solid var(--secondary-color);
    box-sizing: border-box;
    transition: .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.product-nav-active{
    transform: translateX(-8px) !important;
    color: var(--primary-color) !important;
    text-shadow: 2px 2px 0px #ebebeb;
    position: relative;
}
.product-nav-active::after{
    height: 16px;
    width: 16px;
    opacity: 1;
    visibility: visible;
}
/* .product-list-all li a:hover{
    transform: translateX(-8px);
    color: var(--primary-color);
    text-shadow: 2px 2px 0px #ebebeb;
} */
.product-more{
    font-size: 16px;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 64px;
}
.product-more p{
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    margin-left: 8px;
}
.product-content-all{
    width: 760px;
    /* display: flex; */
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}
.product-content-all-active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.product-content-single{
    width: 360px;
    height: 280px;
    background-color: #ffffff;
    margin-right: 40px;
    margin-bottom: 40px;
    transition: .3s ease-in-out;
}
.product-content-single-img{
    width: 100%;
    height: 220px;
    background-color: #eeeeee;
    overflow: hidden;
    border-bottom: 1px solid #eeeeee;
}
.product-content-single-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-in-out;
}
.product-content-single:hover{
    transform: translateY(-8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}
.product-content-single:hover .product-content-single-img img{
    transform: scale(1.05);
}
.product-content-single-title{
    margin-top: 20px;
    padding: 0 10px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333333;
    font-weight: bold;
    /* display: flex; */
    justify-content: flex-start;
    align-items: center;
    position: relative;
    text-align: center;
}
.product-content-single-title span{
    display: none;
    position: absolute;
    right: 0;
    margin-left: 8px; 
    font-size: 18px;
    transition: .3s ease-in-out;
    color: var(--primary-color);
}
.product-content-single:hover .product-content-single-title span{
    transform: translateX(8px);
}
.product-content-single:nth-child(2n){
    margin-right: 0;
}

.index-pros-all{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0 30px;
}
.index-pros-new-l{
    width: 25%;
    padding: 100px 0 120px;
    background-image: linear-gradient(#2B2E36,#1C2028,transparent);
}
.index-pros-new-l-nav{
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    padding-left: 32px;
    height: 100px;
    border-left: 2px solid transparent;
    background-image: linear-gradient(to right,transparent,transparent);
    /* background-color: #1C2028; */
    color: #ffffff;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-pros-new-r-list{
    display: none;
}
.index-pros-new-r-list.active{
    display: block;
}
.index-pros-new-l-nav.active{
    border-left: 2px solid var(--primary-color);
    background-image: linear-gradient(to right,#333946,#1c202a);
}
.index-pros-new-l-nav:hover{
    background-color: #13161b;
}
.index-pros-new-l-nav i{
    font-size: 24px;
    margin-right: 15px;
}
.index-pros-new-l-nav span{
    font-size: 16px;
}
.index-pros-new-r{
    width: 75%;
    padding: 130px 0 120px 64px;
    color: #ffffff;
}
.index-pros-new-r-top{
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255 255 255 / 40%);
}
.index-pros-new-con-tit{
    font-size: 25px;
    margin-bottom: 20px;
}
.index-pros-new-con-text{
    font-size: 15px;
    line-height: 32px;
    margin-bottom: 40px;
    /* opacity: .7; */
    font-weight: 200;
    text-align: justify;
    max-height: 200px;
    overflow: auto;
    padding-right: 10px;
}
.index-pros-new-con-text::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: rgba(255,255,255,0);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding-right: 10px;
    text-align: justify;
}
.index-pros-new-con-text::-webkit-scrollbar-thumb {
    background-color: rgba(255 255 255 / 40%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
    
.index-pros-new-con-href{
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    width: 160px;
    height: 40px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-pros-new-con-href i{
    margin-left: 8px;
}
.index-pros-new-con-href:hover{
    opacity: .9;
}
.index-pros-new-r-bottom{
    padding-top: 30px;
}
.index-pros-new-b-all{
    font-size: 24px;
    color: #ffffff;
}
.index-contact-title{
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
.index-contact-title h3{
    font-size: 48px;
    color: #ffffff;
}
.index-contact-title p{
    font-size: 16px;
    color: #999999;
    margin-top: 12px;
}
.index-contact-list{
    width: 100%;
}
.index-contact-list-sin{
    width: 48.5%;
}
.index-contact-list-sin input,
.index-contact-list-sin textarea{
    width: 100%;
    height: 56px;
    background-color: #e5e6e9;
    font-size: 15px;
    padding-left: 20px;
    box-sizing: border-box;
    color: #222222;
    border: 1px solid #333333;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    outline: none;
    margin-bottom: 20px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-contact-list-sin input::placeholder,
.index-contact-list-sin textarea::placeholder{
    color: #444444;
}
.index-contact-list-sin input:focus,
.index-contact-list-sin textarea:focus{
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-20t-color);
}
.index-contact-list-btn button{
    width: 100%;
    height: 64px;
    background-color: var(--primary-color);
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bolder;
    border: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-contact-list-btn button:hover{
    opacity: .9;
}
.index-news-sin{
    width: 48.5%;
    margin-bottom: 40px;
}
.index-news-sin-tit{
    color: #222222;
}
.index-news-sin-tit h3{
    font-size: 26px;
    font-weight: bolder;
}
.index-news-sin-tit span{
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    opacity: .5;
}
.index-news-sin-tit a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #cccccc;
    color: #cccccc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-news-sin-tit a:hover{
    border: 1px solid #aaaaaa;
    color: #aaaaaa;
}
.index-news-sin-only{
    padding: 24px 0 12px;
    /* text-align: justify; */
    border-bottom: 1px solid #cccccc;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-news-sin-only h4{
    font-size: 17px;
    font-weight: bolder;
}
.index-news-sin-only p{
    font-size: 13px;
    opacity: .6;
    line-height: 25px;
    margin: 8px 0;
}
.index-news-sin-only span{
    font-size: 12px;
    opacity: .4;
}
.index-news-sin-only-all{
    width: 100%;
}
.index-news-sin-only-all a{
    width: 100%;
    border-radius: 12px;
    padding-top: 64%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.index-news-sin-only-all a img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.index-news-sin-only-all:hover .index-news-sin-only{
    padding-left: 20px;
    padding-right: 20px;
    background-color: #dddddd;
}
.index-news-links-all{
    width: 100%;
}
.index-news-links-all a{
    width: 100%;
    margin-top: 18px;
    font-size: 13px;
    color: #333333;
    font-weight: normal;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-news-links-all a:hover{
    color: #666666;
}
.index-news-links-all a p{
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-news-links-all a:hover p{
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
}


.index-pros-sin{
    width: 48.5%;
    background-color: #222222;
    border-radius: 12px;
    padding: 40px;
    box-sizing: border-box;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}
.index-pros-sin img{
    position: absolute;
    bottom: 40px;
    right: 40px;
    pointer-events: none;
    opacity: .8;
}
.index-pros-sin p{
    font-size: 24px;
    font-weight: bolder;
}
.index-pros-sin span{
    display: block;
    font-size: 14px;
    line-height: 32px;
    font-weight: normal;
    height: 115px;
    overflow: auto;
    margin: 28px 0;
    text-align: justify;
    padding-right: 10px;
}
.index-pros-sin span::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: rgba(255,255,255,0);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding-right: 10px;
    text-align: justify;
}
.index-pros-sin span::-webkit-scrollbar-thumb {
    background-color: rgba(255 255 255 / 40%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.index-pros-sin a{
    color: #222222;
    background-color: #ffffff;
    width: 160px;
    height: 40px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.index-pros-sin a:hover{
    opacity: .8;
}
.index-pros-sin a i{
    margin-left: 8px;
}

.news{
    width: 100%;
    padding: 64px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.news-list{
    width: 100%;
}
.news-title{
    font-size: 24px;
    color: #c5c7ca;
    font-weight: bold;
    margin-right: 36px;
    transition: .3s ease-in-out;
}
.news-title:hover{
    font-size: 24px;
    color: var(--primary-color);
}
.news-title-active{
    font-size: 24px;
    color: var(--primary-color);
}
.news-content-all{
    width: 100%;
    margin-top: 32px;
    box-sizing: border-box;
    /*border: 1px solid #eeeeee;*/
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: .3s ease-in-out;
    transform: translateY(15px);
}
.news-content-all-active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.news-content-single{
    width: 25%;
    background-color: #f8f8f8;
    min-height: 480px;
    border-right: 1px solid #eeeeee;
    transition: .3s ease-in-out;
    box-sizing: border-box;
    padding: 32px 20px;
}
.news-content-single:hover{
    background-color: #ffffff;
}
.news-content-single:last-child{
    border-right: none;
}
.news-single-title{
    font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 56px;
    text-align: justify;
}
.news-single-date{
    margin-top: 16px;
    font-size: 14px;
    color: #aaaaaa;
}
.news-single-img{
    overflow: hidden;
    margin-top: 36px;
    width: 100%;
    height: 200px;
    background-color: #eeeeee;
}
.news-single-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-in-out;
}
.news-content-single:hover .news-single-img img{
    transform: scale(1.05);
}
.news-single-article{
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 52px;
    text-align: justify;
}
.news-detail-btn{
    margin-top: 12px;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.news-detail-btn span{
    margin-left: 8px;
    transition: .3s ease-in-out;
}
.news-content-single:hover .news-detail-btn span{
    transform: translateX(8px);
}
.friendly-link{
    padding: 24px 0;
    background-color: #f2f2f2;
}
.friendly-link-title{
    font-size: 20px;
    color: #333333;
}
.friendly-link-content{
    margin-top: 16px;
}
.friendly-link-content a{
    font-size: 15px;
    color: #777777;
    margin-right: 16px;
    margin-bottom: 8px;
}
.friendly-link-content a:hover{
    color: var(--primary-color);
}
.ad-block-all-content{

}
.ad-block-all-content h2{
    font-size: 32px;
    color: #7cffaf;
    text-align: center;
}
.ad-block-all-content p{
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 16px;
}
.ad-block-all-content p span{
    font-size: 22px;
    color: #ffffff;
}


.cases{
    width: 100%;
    padding: 64px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.cases-list{
    width: 100%;
}
.cases-title{
    font-size: 24px;
    color: #c5c7ca;
    font-weight: bold;
    margin-right: 36px;
    transition: .3s ease-in-out;
}
.cases-title:hover{
    font-size: 24px;
    color: var(--primary-color);
}
.cases-title-active{
    font-size: 24px;
    color: var(--primary-color);
}
.cases-content-all{
    width: 100%;
    margin-top: 4px;
    box-sizing: border-box;
    /* border: 1px solid #eeeeee; */
    display: flex;
    transition: .3s ease-in-out;
    transform: translateY(15px);
}
.cases-content-all-active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cases-content-single{
    width: 32%;
    background-color: #f8f8f8;
    min-height: 240px;
    border: 1px solid #eeeeee;
    transition: .3s ease-in-out;
    box-sizing: border-box;
    padding: 20px 20px;
    margin-right: 2%;
    margin-bottom: 20px;
}
.cases-content-single:hover{
    background-color: #ffffff;
}
.cases-content-single:nth-child(3n){
    margin-right: 0;
}
.cases-single-title{
    font-size: 18px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 56px; */
    text-align: center;
}
.cases-single-date{
    margin-top: 16px;
    font-size: 13px;
    color: #666666;
}
.cases-single-img{
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
    height: 400px;
    background-color: #eeeeee;
}
.cases-single-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-in-out;
}
.cases-content-single:hover .cases-single-img img{
    transform: scale(1.05);
}
.cases-single-article{
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 52px;
    text-align: justify;
}
.cases-detail-btn{
    margin-top: 12px;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cases-detail-btn span{
    margin-left: 8px;
    transition: .3s ease-in-out;
}
.cases-content-single:hover .cases-detail-btn span{
    transform: translateX(8px);
}


.serve-content-single{
    width: 50%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    transition: .3s ease-in-out;
    box-sizing: border-box;
    padding: 12px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.serve-content-single img{
    width: 56px;
}
.serve-content-single p{
    font-size: 14px;
    color: #222222;
    margin-top: 12px;
}

.form-edit{
    width: 100%;
}
.form-edit-single{
    width: 100%;
    margin-top: 20px;
}
.form-edit-single p{
    font-size: 15px;
}
.form-edit-single p span{
    color: red;
}
.form-edit-single input{
    margin-top: 8px;
    color: red;
    display: block;
    height: 44px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #dddddd;
    box-sizing: border-box;
    text-indent: 12px;
    outline: none;
    transition: .3s ease-in-out;
}
.form-edit-single input:focus{
    border-color: var(--primary-color);
}
.form-edit-single-btn{
    margin-top: 24px;
    font-size: 15px;
    display: block;
    height: 44px;
    width: 100%;
    border-radius: 0;
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.strengths{
    display: none;
}
.inputss{
    display: none;
}
.service{
    display: none;
}


.bottom-side-bar {
  display: none;
  height: 56px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: 1000;
  /* border-top: 1px solid #eeeeee; */
}
@media (max-width: 640px) {
  .bottom-side-bar {
    display: flex;
  }
}

.bottom-side-bar-single {
  flex: 1;
  height: 56px;
  border-right: 1px solid var(--primary-hover-color);
}

.bottom-side-bar-single span {
  font-size: 20px;
  color: #ffffff;
}

.bottom-side-bar-single p {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
}

.bottom-side-bar-block-all {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.bottom-side-bar-block-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.77);
}

.bottom-side-bar-block-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.wechat-block-all {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.wechat-block-all-img {
  width: 160px;
}

.wechat-block-all-img img {
  display: block;
  width: 160px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.phone-block-all {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.phone-block-all-content {
  width: 240px;
  /*padding: 16px;
  */box-sizing: border-box;
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.phone-block-all-content-number {
  color: #333333;
  padding: 12px;
  border-bottom: 1px solid #eeeeee;
  font-size: 16px;
  font-family: "Impact";
  font-weight: normal;
}

.phone-block-all-content-operate {
  width: 100%;
}

.phone-block-all-content-operate-single {
  font-size: 14px;
  color: #333333;
  padding: 12px;
  width: 50%;
  border-right: 1px solid #eeeeee;
}

.phone-block-all-content-operate-single:last-child {
  border: none;
}

.phone-block-tips {
  margin-top: 24px;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}

.phone-block-tips-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.message-block-all {
  opacity: 0;
  visibility: hidden;
}

.message-block-all-content {
  width: 240px;
  box-sizing: border-box;
  padding: 16px;
  background-color: #eeeeee;
  border-radius: 12px;
}

.message-block-all-content-single {
  width: 100%;
  height: 36px;
}

.close-block-all {
  margin-top: 16px;
  width: 120px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  font-size: 14px;
  color: #eeeeee;
  background-color: rgba(255, 255, 255, 0.16);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.side-bar-block-all-active {
  opacity: 1;
  visibility: visible;
}

.inner-bar-block-all-active {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.side-service-block-all {
  display: none;
}

.footer-message-list{
    margin-top: 20px;
}
.footer-message-list input{
    margin-bottom: 0;
    width: 200px;
    border-radius: 0;
    border: 1px solid #dddddd;
    height: 40px;
    margin-left: 12px;
    text-indent: 12px;
    outline: none;
    transition: .3s ease-in-out;
    box-sizing: border-box;
}
.footer-message-list button{
    color: #ffffff;
    background-color: var(--primary-color);
    outline: none;
    width: 140px;
    height: 40px;
    cursor: pointer;
    border: none;
    transition: .3s ease-in-out;
    margin-left: 12px;
}
.footer-message-list button:hover{
    opacity: .88;
}
.footer-message-list input:focus{
    border-color: var(--primary-color);
}

.cases-title span{
    display: none;
}

/* .pagination{
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-num{
    padding: 6px 12px;
    font-size: 13px;
    background-color: #ffffff;
    color: #222222;
    margin: 0 4px;
}
.page-item{
    padding: 6px 12px;
    font-size: 13px;
    background-color: #ffffff;
    color: #222222;
    margin: 0 4px;
}
.page-num-current{
    background-color: var(--primary-color);
    color: #ffffff;
}
.page-item:hover{
    background-color: var(--primary-color);
    color: #ffffff;
} */

@media(max-width: 1200px){
    .container{
        width: 900px !important;
    }
}

@media(max-width: 640px){
    .index-pros-sin{
        width: 100%;
    }
    .index-news-sin{
        width: 100%;
    }
    .banner-scroll-btn-all{
        display: none;
    }
    .ad-block-all{
        height: 160px;
    }
    .ad-block-all-content h2{
        font-size: 24px;
    }
    .ad-block-all-content p{
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
        margin-top: 16px;
    }
    .header-m{
        height: 56px;
        width: 100%;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        background-color: #ffffff;
        border-bottom: 1px solid #eeeeee;
        padding: 0 12px;
        box-sizing: border-box;
    }
    .header-m-l{
        font-size: 0;
        height: 50%;
    }
    .header-m-navs{
        display: flex;
        position: fixed;
        top: 56px;
        left: 100%;
        z-index: 1010;
        background-color: #f8f8f8;
        width: 100%;
        height: calc(100vh - 44px);
        transition: .3s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }
    .header-m-navs-active{
        opacity: 1;
        visibility: visible;
        left: 0;
    }
    .header-m-logo{
        height: 100%;
    }
    .header-m-navs-list li{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px;
    }
    .header-m-navs-list li a{
        font-size: 16px;
        color: #858c85;
        font-weight: bold;
    }
    .header-m-nav-single-active{
        color: var(--primary-color) !important;
        position: relative;
    }
    .header-m-nav-single-active::after{
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
    }
    .container{
        width: 100% !important;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .header{
        display: none;
    }
    .banner {
        width: 100%;
        height: 220px;
        background-color: #eeeeee;
        margin-top: 56px;
    }
    .footer{
        padding-bottom: 64px;
    }
    .footer-nav-list{
        display: none;
    }
    .about-width{
        width: 100%;
    }
    .product-title{
        display: block;
    }
    .product-list-ani{
        width: 100%;
    }
    .product-content-ani{
        width: 100%;
    }
    .product-content-all{
        width: 100%;
    }
    .product-content-single{
        width: 100%;
        margin-right: 0;
        margin-bottom: 28px;
    }
    .search-block{
        width: 90%;
        box-sizing: border-box;
        padding: 0 12px;
        background-color: #ffffff;
    }
    .about-img-all{
        margin-top: 12px;
    }
    .about-img-bg {
        position: absolute;
        top: 0px;
        left: 0;
        width: 300px;
        height: 300px;
        background-color: var(--primary-color);
        transition: .3s ease-in-out;
    }
    .about-img-content{
        width: 340px;
    }
    .news-title{
        font-size: 20px;
        margin-right: 24px;
    }
    .cases-list{
        justify-content: center;
    }
    .cases-title{
        font-size: 25px;
        margin-right: 0;
        color: #226b44;
        position: relative;
        text-align: center;
    }
    .cases-title::before{
        content: '';
        position: absolute;
        width: 50px;
        height: 1px;
        background-color: #226b44;
        top: calc(50% - 1px);
        left: -60px;
    }
    .cases-title[data-title='freedoor']::before{
        display: none;
    }
    .cases-title::after{
        content: '';
        position: absolute;
        width: 50px;
        height: 1px;
        background-color: #226b44;
        top: calc(50% - 1px);
        right: -60px;
    }
    .cases-title[data-title='freedoor']::after{
        display: none;
    }
    .cases-title span{
        font-size: 15px;
        margin-right: 0;
        color: #226b44;
        display: block;
        margin-top: 0;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .news-content-single {
        width: 100%;
        background-color: #f8f8f8;
        height: 480px;
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        transition: .3s ease-in-out;
        box-sizing: border-box;
        padding: 32px 20px;
    }
    .news-content-single:last-child{
        border-bottom: none;
    }
    .product-list-all{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .product-list-all li {
        margin-right: 16px;
        margin-bottom: 24px;
    }.product-more {
        font-size: 16px;
        color: var(--primary-color);
        font-weight: bold;
        margin-top: 16px;
        margin-bottom: 24px;
    }
    .product-list-all li a {
        font-size: 22px;
        font-weight: bolder;
        color: #c5c7ca;
        display: flex;
        transition: .3s ease-in-out !important;
        /* font-family: "microsoft yahei"; */
    }
    .product-nav-active::after {
        height: 12px;
        width: 12px;
        opacity: 1;
        visibility: visible;
        left: -10px;
    }
    .product-nav-active {
        transform: none !important;
    }
    .news-title:hover {
        font-size: 20px;
        color: var(--primary-color);
    }
    .cases-content-single{
        width: 100%;
        margin-right: 0;
        min-height: auto;
    }
    .inputss{
        display: block;
    }
    .service{
        display: block;
    }
    .strengths{
        display: block;
    }
    .strengths img{
        width: 100%;
    }
    .about{
        display: none;
    }
    .product{
        display: none;
    }
    .news{
        display: none;
    }
    .footer-message-list{
        display: none;
    }
    .friendly-link{
        display: none;
    }
    .index-pros-new-l{
        width: 100%;
        padding: 0;
    }
    .index-pros-new-r{
        width: 100%;
        padding: 20px;
    }
}



.inner-banner{
    width: 100%;
    height: 400px;
    background-color: #eeeeee;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 140px;
    position: relative;
}
.case-inner-banner-all {
    margin-top: 140px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-clip: padding-box;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
    background-blend-mode: normal;
    height: 424px;
    /* min-width: 1200px; */
    background-color: #d6e2fc;
    top: 0;
}
.case-inner-banner {
    margin-top: 140px;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-clip: padding-box;
    background-size: auto 424px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 50%;
    background-blend-mode: normal;
    height: 424px;
    /* min-width: 1200px; */
    background-color: #d6e2fc;
    top: 0;
}
.case-inner-swiper-all{
    /* width: 1200px; */
    margin: 100px auto 80px;
    border-radius: 8px;
    padding: 10px;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(4px);
    position: absolute;
    box-sizing: border-box;
    box-shadow: 0 6px 18px 6px rgb(31 35 41 / 3%), 0 3px 6px -6px rgb(31 35 41 / 5%), 0 4px 8px 0 rgb(31 35 41 / 3%)
}
.case-inner-swiper{
    overflow: hidden;
}
.case-swiper-img{
    width: 45%;
    padding-top: 28%;
    border-radius: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.case-swiper-content{
    width: 55%;
    padding: 0 0 0 40px;
}
.indus-span{
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 15px;
    color: var(--primary-color);
    background-color: var(--primary-8t-color);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    margin-bottom: 20px;
}
.case-swiper-content h4{
    font-size: 16px;
    color: #222222;
    margin-bottom: 10px;
}
.case-swiper-content h2{
    font-size: 28px;
    color: #222222;
    margin-bottom: 20px;
}
.case-swiper-content p{
    font-size: 18px;
    color: #666666;
    margin-bottom: 50px;
}
.case-swiper-content a{
    font-size: 16px;
    color: #ffffff;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 5px;
    background-color: var(--primary-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.case-swiper-content a:hover{
    opacity: .9;
}
.inner-banner-word{
    padding-top: 100px;
    color: #ffffff;
    position: relative;
    z-index: 999;
}
.inner-banner-word h1{
    font-size: 48px;
}
.inner-banner-word h4{
    margin-top: 8px;
    font-size: 24px;
    text-transform: uppercase;
    opacity: .48;
    font-weight: normal;
}
.inner-banner.mask::before{
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .4), transparent);
}
.inner-navs-content-cont{
    height: 100%;
}
.inner-title-all{
    width: 100%;
    text-align: center
}
.inner-title-all h3{
    font-size: 32px;
    color: #222222;
}
.inner-title-all p{
    font-size: 18px;
    text-transform: uppercase;
    color: #999999;
}
.inner-title-all span{
    font-size: 14px;
    text-transform: uppercase;
    color: #999999;
}
.inner-body-l-all{
    width: 72%;
}
.inner-body-l-list-sin{
    border-top: 1px solid #dddddd;
    padding: 24px 0;
    box-sizing: border-box;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-body-l-list-sin:last-child{
    border-bottom: 1px solid #dddddd;
}
.inner-body-l-list-sin:hover{
    padding: 24px 20px;
    background-color: #f2f2f2;
}
.inner-body-l-list-sin:hover h3{
    color: var(--primary-color);
}
.inner-body-l-list-sin-con{
    width: 66%;
}
.inner-body-l-list-sin-con h3{
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #222222;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-body-l-list-sin-con p{
    margin-top: 15px;
    font-size: 14px;
    color: #999999;
    line-height: 26px;
}
.inner-body-l-list-sin-con span{
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #aaaaaa;
}
.inner-body-l-list-sin-img{
    width: 26%;
    height: 120px;
    font-size: 0;
}
.inner-body-l-list-sin-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.inner-body-r-all{
    width: 25%;
}
.inner-body-r-list-all{
    width: 100%;
    background-color: #f8f8f8;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    /*  */
}
.inner-body-r-list-all .logo-img{
    width:100%;
    padding-top:50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    -ms-border-radius: 6px 6px 0 0;
    -o-border-radius: 6px 6px 0 0;
}
.inner-body-r-list-all .contact-us-btn{
    padding: 20px;
    border-radius: 0 0 6px 6px;
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    -ms-border-radius: 0 0 6px 6px;
    -o-border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 18px 6px rgb(31 35 41 / 3%), 0 3px 6px -6px rgb(31 35 41 / 5%), 0 4px 8px 0 rgb(31 35 41 / 3%);
}
.inner-body-r-list-all .contact-us-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-body-r-list-all .contact-us-btn a:hover{
    opacity: .9;
}
.inner-body-r-list-all .logo-img img{
    width:72px;
    height: 72px;
    position: absolute;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}
.inner-body-r-list-title{
    padding-bottom: 12px;
    border-bottom: 1px solid #cccccc;
    font-size: 16px;
    color: #222222;
    margin-bottom: 20px;
}
.inner-body-l-news-title{
    padding: 20px 30px;
    background-color: #f2f2f2;
    margin-bottom: 30px;
}
.inner-body-l-news-title h2{
    color: #222222;
    font-size: 24px;
}
.inner-body-l-news-title div{
    margin-top: 8px;
}
.inner-body-l-news-title div span{
    color: #999999;
    font-size: 14px;
    margin-right: 24px;
}
.inner-body-l-news-con{
    width: 100%;
    /* text-align: justify; */
}
.inner-body-l-news-con img{
    width: 100%;
}
.inner-body-l-news-pn-all{
    margin-top: 60px;
}
.inner-body-l-news-prev{
    color: #222222;
    font-size: 14px;
    width: 280px;
    padding: 10px 10px 10px 0;
    background-color: #ffffff;
}
.inner-body-l-news-back{
    color: #222222;
    padding: 8px 32px;
    font-size: 14px;
    border: 1px solid #222222;
    border-radius: 6px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.inner-body-l-news-back:hover{
    background-color: #222222;
    color:#ffffff;
}
.inner-body-l-news-next{
    color: #222222;
    font-size: 14px;
    width: 280px;
    padding: 10px 0 10px 10px;
    background-color: #ffffff;
}
.inner-body-l-news-prev span,
.inner-body-l-news-next span{
    width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-side-sin{
    width: 100%;
    padding: 0 0 10px;
    display: block;
}
.news-side-sin.active .news-side-sin-img{
    height: 136px;
}
.news-side-sin:hover .news-side-sin-img{
    height: 136px;
}
.news-side-sin:hover .news-side-sin-con h3{
    color: var(--primary-color);
}
.news-side-sin-img{
    width: 100%;
    height: 0;
    margin-bottom: 10px;
    overflow: hidden;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.news-side-sin-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.news-side-sin-con{
    width: 100%;
    box-sizing: border-box;
    padding-left: 16px;
    position: relative;
}
.news-side-sin-con::before{
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 6px;
    left: 0;
    background-color: #cccccc;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.news-side-sin-con h3{
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    color: #222222;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.news-side-sin-con span{
    font-size: 12px;
    color: #999999;
}
.inner-body-crumb-all{
    font-size: 14px;
    color: #999999;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 40px;
}
.inner-body-crumb-all a{
    color: #999999;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-body-crumb-all a:hover{
    color: var(--primary-color);
}
.related-title-all{
    text-align: center;
    color: #ffffff;
    margin-bottom: 32px;
}
.related-title-all h2{
    font-size: 30px;
}
.related-title-all p{
    margin-top: 4px;
    opacity: .5;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: normal;
}
.related-sin-con-all{

}
.related-news-sin {
    width: 46.5%;
    margin-bottom: 40px;
}
.related-news-line{
}
.related-news-links-all a{
    width: 100%;
    margin-top: 18px;
    font-size: 14px;
    color: #222222;
    font-weight: normal;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.related-news-links-all a span{
    font-size: 13px;
    color: #999999;
}
.related-news-links-all a:hover{
    color: #666666;
}
.related-sin-con-all img{
    width: 100%;
    height: 225px;
}
.related-sin-con{
    width: 100%;
    color: #ffffff;
    padding: 12px;
    box-sizing: border-box;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.related-sin-con h4{
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.related-sin-con p{
    margin-top: 6px;
    font-size: 13px;
    opacity: .5;
    font-weight: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.related-sin-con-all:hover .related-sin-con{
    background-color: #444444;    
    /* color: #222222; */
}
.related-pn-btn{
    background-image: none;
    color: #ffffff;
    opacity: .5;
    font-size: 40px;
    font-weight: 100;
    top: calc(50% - 30px);
}
.related-prev-btn{
    left: -40px;
}
.related-next-btn{
    right: -40px;
}

.inner-navs-ad-main-all{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}
.inner-navs-ad-main-all a{
    margin: 0 4px;
    font-size: 14px;
    color: #999999;
    padding: 8px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.inner-navs-ad-main-all a.active{
    color: var(--primary-color);
    border: 1px solid transparent;
    background-color: var(--primary-8t-color);
}
.inner-navs-ad-main-all a:hover{
    color: var(--primary-color);
    border: 1px solid var(--primary-8t-color);
}
.inner-cases-sin-all{
    width: 32%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-cases-sin-all img{
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 225px;
    object-fit: cover;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-case-info-all{
    margin-bottom: 30px;
}
.inner-case-info-all h2{
    font-size: 36px;
    color: #222222;
}
.inner-case-info-all p{
    font-size: 18px;
    color: #999999;
    margin-bottom: 10px;
}
.inner-body-more-all{
    margin-top: 40px;
}
.inner-body-more-all a{
    padding: 12px 48px;
    font-size: 14px;
    border: 1px solid #222222;
    color: #222222;
    text-transform: uppercase;
    border-radius: 6px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.inner-body-more-all a:hover{
    background-color: #222222;
    color: #ffffff;
}
.inner-cases-sin-con{
    background: #ffffff;
    width: 100%;
    color: #222222;
    padding: 12px;
    box-sizing: border-box;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-cases-sin-all:hover{
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
}
.inner-cases-sin-all:hover img{
    opacity: .9;
}
.inner-cases-sin-all:hover .inner-cases-sin-con{
    background-color: #222222;
    color: #ffffff;
}
.inner-cases-sin-con h4{
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.inner-cases-sin-con p{
    margin-top: 6px;
    font-size: 13px;
    opacity: .5;
    font-weight: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.inner-navs-ad-all{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
}
.inner-navs-ad-all a{
    margin: 0 18px;
    font-size: 14px;
    color: #999999;
    padding-bottom: 10px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-navs-ad-all a.active{
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}
.inner-navs-ad-all a:hover{
    color: var(--primary-color);
}
.inner-navs-all{
    margin-top: 0;
    height: 88px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 999;
}
.inner-navs-all-m{
    display: none;
}
.inner-navs-content{
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.inner-navs-content li{
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}
.inner-navs-content li:last-child{
    border-right: none;
}
.inner-navs-content li a{
    font-size: 16px;
    font-weight: normal;
    color: #666666;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid #eeeeee;
    transition: .3s ease-in-out;
    font-weight: bold;
    text-align: center;
    padding: 0 10px;
}
.inner-navs-content li a img{
    width: 36px;
    margin-bottom: 4px;
}
.inner-navs-content li a span{
    font-size: 28px;
    color: #333333;
    transition: .3s ease-in-out;
}
.inner-navs-content li a:hover{
    color: var(--primary-color);
    background-color: var(--primary-light-hover-color);
}
.inner-navs-content li a:hover span{
    color: var(--primary-color);
}
.inner-navs-content li:last-child a{
    border-right: none;
}
.inner-profile-culture-all{
    width: 100%;
}
.inner-profile-culture-l{
    width: 52%;
}
.inner-profile-culture-r{
    width: 44%;
}
.inner-profile-culture-r img{
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.inner-profile-culture-links-sin{
    width: 25%;
    color: var(--primary-color);
    cursor: pointer;
}
.inner-profile-culture-links-sin h3{
    font-size: 40px;
    font-weight: bolder;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-profile-culture-links-sin:hover h3{
    transform: translateY(-4px) scale(1.05);
    text-shadow: 0 4px 0 var(--primary-20t-color);
    -webkit-transform: translateY(-4px) scale(1.05);
    -moz-transform: translateY(-4px) scale(1.05);
    -ms-transform: translateY(-4px) scale(1.05);
    -o-transform: translateY(-4px) scale(1.05);
}
.inner-profile-culture-links-sin h3 span{
    font-size: 14px;
    font-weight: normal;
    margin-left: 8px;
}
.inner-profile-culture-links-sin p{
    font-size: 14px;
    color: #666666;
    font-weight: normal;
    margin-top: 0;
}
.inner-profile-culture-main{
    margin-top: 28px;
    /* height: 250px; */
    /* overflow: auto; */
    /* padding-right: 10px; */
}
.inner-profile-culture-main .main-l::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: rgba(255,255,255,0);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding-right: 10px;
    text-align: justify;
}
.inner-profile-culture-main .main-l::-webkit-scrollbar-thumb {
    background-color: rgba(0 0 0 / 20%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.inner-profile-culture-main h3{
    font-size: 18px;
    font-weight: bolder;
    color: #222222;
}
.inner-profile-culture-main .main-l{
    font-size: 14px;
    line-height: 32px;
    font-weight: normal;
    margin-top: 12px;
    color: #666666;
    text-align: justify;
    height: 250px;
    overflow: auto;
    padding-right: 10px;
}
.inner-profile-culture-btn{
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    margin: 20px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.inner-profile-culture-btn:hover{
    opacity: .9;
}
.inner-profile-culture-btn span{
    margin-left: 10px;
}
.inner-profile-culture-btn p{
    
}
.agent-adv-sin .content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: rgba(255,255,255,0);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding-right: 10px;
    text-align: justify;
}
.agent-adv-sin .content::-webkit-scrollbar-thumb {
    background-color: rgba(255 255 255 / 20%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.agent-adv-sin{
    flex: 1;
    min-width: 200px;
    min-height: 200px;
    background-color: #222222;
    position: relative;
    padding: 24px 30px;
    /* overflow: hidden; */
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.agent-adv-sin.active{
    min-height: 300px;
    min-width: 400px;
}
.agent-adv-sin .icon{
    color: #ffffff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .16);
    /*padding: 10px;
    */width: 48px;
    height: 48px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 24px;
    left: 30px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.agent-adv-sin .title{
    position: absolute;
    bottom: 24px;
    left: 30px;
    color: #ffffff;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.agent-adv-sin .content{
    opacity: .8;
    overflow: auto;
    max-height: 175px;
    position: absolute;
    top: 100px;
    left: 30px;
    font-size: 13px;
    width: calc(100% - 60px);
    color: #ffffff;
    line-height: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.agent-adv-sin.active .content{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.agent-adv-sin .title p{
    font-size: 12px;
    text-transform: uppercase;
    opacity: .7;
}
.agent-adv-sin .title h3{
    font-size: 18px;
}
.agent-adv-sin.active .icon{
    left: calc(100% - 30px - 48px);
}
.agent-adv-sin.active .title{
    bottom: calc(100% - 30px - 42px);
}
.agent-adv-sin .decoration{
    position: absolute;
    border-width: 50px;
    border-style: solid;
    /*border-color: #d36607 transparent transparent #d36607;
    */width: 50px;
    height: 100px;
    left: 100%;
    bottom: 0;
    transform-origin: left;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.agent-adv-sin.active .decoration{
    transform: scaleX(.5);
    -webkit-transform: scaleX(.5);
    -moz-transform: scaleX(.5);
    -ms-transform: scaleX(.5);
    -o-transform: scaleX(.5);
}
.process-sin{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 284px;
    margin-left: -55px;
    height: 284px;
    border: 1px solid #E8E8E8;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.process-sin:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.process-sin .icon{
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.process-sin:hover .icon{
    transform: translateY(-8px) scale(1.05);
    -webkit-transform: translateY(-8px) scale(1.05);
    -moz-transform: translateY(-8px) scale(1.05);
    -ms-transform: translateY(-8px) scale(1.05);
    -o-transform: translateY(-8px) scale(1.05);
}
.process-sin i{
    font-size: 28px;
    color: #222222;
}
.process-sin .arrow{
    position: absolute;
    right: 18px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
}
.process-sin:first-child{
    margin-left: 0;
}
.process-sin:last-child .arrow{
    display: none;
}
.projects-content-all{
    display: none;
    justify-content: space-between;
    align-items: flex-start;
}
.projects-content-all.active{
    display: flex;
}
.projects-nav-all{
    width: 100%;
}
.projects-nav-sin{
    padding: 30px;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #222222;
    background-color: #fefefe;
    border: 1px solid #eeeeee;
    cursor: pointer;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.projects-nav-sin i{
    font-size: 40px;
}
.projects-nav-sin h4{
    font-size: 16px;
    margin-top: 12px;
}
.projects-nav-sin p{
    font-size: 12px;
    opacity: .5;
    margin-top: 4px;
}
.projects-nav-sin span{
    font-size: 18px;
    margin-top: 8px;
    font-weight: bolder;
}
.projects-nav-sin[data-color='1'].active{
    color: #ffffff;
    background-color: #F77E14;
    border-color: #F77E14;
}
.projects-nav-sin[data-color='2'].active{
    color: #ffffff;
    background-color: #3B4EFF;
    border-color: #3B4EFF;
}
.projects-nav-sin[data-color='3'].active{
    color: #ffffff;
    background-color: #00C990;
    border-color: #00C990;
}
.projects-nav-sin[data-color='4'].active{
    color: #ffffff;
    background-color: #FC583F;
    border-color: #FC583F;
}
.projects-content-l{
    width: 36%;
}
.projects-content-l-tit{
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 28px 36px;
    height: 90px;
    box-sizing: border-box;
}
.projects-content-l-tit[data-color='1']{
    color: #ffffff;
    background-color: #F77E14;
    border-color: #F77E14;
}
.projects-content-l-tit[data-color='2']{
    color: #ffffff;
    background-color: #3B4EFF;
    border-color: #3B4EFF;
}
.projects-content-l-tit[data-color='3']{
    color: #ffffff;
    background-color: #00C990;
    border-color: #00C990;
}
.projects-content-l-tit[data-color='4']{
    color: #ffffff;
    background-color: #FC583F;
    border-color: #FC583F;
}
.projects-content-l-tit i{
    font-size: 32px;
    margin-right: 12px;
}
.projects-content-l-tit span{
    font-size: 22px;
    font-weight: bolder;
}
.projects-content-l-con{
    width: 100%;
    box-sizing: border-box;
    padding: 28px 36px;
    height: calc(480px - 90px);
    background-color: #f6f6f6;
    border: 1px solid #eeeeee;
    color: #222222;
}
.projects-content-l-con h3{
    font-size: 22px;
}
.projects-content-l-con p{
    opacity: .8;
    font-size: 14px;
    margin-top: 20px;
    line-height: 32px;
    max-height: 200px;
    height: 200px;
    overflow: auto;
    text-align: justify;
    padding-right: 10px;
}
.projects-content-l-con p::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: rgba(0,0,0,0);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.projects-content-l-con p::-webkit-scrollbar-thumb {
    background-color: rgba(0 0 0 / 20%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.projects-content-l-con a{
    margin-top: 20px;
    width: 108px;
    font-size: 13px;
    color: #222222;
    border: 1px solid #222222;
    padding: 8px 12px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.projects-content-l-con a:hover{
    background-color: #222222;
    color: #ffffff;
}
.projects-content-l-con a i{
    margin-left: 4px;
}
.projects-content-r{
    width: 64%;
}
.projects-content-r-img{
    font-size: 0;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 480px;
}
.projects-content-r-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-app-all{
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0 0 0 / 6%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.agent-app-list{
    width: 100%;
    margin-bottom: 20px;
}
.agent-app-sin{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.agent-app-sin-text{
    min-width: 120px;
    width: 120px;
    font-size: 13px;
    color: #222222;
    text-align: right;
    margin-right: 10px;
}
.agent-app-sin-text span{
    margin-right: 4px;
    color: red;
}
.agent-app-sin-chose{
    width: 100%;
    font-size: 12px;
    background-color: #FAFBFD;
    color: #222222;
    height: 36px;
    border: 1px solid #EFF1F4;
    padding: 0 10px;
    outline: none;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.agent-app-sin-chose:focus{
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-12t-color);
}
.agent-app-sin-chose::placeholder{
    color: #999999;
}
.agent-app-sin-label{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px 10px;
    background-color: #FAFBFD;
    border: 1px solid #EFF1F4;
    margin-bottom: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.agent-app-sin-label:last-child{
    margin-bottom: 0;
}
.agent-app-sin-label span{
    margin-left: 4px;
    font-size: 13px;
}

.wkd-title-all{
    width: 100%;
    text-align: center;
}
.wkd-title-all h3{
    font-size: 44px;
    color: #222222;
    margin-top: -64px;
}
.wkd-title-all p{
    font-size: 32px;
    text-transform: uppercase;
    color: #222222;
    opacity: .15;
}
.wkd-pro-sin{
    width: 31.5%;
    background-color: #ffffff;
    border: 1px solid #f1f6ff;
    padding: 30px;
    box-sizing: border-box;
    height: 330px;
    margin-bottom: 30px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.wkd-pro-sin:hover{
    background-color: #f1f6ff;
}
.wkd-pro-sin .icon{
    width: 100px;
    height: 100px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.wkd-pro-sin:hover .icon{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.wkd-pro-sin .icon img{
    width: 100%;
    height: 100%;
}
.wkd-pro-sin h3{
    margin: 24px 0 20px;
    font-size: 22px;
    color: #222222;
}
.wkd-pro-sin p{
    text-align: justify;
    line-height: 28px;
    font-size: 15px;
    color: #999999;
}
.case-detail-inner-info-all{
    margin-top: 140px;
    background-color: rgba(225,234,255,.3);
    padding: 20px 0 40px;
}



.grow-title-all{
    margin-bottom: 20px;
    padding: 0 0.5%;
    box-sizing: border-box;
    position: relative;
}
.grow-title-all::after{
    z-index: 1;
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.grow-title-all[data-color='0']::after{
    background-color: #a5f5de;
}
.grow-title-all[data-color='1']::after{
    background-color: #f5c9a5;
}
.grow-title-all[data-color='2']::after{
    background-color: #a5b4f5;
}
.grow-title-all[data-color='3']::after{
    background-color: #e5a5f5;
}
.grow-title-all[data-color='4']::after{
    background-color: #c2f5a5;
}
.grow-title-all h3{
    z-index: 2;
    position: relative;
    font-size: 28px;
    color: #222222;
    padding-left: 20px;
}
.grow-title-all a{
    font-size: 15px;
    color: #999999;
}
.video-tur{
    width: 100%;
    height: 100vh;
    background-color: #111111;
}
.tur-video-all{
    width: 100%;
    height: 100vh;
    position: relative;
}
.tur-options-all{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    padding-right: 40px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}
.tur-options-bottom{
    align-items: center;
    display: flex;
    filter: drop-shadow(0 0 3px rgba(0,0,0,.3));
    flex-direction: column;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
}
.icbtn{
    align-items: center;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    cursor: pointer;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}
.icbtn i{
    font-size: 28px;
    margin-bottom: 6px;
}
.icbtn.active i{
    color: var(--primary-color);
    transform-origin: left bottom;
    animation: icbtnAni 1s forwards;
}
.icbtn.activenow i{
    color: var(--primary-color);
}
@keyframes icbtnAni{
    0%{
        transform: rotate(0) scale(1);
    }
    50%{
        transform: rotate(-28deg) scale(1.15);
    }
    100%{
        transform: rotate(0) scale(1);
    }
}
.tur-comment-all{
    width: 100%;
    height: 100vh;
    position: relative;
    min-width: 400px;
    background-color: #20212c;
}
.tur-comment-header{
    padding: 0;
}
.tur-comment-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background-color: #181921;
    z-index: 999;
}
.tur-comment-footer::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 140px;
    bottom: 68px;
    left: 0;
    background-image: linear-gradient(0deg, #181921, transparent);
    pointer-events: none;
}
.tur-comment-footer-textarea{
    border-radius: 4px;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    min-height: 44px;
    position: relative;
    width: 100%;
    background-color: #23242e;
    padding: 2px;
    align-items: center;
}
.tur-comment-footer-textarea-content{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 4px;
    color: #ffffff;
    width: 72%;
    outline: none;
}
.tur-comment-footer-option{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 24px;
    bottom: 16px;
}
.footer-option-btns{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-size: 20px;
    color: #888888;
    cursor: pointer;
}
.footer-option-btns.activenow{
    color: var(--primary-color);
}
.misui-modal-header {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}
.misui-modal-header-tit {
    font-weight: bold;
    font-size: 16px;
    color: #222222;
    display: flex;
}
.misui-modal-header-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    transition: .3s ease-in-out;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.misui-modal-header-close i {
    font-size: 16px;
    color: #666666;
}
.tur-comment-content{
    padding: 0 0;
    overflow: scroll;
    overflow-x: hidden;
    height: calc(100vh - 132px);
    width: calc(100% + 20px);
}
.tur-comment-sin-con{
    margin: 16px 0 0;
    padding: 0 10px 10px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.tur-comment-sin-con .avatar{
    margin-right: 8px;
}
.tur-comment-sin-con .avatar img{
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #eeeeee;
}
.tur-comment-sin-con .main .tit{
    margin-bottom: 8px;
}
.tur-comment-sin-con .main .con{
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 12px;
}
.tur-comment-sin-con .opt{
    font-size: 12px;
    color: #ffffff;
    opacity: .5;
    display: flex;
}
.tur-comment-sin-con .opt .btnsa{
    padding: 4px 0;
    margin-right: 8px;
    cursor: pointer;
}
.misui-tur-video-sin{
    width: 20%;
    padding: 0 0.5%;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.misui-tur-video-sin-v{
    display: block;
    height: 0;
    overflow: hidden;
    padding-top: 72%;
    position: relative;
    width: 100%;
}
.misui-tur-video-sin-v-tag{
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    left: 8px;
    position: absolute;
    top: 8px;
    border-radius: 4px;
    padding: 1px 8px;
    font-size: 12px;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.misui-tur-video-sin-v-duration{
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    right: 8px;
    position: absolute;
    bottom: 8px;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    background-color: rgba(0,0,0,.7);
    color: #ffffff;
}
.misui-tur-video-sin-v-cover{
    height: 100%;
    width: 100%;
    background-color: #cccccc;
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    border-radius: 10px 10px 0 0;
}
.misui-tur-video-sin-v-cover img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.misui-tur-video-sin-v-con{
    background: linear-gradient(to right bottom, rgb(16, 17, 19), rgb(91, 92, 95));
    padding: 16px 24px;
    position: relative;
    text-shadow: 0 0 4px rgb(0 0 0 / 10%);
    border-radius: 0 0 10px 10px;
}
.misui-tur-video-sin-v-con-main{
    padding-bottom: 0;
}
.misui-tur-video-sin-v-con-main .tit{
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    display: -webkit-box;
    font-size: 16px;
    height: 46px;
    line-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    text-align: justify;
}
.misui-tur-video-sin-v-con-main .author{
    display: inline-block;
    font-size: 13px;
    line-height: 22px;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    word-break: break-all;
    color: rgba(255, 255, 255, .5);
}
.misui-tur-video-sin-v-con-btns{
    border-top: 1px solid rgba(255, 255, 255, .2);
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    line-height: 21px;
    margin: 0 auto;
    margin-top: 16px;
    padding-top: 16px;
    max-width: 240px;
    min-width: 160px;
    width: 100%;
}
.misui-tur-video-sin-v-con-btns .icbtn{
    align-items: center;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    cursor: pointer;
}
.misui-tur-video-sin-v-con-btns .icbtn i{
    font-size: 22px;
    margin-bottom: 6px;
}
.misui-tur-video-sin-v-con-btns .icbtn.active i{
    color: #ff0000;
    transform-origin: left bottom;
    animation: icbtnAni 1s forwards;
}
.misui-tur-video-sin-v-con-btns .icbtn.activenow i{
    color: #ff0000;
}
@keyframes icbtnAni{
    0%{
        transform: rotate(0) scale(1);
    }
    50%{
        transform: rotate(-28deg) scale(1.15);
    }
    100%{
        transform: rotate(0) scale(1);
    }
}
.culture-block-all{
    width: 100%;
}
.culture-block-sin{
    width: 33.3%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 12px 12px 0;
}
.culture-block-sin h1{
    font-size: 24px;
    font-weight: bolder;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #ffffff;
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    background-color: var(--primary-color);
}
.culture-block-sin h3{
    color: #222222;
    font-weight: bolder;
    font-size: 20px;
}
.culture-block-sin p{
    color: #222222;
    font-size: 15px;


    line-height: 26px;
    margin-top: 8px;
}

.certi-link-sin{
    width: 24%;
    margin-right: 1.3%;
    background-color: #f6f6f6;
    padding: 40px 40px;
    box-sizing: border-box;
    cursor: pointer;
    margin-bottom: 16px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.certi-link-sin p{
    color: #222222;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.certi-link-sin-img{
    width: 100%;
    height: 296px;
    overflow: hidden;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.certi-link-sin-img img{
    width: 100%;
    height: 100%;
    transition: .25s ease-in-out;
    object-fit: cover;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.certi-link-sin:nth-child(4n){
    margin-right: 0;
}
.certi-link-sin:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.corpo-link-sin{
    width: 15.5%;
    margin-right: 1.4%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 12px 12px;
    box-sizing: border-box;
    cursor: pointer;
    margin-bottom: 16px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.corpo-link-sin p{
    color: #222222;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.corpo-link-sin-img{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.corpo-link-sin-img img{
    width: 100%;
    /*height: 100%;
    */transition: .25s ease-in-out;
    object-fit: cover;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
}
.corpo-link-sin:nth-child(6n){
    margin-right: 0;
}
.corpo-link-sin:hover img{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}
.corpo-link-sin:hover{
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .2);
}
.contact-us-public-all{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 380px;
    color: #222222;
    text-align: center;
}
.contact-us-public-all h1{
    font-size: 64px;
    font-weight: bolder;
    text-transform: uppercase;
}
.contact-us-public-all h2{
    font-size: 36px;
    font-weight: bolder;
}
.contact-us-public-all p{
    margin-top: 20px;
    font-size: 18px;
    font-weight: normal;
}
.contact-us-public-btn{
    margin-top: 24px;
    width: 200px;
    height: 48px;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.contact-us-public-btn:hover{
    opacity: .9;
}
.recruit-content-list-con-all{
    
}
.recruit-content-list-sin{
    padding: 18px 20px;
    font-size: 18px;
    color: #222222;
    border-top: 1px solid #dddddd;
    /*border-bottom: 1px solid #dddddd;
    */cursor: pointer;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.recruit-content-list-sin.active{
    background-color: #f6f6f6;
}
.recruit-content-list-sin:hover{
    background-color: #f6f6f6;
}
.recruit-content-list-con-all:last-child .recruit-content-list-sin{
    border-bottom: 1px solid #dddddd;
}
.recruit-content-list-sin p{
    font-size: 17px;
    font-weight: bolder;
}
.recruit-content-list-sin .plus{
    width: 20px;
    height: 20px;
    position: relative;
}
.recruit-content-list-sin .plus::before{
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 10px);
    width: 20px;
    height: 2px;
    background-color: #cccccc;
}
.recruit-content-list-sin .plus::after{
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 1px);
    width: 2px;
    height: 20px;
    background-color: #cccccc;
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.recruit-content-list-sin.active .plus::after{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.recruit-content-con-sin{
    /* width: 100%; */
    background-color: #f8f8f8;
    padding: 20px 20px 40px;
    font-size: 14px;
    font-weight: bolder;
    color: #666666;
    display: none;
}
.recruit-content-con-sin-links{
    margin-bottom: 40px;
}
.recruit-content-con-sin-links i{
    margin-right: 8px;
    font-size: 18px;
    color: #333333;
}
.recruit-content-con-sin-cons{
    max-height: 300px;
    overflow: auto;
    color: #222222;
    margin-bottom: 40px;
}
.recruit-portal-all{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}
.recruit-portal-all.active{
    display: flex;
}
.recruit-portal-mask{
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 0 0 / 80%);
    cursor: pointer;
}
.recruit-portal-dialog{
    z-index: 2;
    position: relative;
    width: 500px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.recruit-content-con-sin-btn{
    cursor: pointer;
    width: 120px;
    height: 48px;
    border-radius: 4px;
    font-size: 14px;
    color: #ffffff;
    background-color: var(--primary-color);
    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.recruit-content-con-sin-btn:hover{
    opacity: .9;
}
.company-infos-sin{
    width: 50%;
    box-sizing: border-box;
    padding-right: 12px;
    margin-bottom: 40px;
}
.company-infos-sin .icons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: 1px solid #999999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 10px;
}
.company-infos-sin .icons i{
    font-size: 20px;
    color: #999999;
}
.company-infos-sin p{
    font-size: 14px;
    color: #666666;
}
.company-infos-sin h4{
    font-size: 15px;
    font-weight: bold;
    color: #222222;
    margin-top: 4px;
}


.common-up-down-title{
    /* width: 100%; */
    display: inline-block;
    color: #222222;
    margin-bottom: 32px;
}
.common-up-down-title h2{
    text-transform: uppercase;
    font-size: 26px;
    font-weight: lighter;
    display: flex;
}
.common-up-down-title h3{
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bolder;
    position: relative;
    display: inline-block;
}
.common-up-down-title h3::after{
    content: '';
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
.about-content-all{
    padding: 64px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.about-content-w{
    width: 48%;
}
.about-nei-img{
    width: 50%;
}
.about-content-title{
    font-size: 24px;
    margin-bottom: 24px;
    color: #333333;
    position: relative;
    text-align: center;
}
.about-content-title::before{
    content: '';
    position: absolute;
    left: 50%;
    top: -20px;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    border: 3px solid var(--secondary-color);
    box-sizing: border-box;
    transition: .3s ease-in-out;
}
.about-content-article{
    text-indent: 28px;
    line-height: 28px;
    font-size: 15px;
    color: #222222;
    text-align: justify;
    margin-bottom: 12px;
}
.about-content-img{
    width: 100%;
}
.about-content-img img{
    width: 100%;
}
.about-content-product{
    width: 100%;
    margin-top: 24px;
}
.about-content-product li{
    cursor: default;
    width: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
    /* border: 1px solid #eeeeee;
    background-color: #ffffff; */
    color: #333333;
    font-size: 14px;
    margin-right: 16px;
    margin-bottom: 12px;
    transition: .3s ease-in-out;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, .08); */
}
.about-content-product li:hover{
    transform: translateY(-4px);
}
.about-content-product li img{
    margin-bottom: 4px;
    width: 48px;
}
.about-cor-content-article p{
    line-height: 28px;
    font-size: 15px;
    color: #222222;
    text-align: justify;
    margin-bottom: 12px;
}
.about-cor-content-w{
    width: 100%;
    height: 200px;
}
.about-cor-single{
    width: 50%;
    height: 100%;
}
.about-cor-img{
    display: block;
}
.about-cor-content-w:hover .about-cor-single-img{
    background-size: 105%;
}
.about-cor-single-img{
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #eeeeee;
    overflow: hidden;
    transition: .3s ease-in-out;
}
.about-cor-single-content{
    padding: 36px 36px;
    height: 100%;
    box-sizing: border-box;
    background-color: #f8f8f8;
    cursor: default;
    transition: .3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.about-cor-icon{
    position: absolute;
    font-size: 200px !important;
    opacity: .04;
    bottom: -20px;
    right: 0px;
    pointer-events: none;
}
.about-cor-content-w:hover .about-cor-single-content{
    padding-left: 48px;
}
.about-cor-single-content h2{
    font-size: 24px;
    color: #333333;
}
.about-cor-single-content h5{
    width: 64px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 16px 0;
}
.about-cor-single-content p{
    font-size: 15px;
    color: #666666;
}
.inner-left-content{
    width: 280px;
    display: block;
}
.inner-product-content{
    width: 880px;
}
.inner-product-all{
    padding: 64px 0;
    background-color: #f8f8f8;
}
.inner-product-title{
    font-size: 22px;
    color: #333333;
    margin-bottom: 16px;
}
.inner-product-intro{
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
    line-height: 24px;
    text-align: justify;
}
.inner-product-intro .bb{
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 28px;
    text-align: justify;
}
.inner-product-intro .pp{
    font-size: 14px;
    line-height: 28px;
    color: #666666;
    margin-bottom: 12px;
    text-align: justify;
}
.inner-product-single{
    width: 32.6%;
    margin-right: 1%;
    margin-bottom: 10px;
    height: 280px;
    transition: .3s ease-in-out;
    background-color: #ffffff;
}
.inner-product-single:nth-child(3n){
    margin-right: 0;
}
.inner-product-single:hover{
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}
.inner-product-single:hover .product-content-single-img img{
    transform: scale(1.05);
}
.inner-product-single:hover .product-content-single-title span{
    transform: translateX(8px);
}
.inner-left-single{
    margin-bottom: 48px;
}
.inner-left-title{
    font-size: 16px;
    color: #ffffff;
    background-color: var(--primary-color);
    padding: 16px;
    box-sizing: border-box;
}
.inner-left-content-list{
    background-color: #ffffff;
    overflow: hidden;
}
.inner-left-content li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}
.inner-left-content li p{
    font-size: 14px;
    color: #999999;
    padding-left: 16px;
    font-weight: normal;
    min-width: 80px;
    box-sizing: border-box;
    text-align-last: justify;
}
.inner-left-content li a{
    /* min-width: 200px; */
    color: #222222;
    font-size: 14px;
    display: block;
    padding: 16px;
    transition: .3s ease-in-out;
    background-color: #ffffff;
    /* white-space: nowrap; */
    /* text-overflow: ellipsis; */
    /* overflow: hidden; */
    /* word-break: break-all; */
}
.inner-left-content li img{
    width: 88px;
    min-width: 88px;
    height: 88px;
    padding: 10px 0;
    box-sizing: border-box;
    object-fit: cover;
}
.inner-left-content li:hover a{
    transform: translateX(4px);
    color: var(--primary-color);
    /* background-color: #f8f8f8; */
}
.inner-left-content li:last-child{
    border-bottom: none;
}
.news-list-all{
    width: 100%;
}
.news-single-content{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}
.inner-news-single-img{
    width: 35%;
    height: 200px;
    background-color: #eeeeee;
    overflow: hidden;
}
.inner-news-single-img img{
    width: 100%;
    height: 100%;
    transition: .3s ease-in-out;
}
.news-single-content:hover .inner-news-single-img img{
    transform: scale(1.05);
}
.inner-news-single-article{
    height: 200px;
    box-sizing: border-box;
    padding: 36px 28px;
    width: 65%;
    background-color: #ffffff;
    position: relative;
}
.inner-news-single-article::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0px;
    height: 0px;
    transition: .3s ease-in-out;
    border-width: 10px;
    border-style: solid;
    border-color: transparent var(--primary-color) var(--primary-color) transparent;
}
.news-single-content:hover .inner-news-single-article::after{
    border-width: 14px;
}
.inner-news-single-article h3{
    color: #333333;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.inner-news-single-article p{
    margin-top: 16px;
    color: #666666;
    font-size: 14px;
    line-height: 24px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
    text-align: justify;
}
.inner-news-single-article h5{
    margin-top: 16px;
    font-weight: normal;
    font-size: 14px;
    color: #999999;
}
.address-map{
  border: 1px solid #eeeeee;
  margin-top: 0;
  border-radius: 6px;
  /*width: 1200px;
  */height: 250px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.contact-list-all{
    width: 100%;
}
.contact-single{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    padding: 24px 16px;
    border-right: 1px solid #eeeeee;
    transition: .3s ease-in-out;
    cursor: pointer;
    height: 188px;
}
.contact-single:hover{
    transform: translateY(-4px);
    box-shadow: 0 60px 40px -40px rgba(0, 0, 0, .16);
}
.contact-single:last-child{
    border-right: none;
}
.contact-single h4{
    font-size: 15px;
    font-weight: normal;
    color: #666666;
    margin-top: 0;
}
.contact-single h2{
    font-size: 18px;
    font-weight: normal;
    color: #333333;
    text-align: center;
}
.contact-single .iconfont{
    font-size: 72px;
    color: var(--primary-color);
    margin: 16px 0;
    transition: .3s ease-in-out;
    /* -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; */
}
.contact-single:hover .iconfont{
    transform: translateY(-4px);
    text-shadow: 0 4px 0 rgba(0, 0, 0, .16);
    /* -webkit-animation-name: bounceAni;
    animation-name: bounceAni; */
}
.contact-single img{
    width: 128px;
    margin: 16px 0;
}
.online-list-all{
    width: 72%;
    padding: 24px 36px;
    box-sizing: border-box;
    background-color: #ffffff;
}
.online-list-single{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}
.online-list-single p{
    font-size: 15px;
    color: #333333;
    min-width: 64px;
    text-align-last: justify;
}
.online-list-single input{
    box-sizing: border-box;
    margin-left: 28px;
    font-size: 15px;
    color: #333333;
    border: none;
    border: 1px solid #eeeeee;
    min-width: 470px;
    height: 48px;
    outline: none;
    transition: .3s ease-in-out;
    padding-left: 16px;
}
.online-list-single input:focus{
    border-color: var(--primary-color);
}
.online-list-single input::placeholder{
    color: #cccccc;
}
.online-list-single textarea{
    box-sizing: border-box;
    margin-left: 28px;
    font-size: 15px;
    color: #333333;
    border: none;
    border: 1px solid #eeeeee;
    min-width: 470px;
    min-height: 240px;
    outline: none;
    transition: .3s ease-in-out;
    padding: 16px;
}
.online-list-single textarea:focus{
    border-color: var(--primary-color);
}
.block-decoration{
    width: 100%;
    height: 48px;
    background-color: var(--primary-color);
}
.confirm-btn{
    width: 470px;
    border: none;
    background-color: var(--primary-color);
    height: 44px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.confirm-btn:hover{
    transform: translateY(-4px);
}
.inner-detail-list-all{
    width: 100%;
    margin-bottom: 16px;
}
.inner-detail-list-all p{
    color: #999999;
    font-size: 14px;
    margin-right: 24px;
}
.inner-detail-content{
    background-color: #ffffff;
    padding: 20px 28px;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    text-align: justify;
}
.inner-detail-content img{
    width: 60%;
}
.inner-detail-content p,
.inner-detail-content span,
.inner-detail-content img{
    display: block;
    margin-bottom: 12px;
    text-indent: 28px;
}
.inner-detail-btns{
    width: 100%;
    margin-top: 24px;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
}
.inner-detail-btns a{
    font-size: 14px;
    color: #ffffff;
    padding: 10px 24px;
    background-color: var(--secondary-color);
}
.consult-all{
    background-color: #faf8f5;
    padding: 64px 0;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.consult-all-title{
    
}
.consult-all-title h2{
    font-size: 28px;
    font-weight: bold;
    color: #333333;
}
.consult-all-title h4{
    margin-top: 8px;
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    font-weight: normal;
}
.title-con-line{
    margin-top: 8px;
    height: 4px;
    width: 64px;
    background-color: var(--primary-color);
}
.consult-all-content{
    width: 100%;
    margin-top: 48px;
}
.consult-content-single{
    width: 33.3%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
.consult-content-single:hover .consult-content-single-img{
    transform: translateY(-8px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, .08);
}
.consult-content-single-img{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-bottom: 16px;
    padding: 24px;
    transition: .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.consult-content-single-img img{
    width: 72%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.consult-content-single:hover .consult-content-single-img img{
    -webkit-animation-name: bounceAni;
    animation-name: bounceAni;
}
.consult-content-single-word{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}
.consult-contact-all{
    margin-top: 60px;
}
.consult-contact-left h2{
    font-size: 22px;
    color: #333333;
    text-align: center;
}
.consult-contact-left p{
    margin-top: 24px;
    height: 4px;
    width: 120px;
    background-color: #333333;
}
.consult-contact-left h4{
    margin-top: 24px;
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
}
.consult-contact-btn-all{
    margin-top: 48px;
}
.consult-contact-btn{
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: #ffffff;
    transition: .3s ease-in-out;
}
.consult-contact-btn:hover{
    transform: translateY(-4px);
}
.honor-img{
    width: 33.3%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.honor-img img{
    width: 100%;
    transition: .3s ease-in-out;
}
.honor-img:hover img{
    transform: scale(1.05);
}
.users-s-img{
    width: 25%;
    box-sizing: border-box;
    padding: 16px;
}
.users-s-img img{
    width: 100%;
}
.inner-detail-c-l-href {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 36px;
    font-size: 13px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 12px;
    transition: 0.2s ease-in-out;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.inner-detail-c-l-href:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}



@media(max-width: 640px){
    .inner-body-l-all{
        width: 100%;
    }
    .inner-body-r-all{
        width: 100%;
    }
    .recruit-content-con-sin-links>div{
        width: 100%;
        margin-bottom: 10px;
    }
    .culture-block-sin{
        width: 100%;
    }
    .corpo-link-sin{
        width: 48.5%;
        margin-right: 3%;
    }
    .corpo-link-sin:nth-child(2n){
        margin-right: 0;
    }
    .corpo-link-sin:nth-child(6n){
        margin-right: 0;
    }
    .certi-link-sin{
        width: 100%;
        margin-right: 0;
    }
    .certi-link-sin-img{
        height: 416px;
    }
    .inner-banner{
        height: 160px;
        margin-top: 56px;
    }
    .inner-banner-word{
        padding-top: 40px;
    }
    .inner-banner-word h1{
        font-size: 24px;
    }
    .inner-banner-word h4{
        font-size: 14px;
    }
    .about-content-w{
        width: 100%;
    }
    .about-content-product li{
        margin-right: 0;
        width: 114px;
        padding: 8px;
    }
    .about-cor-content-w{
        border-bottom: 1px solid #eeeeee;
    }
    .about-cor-content-w:last-child{
        border-bottom: none;
    }
    .about-cor-single{
        width: 100%;
    }
    .about-cor-img{
        display: none;
    }
    .inner-navs-all{
        display: none;
    }
    .inner-navs-all-m{
        display: block;
        position: relative;
    }
    .inner-navs-m-click{
        padding: 16px;
        box-sizing: border-box;
        background-color: var(--primary-color);
        color: #ffffff;
    }
    .inner-navs-m-click-word{
        font-size: 17px;
        font-weight: bold;
    }
    .inner-navs-m-click span{
        font-size: 26px;
        font-weight: bold;
    }
    .inner-navs-m-list{
        position: absolute;
        top: 120px;
        width: 100%;
        background-color: #f8f8f8;
        transition: .3s ease-in-out;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
    }
    .inner-navs-m-list li{
        border-bottom: 1px solid #eeeeee;
        width: 100%;
    }
    .inner-navs-m-list li a{
        display: block;
        font-size: 16px;
        color: #222222;
        font-weight: bold;
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
    }
    .inner-navs-m-list-active{
        top: 60px;
        opacity: 1;
        visibility: visible;
    }
    .inner-product-single{
        width: 100%;
        margin-right: 0;
    }
    .inner-left-content {
        display: none;
    }
    .inner-product-content{
        width: 100%;
    }
    .inner-news-single-img{
        display: none;
    }
    .inner-news-single-article{
        width: 100%;
        position: relative;
    }
    .contact-list-all{
        flex-wrap: wrap;
    }
    .contact-single{
        height: 160px;
        width: 100%;
        flex: auto;
        border-right: none;
        border-bottom: 1px solid #eeeeee;
    }
    .address-map{
        width: 100%;
    }
    .online-list-all{
        padding: 16px;
        width: 100%;
    }
    .online-list-single{
        flex-wrap: wrap;
    }
    .online-list-single p{
        text-align-last: auto;
    }
    .online-list-single input{
        margin-left: 0;
        margin-top: 16px;
        min-width: 100%;
        width: 100%;
    }
    .online-list-single textarea{
        margin-left: 0;
        margin-top: 16px;
        min-width: 100%;
        width: 100%;
    }
    .inner-detail-content{
        padding: 12px;
    }
    .inner-detail-content img{
        width: 100%;
    }
    .consult-content-single{
        width: 100%;
        margin-bottom: 24px;
    }
    .about-cor-content-w{
        height: 168px;
    }
    .about-cor-single-content{
        padding: 24px;
    }
    .about-cor-icon{
        font-size: 160px !important;
        opacity: .02;
        right: -20px;
    }
    .about-nei-img{
        width: 100%;
    }
    .honor-img{
        width: 100%;
    }
    .users-s-img{
        width: 50%;
    }
    .inner-product-all{
        padding: 36px 0;
    }
    .inner-profile-culture-r{
        width: 100% !important;
    }
    .inner-profile-culture-l{
        width: 100% !important;
    }
    .inner-profile-culture-links-sin{
        width: 50%;
    }
    .agent-adv-sin.active {
        min-width: 100%;
    }
    .agent-adv-sin{
        min-width: 100%;
    }
    .agent-adv-sin.active .decoration{
        display: none;
    }
    .process-sin{
        width: 100%;
        margin-left: 0;
    }
    .inner-cases-sin-all{
        width: 100%;
    }
    .recruit-portal-dialog{
        width: 90%;
    }
    .agent-app-sin{
        width: 100% !important;
    }
    .case-inner-banner-all{
        margin-top: 0;
        height: 664px;
    }
    .case-inner-swiper-all{
        margin: 100px 10px 80px;
    }
    .case-swiper-img{
        width: 100%;
        padding-top: 62.5%;
    }
    .case-swiper-content{
        width: 100% !important;
        padding: 0 0 0 0;
        margin-top: 10px;
    }
    .inner-body-l-news-prev{
        width: 30%;
    }
    .inner-body-l-news-next{
        width: 30%;
    }
    .related-news-sin{
        width: 100%;
    }
    .inner-body-l-news-prev span, .inner-body-l-news-next span{
        width: 100%;
    }
    .related-case-swiper{
        width: 100% !important;
    }
    .related-pn-btn{
        display: none;
    }
    .case-detail-inner-info-all{
        margin-top: 57px;
    }
    .misui-tur-video-sin{
        width: 100% !important;
    }
}