:root{
    --theme-color:#D6000F;
    --theme-color2:#D6000F;
    --theme-red:#D6000F;
    --theme-blue:#09357F;
}
.swiper-button-next, .swiper-button-prev{
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    background-color: var(--theme-color);
    background-size: 18px 18px;
    opacity: 1;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjk4NzMzMTg2MTUxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjUwODIiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTMiIGhlaWdodD0iMTMiPjxwYXRoIGQ9Ik0yNDAuNjQgMjAuNDhjLTMwLjcyIDMwLjcyLTMwLjcyIDgxLjkyIDAgMTEyLjY0bDM3OC44OCAzNzguODgtMzc4Ljg4IDM3OC44OGMtMzAuNzIgMzAuNzItMzAuNzIgNzYuOCAwIDEwNy41MnM3Ni44IDMwLjcyIDEwNy41MiAwbDQzNS4yLTQzNS4yYzMwLjcyLTMwLjcyIDMwLjcyLTc2LjggMC0xMDcuNTJMMzQ4LjE2IDIwLjQ4Yy0zMC43Mi0yNS42LTc2LjgtMjUuNi0xMDcuNTIgMHoiIGZpbGw9IiNmZmZmZmYiIHAtaWQ9IjUwODMiPjwvcGF0aD48L3N2Zz4=');
}
 .swiper-button-prev{
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjk4NzMzMTc2Nzc0IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ4ODAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTMiIGhlaWdodD0iMTMiPjxwYXRoIGQ9Ik03ODMuMzYgMTAwMy41MmMzMC43Mi0zMC43MiAzMC43Mi03Ni44IDAtMTA3LjUyTDQwNC40OCA1MTJsMzc4Ljg4LTM3OC44OGMzMC43Mi0zMC43MiAzMC43Mi03Ni44IDAtMTA3LjUyLTMwLjcyLTMwLjcyLTc2LjgtMzAuNzItMTA3LjUyIDBMMjQwLjY0IDQ1NS42OGMtMzAuNzIgMzAuNzItMzAuNzIgNzYuOCAwIDEwNy41Mmw0MzUuMiA0MzUuMmMzMC43MiAzMC43MiA3Ni44IDMwLjcyIDEwNy41MiA1LjEyeiIgZmlsbD0iI2ZmZmZmZiIgcC1pZD0iNDg4MSI+PC9wYXRoPjwvc3ZnPg==');
}
 .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    /* background-color:#D7D7D7; */
}

button.more  {
	width: 160px;
	height: 50px;
	font-size: 16px;
	background: rgba(214,0,15,0.8);
	color: #fff;
    border: none;
	transition: all .3s;
}

button.more:hover {
	background: rgba(214,0,15,1);
}


.cat_title{
    text-align: center;

    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}
.cat_title span{
    font-weight: 300;
    font-size: 66px;
    color: #000000;
}
.diagonal-line {  
    position: relative;  
    width: 130px;
    margin: 20px auto;  
    height: 5px; /* 线条的高度 */  
    background-color: var(--theme-color2); /* 默认背景色 */  
    overflow: hidden; /* 隐藏超出容器的伪元素 */  
  }  
    
  .diagonal-line::before {  
    content: "";  
    position: absolute;  
    top: 0;  
    right: 50%; /* 控制红色部分的宽度 */  
    width: 50%; /* 与right属性配合，设置红色部分的宽度 */  
    height: 100%;  
    background-color: var(--theme-color);  
    transform: skewX(-45deg); /* 倾斜角度 */  
    transform-origin: 100% 0; /* 倾斜的起始点 */  
  }  

.cat_title i{
    width: 70px;
    height: 4px;
    display: inline-block;
    background: var(--theme-color);
}

.cat_title.smal span{
    font-size: 40px;
}
.cat_title.smal  .diagonal-line{
    margin-top: 10px;
}

.cat_ftitle{
    font-size: 19px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #7C7C7C;
    line-height: 30px;
    text-align: center;
}
@media screen and (max-width: 850px) {
    .cat_title span{
        font-size: 28px;
        line-height: 40px;
    }
    .cat_ftitle{
        font-size: 12px;
       
    }
}

.new_cat_title{
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    color: #333333;

}
.new_cat_desc{
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    max-width: 850px;
}

/* 首页产品中心 */
.home-product-section {
    /* display: flex;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 20px; */
    background: #F2F4F9;
    padding-top: 70px;
    padding-bottom: 90px;
}
.home-product-section .product-box{
    display: flex;
    background-color: #ffffff;
    padding: 1px;
}

.home-product-section .product-categories {
    width: 320px;
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* gap: 10px; */
    
}
.home-product-section .category-button {
    /* background-color: #007bff;
    color: #fff; */
    border: none;
    padding: 10px;
    cursor: pointer;
    height: 100px;
    background: #F2F4F9;
    margin-bottom: 1px;


    font-weight: 400;
    font-size: 30px;
    color: #000000;
    line-height: 21px;

    text-align: left;
    padding-left: 38px;
}
.home-product-section .active {
    background-color: #fff; /* 新颜色 */
    color: var(--theme-color2);
    font-weight: bold;
}
.home-product-section .product-items {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home-product-section .product-category {
    display: none;
    padding: 62px;
    padding-bottom: 40px;
    
}
.home-product-section  .product-item-box{
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 28px;
}

.home-product-section .product-item {
    border: 1px solid #09357F;
    border-radius: 5px;
    
}
.home-product-section .product-item .thumb{
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.home-product-section .product-item h3{
    width: 100%;
    height: 100px;
    background: #09357F;
    padding: 10px;
    font-weight: 400;
    font-size: 19px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;

}
.home-product-section .product-category .view-more{

float:right;
margin-top: 50px;
font-weight: bold;
font-size: 24px;
color: #09357F;
text-decoration-line: underline;
}
.home-product-section .view-product {
    background-color: #0e357e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    display: block;
}
/* 首页产品中心end */

/* 新产品 */
.product_menu{
    background-color: #ffffff !important;
}
.h-product-box{
    background-color: #f4f4f4;
    padding-top: 25px;
    padding-bottom: 25px;
}
.h-product-list_box{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
}
.h-product-list_box.three{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* grid-gap: 25px; */
}
.h-product-list_box .product_box{
    /* background-color: #FFFFFF; */
    padding: 50px 30px;

    background: url(../images/bg_0331.jpg)no-repeat center /cover;
}
.h-product-list_box .product_box a{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.h-product-list_box .product_box .m-tit{
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    /* line-height: 20px; */


    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}


.h-product-list_box .product_box .m-tit:hover{
    color: var(--theme-color);
}
.h-product-list_box .product_box .m-des{
    font-size: 16px;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 20px;
    margin-top: 30px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.h-product-list_box .product_box .m-des:hover{
    color: var(--theme-color);
}
.h-product-list_box .product_box .btn-more{
    font-size: 16px;
    font-weight: 400;
    color: #777;
    margin-top: 30px;
    display: inline-block;
    border-radius: 20px;
    background-color: #fff;
    line-height: 40px;
    padding: 0 22px;

}
.h-product-list_box .product_box .btn-more i {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d30000;
    font-size: 15px;
    color: #fff;
    text-align: center;
    line-height: 18px;
    margin-left: 7px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.h-product-list_box .product_box .btn-more:hover i {
    background: #fff;
    color: #d30000;
}

.h-product-list_box .product_box .btn-more:hover{
    color: #fff;
    background-color: var(--theme-color);
}
.h-product-list_box .product_box .m-cont{
    width: 55%;
}
.h-product-list_box .product_box .m-img{
    width: 45%;
    max-width: 50%;
    max-height: 200px;
    text-align: right;
}
.h-product-list_box .product_box .m-img img{
    max-width: 100%;
    max-height: 100%;
}
@media (max-width: 1200px) {
    .h-product-list_box{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 950px) {
    .h-product-list_box{
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}
/* 新产品end */
/* n解决方案 */
/*home-solution - start*/

.home-solution{
    padding-top: 70px;
}
.h-solution-des {
	width: 100%;
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        line-height: 40px;
    text-align: center;
}

.hsolution-slide {
	margin-top: 40px;
	width: 100%;
	background: #fff;
	position: relative;
}

.hsolution-view {
	position: relative;
}

.hsolution-view .swiper-container {
	height: 500px;
	width: 100%;
	position: relative;
}

.hsolution-view .swiper-slide {
	position: relative;
	color: #fff;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.hsolution-view .swiper-slide a {
	display: block;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	/* background: url(../images/hs_bg.png) no-repeat left center; */
	background-size: cover;
}

.hsolution-view .swiper-slide button {
	width: 160px;
	height: 50px;
	font-size: 16px;
	background: rgba(214,0,15,0.8);
	color: #fff;
	margin-top: 60px;
	transition: all .3s;
    border-radius: 5px;
}

.hsolution-view .swiper-slide button:hover {
	background: rgba(214,0,15,1);
}

.h-solut-text {
	width: 80%;
	position: absolute;
	left: 10%;
	top: 90px;
	z-index: 10;
	text-align: center;
}

.h-solut-text .m-tit {
	font-size: 25px;
	line-height: 1.2;
	opacity: 0;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	-webkit-transition: .2s ease .4s;
	transition: .2s ease .4s;
}

.hsolution-view .swiper-slide-active .h-solut-text .m-tit {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: .4s ease 0.6s;
	transition: .4s ease 0.6s;
}

.h-solut-text .m-des {
	font-size: 14px;
	line-height: 2;
	margin-top: 20px;
	opacity: 0;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	-webkit-transition: .2s ease .5s;
	transition: .2s ease .5s;
}

.hsolution-view .swiper-slide-active .h-solut-text .m-des {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: .4s ease 0.7s;
	transition: .4s ease 0.7s;
}

.h-solut-bot {
	width: 80%;
	position: absolute;
	bottom: 0;
	left: 10%;
	background: rgba(215, 12, 25, .7);
	padding: 25px 15px;
	z-index: 11;
	text-align: center;
	opacity: 0;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	-webkit-transition: .2s ease .6s;
	transition: .2s ease .6s;
}

.hsolution-view .swiper-slide-active .h-solut-bot {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: .4s ease 0.8s;
	transition: .4s ease 0.8s;
}

.h-solut-bot .m-tit {
	font-size: 14px;
}

.h-solut-bot .m-list {
	margin-top: 20px;
}

.h-solut-bot .m-list img {
	max-width: 100%;
}

.hsolution-contact {
	background: url(../images/hs_12.jpg) no-repeat center #fff;
	background-size: cover;
	padding: 40px 15px;
}

.hsolution-contact .m-left {
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	line-height: 1.2;
}

.hsolution-contact .m-left span {
	display: inline-block;
	width: 70px;
	height: 20px;
	background: url(../images/hp_03.png) no-repeat center;
	background-size: cover;
	font-size: 10px;
	color: #fff;
	text-align: center;
	line-height: 20px;
	margin-left: 10px;
	vertical-align: middle;
}

.hsolution-contact .m-right {
	margin-top: 20px;
}

.hsolution-contact .m-img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.hsolution-contact .m-img img {
	width: 38px;
}

.hsolution-contact .m-cont {
	display: inline-block;
	vertical-align: middle;
}

.hsolution-contact .m-cont p {
	font-size: 14px;
	font-style: italic;
	color: #444;
}

.hsolution-contact .m-cont a {
	font-family: "DIN";
	font-size: 25px;
	font-style: italic;
	color: var(--theme-color);
	line-height: 1.14;
}

.hsolution-page {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	padding: 0 15px;
	background: rgba(0, 0, 0, .2);
}

.hsolution-page .swiper-container {
	
}

.hsolution-page .swiper-slide {
	text-align: center;
	padding: 10px 2px;
	cursor: pointer;
}

.hsolution-page .m-icon {
	width: 25px;
	height: 25px;
	position: relative;
	margin: 0 auto;
}

.hsolution-page .m-icon img {
	width: 100%;
	height: 100%;
	display: block;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.hsolution-page .m-icon .aft {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.hsolution-page .active-nav .m-icon .bef {
	opacity: 0;
}

.hsolution-page .active-nav .m-icon .aft {
	opacity: 1;
}

.hsolution-page .m-tit {
	font-size: 14px;
	color: #fff;
	margin-top: 5px;
	/* white-space: nowrap; */
    /* text-align: center; */
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.hsolution-page .active-nav .m-tit {
	color: var(--theme-color);
    font-weight: bold;
}


.hsolution-page .swiper-slide i {
	display: none;
}

.hsolution-prev,
.hsolution-next {
	display: block;
	position: absolute;
	top: 50%;
	z-index: 20;
	margin-top: -20px;
	font-size: 36px;
	line-height: 40px;
	color: #777;
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.hsolution-prev {
	left: 10px;
}

.hsolution-next {
	right: 10px;
}



@media (min-width: 1200px) {
	.h-solution-des {
		/* width: 45%; */
		font-size: 20px;
        
	}

	.hsolution-slide {
		margin-top: 50px;
	}

	/* .hsolution-slide::after {
		content: '';
		width: 1px;
		height: 100%;
		background: rgba(255, 255, 255, .5);
		position: absolute;
		left: 25%;
		top: 0;
		z-index: 2;
	} */

	.hsolution-view .swiper-wrapper {
		-webkit-transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
		transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
	}

	.hsolution-view .swiper-container {
		height: 550px;
	}

	.h-solut-text {
		width: 550px;
		left: 29%;
		top: 13%;
		text-align: left;
	}

	.h-solut-text .m-tit {
		font-size: 40px;
	}

	.h-solut-text .m-des {
		font-size: 15px;
		margin-top: 20px;
	}

	.h-solut-bot {
		width: 560px;
		left: 25%;
		padding: 34px 40px;
		text-align: left;
	}

	.h-solut-bot .m-tit {
		font-size: 15px;
	}

	.h-solut-bot .m-list {
		margin-top: 20px;
	}

	.hsolution-view .swiper-slide-active .h-solut-text .m-tit {
		-webkit-transition: .4s ease 1.6s;
		transition: .4s ease 1.6s;
	}

	.hsolution-view .swiper-slide-active .h-solut-text .m-des {
		-webkit-transition: .4s ease 1.7s;
		transition: .4s ease 1.7s;
	}

	.hsolution-view .swiper-slide-active .h-solut-bot {
		-webkit-transition: .4s ease 1.8s;
		transition: .4s ease 1.8s;
	}

	.hsolution-page {
		position: absolute;
		left: 3.125%;
		top: 50%;
		width: 20%;
		height: 415px;
		background: transparent;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
    .hsolution-page .swiper-container{
        width: 100%;
	    /* height: 100%; */
        padding-right: 30px;
        border-right: 1px solid #fff;
    }
	.hsolution-page .swiper-slide {
		position: relative;
		padding: 0 30px;
		text-align: left;
	}

	.hsolution-page .m-icon {
		width: 25px;
		height: 25px;
		margin: 0;
		position: absolute;
		left: 0;
		top: 0;
	}

	.hsolution-page .m-tit {
		margin: 0;
		font-size: 14px;
		line-height: 25px;
	}

	.hsolution-page .swiper-slide i {
		display: inline-block;
		width: 25px;
		height: 25px;
		/* border-radius: 50%; */
		/* background: var(--theme-color); */
		font-size: 12px;
		text-align: center;
		line-height: 25px;
		color: #fff;
		vertical-align: middle;
		position: absolute;
		right: 10px;
		top: 0;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
    .hsolution-page .swiper-slide i svg path{
        fill: #fff;
    }
    .hsolution-page .active-nav i svg path{
        fill: var(--theme-color);
    }
	.hsolution-page .swiper-slide:hover .m-tit {
		color: var(--theme-color);
        font-weight: bold;
	}

	.hsolution-page .swiper-slide:hover .bef {
		opacity: 0;
	}

	.hsolution-page .swiper-slide:hover .aft {
		opacity: 1;
	}
    .hsolution-page .swiper-slide:hover i svg path{
        fill: var(--theme-color);
    }

	.hsolution-page .swiper-slide.active-nav i,
	.hsolution-page .swiper-slide:hover i {
		right: -10px;
	}

	.hsolution-prev,
	.hsolution-next {
		display: none;
	}

	.hsolution-contact {
		padding: 45px 8%;
	}

	.hsolution-contact .m-left {
		float: left;
		width: 48%;
		font-size: 34px;
	}

	.hsolution-contact .m-left span {
		width: 88px;
		height: 25px;
		font-size: 12px;
		line-height: 25px;
		margin-left: 10px;
	}

	.hsolution-contact .m-right {
		float: right;
		width: 48%;
		text-align: right;
		margin-top: 0;
	}

	.hsolution-contact .m-img {
		margin-right: 10px;
	}

	.hsolution-contact .m-img img {
		width: 57px;
	}

	.hsolution-contact .m-cont {
		text-align: left;
	}

	.hsolution-contact .m-cont p {
		font-size: 15px;
	}

	.hsolution-contact .m-cont a {
		font-size: 42px;
	}
}

/* @media (min-width: 1260px) {
	.hsolution-page {
		width: 18%;
	}

	.hsolution-page .swiper-slide {
		padding: 0 40px 0 45px;
	}

	.hsolution-page .m-tit {
		font-size: 20px;
	}
} */

@media (max-width: 1780px) {
    .hsolution-page .m-tit{
        text-align: center;
    }
}
@media (min-width: 1500px) {
    .hsolution-page .m-tit {
        margin: 0;
        font-size: 18px;
        line-height: 25px;
    }
}
@media (min-width: 1700px) {
	.h-solution-des {
		font-size: 24px;
	}

	.hsolution-slide {
		margin-top: 60px;
	}

	.hsolution-view .swiper-container {
		height: 700px;
	}

	.h-solut-text .m-tit {
		font-weight: bold;
        font-size: 48px;
        color: #FFFFFF;
	}

	.h-solut-text .m-des {
		margin-top: 25px;
        font-weight: 400;
        font-size: 24px;
        color: #FFFFFF;
        line-height: 36px;
	}

	.h-solut-bot {
		padding: 40px 50px;
	}

	.h-solut-bot .m-tit {
		font-size: 18px;
	}

	.h-solut-bot .m-list {
		margin-top: 25px;
	}

	.hsolution-page {
		width: 23%;
		height: 510px;
	}

	.hsolution-page .swiper-slide {
		padding: 0 40px 0 50px;
        height: auto !important;
	}
   
    .hsolution-page  .swiper-wrapper .swiper-slide:last-child {
        /* margin-bottom: 0 !important; */
    }

	.hsolution-page .m-icon {
		width: 30px;
		height: 30px;
	}

	.hsolution-page .m-tit {
		font-size: 24px;
		line-height: 30px;
	}

	.hsolution-page .swiper-slide i {
		width: 25px;
		height: 25px;
		font-size: 14px;
		line-height: 30px;
        margin-top: 7px;
	}

	.hsolution-contact {
		padding: 54px 8%;
	}

	.hsolution-contact .m-left {
		font-size: 40px;
	}

	.hsolution-contact .m-left span {
		width: 104px;
		height: 30px;
		font-size: 14px;
		line-height: 30px;
		margin-left: 15px;
	}

	.hsolution-contact .m-img {
		margin-right: 14px;
	}

	.hsolution-contact .m-img img {
		width: 68px;
	}

	.hsolution-contact .m-cont p {
		font-size: 18px;
	}

	.hsolution-contact .m-cont a {
		font-size: 50px;
	}
}

/*home-solution - end*/
/* 解决方案end */


/* home_about */
.home_about_box{
    margin-top: 80px;
}
.home_about {
    

    /* display: grid;
    grid-template-areas: 
      'intro image'
      'data data';
    grid-template-columns: 3fr 4fr;
    gap: 85px; */
    display: flex;
    justify-content: space-between;

  }
  .home_about  .intro {
    width: 50%;
    padding-left: 135px;
    padding-right: 85px;
    grid-area: intro;
    /* padding: 10px; */
    /* background-color: #ffffff; */
    /* border-radius: 5px; */
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */
  }
  .home_about  .intro .desc{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 30px;
    white-space: pre-wrap;
    overflow-y: clip;

  }
  .home_about  .intro .data{
    
  }


  .home_about  .image {
    width: 50%;
    grid-area: image;
    height: auto;
    border-radius: 5px;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */
  }
  .home_about  .data {
    margin-top: 70px;
    width: calc(100vw - 135*2px - 20px);
    height: 248px;
    z-index: 9;
    position: relative;
    background: #FFFFFF;

    grid-area: data;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 10px; */
  }

  .home_about  .data-item {
    padding: 10px;
    text-align: center;
    
    height: 100%;
    width: 25%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
  }
  .home_about  .data-item:not(:first-child,:last-child):after{
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    background: #DADADA;
    height: 133px;
  }

  .home_about  .data-item .num{
   
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 60px;
    color: #09357F;
    line-height: 60px;
  }
  .home_about  .data-item .desc{

    font-weight: 400;
    font-size: 24px;
    color: #000000;
    line-height: 36px;
  }
  .home_about  .data .data-item:first-child {
    background: #09357F;
   
  }
  .home_about  .data .data-item:first-child::after{

  }


  .home_about  .data .data-item:first-child .num{
    color: #fff;
   
  }
  .home_about  .data .data-item:first-child .desc{
    color: #fff;
   
  }
  @media (max-width: 768px) {
    .home_about {
      grid-template-areas:
        'intro'
        'image'
        'data';
      grid-template-columns: 1fr;
    }
  }
/* home_about end */

/* newabout */

.new_home_about{
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    min-height: 650px;
    color: #fff;
}
.new_home_about .about_info{
    width: 50%;
    padding-left: 5.5%;
    padding-right: 13.54%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color:rgba(27, 27, 27, 0.2);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}
.new_home_about .about_info .title{
    font-size: 60px;
}
.new_home_about .about_info .desc{
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    white-space: pre-wrap;
    overflow-y: clip;
}
.new_home_about .about_info .more{
    margin-top: 30px;
    font-size: 16px;
}
.new_home_about .about_info .more:hover{
    color: var(--theme-color);
}
.new_home_about .data{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.new_home_about .data .data_box{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background-color:rgba(27, 27, 27, 0.2);
    position: relative;
}
.new_home_about .data .data_box::after{
    position: absolute;
    content: '';
    width: 100%;
    top: 50%;
    border-top: 1px solid #fff;
}
.new_home_about .data .data_box::before{
    position: absolute;
    content: '';
    height: 100%;
    left: 50%;
    border-left: 1px solid #fff;
}


.new_home_about .data .data_box .data-item{
    padding:50px 30px;
    text-align: center;
}

.new_home_about .data .data_box .data-item .num {
    font-weight: bold;
    font-size: 40px;
    color: #ffffff;
    line-height: 60px;
}

.new_home_about .data .data_box  .data-item .desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
/* .new_home_about .data .data_box .data-item:first-child{
    border-right: 1px solid #A6B7DD;
    border-bottom: 1px solid #A6B7DD;
}
.new_home_about .data .data_box .data-item:last-child{
    border-left: 1px solid #A6B7DD;
    border-top: 1px solid #A6B7DD;
} */


@media (max-width: 1000px) {
    .new_home_about .about_info ,.new_home_about .data{
        width: 100%;
    }
    .new_home_about .data .data_box .data-item .num{
        font-size: 30px;
    }
}




/* newabout end*/
.more_red{
    padding: 13px 20px;
    font-size: 18px;
    line-height: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    background-color: var(--theme-color);
    box-shadow: 0px 2px 5px 0px rgba(83,83,83,0.3);
    border-radius: 30px;
    border: 1px solid var(--theme-color);
    display: inline-block;
   

}
.more_red i{
    width: 65px;
    height: 12px;
    margin-left: 10px;
    display: inline-block;
    background-image: url(../images/half_arrow.png);
    background-size: 100% 100%;
}
.more_red:hover{
    color: var(--theme-color);
    background-color: #fff;

}
.more_red:hover i{
    background-image: url(../images/half_arrow_red.png);
}

/* home case */

.home_case_box{
    padding-top: 65px;
}
.home_case_box .case_list{
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.home_case_box .case_list li{
    position: relative;
    overflow: hidden;
}
.home_case_box .case_list li .img{
    position: relative;
    height: 100%;
    height: 0;
    padding-bottom: 46.875%;
}
.home_case_box .case_list li .info_box{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #ffffff00 76%,rgb(27 27 27 / 50%), rgb(27 27 27 / 80%));
    transition: all  0.2s linear;
}


.home_case_box .case_list li .info_box .center_box{
    width: 100%;
    padding: 20px;
    position: absolute;
    bottom: -160px;
    height: 230px;
    transition: all  0.2s linear;
}

.home_case_box .case_list li .info_box .frame_box{
    width: 540px;
    /* margin: 0 auto; */
    max-width: 100%;
    padding: 0 20px;
}
.home_case_box .case_list li .info_box .title{
    bottom: 36px;
    max-width: 100%;

    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;

    font-weight: bold;
    font-size: 24px;
    color: #FEFEFE;
    line-height: 27px;
    
}
.home_case_box .case_list li .info_box .title:hover{
    color: var(--theme-color);
}
.home_case_box .case_list li .info_box .desc{
    
    margin-top: 30px;
    font-size: 16px;

    font-weight: 400;
    font-size: 16px;
    color: #FEFEFE;
    line-height: 27px;

    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    
}
.home_case_box .case_list li .info_box .desc:hover{
    color: var(--theme-color);
}
.home_case_box .case_list li .info_box .more{
    margin-top: 25px;
    height: 34px;
    width: 134px;
    border-radius: 5px;
    font-size: 14px;
    /* padding: 6px 14px;
    border: 1px solid #FFFFFF;
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    line-height: 15px; */
}
.home_case_box .case_list li .info_box .more i{
    /* width: 38px;
    height: 8px;
    margin-left: 7px;
    display: inline-block;
    background-image: url('../images/half_arrow.png');
    background-size: 100% 100%;
    margin-top: 50px; */
}
.home_case_box .case_list li .info_box .more:hover{
    /* color: var(--theme-color);
    border-color: var(--theme-color); */
}
.home_case_box .case_list li .info_box .more:hover i{
    /* background-image: url('../images/half_arrow_red.png'); */
}
.home_case_box .case_list li .info_box:hover {
    background-color: rgba(27, 27, 27, 0.7);
}
.home_case_box .case_list li .info_box:hover .center_box{
    bottom: 5%;
 }
 .home_case_box .case_list li .info_box:hover .center_box .title{
    text-align: left;
 }


 @media screen and (max-width: 1320px) {
    .home_case_box .case_list{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
 }
 @media screen and (max-width: 850px) {
    .home_case_box .case_list li .info_box .title{
        font-size: 16px;
    }
 }

/* cseend */

/* index_news */
.index_news_box{
    margin-top: 50px;
}
.news-categories button{
    font-size: 18px;
    line-height: 50px;
    /* padding: 0 25px; */
    position: relative;
    margin-right: 25px;
}
.news-categories button:hover {
    color: var(--theme-color);
}
.news-categories button::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--theme-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .4s;
    transition: all .4s;
}
.news-categories button:hover::after {
    width: 100%;
}
.news-categories button.active::after {
	width: 100%;
}


.index_news_box .news_title{
    display: inline-block;
    font-size: 24px;
    font-family: AlibabaSans-Regular;
    font-weight: bold;
    color: #313131;
    line-height: 43px;
    border-bottom: 4px solid #54B43F;
}
.gongs_list_box{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.gongs_list_box .left_box{
    width: 53.333333333%;
    /* height: 56.25%; */
    position: relative;
}
.gongs_list_box .left_box_img{
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
}
.gongs_list_box .left_box .left_box_img img{
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}
.gongs_list_box .left_box .wenzi{
    position: absolute;
    width: 100%;
    /* height: 74px; */
    background: #00000080;
    bottom: 0;
    padding: 15px 25px;
}
.gongs_list_box .left_box .wenzi .title{

    font-size: 24px;
    font-family: AlibabaSans-Regular;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.gongs_list_box .left_box .wenzi span{

    font-size: 14px;
    font-family: AlibabaSans-Regular;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 32px;
}
.gongs_list_box .gongs_list{
    width: 41.6666666667%;
}
.gongs_list_box .gongs_list .gongs_item{
    border-bottom: 1px solid #DCDCDC;
    margin-bottom: 18px;
}
.gongs_list_box .gongs_list .gongs_item:last-child{
    margin-bottom: 0;
}

.gongs_list_box .gongs_list .gongs_item .title{

    font-size: 20px;
    font-family: AlibabaSans-Regular;
    /*font-weight: bold;*/
    color: #323232;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.gongs_list_box .gongs_list .gongs_item .title:hover{
    color: var(--theme-color);
}
.gongs_list_box .gongs_list .gongs_item span{

    font-size: 14px;
    font-family: AlibabaSans-Regular;
    font-weight: 400;
    color: var(--theme-color);
    line-height: 27px;
}

@media screen and (max-width: 1000px) {
    .gongs_box{
        /*padding: 10px;*/
    }
    .gongs_list_box {
        
        flex-wrap: wrap;
    }
    .gongs_list_box .left_box{
        width: 100%;
        max-width: 640px;
    }

    .gongs_list_box .gongs_list{
        width: 100%;
        max-width: 500px;
        margin-top: 30px;
    }
}
@media screen and (max-width: 500px) {
    .gongs_list_box .left_box .wenzi{
        padding: 10px;
    }
    .gongs_list_box .left_box .wenzi .title{
        font-size: 20px;
    }
}
/* index-news end */




.company_title{
    margin-top: 80px;
    padding-bottom: 70px;
}
@media screen and (max-width: 550px) {
    .company_title {
        padding-bottom: 30px;
    }
}





.new_product_cat{
    background: #FFFFFF;
}
.new_product_cat ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2px 0 18px 0;
    margin-left: -10px;
    margin-right: -10px;
}


.new_product_cat li {
    padding: 10px;
}

.new_product_cat li .img{
    margin: 0 auto;
    width: 100px;
    height: 100px;
    padding: 15px;
    text-align: center;
}
.new_product_cat li .img img{
    max-width: 100%;
    max-height: 100%;
}
.new_product_cat li span{

    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 30px;
}
.new_product_cat li.active span , .new_product_cat li:hover span{
    color: var(--theme-color);
}
@media screen and (max-width: 850px) {
    .new_product_cat ul{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-gap: 10px;
    text-align: center;
    }
}


.product_cat{
    /*display: grid;*/
    /*grid-template-columns: repeat(6,minmax(0,1fr));*/
    /*grid-gap: 0px;*/
    /*row-gap: 10px;*/
    display: flex;
    justify-content: center;

}
.product_cat a{
    width: 16.6666666%;
}
.product_cat li{
    height: 130px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #EBEBEB;
    padding: 10px;
}
.product_cat li.tx{
    background: #CDCDCD;
}
.product_cat li .img{
    width: 50px;
    height: 0;
    max-height: 75px;
   
    overflow: hidden;
    transition: 0.5s;
}
.product_cat li .img img{
    width: 100%;
    max-height: 100%;
}
.product_cat li span{
    /* transition: 1s; */
    max-width: 180px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #1B1B1B;
    line-height: 30px;
    text-align: center;
}
.product_cat li:hover .img{
    /* display: block; */
    height: 50px;

}
.product_cat li:hover span , .product_cat li.active span{
    color: var(--theme-color);
}


.product_cat_2_box{
    display: inline-block;
}
.product_cat_2{
    display: flex;
    flex-wrap: wrap;
    /*grid-template-columns: repeat(5,minmax(0,1fr));*/
    /*grid-gap: 0px;*/
    /*row-gap: 10px;*/
     /* border: 1px solid #dfdfde;; */
    margin-top: 40px;
}
.product_cat_2 li{
    /* height: 65px; */
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #1B1B1B;
    line-height: 22px;
    margin:0 10px;
    /* width: 255px; */
}

.product_cat_2 li.active , .product_cat_2 li:hover{
    background-color: var(--theme-color);
    color: #fff;

    /* border: 1px solid var(--theme-color); */
}
@media screen and (max-width: 850px) {
    .product_cat_2_box{
        width: 100%;
    }
    .product_cat_2{
        width: 100%;
    }
    .product_cat_2 a{
        width: 50%;
    }
    .product_cat_2 li{
        width: 100%;
    }
}




.product_list{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 20px;
    margin-top: 40px;
    
}
.product_list li{
    background: #fff;
    padding: 9px 15px 14px 15px;
    /* text-align: center; */
}
.product_list .img{
    /*padding: 15px;*/
    width: 100%;
    /*border: 1px solid #1B1B1B;*/
    overflow: hidden;
    border: 1px solid #e3e3e3;
}
.product_list .img:hover{
    /*border: 1px solid var(--theme-color);*/
}
.product_list .img .box_img{
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.product_list .img img{
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.product_list li h2{
    /* text-align: center; */
    font-size: 18px;
    font-weight: bold;
    color: #1B1B1B;
    line-height: 20px;
    margin-top: 15px;
}
.product_list li .more{
    margin: 0 auto;
    margin-top: 15px;
    display: inline-block;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid var(--theme-color);
    border-radius: 16px;
    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: var(--theme-color);
    line-height: 15px;
}
.product_list li .more:hover {
    background-color: var(--theme-color);
    color: #fff;
}
.product_list li .more i{
    margin-left: 10px;
    width: 38px;
    height: 8px;
    background-image: url(../images/half_arrow_red.png);
    background-size: 100% 100%;
    display: inline-block;
}
.product_list li .more:hover i {
    background-image: url(../images/half_arrow.png);
}

.product_list li span{

    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #727272;
    line-height: 22px;
    margin-top: 13px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product_list li h2:hover{
    color: var(--theme-color);
}

@media screen and (max-width: 1000px) {
    .product_cat{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .product_list{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

}
@media screen and (max-width: 850px) {
    .product_cat{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .product_list{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}
@media screen and (max-width: 550px) {
    .product_cat{
        grid-template-columns: repeat(2,minmax(0,1fr));
        margin-top: 20px;
    }
    .product_list{
        grid-template-columns: repeat(2,minmax(0,1fr));
        margin-top: 20px;
    }

}




.case_jiange{
    margin-top: 70px;
}

/* .cat_list{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 40px;
    row-gap:57px;
    margin-top: 126px;
    
}
.cat_list li{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.cat_list .img{
    
    width: 100%;
    overflow: hidden;
}

.cat_list .img .box_img{
    width: 100%;
    height: 0;
    padding-bottom: 128.08%;
    position: relative;
}
.cat_list .img img{
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}
.cat_list li .hide_box{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000080;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
}

.cat_list li .hide_box h2{

    font-size: 22px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
}
.cat_list li .hide_box span{
    margin-top: 20px;
    padding: 5px 14px;

    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;

    background: var(--theme-color);
    border-radius: 16px;
    display: inline-block;
}
.cat_list li .hide_box span i {
    width: 38px;
    height: 8px;
    margin-left: 10px;
    display: inline-block;
    background-image: url(../images/half_arrow.png);
    background-size: 100% 100%;
}
.cat_list li:hover .hide_box{
    opacity: 1;
}

.cat_list li .shouji_title{
    font-size: 16px;
    text-align: center;
    line-height: 18px;
    margin-top: 10px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
} */
/*case - start*/

.sec-case {
	padding: 50px 0 0px 0;
}

.sec-case .case-list {
	/* margin-bottom: 20px; */
}

.sec-case .case-item {
	margin-bottom: 20px;
}

.sec-case .case-item .m-img {
	padding-bottom: 68.42105263157895%;
}
.sec-case .case-item .m-cont {
    padding: 30px 0;
}
.sec-case .case-item .m-tit{
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;

}
.sec-case .case-item .m-tit:hover{
    color:var(--theme-color)
}
.sec-case .case-item .m-des {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 36px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sec-case .case-item .m-des:hover{
    color: var(--theme-color);
}
@media (min-width: 768px) {
	.sec-case {
		/* padding: 75px 0 90px 0; */
	}
}

/*case - end*/

/* case show */
/*case-detail -start*/
.case-detail {
	padding: 55px 0 0 0;
}

.case-detail-left {
	background: #fafafa;
	padding: 35px 15px;
}

.case-detail-right {
	background: #fafafa;
	margin-top: 20px;
	position: sticky;
	top: 60px;
}

.case-detail-right .m-head {
	font-size: 15px;
	color: #fff;
	background: var(--theme-color);
	padding: 10px 15px;
}

.case-detail-list {
	padding: 0 15px;
}

.case-detail-list li a {
	display: block;
	color: #333;
	border-bottom: 1px solid #e1e1e1;
	padding: 15px 0;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.case-detail-list li:last-child a {
	border-bottom: none;
}

.case-detail-list a .m-tit {
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.case-detail-list a .m-time {
	font-family: "DIN";
	font-size: 12px;
	line-height: 15px;
}

.case-detail-list a:hover {
	color: var(--theme-color);
}

.case-detail-left h2 {
	font-size: 22px;
	margin-bottom: 8px;
}

.case-time {
	font-size: 14px;
	color: #666;
	line-height: 16px;
}

.case-time img {
	height: 16px;
	margin-right: 5px;
	vertical-align: middle;
}

.case-detail-content {
	font-size: 12px;
	line-height: 1.875;
	/* color: #666; */
	padding: 30px 0 45px;
}

.case-detail-content img {
	max-width: 100%;
	width: 100% !important;
	height: auto !important;
}

.detail-page {
	text-align: center;
}

.btn-page {
	display: inline-block;
	font-size: 12px;
	color: #666;
	padding: 0 20px;
	background: #fff;
	line-height: 38px;
	margin-right: 6px;
	cursor: pointer;
	vertical-align: middle;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.btn-page .fa-angle-left {
	margin-right: 6px;
}

.btn-page .fa-angle-right {
	margin-left: 6px;
}

.btn-back {
	display: inline-block;
	width: 38px;
	height: 38px;
	background: url(../images/icon-back.png) no-repeat center var(--theme-color);
	background-size: cover;
	margin-right: 6px;
	cursor: pointer;
	vertical-align: middle;
}

.btn-page:hover {
	background: var(--theme-color);
	color: #fff;
}

@media (min-width: 768px) {
	.case-detail {
		padding: 76px 0 0 0;
	}

	.case-detail-left {
		float: left;
		width: 73%;
		padding: 40px 50px;
	}

	.case-detail-right {
		float: right;
		width: 25%;
		margin-top: 0;
	}

	.case-detail-right .m-head {
		font-size: 18px;
		padding: 12px 20px;
	}

	.case-detail-list {
		padding: 0 20px;
	}

	.case-detail-list li a {
		padding: 17px 0;
	}

	.case-detail-list a .m-tit {
		font-size: 16px;
	}

	.case-detail-list a .m-time {
		font-size: 14px;
		line-height: 18px;
	}

	.case-detail-left h2 {
		font-size: 25px;
		margin-bottom: 8px;
	}

	.case-time {
		font-size: 15px;
		line-height: 18px;
	}

	.case-time img {
		height: 18px;
		margin-right: 8px;
	}

	.case-detail-content {
		font-size: 14px;
		padding: 36px 0 50px;
	}

	.detail-page {
		text-align: left;
	}

	.btn-page {
		font-size: 14px;
		padding: 0 48px;
		line-height: 42px;
		margin-right: 8px;
	}

	.btn-page .fa-angle-left {
		margin-right: 8px;
	}

	.btn-page .fa-angle-right {
		margin-left: 8px;
	}

	.btn-back {
		width: 42px;
		height: 42px;
		margin-right: 8px;
	}
}

@media (min-width: 1500px) {
	.case-detail {
		padding-top: 90px;
	}

	.case-detail-left {
		float: left;
		width: 73%;
		padding: 50px 75px;
	}

	.case-detail-right {
		float: right;
		width: 25%;
	}

	.case-detail-right .m-head {
		font-size: 20px;
		padding: 15px 25px;
	}

	.case-detail-list {
		padding: 0 25px;
	}

	.case-detail-list li a {
		padding: 20px 0 17px;
	}

	.case-detail-list a .m-tit {
		font-size: 16px;
	}

	.case-detail-list a .m-time {
		font-size: 14px;
		line-height: 18px;
	}

	.case-detail-left h2 {
		font-size: 30px;
		margin-bottom: 8px;
	}

	.case-time {
		font-size: 18px;
		line-height: 22px;
	}

	.case-time img {
		height: 22px;
		margin-right: 10px;
	}

	.case-detail-content {
		font-size: 16px;
		padding: 40px 0 60px;
	}

	.btn-page {
		font-size: 16px;
		padding: 0 55px;
		line-height: 50px;
		margin-right: 10px;
	}

	.btn-page .fa-angle-left {
		margin-right: 10px;
	}

	.btn-page .fa-angle-right {
		margin-left: 10px;
	}

	.btn-back {
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}
}

/*case-detail - end*/
/*  */





@media screen and (max-width: 1000px) {
    .cat_list{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }


}
@media screen and (max-width: 850px) {
    .cat_list{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
  
}
@media screen and (max-width: 550px) {
    .cat_list{
        grid-template-columns: repeat(2,minmax(0,1fr));
        margin-top: 20px;
    }
    .cat_list li .hide_box{
        display: none;
    }
    .case_show_top{
        margin-top: 30px;
    }
    .cat_list li .shouji_title{
        display: block;
    }

}




.poject_top{
    margin-top: 57px;
}
.cat_desc{
    max-width: 850px;
    margin: 0 auto ;
    margin-top: 70px;
    text-align: center;

    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 28px;
}




.hezuo_box{
    margin-top: 40px;
    background-image: url('../images/hezuo_bg.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.hezuo_list{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-gap: 70px;
}
.hezuo_list>li{

    background: #FFFFFF;
    box-shadow: 1px 3px 8px 0px rgba(61,61,61,0.3);
    border-radius: 10px;
    height: 469px;
    overflow: hidden;
}

.hezuo_list li .title{
    background: var(--theme-color);
    box-shadow: 0px 1px 10px 0px rgba(61,61,61,0.5);

    padding: 0 10px;
    font-size: 25px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 85px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.hezuo_list li .desc{
    padding: 40px 30px;

    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 22px;
}
@media screen and (max-width: 850px) {
    .hezuo_list{
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-gap: 50px;
    }
}
@media screen and (max-width: 550px) {
    .hezuo_list{
        display: grid;
        grid-template-columns: repeat(1,minmax(0,1fr));
        grid-gap: 30px;
    }
}



.contact_form {
    padding: 18px;
}
.contact_form input{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    background: #FFFFFF;
    border: 1px solid var(--theme-color);
    border-radius: 5px;
    margin-bottom: 15px;
}
.contact_form textarea{
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    border: 1px solid var(--theme-color);
    border-radius: 5px;
    padding: 10px;
    resize:none;
    outline: none;
}
.contact_form button{
    margin-top: 20px;
    width: 100%;
    height: 40px;
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
    border-radius: 5px;


    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 25px;
}

.youshi_list{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 39px;
    row-gap: 85px;
    margin-top: 125px;
}
.youshi_list li{
    padding: 50px 25px 25px 25px;
   
    background: #F7F7F7;
    box-shadow: 1px 1px 6px 0px rgba(61,61,61,0.5);
    border-radius: 10px;
    position: relative;
}
.youshi_list li .youshi_icon{
    width: 100px;
    height: 100px;
    background: var(--theme-color);
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 15px;
    top: -60px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.youshi_list li .youshi_icon img{
    /* width: 100%; */

}
.youshi_list li h2{

    font-size: 25px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #1B1B1B;
    line-height: 25px;
}
.youshi_list li span{
    display: block;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 25px;
    margin-top: 20px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
@media screen and (max-width: 850px) {
    .youshi_list{
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-gap: 50px;
        row-gap: 70px;
    }
}
@media screen and (max-width: 550px) {
    .youshi_list{
        display: grid;
        grid-template-columns: repeat(1,minmax(0,1fr));
        grid-gap: 30px;
        row-gap: 70px;
    }
}






/* .contact_box{
    margin-top: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-end;
}
.contact_box .contact_info li{
    display: flex;
    margin-bottom:36px ;
   
}
.contact_box .contact_info li:last-child{
    margin-bottom: 0;
}
.contact_box .contact_info li .contact_icon{
    width: 38px;
}
.contact_box .contact_info li .info{

    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #7C7C7C;
    line-height: 25px;
    max-width: 332px;
    margin-left: 25px;
}
@media screen and (max-width: 1200px) {
    .contact_box{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .contact_box .map{
        margin-top: 20px;
        padding: 10px;
    }
}
@media screen and (max-width: 850px) {
    .contact_box{
        
    }
}
@media screen and (max-width: 550px) {
    .contact_box{
       
    }
} */



/* 解决方案 */
.page_cat{
    font-weight: 300;
    font-size: 36px;
    color: #000000;
    line-height: 36px;
    text-align: center;
}
.scat_title{
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scat_title span{
    font-weight: 400;
    font-size: 30px;
    color: #2F2F2F;
    line-height: 30px;
}
.scat_title i{
    width: 65px;
    height: 5px;
    display: inline-block;
    transform: skewX(-45deg);
    background: var(--theme-color2);
    margin: 0 16px;
    
}
.scat_title i.two{
    background:var(--theme-color);
}

.solution_desc{
    margin-top: 40px;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 30px;
}
.xt_img{
    margin-top: 30px;
    text-align: center;
}
.xttd{
    margin-top: 100px;
    padding: 50px 20px 120px 20px;
    background-image: url("../images/xttdbg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
.xttd .scat_title span{
    color: #fff;
}
.xttd .scat_title i{
    background-color: #fff;
}
.xttd ul{
    display: grid;  
    grid-template-columns: repeat(3, 1fr);   
    gap: 0px;
    margin-top: 60px;

}
.xttd li{
    background-color: #fff;
    padding: 40px;
    min-height: 350px;
    text-align: center;
}
.xttd li .icon{
    width: 65px;
    height: 65px;
    margin: 0 auto;
}
.xttd li .icon .bef{
    display: block;
}
.xttd li .icon .aft{
    display: none;
}
.xttd li .title{
    font-weight: 400;
    font-size: 24px;
    color: #313131;
    line-height: 40px;
    margin-top: 20px;
}
.xttd li .desc{
    margin: 0 auto;
    max-width: 240px;
    font-weight: 400;
    font-size: 16px;
    color: #313131;
    line-height: 30px;
    margin-top: 30px;
}
.xttd li:hover{
    background-color: var(--theme-color2);
}
.xttd li:hover .icon .bef{
    display: none;
}
.xttd li:hover .icon .aft{
    display: block;
}
.xttd li:hover .title ,.xttd li:hover .desc{
    color: #F2F4F9;
}


.yyys{
    margin-top: 0;
    padding: 30px 20px 160px 20px;
    background-image: url("../images/yyys_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.yyys ul{
    display: grid;  
    grid-template-columns: repeat(4, 1fr);   
    gap: 27px;
    margin-top: 60px;

}
.yyys li{
    width: 280px;
    height: 280px;
    background: rgb(255 255 255 / 90%);
    box-shadow: 0px 18px 38px 0px rgba(14,7,10,0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    transition:all 0.3s;
    padding-left: 10px;
    padding-right: 10px;
}
.yyys li .icon{
    width: 62px;
    height: 62px;
}
.yyys li  .title{
    margin-top: 30px;
    font-weight: bold;
    font-size: 23px;
    color: #313131;
    line-height: 24px;

}
.yyys li:hover{
    margin-top: -27px;

}

.dz_cat{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* margin-top: 40px; */
    /* position: sticky;
    width: 100%;
    top: 0;
    z-index: 10; */
    background: #ffffff;
    padding: 20px 0;

}
.dz_cat li{

    
}
.dz_cat li a{
    display: inline-block;
   
    background: #FFFFFF;
    border-radius: 23px;
    border: 2px solid var(--theme-color);
    padding: 10px 36px;
    margin: 12px;

    font-weight: bold;
    font-size: 18px;
    color: var(--theme-color);
    line-height: 18px;
}

.dz_cat li a.active,.dz_cat li a:hover{
    background: var(--theme-color);
    color: #FFFFFF;
}

@media screen and (max-width: 850px) {
    
}





/* 定制优势 */
.dzys_list{
    /* margin-top: 40px; */
    padding: 67px 20px 65px 20px;
    background-image: url(../images/dzysbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.dzys_list ul{
    display: grid;  
    grid-template-columns: repeat(3, 1fr);   
    gap: 70px;
    margin: 0 auto;
    margin-top: 60px;
    max-width: 1000px;
    
}
.dzys_list li{
    width: 280px;
    max-width: 100%;
    height: 280px;
    /* width: 100%; */
    /* height: 100%; */
    background: rgb(255 255 255 / 90%);
    box-shadow: 0px 18px 38px 0px rgba(14,7,10,0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition:all 0.3s;
    padding: 10px;
}

.dzys_list li .desc{
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    color: #303030;
    line-height: 24px;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .dzys_list ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .dzys_list li{
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    .dzys_list ul{
        grid-template-columns: repeat(1, 1fr);
    }
}
/* 流程 */
.lc_box{
    text-align: center;
    margin-top: 40px;
}
.lc_box .lc_title{
    font-weight: bold;
    font-size: 24px;
    color: #09357F;
    line-height: 22px;
}
.lc_box .desc{
    margin: 0 auto;
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #050505;
    line-height: 22px;
    max-width: 1000px;
}
.lc_box .img{
    margin-top: 40px;
    width: 100%;
    text-align: center;
}
/* 定制案例 */
.dzcase_list{
    overflow: hidden;
    margin-top: 70px;
}
.dzcase_list li{
    background: #F2F4F9;
    margin-bottom: 32px;
    display: flex;
}
.dzcase_box{

}
.dzcase_box .left_box{
    width: 384px;
    flex-shrink: 0;
}
.dzcase_box .img{
    width: 100%;
    height: 0;
    padding-bottom: 56.5104166667%;
    position: relative;
    overflow: hidden;
}
.dzcase_box .img img{
    
}
.dzcase_box .item{
    padding: 30px 40px;
}
.dzcase_box .item .title{

    font-size: 24px;
    font-family: AlibabaSans-Regular;
    font-weight: bold;
    color: #313131;
    line-height: 30px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dzcase_box .item span{

    font-size: 14px;
    font-family: AlibabaSans-Regular;
    font-weight: 400;
    color: #C3C3C3;
    line-height: 32px;
}
.dzcase_box .item p{
    font-size: 16px;
    font-family: AlibabaSans-Regular;
    font-weight: 400;
    color: #323232;
    line-height: 24px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.dzcase_list li:hover{
    
    background: var(--theme-color2);
    color: #ffffff !important;
}
.dzcase_list li:hover .title, .dzcase_list li:hover span, .dzcase_list li:hover p{
    color: #ffffff !important;
}

@media screen and (max-width: 850px) {
    .dzcase_box .left_box{
        width: 100%;
    }
    .dzcase_list li{
        flex-direction: column;
    }
    .dzcase_box .item .title{
        font-weight: normal;
        font-size: 22px;
    }
}
/**/
/* 联系我们 */
.contact_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    padding-top: 80px;
}
.contact_list li{
    text-align: center;
}
.contact_list li .imgbox{
    width: 100%;
    
}
.contact_list li .img{
    width: 100%;
    height: 0;
    padding-bottom: 61.45%;
    position: relative;
    overflow: hidden;
} 
.contact_list li span{
    font-weight: bold;
    font-size: 18px;
    color: #313131;
    line-height: 32px;
}
.contact_list li p{
    font-weight: 400;
    font-size: 30px;
    color: #313131;
    line-height: 30px;
}
@media screen and (max-width: 850px) {
    .contact_list{
        grid-template-columns: repeat(1, 1fr);
    }
}
/* end */

.small_more_red{
    padding: 9px 14px;
    font-size: 15px;
    line-height: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    background-color: var(--theme-color);
    border-radius: 16px;
    border: 1px solid var(--theme-color);
    display: inline-block;
   

}
.small_more_red i{
    width: 38px;
    height: 8px;
    margin-left: 10px;
    display: inline-block;
    background-image: url(../images/half_arrow.png);
    background-size: 100% 100%;
}
.small_more_red:hover{
    color: var(--theme-color);
    background-color: #fff;

}
.small_more_red:hover i{
    background-image: url(../images/half_arrow_red.png);
}


.solutionProducts_list .more{
    margin-top: 27px;
    text-align: center;
}



.product_show_bg{
    /* background-image: url("../images/product_show_bg.png");
    background-size: 100% 100% ; */
}

.product_show_box{
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
}
.product_show_box .xinghao_list{
    margin-right:2%;
    width: 30%;
}
.product_show_box .xinghao_list li{
    background: #DADADA;
    border-radius: 5px;
    height: 60px;
    margin-bottom: 8px;
    padding: 9px;


    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #1B1B1B;
    line-height: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product_show_box .xinghao_list li.active , .product_show_box .xinghao_list li:hover{
    background:var(--theme-color);
    color: #fff;
}


.product_show_box .product_infobox{
    /* width: calc(100% - 30% - 2%); */
    border: 2px solid #dfdfde;
    
}

.product_show_box .product_infobox .info_top{
    padding: 45px;
    padding-top: 38px;
    padding-bottom: 50px;
    border-bottom: 2px solid #dfdfde;
    display: flex;
}





.more_image_box {
    width: 41%;
}
.more_image_box .image_item{
    padding: 21px;
    background-color: #FFFFFF;
}
.more_image_box .image_item .image_box {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.more_image_box .image_item .image_box img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
}
.more_image_box .swiper_box{
        /* margin-left: -32px; */
        /* padding-left: 78px; */
        /* margin-right: -32px; */
        /* padding-right: 78px; */
        position: relative;
        margin-top: 27px;
}


.more_image_box .swiper-container {
    /* margin-top: 7px; */
}

.more_image_box .swiper-slide {
    width: 75px;
    height: 75px;
    padding: 6px;
    background: #FFFFFF;
    /* border: 2px solid #BCBFD1; */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more_image_box .swiper-slide.active {
    /* border: 2px solid #09357F; */
}

.more_image_box .swiper-button-next, .more_image_box .swiper-button-prev{
    /* width: 60px !important;
    height: 120px !important;
    border-radius: 5px;
    top: 0;
    margin-top: 0;
    opacity: 1; */
}
.more_image_box .swiper-button-next{
    right: -38px;
}
.more_image_box .swiper-button-prev{
    left: -38px;
}

.product_infobox .info_top .info_box{
    padding-left: 80px;
    /* padding-right: 40px; */
     width: calc(100% - 41%); 

}
.product_infobox .info_top .info_box h1{
    
    font-size: 30px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: var(--theme-color);
    line-height: 50px;

}
.product_infobox .info_top .info_box .desc_content{
    margin-top: 50px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    color: #1B1B1B;
    line-height: 25px;
}
.product_infobox .info_top .info_box .lxwm{

    display: inline-block;
    border: 2px solid var(--theme-color);
    padding: 15px 35px;

    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: var(--theme-color);
    line-height: 18px;
    margin-top: 50px;
    border-radius: 5px;
}
.product_infobox .info_top .info_box .lxwm:hover{
    background-color: var(--theme-color);
    color: #fff;
}


.product_infobox .info_content{
    padding: 52px;
}
.product_infobox .info_content .feature{
    margin-top: 10px;
}
.product_infobox .info_content .feature .cat_title{

font-size: 28px;
font-family: Microsoft YaHei;
font-weight: 600;
color: #1B1B1B;
line-height: 25px;
text-align: center;
}

.product_infobox .info_content .feature  ul{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 80px;
    row-gap: 80px;
    text-align: center;
    margin-top: 80px;
}
.product_infobox .info_content .feature  li .img{
    width: 103px;
    height: 103px;
    border-radius: 50%;
    border: 4px solid var(--theme-color);
    margin: 0 auto;
    padding: 14px;

} 
.product_infobox .info_content .feature  li img{
    max-width: 100%;
    max-height: 100%;
}
.product_infobox .info_content .feature  li .title{
    margin-top: 20px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #1B1B1B;
    /* line-height: 25px; */
}

.product_infobox .info_content .content{
    margin-top: 100px;
}

@media screen and (max-width: 1000px) {
   
    .product_show_box{
        flex-direction: column;
        flex-wrap: wrap;
        
    }
    .product_show_box .xinghao_list{
        width: 100%;
       margin-right: 0;
       display: flex;
       flex-wrap: wrap;
    }
    .product_show_box .xinghao_list li{
        margin-right: 10px;
        text-align: center;
        padding: 0 20px;
        max-width: 200px;
    }
    .product_show_box .product_infobox{
        width: 100%;
    }
    


}
@media screen and (max-width: 850px) {
    .product_show_box .product_infobox .info_top{
        flex-wrap: wrap;
    }
    .more_image_box{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .product_infobox .info_top .info_box{
        width: 100%;
        padding-left: 0;
        margin-top: 50px;
    }

    .product_infobox .info_content .feature ul{
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-gap: 40px;
    }
    
    .product_infobox .info_content{
        padding: 20px;
    }
    .product_show_box{
        margin-bottom: 0;
    }
}




.company_cat{
    display: grid;
    grid-template-columns: repeat(7,minmax(0,1fr));
    gap: 3px;
}

.company_cat li{
    /* padding: 25px; */
    /* min-width: 180px; */
    border: 2px solid #dfdfde;
    padding: 25px 10px;
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #717171;
    line-height: 24px;
    text-align: center;
    
}
.company_cat a{
    /* margin-left: 3px; */
}
.company_cat>a:first-child{
    /* margin-left: 0; */
}
.company_cat li.active , .company_cat li:hover{
    background-color: var(--theme-color);
    color: #fff;
    border: 2px solid var(--theme-color);

}

@media screen and (max-width: 850px) {
    .company_cat {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
    
}
@media screen and (max-width: 550px) {
    .company_cat {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    
}

.news_cat{
    display: flex;
    justify-content: center
    
}

.news_cat li{
    /* padding: 25px; */
    /* min-width: 180px; */
    border: 2px solid #dfdfde;
    padding: 10px 40px;
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #717171;
    line-height: 24px;
    text-align: center;
    margin: 0 30px;

    
}
.news_cat a{
    /* margin-left: 3px; */
}
.news_cat>a:first-child{
    /* margin-left: 0; */
}
.news_cat li.active , .news_cat li:hover{
    background-color: var(--theme-color);
    color: #fff;
    border: 2px solid var(--theme-color);

}

/* @media screen and (max-width: 850px) {
    .news_cat {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
    
}
@media screen and (max-width: 550px) {
    .news_cat {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    
} */

/* 关于我们 公司简介 */
.gsjj{
    padding-top: 20px;
    margin-top: 50px;
}
.gsjj_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;

}
.gsjj_box .gsjj_content{
    width: 41.66%;

    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 30px;
    text-align: justify;
}

.gsjj_info{
    width: calc(100% - 41.66% - 7.4%);
   
}
.gsjj_info .video{
    width: 100%;
    background: #F2F4F9;
}
.gsjj_info video{
    width: 100%;
    background: #F2F4F9;
}
/* .gsjj_info .data{
    background: #F2F4F9;
    padding: 20px 0;
    
}
.gsjj_info .data .data-item{
    background: rgba(9, 53, 127, 0.1);
    border-radius: 0px 30px 30px 0px;
    max-width: 400px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    padding: 15px;
}
.gsjj_info .data .data-item .num{
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 36px;
    color: #09357F;
    line-height: 36px;

   
}

.gsjj_info .data .data-item .desc{
    font-weight: 400;
    font-size: 18px;
    color: #323232;
    line-height: 36px;
} */

.gsjj  .data {
    margin-top: 70px;
    width: calc(100vw - 135*2px - 20px);
    
    z-index: 9;
    position: relative;
    background: #FFFFFF;

    grid-area: data;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 10px; */
  }

  .gsjj  .data-item {
    padding: 10px;
    text-align: center;
    height: 248px;
    width: 25%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
  }
  .gsjj  .data-item:not(:first-child,:last-child):after{
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    background: #DADADA;
    height: 133px;
  }

  .gsjj  .data-item .num{
   
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 60px;
    color: #09357F;
    line-height: 60px;
  }
  .gsjj  .data-item .desc{

    font-weight: 400;
    font-size: 24px;
    color: #000000;
    line-height: 36px;
  }
  .gsjj  .data .data-item:first-child {
    background: #09357F;
   
  }
  .gsjj  .data .data-item:first-child::after{

  }


  .gsjj  .data .data-item:first-child .num{
    color: #fff;
   
  }
  .gsjj  .data .data-item:first-child .desc{
    color: #fff;
   
  }





@media screen and (max-width: 1000px) {
    .gsjj_box {
       
    }
    .gsjj_box .gsjj_content{
      width: 100%;
    }
    .gsjj_info{
        width: 100%;
    }
    .gsjj .data{
        width: 100%;
        flex-wrap: wrap;
    }
    .gsjj .data-item{
        width: 50%;
    }
    
}
@media screen and (max-width: 500px) {
    .gsjj .data-item{
        width: 100%;
    }
}

.qiye{
    background-image: url('../images/qy_bg.jpg');
    background-size: 100%;
    /* padding-top: 19px;
    padding-bottom: 70px;
    padding-left:10px;
    padding-right: 10px; */
    padding: 74px 0 ;
}

.qiye ul{
    display: grid;
    grid-template-columns: 1fr 1fr; /* 第一排两列 */
    grid-template-rows: auto auto; /* 两排 */
}

.qiye ul li:nth-child(1), .qiye ul li:nth-child(2) {
    grid-column: auto; /* 第一排的两个内容各占一列 */
}
  
.qiye ul li:nth-child(3) {
    grid-column: 1 / -1; /* 第二排的一个内容跨越所有列 */
}
.qiye ul li{
    background-color: #fff;
    padding: 40px;
}

.qiye ul li:nth-child(3){
    background: #F2F4F9;
}
.qiye ul li:hover , .qiye ul li.hover{
    background: #09357F;
}

.qiye ul li .img{
    width: 60px;
}
.qiye ul li .img .icon_hover {
    display: none;
}

.qiye ul li .title{
    margin-top: 20px;
    font-weight: 400;
    font-size: 24px;
    color: #313131;
    line-height: 22px;
}
.qiye ul li:hover .title, .qiye ul li.hover .title{
    color: #F2F4F9;
}




.qiye ul li .desc{
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #313131;
    line-height: 20px;
}
.qiye ul li:hover .desc , .qiye ul li.hover .desc{
    color: #F2F4F9;
}


.qiye ul li:hover .img  .icon , .qiye ul li.hover .img  .icon{
    display: none;
}
.qiye ul li:hover .img  .icon_hover , .qiye ul li.hover .img  .icon_hover{
    display: block;
}

@media screen and (max-width: 850px) {
    .qiye ul{
       display: block;
    }
    
}


/* 发展历程 */
/* 大事件 */



.history_content{
    padding-top: 57px;
}
.history_content .category .catname   {
    font-size: 36px;
    font-family: AlibabaSans-Regular;
    font-weight: bold;
    color: #313131;
    line-height: 48px;
}
.history_content .category .f_catname {

    font-size: 18px;
    font-family: AlibabaSans-Regular;
    font-weight: 400;
    color: #303030;
    line-height: 58px;
}
.history_content .histroy_scroll{position: relative;margin-top: 50px;}
.history_content .histroy_scroll .logo{display: inline-block;position: absolute;right: -160px;top: 50%;margin-top: -15px;}
.history_content .histroy_scroll .logo img{max-width: 148px;}

.history_content .slider{position: relative;z-index: 2;}
.history_content .slider:before{content:'';z-index: -1;border-bottom: 1px dashed #e5e5e5;height: 1px;width: 100%;position: absolute;left: 0;top: 50%;display: block;}
/* .history_content .slider:after{content:'';width: 9px;height: 9px;border-radius: 50%;display: inline-block;border-radius: 50%;background: #e5e5e5;position: absolute;left: -5px;top: 50%;margin-top: -4px;} */
.history_content .slider .li{text-align: center;padding: 0 20px;position: relative;}
.history_content .slider .li .wrap{
    /*padding-bottom: 30px;padding-top: 30px;*/
    min-height: 160px;position: relative;}
.history_content .slider .li .image{display: block;margin-top: 55px;min-height: 160px;}

.history_content .slider .li .image > div{display: block;border: 2px solid #f2f2f2;transition:all .5s;border-radius: 10px;overflow: hidden;}
.history_content .slider .li:hover .image > div{border-color: #09357F;}

.history_content .slider .li .image img{width: 100%;}
.history_content .slider .li em{
    display: block;margin-bottom: 10px;
    font-size: 24px;
    font-family: AlibabaSans-Regular;
    font-weight: bold;
    color: #09357F;
    line-height: 25px;
}
.history_content .slider .li .text{

    font-size: 16px;
    font-family: AlibabaSans-Regular;
    font-weight: 400;
    color: #2F2F2F;
    line-height: 25px;
    overflow: hidden;
     text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
.history_content .slider .li .text.site_id2{
    font-size: 12px;
}
.history_content .slider .li .circle{display: inline-block;position: absolute;left: 50%;top: 50%;border-radius: 50%;width: 7px;height: 7px;margin-left: -3px;margin-top: -3px;background: var(--theme-color);}

.history_content .slider .li.his_first .wrap > i{display: inline-block;background: url(../images/icon.png) no-repeat;width: 17px;height: 22px;background-position: -366px -278px;margin-top: 10px;}
.history_content .slider .li.his_first .wrap{padding-top: 25px;padding-bottom: 10px;}
.history_content .slider .li.his_first .circle{width: 10px;height: 10px;margin-left: -5px;margin-top: -5px;}
.history_content .slider .li.his_first .circle:before{transition:all .5s;content:'';left:-6px;top: -6px;bottom: -6px;right: -6px;position: absolute;display: inline-block;border-radius: 50%;background: #09357F;opacity: 0.2;}
.history_content .slider .li.his_first:hover .circle:before{left: -12px;top: -12px;right: -12px;bottom: -12px;opacity: 0.1;}
.history_content .slider .li.his_first em{color: #09357F;font-size: 36px;}
.history_content .slider .li.his02 .wrap{padding-bottom: 0;padding-top: 10px;}
.history_content .slider .li.his02 .image{margin-bottom: 45px;margin-top: 5px;}

.slick-prev,			
.slick-next{			
	opacity: 0.5;filter: alpha(opacity=50);width: 40px;height: 60px;position:absolute;top:50%;margin-top:-30px;z-index:99;transition:all .5s;		
}			
.slick-prev:before,			
.slick-next:before{
	content:'';
	width:18px;
	height:30px;
	/* background-repeat:no-repeat;
	background-image: url(../images/icon.png); */
	display: inline-block;
    border-top: 2px solid #09357F;
    border-left: 2px solid #09357F;
}			
.slick-prev{left:-50px;}			
.slick-prev:before{background-position:-188px 0;}			
			
.slick-next{right:-50px;}			
.slick-next:before{background-position: -214px 0;}			
			
.slick-prev:hover,			
.slick-next:hover{			
	opacity: 1;filter: alpha(opacity=100);background:#6bc1bb;		
}			
.slick-prev:hover:before{background-position:-188px -36px;}			
.slick-next:hover:before{background-position: -214px -36px;}




	.history_content .slick-prev{
        left: -60px;
        top: calc(50% - 25px);
        opacity: 1;filter:alpha(opacity=100);margin: 0;right: 0;margin-right: 54px;width: 47px;height: 47px;border: 2px solid #09357F;background: #fff;border-radius: 50%;
    }
	.history_content .slick-next{
        right:-60px;
        top: calc(50% - 25px);
        opacity: 1;filter:alpha(opacity=100);margin: 0;width: 47px;height: 47px;border: 2px solid #09357F;background: #fff;border-radius: 50%;}
	.history_content .slick-prev:before{width: 17px;height: 17px;transform: rotate(-45deg);position: relative; left: 4px;}
	.history_content .slick-next:before{width: 17px;height: 17px;transform: rotate(135deg);position: relative; right: 4px;}

	.history_content .slick-arrow:hover{background: #09357F;}
    .history_content .slick-arrow.slick-disabled:hover{background: none;}
	.history_content .slick-arrow:hover:before{
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
    }
    .history_content .slick-arrow.slick-disabled:hover:before{
        border-top: 2px solid #DEDEDE;
        border-left: 2px solid #DEDEDE;
    }
    .history_content .slick-arrow.slick-disabled:before {
        border-top: 2px solid #DEDEDE;
        border-left: 2px solid #DEDEDE;
    }
    


	.history_content .slick-next:hover:before{background-position: -153px -379px;}
	.history_content .top{display: flex;align-items: center;max-width: 80%;}
	.history_content .main_title{margin: 0;}

    @media screen and (min-width: 1200px) and (max-width: 1350px)  {
        .history_content .slick-prev{
            left: 0;
        }
        .history_content .slick-next{
            right: 0;
        }
    }
    @media screen and (max-width: 1100px)  {
        .history_content .slick-prev{
            left: 0;
        }
        .history_content .slick-next{
            right: 0;
        }
    }
    @media screen and (max-width: 500px)  {
        .history_content .category .f_catname{
            line-height: 30px;
        }
        .history_content .slick-prev{
            left: -15px;
        }
        .history_content .slick-next{
            right: -15px;
        }
    }
   


@media only screen and (max-width:1580px ) {
}
@media only screen and (max-width:1260px ) {
	.history_content .histroy_scroll .logo{display: none;}
	.history_content{padding-right: 0;}
}
@media only screen and (max-width:992px ) {
	.history_content .slider .li{padding: 0 10px;}
	.history_content .slider .li .text{font-size: 13px;line-height: 20px;max-height: 80px;}
	.history_content .slider .li .title{margin-bottom: 5px;}
	.history_content .slider .li .wrap{padding-top: 10px;padding-bottom: 20px;min-height: 145px;}
	.history_content .slider .li .image{min-height: 145px;}
	.history_content .slider .li.his02 .image{margin-bottom: 40px;margin-top: 6px;}
	.history_content .slider .li.his02 .wrap{padding-top: 30px;}
	.history_content .slider .li.his_first em{font-size: 32px;}
	.history_content .slider .li.his_first .wrap{padding-top: 15px;}
	.history_content .slider .li em{font-size: 18px;}
}
@media only screen and (max-width:768px ) {
	.history_content{padding-top: 20px;padding-bottom: 40px;}
	.history_content .slider .li.his_first .wrap > i{position: absolute;left: 50%;bottom: 0;margin-left: -9px;}
	.history_content .histroy_scroll{margin-top: 30px;}
	.history_content .top .text{font-size: 13px;}
	.history_content .slider .li .wrap{padding-top: 30px;min-height: 153px;}
	.history_content .slider .li .image{min-height: 153px;}
	.history_content .slider .li.his02 .image{margin-bottom: 43px;}
	.history_content .slider .li em{font-size: 16px;}
}
@media only screen and (max-width:480px ) {
	.history_content .slider .li .wrap{padding-top: 10px;padding-bottom: 15px;min-height: 120px;}
	.history_content .slider .li .image{min-height: 120px;margin-top: 40px;}
	.history_content .slider .li.his02 .wrap{padding-top:5px;}
	.history_content .slider .li.his_first .wrap{padding-top: 0;}
	.history_content .slider .li.his02 .image{margin-top: 5px;}
	.history_content .slider .li.his_first .wrap > i{bottom: -12px;}
}




/*******Slider********/
/* Slider */
.slick-slider{position: relative;display: block;box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{position: relative;display: block;overflow: hidden;margin: 0;padding: 0;}
.slick-list:focus{outline: none;}
.slick-list.dragging{cursor: pointer;cursor: hand;}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track{position: relative;top: 0;left: 0; display: block;}
.slick-track:before,
.slick-track:after{
    display: table;content: '';
}
.slick-track:after{clear: both;}
.slick-loading .slick-track{visibility: hidden;}
.slick-slide{display: none;float: left;height: 100%;min-height: 1px;}
[dir='rtl'] .slick-slide{float: right;}
.slick-slide.slick-loading img{ display: none;}
.slick-slide.dragging img{pointer-events: none;}
.slick-initialized .slick-slide{display: block;}
.slick-loading .slick-slide{visibility: hidden;}
.slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent;}
.slick-arrow.slick-hidden {display: none;}

.slick-dots{
	    display: none !important;
}
/* Arrows */
.slick-prev, .slick-next { position: absolute; display: block; height: 20px; width: 20px; line-height: 0; font-size: 0; cursor: pointer; background: transparent; color: transparent; margin-top: -10px; padding: 0; border: none; outline: none; }
.slick-prev:focus, .slick-next:focus { outline: none; }
.slick-prev.slick-disabled, .slick-next.slick-disabled , .slick-prev.slick-disabled:hover, .slick-next.slick-disabled:hover {
    border: 2px solid #DEDEDE;
}


/* 大事件 */


/* 发展历程end */
/* 荣誉资质 */
.honor_cat{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px ;
}
.honor_cat li{

    cursor: pointer;
    background: #FFFFFF;
    border-radius: 28px;
    border: 2px solid #09357F;
    margin:10px 23px;
    padding: 12px 65px;
    font-weight: 400;
    font-size: 24px;
    color: #09357F;
    line-height: 30px;
}
.honor_cat li.active{
    background-color: #09357F;
    color: #ffffff;
}
.honor_box{
    /* margin-top: 50px; */
    padding: 50px 0 80px 0 ;
    /* background-image: url('../images/honor_bg.png');
    background-size: 100%; */
    background: #F2F4F9;
}
.honor_box .case_Swiper{
    padding: 0;
    margin: 0;
    padding-left: 40px;
    padding-right: 40px;
}
.honor_box .case_Swiper .swiper-slide{
    
}
.honor_box .case_Swiper .swiper-slide .img{
    position: relative;
    /* height: 100%;
    height: 0;
    padding-bottom: 137.407%; */
}
/* 荣誉资质end */
/* 团队 */
.team_Swiper{
    margin-top: 50px;
}
.team_Swiper .swiper-wrapper .img{
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.team{

}
.team_box{
    position: relative;
    
}
.team_box .swiper-button-next, .team_box .swiper-button-prev {
    background-size: 30px 50px;
}
.team_box .swiper-button-prev, .team_box .swiper-container-rtl .swiper-button-next {

    background-image: url('data:image/svg+xml;charset=utf-8;base64,PHN2ZyB0PSIxNzEyOTA3MDA3MDYzIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjM5MjciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCI+PHBhdGggZD0iTTcyMi4xIDBjMjIuMSAwIDQzLjEgOS40IDU3LjggMjUuOSAzMC43IDM0LjMgMjkuOCA4Ni41LTIgMTE5LjhMNDE1LjMgNTE0LjRsMzYzLjggMzYzLjRjMzIuMSAzMyAzMy41IDg1LjEgMy4xIDExOS44LTE1LjEgMTYuOC0zNi40IDI2LjQtNTguMyAyNi40LTIwLjYgMC00MC4yLTguMi01NS4xLTIzLjFMMjQ0LjQgNTc3Yy0yNS0yNC45LTMxLjctNjQuMi0xNi41LTk3LjcgMC45LTEuOSAxLjktMy44IDMuMS01LjVsMS0yLjFjMi00IDQuNy05LjQgOS4zLTE0LjVsMC40LTAuNCAwLjctMC44YzAuOS0xLjQgMS45LTIuNyAzLjEtMy45bDQyMS00MjguNEM2ODEuMSA4LjYgNzAxLjEgMC4xIDcyMi4xIDB6IiBwLWlkPSIzOTI4IiBmaWxsPSIjQzlDOUM5Ij48L3BhdGg+PC9zdmc+');
    left: -45px;
}
.team_box .swiper-button-next, .team_box .swiper-container-rtl .swiper-button-prev {
    background-image: url('data:image/svg+xml;charset=utf-8;base64,PHN2ZyB0PSIxNzEyOTA3MDA3MDYzIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjM5MjciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCI+PHBhdGggZD0iTTcyMi4xIDBjMjIuMSAwIDQzLjEgOS40IDU3LjggMjUuOSAzMC43IDM0LjMgMjkuOCA4Ni41LTIgMTE5LjhMNDE1LjMgNTE0LjRsMzYzLjggMzYzLjRjMzIuMSAzMyAzMy41IDg1LjEgMy4xIDExOS44LTE1LjEgMTYuOC0zNi40IDI2LjQtNTguMyAyNi40LTIwLjYgMC00MC4yLTguMi01NS4xLTIzLjFMMjQ0LjQgNTc3Yy0yNS0yNC45LTMxLjctNjQuMi0xNi41LTk3LjcgMC45LTEuOSAxLjktMy44IDMuMS01LjVsMS0yLjFjMi00IDQuNy05LjQgOS4zLTE0LjVsMC40LTAuNCAwLjctMC44YzAuOS0xLjQgMS45LTIuNyAzLjEtMy45bDQyMS00MjguNEM2ODEuMSA4LjYgNzAxLjEgMC4xIDcyMi4xIDB6IiBwLWlkPSIzOTI4IiBmaWxsPSIjQzlDOUM5Ij48L3BhdGg+PC9zdmc+');
    right: -45px;
    left: auto;
    transform: rotate(180deg);
}

.team_box .swiper-button-next, .swiper-button-prev{
    background-color:#FFFFFF;
}

.team_Swiper .swiper-wrapper  .title{

    font-weight: 400;
    font-size: 16px;
    color: #323232;
    line-height: 40px;
}
@media screen and (max-width: 1300px) {
    .team{
        padding: 0 50px;
    }
}
@media screen and (max-width: 750px) {
    .team{
        padding: 0;
        overflow: hidden;
    }
}
/* 团队end */


.imagetext{
    padding: 20px 36px 36px 36px;
    background-image: url('../images/imagetext_bg.png');
}

.imagetext_box{
    margin-bottom: 60px;
}
.imagetext_box .title_box{
    position: relative;
    display: inline-block;
}
.imagetext_box  .title_box .title{
    display: inline-block;
    text-align: center;
    height: 60px;
    min-width: 300px;
    padding: 16px;
    border: 2px solid var(--theme-color);

    font-size: 25px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: var(--theme-color);
    line-height: 22px;
}
.imagetext_box  .title_box i{
    background-image: url('../images/biaoti_icon.png');
    background-size: 32px 60px;
    width: 32px;
    height: 60px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: -36px;
}
.imagetext_box  .title_box i:first-child{
    left: -36px;
    transform: rotate(180deg);
}
.imagetext_box .desc{
    margin-top: 20px;
    width: 866px;
    max-width: 100%;
    font-size: 16px;
    font-family: Microsoft YaHei;
    color: #1B1B1B;
    line-height: 25px;
    /* font-weight: 600; */
}

.imagetext_box ul{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 5.468%;
    margin-top: 52px;
}
@media screen and (max-width: 850px) {
    .imagetext_box ul{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

.news_list_box{
    /* background-image: url('../images/news_listbg.png');
    background-size: 100%;
    padding: 58px 42px; */
    padding-bottom: 50px;

}
.news_list_box .news_list{

}
.news_list_box .news_list li{
    height: 220px;
    display: flex;
    margin-bottom: 30px;
    transition: all 0.5s;
}
.news_list_box .news_list li .img{
    width: 350px;
    height: 100%;
    transition: all 0.5s;
    position: relative;
    flex-shrink: 0;
}


.news_list_box .news_list li .info_box{
    height: 100%;
    border: 1px solid #dfdfde;
    margin-left: 20px;
    padding: 35px 45px;
}
.news_list_box .news_list li .info_box:hover{
    border: 1px solid var(--theme-color);
}
.news_list_box .news_list li .info_box .title{

    font-size: 25px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #1B1B1B;
    line-height: 28px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;  
}
.news_list_box .news_list li .info_box .desc{
    margin-top: 24px;
    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #757575;
    line-height: 24px;

    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;    
}
.news_list_box .news_list li .more{
    margin-top: 30px;
}
.news_list_box .news_list li .title:hover{
    color: var(--theme-color);
    /* -webkit-line-clamp: 2;
    line-clamp: 2; */
}
.news_list_box .news_list li .desc:hover{
    color: var(--theme-color);
}   
.news_list_box .news_list li .more {
    margin-top: 25px;
    height: 34px;
    width: 134px;
    border-radius: 5px;
    font-size: 14px;
}

/* .news_list_box .news_list a:first-child li{
    height: 322px;
}
.news_list_box .news_list a:first-child li .img{
    width: 417px;
    height: 100%;
}
.news_list_box .news_list a:first-child li .desc{
    -webkit-line-clamp: 4;
    line-clamp: 4;
}
.news_list_box .news_list a:first-child li .more{
    margin-top: 40px;
} */

@media screen and (max-width: 850px) {
    .news_list_box .news_list  li .img{
        display: none;
    }
    .news_list_box .news_list li .info_box{
        margin-left:0 ;
        padding: 10px;
    }
    .news_list_box{
        padding: 0;
    }
}



.news_show_title_box{
    max-width: 720px;
}
.news_show_title_box h1 {

    font-size: 40px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: var(--theme-color);
    line-height: 50px;
    margin-top: 80px;
}
.news_show_title_box span {

    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: var(--theme-color);
    line-height: 50px;
    margin-top: 30px;
}

.show_news_conten_box{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}
.show_news_conten_box .content{
    max-width: 800px;
}
.show_news_conten_box .message{
    width: 450px;
    max-width: 100%;
    padding: 30px 25px;
    border: 1px solid var(--theme-color);
}
.show_news_conten_box .message .title{
    font-size: 30px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #1B1B1B;
    line-height: 25px;
    text-align: center;
    margin-bottom: 40px;

}
.show_news_conten_box .message  label{

font-size: 15px;
font-family: Microsoft YaHei;
font-weight: 600;
color: #1B1B1B;
line-height: 25px;
}
.show_news_conten_box .message  button{

border: 2px solid var(--theme-color);
border-radius: 5px;
background: none;
color: var(--theme-color);
}
.show_news_conten_box .message  button:hover{
    background: var(--theme-color);
    color: #FFFFFF;
    opacity: 1;
}
@media screen and (max-width: 1200px) {
    .news_show_title_box{
        margin: 0 auto;
    }
    .show_news_conten_box{
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .show_news_conten_box .message{
        max-width: 720px;
        width: 100%;
    }
    
}


.dsj_box{
    background-image: url(../images/dsj_bg.png);
    padding: 155px 32px 20px 32px;
}


.dsj_box .mySwiper_yearbox {
    padding: 50px 100px 50px 100px;

    position: relative;
    overflow: hidden;
}

.dsj_box .mySwiper_yearbox .swiper_dsjyear {
    overflow: hidden;
    padding-top: 40px;
    position: relative;
}
.dsj_box .mySwiper_yearbox .swiper_dsjyear:after {
    content: '';
    width: 79%;
    height: 2px;
    background: #717171;
    position: absolute;
    /* top: 33%; */
    /* right: -140%; */
    right: 10%;
    top: 35%;
    /* margin-top: -0.5px; */
    z-index: 10;
}
.dsj_box .mySwiper_yearbox .swiper_dsjyear .swiper-slide{

    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: #717171;
    line-height: 22px;
    text-align: center;
    position: relative;
}


.dsj_box .mySwiper_yearbox .swiper_dsjyear .swiper-slide:after {
    content: '';
    width: 20px;
    height: 20px;
    background: #717171;
    border-radius: 50%;
    
    position: absolute;
    z-index: 20;
    top: -27px;
    left: 50%;
    margin-left: -12px;
}
.dsj_box .mySwiper_yearbox .swiper_dsjyear .swiper-slide.swiper-slide-thumb-active:after{
    content: '';
    width: 30px;
    height: 30px;
    background-color: #717171;
    padding: 5px;
    background-clip: content-box;    
    background-position: center;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    top: -32px;
}

.dsj_box .Swiper_dsjbox .swiper-slide{
    overflow: hidden;
}

.dsj_box .Swiper_dsjbox .swiper-slide .img{
    width: 53.7%;
    float: left;
}
.dsj_box .Swiper_dsjbox .swiper-slide .info_box{
    margin-left: 60px;
    float: left;
    width: calc(100% - 53.7% - 60px);
}
.dsj_box .Swiper_dsjbox .swiper-slide .info_box .title{
    font-size: 50px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #717171;
    margin-top: 30px;
}

.dsj_box .Swiper_dsjbox .swiper-slide .info_box  .desc{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 28px;
    margin-top: 40px;
}

@media screen and (max-width: 850px) {
    .dsj_box .Swiper_dsjbox .swiper-slide .img{
        width: 100%;
        text-align: center;
    }
    .dsj_box .Swiper_dsjbox .swiper-slide .info_box{
        width: 100%;
    }
    
}
@media screen and (max-width: 550px) {
    .mySwiper_yearbox{
        display: none;
    }
    .dsj_box{
        padding: 0;
    }
}
@media screen and (min-width: 550px) {
    .Swiper_dsjbox .swiper-button-next , .Swiper_dsjbox .swiper-button-prev{
        display: none;
    }

}


/*解决方案*/


.flipping_pages{
    padding: 30px;
    display: flex;
    justify-content: space-between;
}
.flipping_pages .title{
    font-size: 10px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #848383;
    line-height: 28px;
}
.flipping_pages .info{
    position: relative;
}
.flipping_pages .info span{

    font-size: 13px;
    font-family: Microsoft YaHei;
    font-weight: 600;
    color: var(--theme-color);
    line-height: 28px;
    max-width: 230px;
    
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.flipping_pages .info i{
    position: absolute;
    left: -27px;
    top: 3px;
    width: 20px;
    height: 22px;
    background-image: url(../images/page_jiantou.png);
    display: inline-block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.flipping_pages .next {
    text-align: right;
}
.flipping_pages .next .info i{
    right: -27px;
    left: auto;
    transform: scaleX(-1);
}


@media screen and (max-width: 850px) {
    .flipping_pages{
        flex-wrap: wrap;
    }
    .flipping_pages .next {
        text-align: left;
    }
}


/*sec-menu - start*/
.sec-menu {
	background: #f5f5f5;
	height: 45px;
}

.menu-slide {
	position: relative;
}

.menu-slide .swiper-wrapper{
    display: flex;
    justify-content: center;
}
.product_menu .menu-slide .swiper-wrapper{
    display: flex;
    justify-content: flex-start;
}


.menu-slide .swiper-slide {
	width: auto;
}

.menu-slide .swiper-slide a {
	display: block;
	font-size: 14px;
	line-height: 45px;
	padding: 0 9px;
	position: relative;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.menu-slide .swiper-slide a::after {
	content: '';
	width: 0px;
	height: 2px;
	background: var(--theme-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu-slide .swiper-slide.on a {
	color: var(--theme-color);
}

.menu-slide .swiper-slide.on a::after {
	width: 100%;
}

.menu-next,
.menu-prev {
	display: none;
	width: 30px;
	height: 70px;
	font-size: 14px;
	line-height: 45px;
	text-align: center;
	color: #666;
	position: absolute;
	top: 0;
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.menu-prev {
	left: -40px;
}

.menu-next {
	right: -40px;
}

.menu-next.swiper-button-disabled,
.menu-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.sec-menu.fixe .menu-fix {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	background: #fff;
	width: 100%;
	box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
	.sec-menu {
		height: 60px;
	}

	.menu-slide .swiper-slide a {
		font-size: 16px;
		line-height: 60px;
		padding: 0 10px;
	}

	.menu-next,
	.menu-prev {
		font-size: 18px;
		line-height: 60px;
	}

	.menu-slide .swiper-slide a:hover {
		color: var(--theme-color);
	}

	.menu-next:hover,
	.menu-prev:hover {
		color: var(--theme-color);
	}
}

@media (min-width: 1500px) {
	.sec-menu {
		height: 70px;
	}

	.menu-slide .swiper-slide a {
		font-size: 18px;
		line-height: 70px;
		padding: 0 12px;
	}

	.menu-next,
	.menu-prev {
		line-height: 70px;
	}
}

/*sec-menu - end*/






.download{

    background: var(--theme-color);
    box-shadow: 3px 4px 13px 0px rgba(0,0,0,0.16);
    border-radius: 10px;
    padding: 10px 28px;
    display: inline-flex;
    align-items: center;

    margin: 0 auto;
    margin-top: 20px;
    flex-wrap: wrap;
}
.download_icon{
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service_text{

    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 24px;
    margin:  10px;
    margin-right: 20px;
}





@media screen and (min-width:850px) {
    .contact_bootom{

	
	height: 420px;
    }
}
.contact_bootom{
	/*margin-top: 31px;*/
	/*border-top: 2px solid #282828;*/
	/*padding: 20px 7px;*/
}

.contact_bootom .title{
	font-size: 24px;
	font-family: AlibabaSans-Regular;
	font-weight: bold;
	color: #282828;
	line-height: 60px;
}
.contact_bootom .contact_box{
	display: flex;
	justify-content: space-between;
    padding-right: 20px;
    height: 100%;
        align-items: flex-end;
}
.contact_bootom .contact_box .contact_content{
	font-family: AlibabaSans-Regular;
	font-size: 14px;
	font-weight: 400;
	color: #949494;
	line-height: 24px;
	width: 750px;
	max-width: 100%;
}

.map_box{
    margin-top: 30px;
    position: relative;
}
.gaode_map{
    width:100%;
    height:600px;
}
@media screen and (max-width:550px) {
    .gaode_map{
	    height: 300px;
    }
}

.gaode_map  .amap-info-content {
    padding: 2rem;
}
.gaode_map .info-title {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: bold;
}
.gaode_map .info-content {
    font-size: 15px;
}


.map_box .contact_box{
    position: absolute;
    width: 350px;
    /* height: 480px; */
    background: #FFFFFF;
    box-shadow: 6px 8px 13px 0px rgba(0,0,0,0.16);
    border-radius: 10px;
    top: 60px;
    right: 72px;
    padding: 40px 28px;
    z-index: 999;
    padding-bottom: 0;
}
.contact_logo{
    width: 243px;
}
.map_box .contact_tel{

    font-weight: bold;
    font-size: 32px;
    color: #09357F;
    line-height: 34px;
}
.map_box .contact_tel.site_id2{
    font-size: 30px;
}
.map_box .contact_email{
    margin-top: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #303030;
    line-height: 20px;
    margin-bottom: 25px;
}
.map_box .address_box{
    padding: 25px 0;
    border-top: 1px solid #777777;

}
.map_box  .address_box .title{
    font-size: 20px;
    font-weight: bold;
    color: #303030;
    line-height: 20px;
}
.map_box  .address_box .address_info{

    font-size: 16px;
    font-weight: 400;
    color: #303030;
    line-height: 20px;
    margin-top: 15px;
}
@media screen and (max-width:850px) {
    .map_box .contact_box{
        position: static;
        width: 95%;
        margin: 20px auto;
    }
}
@media screen and (max-width:550px) {
    .map_box .contact_box{
        width: 100%;
    }
}

.form_message{
    
    margin: 0 auto;
    margin-top: 50px;
    max-width: 824px;
    text-align: center;
}
.form_message .title{
    font-weight: bold;
    font-size: 36px;
    color: #313131;
    line-height: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.form_message input{
    width: 100%;
    height: 55px;
    padding: 0 10px;
    margin-bottom: 13px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #CBCFDA;
}
.form_message textarea{
    width: 100%;
    height: 280px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #CBCFDA;
}
.form_message button{
    margin-top: 50px;
    width: 171px;
    height: 49px;
    background: #D6000F;
    font-size: 20px;

}

.ab_cat_title{
    display: flex;
    align-items: center;
    margin-top: 60px;

}
.ab_cat_title .icon{
    width: 30px;
    height: 30px;
    position: relative;
}
.ab_cat_title .icon span{
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    z-index: 999999999;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.ab_cat_title .icon::after{
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    top: 4px;
    left: 4px;
    background-color: #09357F;
    transform: rotate(45deg);
}
.ab_cat_title .icon::before{
    content: '';
    position: absolute;
    top: 3px;
    right: -3px;
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
    border-top: 3px solid #D6000F;
    border-right: 3px solid #D6000F;

}
.ab_cat_title .title{
    margin-left: 25px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    line-height: 24px;
}
.ab_cat_desc{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 30px;
    margin-top: 30px;
    white-space: pre-wrap;
    overflow-y: clip;
    
    text-align: left;
}
.page_cat .image{
    margin-top: 36px;
}


/* 合作伙伴 */
.picScroll-left {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 50px;
}


.picList{
    height: 101px;
    overflow: hidden;
}
.picList li{
    display: inline-block;
    /* margin-right: 10px; */
    min-width: 105px;
    margin: 0 9px;
}

/*Plugin CSS*/
.str_wrap {
    overflow:hidden;
    width:100%;
    font-size:12px;
    line-height:16px;
    position:relative;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none; 
    white-space:nowrap;
}

.str_wrap.str_active {
    /* background:#f1f1f1; */
}
.str_move { 
    white-space:nowrap;
    position:absolute; 
    top:0; 
    left:0;
    cursor:move;
}
.str_move_clone {
    display:inline-block;
    
    vertical-align:top;
    position:absolute; 
    left:100%;
    top:0;
}
.str_vertical .str_move_clone {
    left:0;
    top:100%;
}
.str_down .str_move_clone {
    left:0;
    bottom:100%;
}
.str_vertical .str_move,
.str_down .str_move {
    white-space:normal;
    width:100%;
}
.str_static .str_move,
.no_drag .str_move,
.noStop .str_move{
    cursor:inherit;
}
.str_wrap img {
    max-width:none !important;	
}	

/* end */




/*solution - start*/
.sec-solution {
	padding: 55px 0 60px;
}

.solution-list {
	margin-bottom: 15px;
}

.solution-list .flex-wrap-row {
	margin: 0 -4px;
}

.solution-list .col-sm-4 {
	padding: 0 4px;
	margin-bottom: 20px;
}

.solution-item {
	width: 100%;
	height: 100%;
	display: block;
	padding: 30px 15px;
	background: #fff;
	text-align: center;
	box-shadow: 0 10px 68px 0 rgba(0, 0, 0, .06);
	-webkit-transition: all .5s;
	transition: all .5s;
}

.solution-item .m-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto;
	background: #fff;
	text-align: center;
	overflow: hidden;
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	position: relative;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.solution-item .m-icon img {
	display: block;
	width: 60%;
	height: 60%;
	-webkit-transition: all .5s;
	transition: all .5s;
	position: absolute;
	/* top: 12px;
        left: 12px; */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.solution-item .m-icon .aft {
	/* position: absolute;
  top:0;
  left: 0;*/
	z-index: 2;
	opacity: 0;
}

.solution-item .m-name {
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.solution-item .m-cont {
	margin-top: 20px;
}

.solution-item .m-cont p {
	display: none;
}

.solution-item:hover {
	box-shadow: 0 10px 68px 0 rgba(0, 0, 0, .06);
}

.solution-item:hover .m-icon {
	background: #d91811;
	border-color: #d91811;
}

.solution-item:hover .m-icon .bef {
	opacity: 0;
}

.solution-item:hover .m-icon .aft {
	opacity: 1;
}

@media (min-width: 768px) {
	.sec-solution {
		padding: 85px 0 70px;
	}

	.solution-list {
		margin-bottom: 20px;
	}

	.solution-list .flex-wrap-row {
		margin: 0 -15px;
	}

	.solution-list .col-sm-4 {
		padding: 0 15px;
		margin-bottom: 25px;
	}

	.solution-item {
		padding: 50px 20px 45px 20px;
		box-shadow: none;
	}

	.solution-item .m-icon {
		width: 75px;
		height: 75px;
	}

	.solution-item .m-name {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.solution-item .m-cont {
		margin-top: 40px;
	}

	.solution-item .m-cont p {
		font-size: 14px;
		line-height: 22px;
		height: 66px;
		max-height: 66px;
		color: #666;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
}

@media (min-width: 1500px) {
	.sec-solution {
		padding: 100px 0 86px;
	}

	.solution-list {
		margin-bottom: 25px;
	}

	.solution-list .col-sm-4 {
		margin-bottom: 30px;
	}

	.solution-item {
		padding: 60px 30px 54px 30px;
	}

	.solution-item .m-icon {
		width: 100px;
		height: 100px;
	}

	.solution-item .m-name {
		font-size: 22px;
		margin-bottom: 14px;
	}

	.solution-item .m-cont {
		margin-top: 50px;
	}

	.solution-item .m-cont p {
		font-size: 16px;
		line-height: 26px;
		height: 78px;
		max-height: 78px;
	}
}

/*solution - end*/



.service_type_cat{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.service_type_cat li{
    display: inline-block;
    background: #FFFFFF;
    border-radius: 23px;
    border: 2px solid var(--theme-color);
    padding: 10px 36px;
    margin: 12px;
    font-weight: bold;
    font-size: 18px;
    color: var(--theme-color);
    line-height: 18px;
    cursor: pointer;
}
.service_type_cat li.active, .service_type_cat li:hover {
    background-color: var(--theme-color);
    color: #fff;
    border: 2px solid var(--theme-color);
}
.service_type_content{
    margin-top: 50px;
}



/* 新产品详情 */
.pdcontent{
    padding-left: 120px;
    padding-right: 120px;
}
.show_product_top {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.more_image_box {
    width: 33.45%;
    max-width: 100%;
}
.image_border {
    width: 100%;
    border: 2px solid #BCBFD1;
}
.more_image_box .image_border .image_box {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.more_image_box .image_border .image_box img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    
}
.more_image_box .swiper_box{
    /* margin-left: -32px; */
    padding-left: 50px;
    /* margin-right: -32px; */
    padding-right: 50px;
    position: relative;
}


.more_image_box .swiper-container {
    margin-top: 7px;
    user-select: none;
}

.more_image_box .swiper-slide {
    width: 125px;
    height: 105px;
    background: #FFFFFF;
    border: 2px solid #BCBFD1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 120px; */
}
.more_image_box .swiper-slide img{
    max-height: 100%;
}
.more_image_box .swiper-slide.active {
    border: 2px solid var(--theme-color);
}
.more_image_box .swiper-button-next {
    right: 6px;
}
.more_image_box .swiper-button-prev {
    left: 6px;
}
.more_image_box .swiper-button-prev{
    background-color: var(--theme-color);
}

.show_product_box{
    width: calc(100% - 31.45% - 5%);
}

.show_product_box .show_product_title{

    font-size: 36px;
    font-family: AlibabaSans-Regular;
    font-weight: bold;
    color: #313131;
    line-height: 36px;
}
.dixian{
    margin-top:50px ;
    width: 60px;
    height: 2px;
    background-color: var(--theme-color);
}
.show_product_box .desc{
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    border: 0;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 400;
    color: #2F2F2F;
    line-height: 30px;
    background: none;
    height: 270px;
    overflow-y: auto;
}

.product_tuijian_nav{
    margin-top: 62px;
    
}
.product_tuijian_nav li{
    float: left;
    border: 1px solid var(--theme-color);
    padding: 10px 15px;
    color: var(--theme-color);
    font-size: 18px;
    margin-right: 40px;
    margin-bottom: 15px;
}
.product_tuijian_nav li:hover{
    background-color: var(--theme-color);
    color: #fff;
    /* border-color: #fff; */
}
@media screen and (max-width: 1700px) {
    .pdcontent{
        padding: 0;
    }
}


@media screen and (max-width: 850px) {
    .show_product_top {
        flex-direction: column;
        align-items: center;
    }
    .show_product_box{
        width: 100%;
        padding: 10px;
        margin-top: 20px;
    }
    .more_image_box{
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .show_product_box{
        padding: 0;
    }
    .more_image_box .swiper_box {
        margin-left: -17px;
        margin-right: -17px;
    }
    .show_product_box .show_product_title{
        font-size: 20px;
    }
}


.cptx{
    margin-top: 90px;
}
.cptx .cptx_box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}
.cptx .cptx_box .img{
    width: 40%;
    text-align: center;
}
.cptx .cptx_box .cptx_info{
    width: 50%;
}
.cptx .cptx_box .cptx_info li{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.cptx .cptx_box .cptx_info li .num{
    color: var(--theme-color);
    font-size: 16px;
    font-weight: bold;
    margin-right: 23px;
}
.cptx .cptx_box .cptx_info li .desc{
    font-size: 18px;
    color: #787B80;
}
@media screen and (max-width: 850px) {
    .cptx .cptx_box .img{
        width: 100%;
    }
    .cptx .cptx_box .cptx_info{
        margin-top: 10px;
        width: 100%;
    }
}


.xncs{
    margin-top: 60px;
}
.xncs .xncs_box{
    margin-top: 50px;
    text-align: center;
}

.xgcase{
    margin-top: 100px;
}

.tj_product{
    margin-top: 100px;
}   

.cptx .new_cat_title , .xncs .new_cat_title{
    text-align: center;
    background: url(../images/cat_title_bg.jpg) no-repeat center ;
    background-size: cover;
    color: #fff;
    padding: 50px 0;
}

.desc ,span , .ab_cat_desc{text-align: justify;}