
.headingTop{
	width: 100%;
	margin: 0 auto 35px auto;
}
.headingTop .title p{
	font-size: 30px;
	padding-bottom: 20px;
	font-weight: bold;
}
.hengxian{
	width: 40px;
	height: 2px;
	background-color: #126EBA;
}
.graphicResponse p{
	font-size: 16px;
	color: #555;
	line-height: 28px;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.graphicResponse p img{
	width: 48%;
	margin-top: 25px;
}








.headingList{
	width: 90%;
	padding: 24px 5%;
	line-height: 24px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	color: #555555;
	background-color: #fff;
	transition: all 0.5s;
	border-top: 1px solid #ddd;
}
.headingList:hover{
	color: #126EBA;
}
.headingList.active{
	color: #fff;
	border-top: 1px solid #126eba;
	background-color: #126eba;
}
.headingList.active:hover{
	color: #126EBA;
}
.headingList .title_p{
	width: calc(100% - 25px);
	font-size: 16px;
}
/* 加号 */
.headingList .plus{
	width: 22px;
	height: 22px;
	line-height: 22px;
	border-radius: 50%;
	background-color: #ccc;
}
.headingList.active .plus{
	background-color: #fff;
}

.headingList .plus span{
	display: block;
	width: 8px;
	height: 1px;
	margin: auto;
	background-color: #fff;
	transition: all 0.5s;
}
.headingList .plus span:first-child{
	margin-top: 10px;
}
.headingList.active .plus span{
	background-color: #126eba;
}
.headingList .plus span:nth-child(2){
	transform: rotate(90deg);
	margin-top: -1px;
}
.headingList.active .plus span:nth-child(2){
	transform: rotate(0deg);
	margin: auto;
}

@media (max-width: 768px) {
	.headingList{
		width: 90%;
		padding: 20px 5%;
	}
	.headingList .title_p{
		font-size: 15px;
	}
}
@media (max-width: 540px) {
	.headingList{
		width: 90%;
		padding: 15px 5%;
	}
	.headingList .title_p{
		font-size: 14px;
	}
}





/* 产品 */
.applic_product{
	padding-bottom: 60px;
}
/* 内容 */
.product{
	width: 100%;
	/* padding-bottom: 30px; */
	
}
.productList{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 35px auto;
	align-items: flex-start;
	
}
.productItem{
	width: 22.7%;
	margin-right: 3%;
	background-color: #fff;
}
.productItem:nth-child(4n+4){
	margin: 0;
}

.productItem .title{
	width: 87%;
	font-size: 14px;
	color: #222222;
	text-align: center;
	margin: 15px auto;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.5s;
}
.productItem:hover .title{
	color: #235bba;
}

.productImages{
	width: 100%;
	position: relative;
}
.productImages .absolute{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: #fff;
	opacity: 0;
	font-size: 16px;
	transition: all 0.5s;
	background-color: rgba(18,110,186,0.8);
}
.productItem:hover .productImages .absolute{
	opacity: 1;
}
.absoluteText{
	width: 90%;
	height: 90%;
	margin: 5% auto;
	border: 1px solid #fff;
}
.productImages .absolute .cent{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.productImages .absolute p{
	width: 100%;
	text-align: center;
	margin: 0 auto;
}
.productImages .absolute .jia{
	width: 24px;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.productList{
		margin-bottom: 10px;
	}
	.productList{
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.productItem{
		width: 48%;
		margin-right: 0%;
		margin-bottom: 20px;
	}
	
}
@media (max-width: 540px) {
	.applic_product{
		padding-bottom: 45px;
	}
}