@import url(animate.css);
@import url(../layui/css/layui.css);

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot') format('embedded-opentype'),
         url('../fonts/Poppins-Bold.woff2') format('woff2'),
         url('../fonts/Poppins-Bold.woff') format('woff'),
         url('../fonts/Poppins-Bold.ttf') format('truetype'),
         url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot') format('embedded-opentype'),
         url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.woff') format('woff'),
         url('../fonts/Poppins-Regular.ttf') format('truetype'),
         url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
}
@font-face {
    font-family: 'Knockout-HTF51-Middleweight';
    src: url('../fonts/Knockout-HTF51-Middleweight.eot');
    src: url('../fonts/Knockout-HTF51-Middleweight.eot') format('embedded-opentype'),
         url('../fonts/Knockout-HTF51-Middleweight.woff2') format('woff2'),
         url('../fonts/Knockout-HTF51-Middleweight.woff') format('woff'),
         url('../fonts/Knockout-HTF51-Middleweight.ttf') format('truetype'),
         url('../fonts/Knockout-HTF51-Middleweight.svg#Knockout-HTF51-Middleweight') format('svg');
}
/*animation*/
@keyframes fadeInUps {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(0, 50px, 0);

        transform: translate3d(0, 50px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
@keyframes fadeInLefts {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(50px, 0px, 0);

        transform: translate3d(50px, 0px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
@keyframes fadeInRights {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(-150px, 0px, 0);

        transform: translate3d(-150px, 0px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
.fadeInUp{

    animation-name: fadeInUps;

    animation-delay: .1s;

}
.fadeInLeft{

    animation-name: fadeInLefts;

    animation-delay: .1s;

}
.fadeInRight{

    animation-name: fadeInRights;

    animation-delay: .1s;

}
/*---------- base ---------*/
*{
	padding:0px;
	margin:0px;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Safari */
}
html{
	background:#fff;
}
body{
	font-size:16px;
	overflow-x:hidden;
	font-family:"Poppins-Regular",Arial,Helvetica,sans-serif,"宋体";
	-webkit-font-smoothing: subpixel-antialiased;
	color:#000;
}
img{
	border:none;
}
img.auto{
	max-width: 100%;
	height: auto;
	display: block;
}
a{
	text-decoration:none;
	color: #000;
}
a:hover{
	text-decoration:none;
	color: #2687BA;
}
ul{
	list-style:none;
}
hr{
	border:none;
	border-bottom:1px solid #c8c8c8;
	display:block;
	margin-top:10px;
}
.yuanjiao45{
	-moz-border-radius: 45px;      /* Gecko browsers */
    -webkit-border-radius: 45px;   /* Webkit browsers */
    border-radius:45px;            /* W3C syntax */
}
.yuanjiao25{
	-moz-border-radius: 25px;      /* Gecko browsers */
    -webkit-border-radius: 25px;   /* Webkit browsers */
    border-radius:25px;            /* W3C syntax */
}
.yuanjiao5{
	-moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
}
.yuanjiao10{
	-moz-border-radius: 10px;      /* Gecko browsers */
    -webkit-border-radius: 10px;   /* Webkit browsers */
    border-radius:10px;            /* W3C syntax */
}
.yuanjiao15{
	-moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */
}
.yuanjiao{
	-moz-border-radius: 100%;      /* Gecko browsers */
    -webkit-border-radius: 100%;   /* Webkit browsers */
    border-radius:100%;            /* W3C syntax */
}
.clear{
	width:100%;
	clear:both;
}
.mt20{
	margin-top:20px;
}
.mt40{
	margin-top:40px;
}
.mt60{
	margin-top:60px;
}
.mt70{
	margin-top:70px;
}
.mt90{
	margin-top:90px;
}
.mt120{
	margin-top:120px;
}
.pt40{
	padding-top: 40px;
}
.pb40{
	padding-bottom: 40px;
}
.zone{
	width: 100%;
	overflow: hidden;
}
.main{
	max-width:1600px;
	overflow:hidden;
	margin-left: auto;
    margin-right: auto;
}
.content{
	line-height:30px;
}
.content img{
	max-width:100%;
	height:auto;
}
/* 分页样式 */
.pages{
    text-align: center;
    padding-top: 90px;
    padding-bottom: 15px;
}

.pagination{
    font-family: 'Allerta Stencil', sans-serif;
    display: inline-flex;
    position: relative;
}
.pagination li a,
.pagination li span{
    color: #fff;
    background: transparent;
    font-size: 21px;
    line-height: 35px;
    height: 38px;
    width: 38px;
    padding: 0;
    margin: 0 8px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease 0s;
    display: inline-block;
    *display: inline;
    *zoom:1;
}
.pagination li.active a,
.pagination li a:hover,
.pagination li.active a:hover,
.pagination li.active span,
.pagination li span:hover,
.pagination li.active span:hover{
    color: #fff;
    background-color: transparent;
}
.pagination li a:before,
.pagination li a:after,
.pagination li span:before,
.pagination li span:after{
    content:'';
    background: linear-gradient(225deg,#00E1FE,#008AFC);
    height: 100%;
    width: 100%;
    border: 3px solid #fff;
    box-shadow: 0 0 3px #666;
    border-radius: 50%;
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: all 0.3s ease-in;
}
.pagination li.disabled span:before,
.pagination li.disabled span:after{
    background: #ddd;
}
.pagination li a:hover:before,
.pagination li.active a:before,
.pagination li span:hover:before,
.pagination li.active span:before{
    border-radius: 50% 0 50% 50%;
}
.pagination li a:after,
.pagination li span:after{
    background: #fff;
    height: 5px;
    width: 5px;
    border: none;
    box-shadow: 0 0 0 transparent;
    opacity: 0;
    transform: translateX(-50%) translateY(0) rotate(0);
    top: auto;
    bottom: 0;
}
.pagination li a:hover:after,
.pagination li.active a:after,
.pagination li span:hover:after,
.pagination li.active span:after{
    opacity: 1;
    bottom: 85%;
}
.pagination li:first-child a:before,
.pagination li:first-child span:before{
    transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
.pagination li:first-child a:hover:before,
.pagination li:first-child span:hover:before{ border-radius: 50% 0 50% 50%; }
.pagination li:first-child a:after,
.pagination li:first-child span:after{
    transform: translateX(0) translateY(-50%);
    top: 50%;
    bottom:auto;
    left: auto;
    right: 0;
    }
.pagination li:first-child a:hover:after,
.pagination li:first-child span:hover:after{ right: 80%; }
.pagination li:last-child a:before,
.pagination li:last-child span:before{
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.pagination li:last-child a:hover:before,
.pagination li:last-child span:hover:before{ border-radius: 50% 0 50% 50%; }
.pagination li:last-child a:after,
.pagination li:last-child span:after{
    transform: translateX(0) translateY(-50%);
    bottom:auto;
    top: 50%;
    left: 0;
}
.pagination li:last-child a:hover:after,
.pagination li:last-child span:hover:after{ left: 80%; }
@media only screen and (max-width: 480px){
    .pagination{ display: block; }
    
    .pagination li{
        margin-bottom: 10px;
        display: inline-block;
    }
}
/* banner */
.index-banner-pagination{
	width: 100%;
	height: 40px;
	position: absolute;
	left:0;
	bottom:10px;
	z-index: 10;
}
.index-banner-pagination .swiper-pagination-bullet{
	width: 15px;
	height: 15px;
	background:#2762A4;
	opacity: 0.7;
}

.header_zone{
	background-color: rgba(0,0,0,0.7);
    overflow: visible;
    position: absolute;
    left:0;
    top:0;
    z-index: 10;
    width: 100%;
}
/* 统一定义头部高度 */
.header_zone,
.logo,
.nav .nLi h3 a{
	height: 100px;

}
.nav .nLi h3 a{
	line-height: 100px;
}
/* 统一定义头部高度end */
.header{
	width: 100%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.logo img{
    height: 80px;
    margin-right: 20px;
}
.logo p{
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
}
.nav{
	flex-shrink: 0;
	display: flex;
}
.nav .nLi{
	flex-shrink: 0;
    position: relative;
    z-index: 999;
}
.nav .nLi:last-child a{
    padding-right: 0;
}
.nav .nLi h3 .iconfont{
    display: none;
}
.nav .nLi h3 a{
	font-size: 20px;
	font-weight: normal;
	color: #fff;
	padding-left: 40px;
	padding-right: 40px;
	display: block;
}
.nav .nLi h3 a:hover,
.nav li.on h3 a,
.language a:hover{
	color: #00CDFE;
    background: linear-gradient(to right, #00E1FE, #0085FC); /* 定义线性渐变 */
    -webkit-background-clip: text; /* 将背景裁剪到文字形状 */
    -webkit-text-fill-color: transparent; /* 设置文字填充为透明 */
}
.nav .sub{ 
	display:none; 
	white-space: nowrap; 
	left:50%;
    transform: translateX(-50%); 
	top:100%;  
	position:absolute; 
	background: rgba(32, 36, 45, 0.8);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav .sub > li > a{
    line-height: 40px;
    text-align: center;
    display: block;
    color: #fff;
    transition: 0.6s;
    padding-left: 20px;
    padding-right: 20px;
}
.nav .sub > li:hover > a{
    background-color: #2762A4;
}
.language{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	color: #fff;
	position: relative;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #2687BA;
    z-index: 999;
    display: none;
}
.language .iconwangzhi{
	font-size: 26px;
	color: #fff;
}
.language .iconjiantou-xia{
	font-size: 14px;
	color: #fff;
}
.language ul li:nth-child(2){
	width: 100%;
	position: absolute;
	left:0;
	top:100%;
	height: 42px;
	background:rgba(0, 0, 0, 0.5);
	text-align: center;
	display: none;
	transition: 0.6s;
}
.language:hover ul li:nth-child(2){
	display: block;
}
.language ul li a{
	font-size: 16px;
	display: block;
	color: #fff;
	line-height: 42px;
	width: 100%;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}
.common_title{
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.common_title h2{
    font-weight: 800;
    font-size: 64px;
}
.common_title p,
.common_title .txt{
    color: #666;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
}
.flex-4-wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index-product-category{
    margin-top: 25px;
}
.index-product-category .item{
    width: 24%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.index-product-category .item:last-child:nth-child(4n - 2) {
    margin-right: calc(48% + 8% / 3);
}
.index-product-category .item:last-child:nth-child(4n - 1) {
    margin-right: calc(24% + 4% / 3);
}
.index-product-category .item .pic{
    border: 1px solid #ddd;
    overflow: hidden;
    transition: 0.6s;
}
.index-product-category .item .pic img{
    transition: 0.6s;
}
.index-product-category .item:hover .pic img{
    transform: scale(1.1);
}
.index-product-category .item h3{
    font-size: 26px;
    margin-top: 30px;
    transition: 0.6s;
}
.index-product-category .item p{
    color: #666;
    margin-top: 15px;
    line-height: 25px;
    transition: 0.6s;
}
.index-product-category .item .detail{
    margin-top: 20px;
    width: 175px;
    height: 40px;
    background-color: rgba(235, 235, 235, 1);
    text-align: center;
    line-height: 40px;
    color: #999;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}
.index-product-category .item .detail .iconfont{
    margin-right: 15px;
    font-size: 20px;
}
.index-product-category .item:hover .pic{
    border-color: rgba(38, 135, 186, 1);
}
.index-product-category .item:hover h3,
.index-product-category .item:hover p{
    color: rgba(38, 135, 186, 1);
}
.index-product-category .item:hover .detail{
    background-color: rgba(38, 135, 186, 1);
    color: #fff;
}
#index-zone1{
    padding-top: 120px;
    background: url(../images/zone1.jpg) bottom center no-repeat;
    padding-bottom: 120px;
}
#index-machine-list{
    margin-top: 30px;
}
#index-machine-list .item{
    width: 24%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#index-machine-list .item:last-child:nth-child(4n - 2) {
    margin-right: calc(48% + 8% / 3);
}
#index-machine-list .item:last-child:nth-child(4n - 1) {
    margin-right: calc(24% + 4% / 3);
}
#index-machine-list .item .pic{
    border: 1px solid #ddd;
    overflow: hidden;
    transition: 0.6s;
}
#index-machine-list .item .pic img{
    transition: 0.6s;
}
#index-machine-list .item:hover .pic img{
    transform: scale(1.1);
}
#index-machine-list .item h3{
    font-size: 20px;
    margin-top: 30px;
    transition: 0.6s;
    font-weight: normal;
}
#index-machine-list .item:hover .pic{
    border-color: rgba(38, 135, 186, 1);
}
#index-machine-list .item:hover h3{
    color: rgba(38, 135, 186, 1);
}
#index-list3{
    margin-top: 150px;
}
#index-list3 .item{
    width: 23.5%;
    display: flex;
    flex-direction: column;
}
#index-list3 .item .title{
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: rgba(38, 135, 186, 1);
    font-size: 22px;
    font-weight: 600;
    color: #fff;

}
#index-list3 .item .pic{
    border: 1px solid #ddd;
    overflow: hidden;
    transition: 0.6s;
    margin-top: 35px;
}
#index-list3 .item .pic img{
    transition: 0.6s;
}
#index-list3 .item:hover .pic img{
    transform: scale(1.1);
}
#index-list3 .item h3{
    font-size: 26px;
    margin-top: 35px;
    transition: 0.6s;
    font-weight: 600;
}
#index-list3 .item p{
    color: #666;
    margin-top: 25px;
    line-height: 25px;
    transition: 0.6s;
}
#index-list3 .item:hover .pic{
    border-color: rgba(38, 135, 186, 1);
}
#index-list3 .item:hover h3,
#index-list3 .item:hover p{
    color: rgba(38, 135, 186, 1);
}
#index-zone2{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f5f5f5;
    box-shadow: 0px 0px 10px #ccc inset;
}
#shuzi-box{
    display: flex;
    justify-content: space-between;
}
#shuzi-box .item{
    display: flex;
    flex-direction: column;
    width: 23%;
}
#shuzi-box .item .shang{
    font-size: 48px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
#shuzi-box .item .xia{
    font-size: 20px;
}
#shuzi-box .item .shang .counter{
    margin-right: 10px;
}
.common-btn{
    display: flex;
    justify-content: center;
}
.common-btn a{
    padding-left: 55px;
    padding-right: 55px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    transition: 0.6s;
    display: block;
    text-align: center;
    font-size: 20px;
    background: rgb(0,138,252);
    
    border: 1px solid rgb(0,138,252);
}
.common-btn a:hover{
    background: linear-gradient(0deg, rgba(0,138,252,1) 0%, rgba(0,138,252,1) 0%, rgba(0,225,254,1) 100%);
    color: #fff;
}
.flex-3-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index-application{
    margin-top: 15px;
}
.index-application .item{
    width: 30%;
    margin-top: 65px;
    overflow: hidden;
    position: relative;
}
.index-application .item .zhezhao{
    width: 100%;
    height: 192px;
    background: linear-gradient(180deg, rgba(38, 135, 186, 0) 0%, rgba(38, 135, 186, 1) 100%);
    position: absolute;
    left:0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.index-application .item img{
    transition: 0.6s;
}
.index-application .item:hover img{
    transform: scale(1.1);
}
.index-application .item .zhezhao h3{
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 35px;
}
.honor-zone{
    background: url(../images/renzheng.jpg) bottom center no-repeat;
    padding-bottom: 60px;
}
.index-honor-box{
    padding-left: 5%;
    padding-right: 5%;
}
.index-honor .swiper-slide img{
   margin-left: auto;
   margin-right: auto;
   height: 300px;
   width: auto;
}
.index-honor-pagination{
	width: 100%!important;
	margin-top: 60px;
    text-align: center;
    transform: translateX(0)!important;
}
.index-honor-pagination .swiper-pagination-bullet{
	background:#666;
	opacity: 0.7;
}
.index-honor-pagination .swiper-pagination-bullet-active{
    background: #2762A4;
}
.pinglun-main{
    position: relative;
    z-index: 11;
}
.pinglun-shang{
    display: flex;
    justify-content: space-between;
}
.pinglun-shang .box1{
    width: 23%;
}
.pinglun-shang .box2{
    width:38%;
    padding-left: 50px;
    padding-right: 50px;
    border-right: 1px solid #ddd;
}
.pinglun-shang .box3{
    width: 34%;
}
.pinglun-shang .box1 .shang{
    display: flex;
    align-items: center;
}
.pinglun-shang .box1 .shang span{
    font-size: 48px;
    font-weight: 600;
}
.pinglun-shang .box1 .shang em{
    font-style: normal;
    font-size: 26px;
    font-weight: 600;
}
.pinglun-shang .box1 .shang #stars{
    margin-left: 10px;
}
.pinglun-shang .box1 .shang #stars .layui-rate li i.layui-icon{
    font-size:36px;
}
.pinglun-shang .box1 .xia{
    color: #666;
    font-size: 18px;
    margin-top: 25px;
}
.pinglun-shang .box2 .item{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.pinglun-shang .box2 .item:last-child{
    margin-bottom: 0;
}
.pinglun-shang .box2 .item span:first-child{
    font-size: 22px;
    min-width: 15px;
    text-align: center;
}
.pinglun-shang .box2 .item span:last-child{
    font-size: 22px;
    min-width: 40px;
    text-align: center;
}
.pinglun-shang .box2 .item img{
    margin-left: 5px;
    margin-right: 5px;
}
.pinglun-shang .box2 .item .layui-progress{
    flex-grow: 1;
    margin-right: 5px;
}
.pinglun-shang .box2 .item .layui-progress-bar.layui-bg-blue{
    background: #2687BA!important;
}
.pinglun-shang .box3 .title{
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 26px;
    font-weight: 500;
    justify-content: center;
}
.pinglun-shang .box3 .title img{
    margin-right: 10px;
}

.pinglun-shang .box3 .item{
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.pinglun-shang .box3 .item span{
    font-size: 22px;
}
.pinglun-shang .box3 .item span:first-child{
    min-width: 110px;
    text-align: left;
}
.pinglun-shang .box3 .item span:last-child{
    min-width: 50px;
    text-align: left;
}
.pinglun-shang .box3 .item .layui-progress{
    flex-grow: 1;
    margin-right: 5px;
}
.pinglun-shang .box3 .item .layui-progress-bar.layui-bg-blue{
    background: #2687BA!important;
}
.pinglun-xia .title{
    font-size: 26px;
    font-weight: 500;
    color: #333;
}
.pinglun-list{
    display: flex;
    justify-content: space-between;
}
.pinglun-list .item{
    width: 33.3333%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}
.pinglun-list .item:first-child{
    padding-right: 50px;
}
.pinglun-list .item:nth-child(2){
    padding-left: 50px;
    padding-right: 50px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.pinglun-list .item:last-child{
    padding-left: 50px;
}
.pinglun-list .item .shang{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pinglun-list .item .shang .zuo{
    display: flex;
    align-items: center;
}
.pinglun-list .item .shang .zuo .first-letter{
    width: 45px;
    height: 45px;
    background: rgba(235, 235, 235, 1);
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    font-size: 26px;
}
.pinglun-list .item .shang .zuo .other{
    display: flex;
    flex-direction: column;
}
.pinglun-list .item .shang .zuo .other .stars .layui-icon{
    color: rgba(232, 155, 39, 1);
    line-height: 1;
}
.pinglun-list .item .shang .zuo .other .name{
    font-size: 20px;
    line-height: 1;
}
.pinglun-list .item .shang .date{
    font-size: 18px;
}
.pinglun-list .item .xia{
    margin-top: 35px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
}
.pinglun-list .item .xia .txt1{
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
}

.pinglun-list .item .xia .txt2{
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
    margin-bottom: 5px;
}

.pinglun-list .item .xia .txt2 span{
    color: #000;
}
.pinglun-list .item .xia .txt3{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.pinglun-list .item .xia .txt3 span{
    color: rgba(102, 102, 102, 1);
    margin-right: 40px;
    padding-right: 25px;
    background:url(../images/zan.png) right center no-repeat;
    background-size: 15px;
}
.index-news .swiper-slide{
    position:relative;
    overflow: hidden;
    border: 1px solid #ddd;
}
.index-news .swiper-slide .info{
    padding: 20px;
    background-color: #f7f7f7;
}
.index-news .swiper-slide .info h3{
    font-size: 20px;
    font-weight: normal;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space:pre-line;
}
.index-news .swiper-slide .info .txt{
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space:pre-line;
}
.index-news .swiper-slide .info .detail{
    margin-top: 20px;
    display: block;
    color: #666;
}
.index-news .swiper-slide .pic{
    overflow: hidden;
}
.index-news .swiper-slide .pic img{
    transition: 0.6s;
}
.index-news .swiper-slide:hover .pic img{
    transform: scale(1.1);
}


.index-news-pagination{
	width: 100%!important;
	margin-top: 50px;
    text-align: center;
    transform: translateX(0)!important;
}
.index-news-pagination .swiper-pagination-bullet{
	background:#666;
	opacity: 0.7;
}
.index-news-pagination .swiper-pagination-bullet-active{
    background: #2762A4;
}
.index-contact-main{
    min-height: 233px;
    background: url(../images/index-contact-main.png) center center no-repeat;
    display: flex;
    justify-content: space-between;
    padding-left: 5.5%;
    padding-right: 5.5%;
    align-items: center;
    position: relative;
    z-index: 10;
}
.index-contact-main .txt{
    flex-grow: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.index-contact-main .txt .shang{
    font-size: 40px;
    font-weight: 600;
}
.index-contact-main .txt .xia{
    font-size: 22px;
}
.index-contact-main .common-btn{
    flex-shrink: 0;
}

.footer-zone{
    background: rgba(32, 36, 45, 1);
    padding-top: 80px;
    margin-top: 120px;
}
.index-footer-zone{
    padding-top: 215px;
    color: #999;
    margin-top: -120px;
}
.footer{
    display: flex;
    justify-content: space-between;
}
.footer-left{
    width: 310px;
    flex-shrink: 0;
}
.footer-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo-txt{
    font-size: 22px;
    padding-left: 30px;
    color: #fff;
}
.footer-lxxx .item{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.footer-lxxx .item .iconfont{
    color: #fff;
    margin-right: 15px;
    font-size: 24px;
}
.footer-lxxx .item .iconyouxiang3{
    font-size: 18px;
}
.footer-lxxx .item,
.footer-lxxx .item a{
    color: #999;
}
.footer a{
    transition: 0.6s;
}

.footer-follow{
    margin-top:30px;
    display: flex;
    align-items: center;
}
.footer-follow a{
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 32px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.6s;
    align-items: center;
}
.footer-follow a:hover{
    background: #2762A4;
}
.footer-follow a:last-child{
    margin-right: 0;
}
.footer-nav{
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    padding-left: 6.8%;
}
.footer-nav dl{
    display: flex;
    flex-direction: column;
}
.footer-nav dl dt{
    margin-bottom: 10px;
}
.footer-nav dl dt a{
    color: #fff;
    font-size: 22px;
}
.footer-nav dl dd{
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-nav dl dd a{
    color: rgba(255,255,255,0.7);
}
.copyright-zone{
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
}
.copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
}
.copyright a{
    color: rgba(255,255,255,0.6);
}


.footer a:hover,
.copyright a:hover{
    color: #2762A4;
}

/* 内页开始 */
.about-zone1{
    min-height: 995px;
    background: url(../images/about-zone1.jpg) top center no-repeat;
}
.about-main1,
.about-main2{
    display: flex;
    flex-direction: column;
}
.about-main1 h2{
    font-size: 64px;
}
.about-main1 .content{
    font-size: 22px;
    color: #666;
    line-height: 2;
    margin-top: 40px;
}
.about-main2{
    margin-top: 450px;
}
.about-main2 h2{
    font-size: 48px;
}
.about-main2 .content{
    margin-top: 50px;
    line-height: 3;
}
.about-zone2{
    margin-top: 90px;
    padding-top: 95px;
    padding-bottom: 95px;
    border-top: 1px solid #ddd;
}
.advantage-list{
    display: flex;
    justify-content: space-between;
}
.advantage-list .item{
    width: 18%;
    background: #F4F9FB;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 75px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}
.advantage-list .item .shuzi{
    display: flex;
    color: rgba(232, 155, 39, 1);
    align-items: center;
    margin-top: 65px;
    font-family: 'Poppins-Bold';
    font-size: 64px;
}
.advantage-list .item .shuzi .counter{
    
    margin-right: 5px;
}
.advantage-list .item .txt{
    margin-top: 35px;
    font-size: 22px;
}
.about-zone3{
    padding-top: 95px;
    padding-bottom: 95px;
    background: url(../images/about-zone3.jpg) center center no-repeat;
    background-size: cover;
    min-height: 905px;
}
.white-title h2{
    color: #fff;
}
.about-zone3 .list{
    display: flex;
    justify-content: space-between;
}
.about-zone3 .list .item{
    width:28%;
    background: rgba(255, 255, 255, 0.24);
    /* backdrop-filter: blur(64.4px); */
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff;
}

.about-zone3 .list .item .title{
    font-size: 26px;
    font-weight: 600;
}
.about-zone3 .list .item .content{
    margin-top: 25px;
    font-size: 20px;
    line-height: 2;
}

/* 留言框 */
.feedback{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feedback .item{
    display: flex;
    flex-direction: column;
}
.feedback .item-half{
    width: 48%;
}
.feedback .item label,
.feedback .title{
    font-size: 18px;
    margin-bottom: 10px;
}
.feedback .item label em{
    font-style: normal;
    margin-left: 5px;
}
.feedback .itext{
    width: 100%;
    height: 80px;
    background: rgba(244, 244, 244, 1);
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 80px;
    border: none;
    font-size: 18px;
}
.feedback .item-full{
    width:100%;
}
.feedback .item,
.feedback .item-full{
    margin-bottom: 30px;
}
.select-box{
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.select-box .itext{
    padding-right: 35px;
    cursor: pointer;
}
.select-box .iconjiantouxia1{
    position: absolute;
    right:15px;
    z-index: 10;
    top:50%;
    margin-top: -8px;
    line-height: 1;
    transition: 0.6s;
}
.select-box .iconjiantouxia1.open{
    transform: rotate(180deg);
}
.select-box ul{
    width: 100%;
    position: absolute;
    left:0;
    top:100%;
    background: #fff;
    box-shadow: 2px 2px 5px #eee;
    max-height: 400px;
    overflow-y: scroll;
    display: none;
    border: 1px solid rgba(244, 244, 244, 1);
    border-top: none;
}
.select-box ul::-webkit-scrollbar {
  width: 8px;
}
.select-box ul::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.select-box ul::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}
.select-box ul::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}
.select-box ul li{
    line-height: 22px;
    transition: all .5s ease 0s;
    padding: 9px 10px 9px 45px;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    position: relative;
}
.select-box ul li::before{
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #ddd;
    border-radius: 15px;
    z-index: 10;
    box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Safari */
    transition: 0.6s;
}
.select-box ul li:hover{
    background: #eee;
}
.select-box ul li:hover::before{
    border-width: 5px;
    border-color: #666;
}
.feedback .icontent{
    width: 100%;
    height: 200px;
    background: rgba(244, 244, 244, 1);
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 2;
    border: none;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.images-upload-box p{
    color: #666;
}
.images-upload-list,
.attachment-upload-list{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.attachment-upload-box{
    margin-top: 30px;
}
#images-upload-btn,
#attachment-upload-btn{
    width: 153px;
    height: 153px;
    background-color: rgba(250, 250, 250, 1);
    border: 1px solid rgba(235, 235, 235, 1);
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.6s;
}
#images-upload-btn{
    background-image: url(../images/images.png);
}

#attachment-upload-btn{
    background-image: url(../images/attachment.png);
}

#images-upload-btn:hover,
#attachment-upload-btn:hover{
    border-color: #2687BA;
}
.feedback .ibtn{
    width: 100%;
    height:90px;
    background: rgb(0,138,252);
    background: linear-gradient(0deg, rgba(0,138,252,1) 0%, rgba(0,138,252,1) 0%, rgba(0,225,254,1) 100%);
    border: none;
    margin-top: 75px;
    text-align: center;
    line-height: 90px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.6s;
}
.feedback .ibtn:hover{
    background-color: #2687BA;
}
#images-list,
#attachment-list{
    display: flex;
    align-items: center;
}
#images-list .item,
#attachment-list .item{
    width: 153px;
    height: 153px;
    background-color: rgba(250, 250, 250, 1);
    border: 1px solid rgba(235, 235, 235, 1);
    position:relative;
    margin-right: 20px;
    transition: 0.6s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
#images-list .item img{
    max-height: 150px;
    width: auto;
    display: block;
    max-width: 100%;
    height: auto;
}
#images-list .item .del-image,
#attachment-list .item .del-attachment{
    font-size: 16px;
    position: absolute;
    z-index: 10;
    right:-10px;
    top:-10px;
    cursor: pointer;
    transition: 0.6s;
}
#images-list .item .del-image:hover,
#attachment-list .item .del-attachment:hover{
    color: #ff0000;
}
#attachment-list .item{
    background-image: url(../images/fujian.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80px;
}
/* 新闻列表页 */

.list-news .item{
    position:relative;
    overflow: hidden;
    border: 1px solid #ddd;
    width:31.5%;
    margin-top: 40px;
}
.list-news .item .info{
    padding: 20px;
    background-color: #f7f7f7;
}
.list-news .item .info h3{
    font-size: 20px;
    font-weight: normal;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space:pre-line;
}
.list-news .item .info .txt{
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space:pre-line;
}
.list-news .item:last-child:nth-child(3n + 2) {
  margin-right: calc((100% - 31.5%) / 2);
}
.list-news .item .info .detail{
    margin-top: 20px;
    display: block;
    color: #666;
}
.list-news .item .pic{
    overflow: hidden;
}
.list-news .item .pic img{
    transition: 0.6s;
}
.list-news .item:hover .pic img{
    transform: scale(1.1);
}

/* Contact us 页面 */
.contact-information{
    display: flex;
    justify-content: space-between;
}
.contact-information .item{
    width: 31%;
    position: relative;
    margin-top: 50px;
}
.contact-information .item .icon{
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 10;
    left:50%;
    transform: translateX(-50%);
    top:0;
    box-shadow: 0px 0px 15px #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #666;
}
.contact-information .item .icon .iconfont{
    font-size: 48px;
}
.contact-information .info{
    border: 1px solid #ddd;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 80px;
    padding-bottom: 50px;
    font-size: 22px;
    margin-top: 50px;
    text-align: center;
}

.breadcrumb{
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    align-items: center;
}
.breadcrumb h2{
    font-size: 26px;
}
.breadcrumb .position,
.breadcrumb .position a{
    color: #999;

}
.article-title{
    display: block;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
}
.article-info{
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.article-info .item{
    margin-left: 25px;
    margin-right: 25px;
    display: flex;
    align-items: center;
}
.article-info .item .iconfont{
    margin-right: 10px;
}
.article-info .item .iconchakan1{
    font-size: 22px;
}
.article-content{
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 2.5;
}
.shangxiapian{
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}
.shangxiapian li{
    line-height: 40px;
}
/* 产品详情 */
.product-box{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.product-gallery{
    width: 48%;
}
.product-info{
    width: 48%;
}
.product-size{
    margin-top: 15px;
    height: 45px;
    line-height: 45px;
    background: url(../images/size.png) left center no-repeat;
    background-size: 100% 45px;
    padding-left: 15px;
    color: #fff;
    font-size: 18px;
}
.product-desc{
    padding-top: 20px;
    line-height: 40px;
}
.product-detail-title{
    margin-top: 50px;
}
.product-detail-title h2{
    display: block;
    background-color: #f7f7f7;
    padding:20px 30px;
    font-size: 18px;
}
#canshu table tr td{
    padding-top: 15px;
    padding-bottom:15px;
    padding-left: 15px;
    padding-right: 15px;
}

#canshu table tr:nth-child(odd) {
    background-color: #F4F7FD;
    border-top: 1px solid rgba(217, 232, 255, 1);
}

#canshu table tr:nth-child(even) {
    background-color: #FDFEFF;
}
/* 图标列表 */
.icon-list{
    display: flex;
    flex-wrap: wrap;
}
.icon-list .item{
    width: 150px;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: 0.6s;
    border: 1px solid #ddd;
    padding: 15px;
    box-shadow: 0px 0px 5px #ddd;
    background: #fff;
    margin-left: 15px;
    margin-right: 15px;
}
.icon-list .item:last-child{
    margin-right: 0;
}
#menu_btn{
    display: none;
}
.page-banner-zone img{
    max-width: 100%;
    height: auto;
    display: block;
}
.oem-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.oem-list .item{
    margin-top: 40px;
    width: 48%;
    position: relative;
    padding-left:50px;
    
}
.oem-list .item .icon{
    width: 100px;
    height: 100px;
    position: absolute;
    left:0;
    top:50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 0px 10px #ddd;
}
.oem-list .item .icon img{
    width: 50px;
    height: auto;
}
.oem-list .item .info{
    border: 1px solid #ccc;
    width: 100%;
    padding: 40px 30px 40px 70px;
}
.oem-list .item .info h3{
    
}
.oem-list .item .info .txt{
    color: #666;
    line-height: 1.7;
}
.oem-list2{
    display: flex;
    justify-content: space-between;
}
.oem-list2 .item{
    width: 31%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}
.oem-list2 .item .title{
    padding-top: 25px;
    padding-bottom: 25px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    background-color: #2762a4;
    text-align: center;
    font-size: 24px;
    color: #fff;
}
.oem-list2 .item .content{
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px;
    height: 100%;
}
.oem-list2 .item .content h4{
    display: block;
    margin-top: 20px;
}
.oem-list2 .item .content h4:first-child{
    margin-top: 0;
}
.oem-list2 .item .content p{
    display: block;
    margin-top: 10px;
    line-height: 1.7;
    color: #666;
}


/* 响应式开始 */
@media (max-width:1630px) {
    .header{
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer{
        padding-left: 15px;
        padding-right: 15px;
    }
    .flex-4-wrap{
        padding-left: 15px;
        padding-right: 15px;
    }
    #index-zone2 .main{
        padding-left: 15px;
        padding-right: 15px;
    }
    .flex-3-wrap{
        padding-left: 15px;
        padding-right: 15px;
    }
    #index-partners-more{
        margin-top: 530px;
    }
    .pinglun-main{
        padding-left: 15px;
        padding-right: 15px;
    }
    .index-news-box{
        padding-left: 15px;
        padding-right: 15px;
    }
    .index-contact-main{
        margin-left: 15px;
        margin-right: 15px;
    }
    .copyright{
        padding-left: 15px;
        padding-right: 15px;
    }
    .about-zone1 .main{
        padding-left: 15px;
        padding-right: 15px;
    }
    .advantage-list{
        padding-left: 15px;
        padding-right: 15px;
    }
    .about-zone3 .list{
        padding-left: 15px;
        padding-right: 15px;
    }
    .nav .nLi h3 a{
        padding-left: 30px;
        padding-right: 30px;
    }
    .feedback{
        padding-left: 15px;
        padding-right: 15px;
    }
    .breadcrumb{
        padding-left: 15px;
        padding-right: 15px;
    }
    .article-title,
    .article-info,
    .article-content,
    .shangxiapian,
    .contact-information,
    .product-box{
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*小于1440*/
@media (max-width:1440px) {
    .index-application .item{
        width:32%;
    }
    #index-partners-more{
        margin-top: 450px;
    }
    .index-news .swiper-slide .zhezhao h3{
        margin-bottom: 25px;
    }
    .index-news .swiper-slide .zhezhao .shang{
        margin-bottom: 25px;
    }
    .advantage-list .item .shuzi{
        font-size: 50px;
    }
    .list-news .item .zhezhao .detail{
        margin-bottom: 30px;
    }
    .list-news .item .zhezhao h3{
        margin-bottom: 35px;
    }
}
/*小于1440*/
@media (max-width:1366px) {
    .nav .nLi h3 a{
        padding-left: 15px;
        padding-right: 15px;
        font-size: 18px;
    }
    .index-partners-main .common_title.mt90{
        margin-top: 40px;
    }
}
/*小于1200*/
@media (max-width:1200px) {
    body{
        font-size: 14px;
    }
    .nav .nLi h3 a{
        padding-left: 10px;
        padding-right: 10px;
    }
    .nav{
        margin-right: auto;
    }
    .common_title h2{
        font-size: 48px;
    }
    .index-product-category .item h3{
        font-size: 18px;
    }
    #index-list3 .item h3{
        font-size: 18px;
    }
    #index-list3 .item .title{
        font-size: 18px;
    }
    #shuzi-box .item .shang{
        font-size: 36px;
    }
    .index-application .item .zhezhao h3{
        font-size: 18px;
    }
}
/*小于768*/
@media (max-width:992px) {
    .language{
        margin-left: auto;
        position: static;
        background:none;
    }
    .language .iconfont{
        display: none;
    }
    .language ul{
        display: flex;
        align-items: center;
    }
    .language ul li,
    .language ul li:nth-child(2){
        margin-right: 20px;
        background:#2687BA;
        width: 42px;
        height: 42px;
        -moz-border-radius: 100%;      /* Gecko browsers */
        -webkit-border-radius: 100%;   /* Webkit browsers */
        border-radius:100%;            /* W3C syntax */
        flex-shrink: 0;
        position:static;
        display: block;
    }
    .header_zone{
        position: relative;
        z-index: 9999;
    }
    .logo img{
        height: 40px;
    }
    .nav{
        width: 100%;
        position: absolute;
        left:0;
        top:100%;
        z-index: 9999;
        background: #f0f0f0;
        flex-direction: column;
        display: none;
    }
    .nav > .nLi{
        margin-left: 0;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }
    
    .nav > .nLi > h3{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 15px;
        padding-left: 15px;
    }
    .nav > .nLi > h3 > .iconfont{
        display: block;
    }
    .nav > .nLi:first-child{
        margin-left: 0;
    }
    .nav .nLi h3 a{
        height: auto;
        flex-grow: 1;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #menu_btn{
        display: block;
        font-size: 30px;
        color: #fff;
    }
    .nav > .nLi > h3 > a{
        line-height: 45px;
        color: #333;
        padding-left: 0;
    }
    .nav .sub{
        position: static;
        transform: translateX(0);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        background: #ddd;
    }
    .nav .sub li a{
        color: #666;
        text-align: left;
        padding-left: 25px;
    }
    .mt90{
        margin-top: 40px;
    }
    .mt120{
        margin-top: 40px;
    }
    .common_title h2{
        font-size: 36px;
    }
    .index-product-category{
        margin-top: 0;
    }
    .index-product-category .item{
        width: 31%;
    }
    #index-zone1{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #index-list3{
        margin-top: 20px;
    }
    #index-machine-list .item{
        margin-top: 30px;
        width:48.5%;
    }
    #index-machine-list .item a,
    #index-machine-list .item .pic img{
        width: 100%;
        height: auto;
    }
    #index-machine-list{
        margin-top: 0;
    }
    #index-machine-list .item h3{
        font-size: 14px;
        margin-top: 15px;
    }
    #index-list3 .item{
        width: 48%;
        margin-top: 30px;
    }
    #index-list3 .item .pic img{
        width: 100%;
    }
    #best-sellings .item:last-child{
        display: none;
    }
    .index-contact-main .txt .shang{
        font-size: 26px;
    }
    .index-contact-main .txt .xia{
        font-size: 16px;
    }
    .index-contact-main{
        padding-left: 2%;
        padding-right: 2%;
    }
    .list-news .item{
        width: 48%;
    }
}

/*小于600手机*/
@media (max-width:600px) {
    .logo p{
        display: none;
    }
    .header_zone,
    .logo{
        height: 50px;
    }
    .nav .nLi h3 a{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .nav .nLi h3 a{
        font-size: 16px;
    }
    .common_title h2{
        font-size: 18px;
    }
    .common_title p,
    .common_title .txt{
        font-size: 14px;
    }
    .index-product-category .item{
        width: 48.5%;
        margin-top: 30px;
    }
    .index-product-category .item h3{
        font-size: 14px;
        margin-top: 15px;
        font-weight: normal;
    }
    .index-product-category .item p{
        display: none;
    }
    .index-product-category .item .detail{
        width: 150px;
        margin-top: 15px;
    }
    #index-list3 .item .title,
    #index-list3 .item h3{
        font-size: 16px;
    }
    #index-list3 .item .title{
        height: 50px;
        line-height: 50px;
    }
    #index-list3 .item .pic{
        margin-top: 15px;
    }
    #index-list3 .item h3{
        margin-top: 15px;
        height: auto;
        line-height: 1;
    }
    #index-list3 .item p{
        margin-top: 15px;
    }
    #index-zone2 .title{
        font-size: 18px;
    }
    #index-zone2 .txt{
        font-size: 14px;
    }
    #shuzi-box{
        flex-wrap: wrap;
        margin-top: 0;
    }
    #shuzi-box .item{
        width: 48%;
        justify-content: center;
        margin-top: 50px;
        text-align: center;
    }
    #shuzi-box .item .shang{
        justify-content: center;
        font-size: 24px;
    }
    .index-contact-main .common-btn{
        margin-top: 20px;
        
    }
    .index-contact-main .common-btn a{
        font-size: 16px;
    }
    .oem-list{
        flex-wrap: wrap;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0;
    }
    .oem-list .item{
        width: 100%;
    }
    .oem-list2 .item .title{
        font-size: 18px;
    }
    .oem-list2{
        flex-wrap: wrap;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0;
    }
    .oem-list2 .item{
        width: 100%;
    }
    #index-zone2{
        padding-top: 0;
    }
    #shuzi-box .item .xia{
        font-size: 14px;
    }
    #best-sellings .item:last-child{
        display: block;
    }
    .index-application{
        margin-top: 0;
    }
    .index-application .item{
        width: 48.5%;
        margin-top: 30px;
    }
    .index-application .item .zhezhao h3{
        font-size: 16px;
        font-weight: normal;
    }
    .index-news .swiper-slide .zhezhao-pic{
        display: none;
    }
    .index-news .swiper-slide .zhezhao{
        background: url(../images/jianbian.png) bottom center repeat-x;
    }
    .index-news .swiper-slide .zhezhao .detail{
        margin-bottom: 20px;
        color: #fff;
    }
    .index-news .swiper-slide .zhezhao h3{
        color: #fff;
        margin-bottom: 15px;
    }
    .index-news-pagination{
        margin-top: 30px;
    }
    .index-contact-main{
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .index-contact-main .txt .shang{
        font-size: 20px;
    }
    .index-contact-main .txt .xia{
        margin-top: 20px;
    }
    .footer-nav{
        display: none;
    }
    .index-footer-zone{
        padding-top: 180px;
    }
    .footer-left{
        width: 100%;
    }
    .footer-logo{
        justify-content: flex-start;
    }
    .footer-follow{
        margin-top: 30px;
    }
    .copyright .copy{
        text-align: center;
    }
    .copyright .links{
        display: none;
    }
    .about-main1 h2,
    .about-main2 h2{
        font-size: 18px;
    }
    .about-main1 .content,
    .about-main2 .content{
        font-size: 14px;
        line-height: 25px;
        margin-top: 20px;
    }
    .about-zone1{
        min-height: 0;
        background-size: 160%;
    }
    .about-main2{
        margin-top: 150px;
    }
    .about-zone2{
        margin-top: 40px;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .advantage-list{
        flex-direction: column;
    }
    .advantage-list .item{
        width: 100%;
        flex-direction: row;
        margin-top: 15px;
        align-items: center;
        justify-content: space-between;
    }
    .advantage-list .item .shuzi,
    .advantage-list .item .txt{
        margin-top: 0;
    }
    .advantage-list .item .shuzi{
        font-size: 30px;
    }
    .advantage-list .item .txt{
        font-size: 18px;
    }
    .about-zone3{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .about-zone3 .list{
        flex-direction: column;
        margin-top: 0;
    }
    .about-zone3 .list .item{
        width: 100%;
        margin-top: 30px;
    }
    .about-zone3 .list .item .title{
        font-size: 16px;
    }
    .about-zone3 .list .item .content{
        font-size: 14px;
        line-height: 25px;
    }
    .feedback{
        flex-direction: column;
    }
    .feedback .item-half{
        width: 100%;
    }
    .mt60{
        margin-top: 30px;
    }
    .feedback .ibtn{
        margin-top: 45px;
        font-size: 18px;
    }
    .breadcrumb h2{
        font-size: 18px;
    }
    .icon-list{
        justify-content: space-between;
    }
    .breadcrumb .position{
        display: none;
    }
    .product-box{
        margin-top: 40px;
        flex-direction: column;
    }
    .product-gallery{
        width: 100%;
    }
    .product-info{
        width: 100%;
        margin-top: 30px;
    }
    .product-title{
        font-size: 18px;
    }
    .product-detail-title h2{
        padding-left: 15px;
        padding-right: 15px;
        font-size: 18px;
    }
    .sp-wrap{
        margin-right: 0!important;
    }
    .list-news{
        flex-direction: column;
    }
    .list-news .item{
        width: 100%;
    }
    .list-news .item .zhezhao-pic{
        display: none;
    }
    .list-news .item .zhezhao{
        background: url(../images/jianbian.png) bottom center repeat-x;
    }
    .list-news .item .zhezhao .detail{
        margin-bottom: 20px;
        color: #fff;
    }
    .list-news .item .zhezhao h3{
        color: #fff;
        margin-bottom: 15px;
    }
    .article-title{
        font-size: 18px;
    }
    .contact-information{
        flex-direction: column;
    }
    .contact-information .item{
        width: 100%;
        margin-top: 30px;
    }
    .contact-information .info{
        font-size: 18px;
    }
    .feedback .item label, .feedback .title{
        font-size: 16px;
    }
    .feedback .itext{
        font-size: 16px;
    }
    .feedback .ibtn{
        height: 50px;
        line-height: 50px;
    }
}


/* Index Partners */
.index-partners-zone{
    position: relative;
    background:url(../images/partners.png) -105px center no-repeat;
    height: 1180px;
}
.index-partners-main{
    position: absolute;
    z-index: 10;
    left:50%;
    transform: translateX(-50%);
    top:0;
    width: 100%;
    height: 100%;
}
.index-partners-main #yuan1,
.index-partners-main #yuan2,
.index-partners-main #yuan3{
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(153, 153, 153, 0.3);
}
.index-partners-main #yuan1{
    width: 100%;
    max-width: 1020px;
    /* width: 63.81%; */
    aspect-ratio: 1; /* 宽高比为 1:1，形成正方形 */
    top:-40px;
    left:50%;
    transform: translateX(-50%);
}
.index-partners-main #yuan2{
    width: 61.41%;
    aspect-ratio: 1; /* 宽高比为 1:1，形成正方形 */
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.index-partners-main #yuan3{
    width: 48%;
    aspect-ratio: 1; /* 宽高比为 1:1，形成正方形 */
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.index-partners-main #shou-box{
    background: rgba(38, 135, 186, 0.2);
    width: 160px;
    height: 160px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.index-partners-main #shou{
    width: 140px;
    height: 140px;
    background:url(../images/shou.png) center center no-repeat rgba(38, 135, 186, 1);
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.index-partners-main .item{
    position: absolute;
    z-index: 11;
    background: #fff;
    width: 143px;
    box-shadow: 0px 0px 41.3px  rgba(0, 0, 0, 0.09);
}
.index-partners-main #partner1{
    left:0;
    top:39%;
}
.index-partners-main #partner2{
    left:13%;
    top:25%;
}
.index-partners-main #partner3{
    left:27%;
    top:44%;
}
.index-partners-main #partner4{
    left:64%;
    top:30%;
}
.index-partners-main #partner5{
    left:78%;
    top:44%;
}
.index-partners-main #partner6{
    left:84%;
    top:23%;
}
.index-partners-main #partner7{
    left:4%;
    top:60%;
}
.index-partners-main #partner8{
    left:22%;
    top:67%;
}
.index-partners-main #partner9{
    left:45%;
    top:58%;
}
.index-partners-main #partner10{
    left:68%;
    top:66%;
}
.index-partners-main #partner11{
    right:0;
    top:63%;
}
#index-partners-more{
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    bottom:180px;
    z-index: 5;
}

/*小于1440*/
@media (max-width:992px) {
    .index-partners-zone{
        height: auto;
        background-position: center center;
        background-size: cover;
    }
    .index-partners-main{
        position: relative;
    }
    #partners-box{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .index-partners-main .item{
        position: static;
        transform: translate(0);
        margin-top: 50px;
        margin-left: 2%;
        margin-right: 2%;
    }
    .index-partners-main #shou-box{
        display: none;
    }
    #index-partners-more{
        position: relative;
        z-index: 20;
        bottom:0;
        /* transform: translate(0); */
        margin-top: 60px;
        margin-bottom: 80px;
    }
    .index-partners-main #yuan1{
        width: 90%;
    }
    .pinglun-shang .box1{
        display: none;
    }
    .pinglun-shang .box2{
        width: 48%;
        padding-left: 15px;
        padding-right: 45px;
    }
    .pinglun-shang .box3{
        width: 48%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .pinglun-list{
        flex-direction: column;
        margin-top: 20px;
    }
    .pinglun-list .item,
    .pinglun-list .item:nth-child(2),
    .pinglun-list .item:last-child{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        border: none;
    }
    .pinglun-list .item{
        background: #f7f7f7;
        margin-top: 20px;
        -moz-border-radius: 10px;      /* Gecko browsers */
        -webkit-border-radius: 10px;   /* Webkit browsers */
        border-radius:10px;            /* W3C syntax */
        box-shadow: 0px 0px 5px #ddd;
    }
}
@media (max-width:600px) {
    #partners-box{
        justify-content: space-around;
    }
    #partners-box .item{
        margin-left: 0;
        margin-right: 0;
    }
    .pinglun-shang{
        flex-direction: column;
    }
    .pinglun-shang .box2{
        width: 100%;
    }
    .pinglun-shang .box3{
        width: 100%;
        margin-top: 40px;
    }

}


/*评论列表页*/
.comment-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.comment-list .item{
    width: 31%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    box-shadow: 0px 0px 5px #999;
    margin-top: 50px;
}
.comment-list .item .shang{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment-list .item .shang .zuo{
    display: flex;
    align-items: center;
}
.comment-list .item .shang .zuo .first-letter{
    width: 45px;
    height: 45px;
    background: rgba(235, 235, 235, 1);
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    font-size: 26px;
}
.comment-list .item .shang .zuo .other{
    display: flex;
    flex-direction: column;
}
.comment-list .item .shang .zuo .other .stars .layui-icon{
    color: rgba(232, 155, 39, 1);
    line-height: 1;
}
.comment-list .item .shang .zuo .other .name{
    font-size: 20px;
    line-height: 1;
}
.comment-list .item .shang .date{
    font-size: 18px;
}
.comment-list .item .xia{
    margin-top: 35px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
}
.comment-list .item .xia .txt1{
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
}

.comment-list .item .xia .txt2{
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
    margin-bottom: 5px;
}

.comment-list .item .xia .txt2 span{
    color: #000;
}
.comment-list .item .xia .txt3{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.comment-list .item .xia .txt3 span{
    color: rgba(102, 102, 102, 1);
    margin-right: 40px;
    padding-right: 25px;
    background:url(../images/zan.png) right center no-repeat;
    background-size: 15px;
}



/*客服*/
.kefu{
  position: fixed;
  right: 15px;
  bottom: 96px;
  z-index: 9;
}
.kefu ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kefu li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  background: #2687BA;
  font-size: 26px;
  color: #fff;
  ttransition: 0.6s;
}
.kefu li a .iconfont{
    font-size: 30px;
}
.kefu li:hover a{
  background-color: #06b4e1!important;
}
.kefu li.whatsapp a{
  background: #25d366;
}
.kefu li.whatsapp a .iconfont{
    font-size: 26px;
}
.kefu li.email a .iconfont{
    font-size: 20px;
}
.kefu li.gotop a .iconfont{
    font-size: 24px;
}
.kefu li.whatsapp:hover a{
  background-color: #06b4e1;
}
.kefu li.gotop a{
  background: #2762A4;
  transform: rotate(-90deg);
}
.kefu li.weixin a{
  background: #2aae67;
}
.kefu li.weixin:hover a{
  background-color: #06b4e1;
}
.kefu li.weixin{
  position: relative;
}
.kefu li.weixin .qrcode{
  display: none;
  position: absolute;
  right: 60px;
  top: 50%;
  transform:translateY(-50%);
  z-index: 8;
  width: 120px;
  height: 120px;
  box-shadow: 0px 0px 5px #ccc;
}
.kefu li.weixin:hover .qrcode{
  display: block;
}
.kefu li.weixin .qrcode img{
  display: block;
  width: 100%;
}


/*后期调整*/
#quote-btn{
    justify-content: flex-start;
}