.product_list{
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
}
.product_list li{
	width: calc(33.3% - 20px);
	height: 470px;
	border: solid 1px #e5e5e5;
	margin-bottom: 30px;
}
.product_list .product_list_img{
	height: 333px;
	width: 100%;
}
.product_list .product_list_img img{
	width: 80%;
	margin: 0 auto;
	padding-top: 40px;
	display: block;
}
.product_list .product_list_text{
	height: 137px;
	width: calc(100% - 26px);
	background-color: #fafafa;
	padding-left: 26px;
}
.product_list .product_list_text h4{
	padding-top: 42px;
	font-size: 20px;
	color: #333;
	margin-bottom: 20px;
}
.product_list .product_list_text p{
	font-size: 15px;
	color: #666;
}
.product_list .product_list_text h4, .product_list .product_list_text p{
	width: calc(100% - 26px);
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.page{
	padding-top: 100px;
	width: 50%;
	margin: 0 auto;	
	position: relative;
	height: 160px;
}
.page ul{	
	width: 382px;	
	position: absolute;
	left: 50%;
	transform: translateX( -50%);
}
.page ul li{
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border: solid 1px #d8d8d8;
	border-radius: 50%;
	float: left;
	margin-right: 10px;
	cursor: pointer;
	font-size: 16px;
	color: #b6b6b6;
}
.page ul li.active{
	color: #fff;
	background-color: #eb0909;
	border-color: #eb0909;
}