/* 产品列表 */
.content{
	min-height: 600px;
	background-color: #f4f4f4;
}
.content .center-box{
	padding-top: 70px;
}
.page{
	width: 100%;
	height: auto;
	margin-top: 50px;
	padding-bottom: 60px;
}
.llist-item{
	width: 100%;
	min-height: 500px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-content: flex-start;
}
.cps{
	display: block;
	width: 378px;
	height: 294px;
	background-color: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	margin-right: 29px;
	margin-bottom: 56px;
    transition: 300ms;
}
.cps:nth-child(4n){
	margin-right: 0;
}
.llist-item .cps .img-box{
	width: 100%;
	height: 240px;
}
.img-box {
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.img-box .inset-img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 600ms;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.llist-item .cps:hover .inset-img-box{
	transform: scale(1.1);
}
.cp-name{
	line-height: 54px;
	text-align: center;
	padding: 0 20px;
	font-size: 16px;
	color: #444;
    transition: 600ms;
	font-weight:400;
}
.llist-item .cps:hover{
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}
.llist-item .cps:hover .cp-name{
	color: #ff0000;
}