/*焦点图*/
.focus_map{
	width: 100%;
	min-width: 1200px;
}

/*tab选项*/
.tab_box{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.tab_box a{
	padding: 22px 0;
	border-bottom: 2px solid #fff;
	margin: 0 70px;
	font-size: 18px;
	color: #999;
}
.tab_style{
	color: #333 !important;
	border-bottom: 2px solid #333 !important;
}

/*产品列表*/
.cp_box{
	width: 100%;
	min-width: 1200px;
	background-color: #f4f4f4;
	padding-bottom: 100px;
}
.cp_centent{
	width: 1200px;
	margin: 0 auto;
	display: none;
}
.cp_show{
	display: block;
}
.cp_box1{
	display: flex;
	flex-wrap: wrap;
}
.cp_list{
	width: 270px;
	margin: 40px 40px 0px 0;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px #e9e9e9;
	overflow: hidden;
}
.cp_list:nth-child(4n){
	margin-right: 0;
}
.cp_img{
	overflow: hidden;
}
.cp_img img{
	max-height: 180px;
	object-fit: cover;
	transition: all 0.6s;
}
.cp_text{
	padding: 18px;
}
.cp_title{
	font-size: 18px;
	color: #333;
}
.cp_p{
	font-size: 14px;
	color: #999;
}
.cp_list:hover img{
	transform: scale(1.1);
}
.cp_list:hover .cp_title{
	color: #ef3400;
}