﻿.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: 35px;
}
.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;
    transform: scale(1.06);
}
.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;
}
.header-div-full-close i{
    font-size: 48px;
    transition: .25s ease-in-out;
}
.header-div-full-close:hover i{
    transform: rotate(180deg);
}

.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: 35px;
}
.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;
    }
}