/* 产品列表 */
.content{
	min-height: 600px;
	background-color: #f4f4f4;
}
.content .center-box{
	height: auto;
	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: 406px;
	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: 266px;
}
.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{
	text-align: left;
	padding: 0 20px;
	font-size: 18px;
	line-height: 30px;
	margin-top: 22px;
	color: #333333;
	margin-bottom: 18px;
	height: 60px;
    transition: 600ms;
}
.llist-item .cps:hover{
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}
.llist-item .cps:hover .cp-name{
	color: #ff0000;
}
.iss-infos{
	font-size: 16px;
	color: #b2b2b2;
	padding: 0 20px;
}
.iss-infos .type{
	margin-left: 12px;
	padding-left: 12px;
	border-left: solid 2px #b2b2b2;
	display: inline-block;
	height: 13x;
	line-height: 13px;
}
.page-nav{
	margin-top: 0;
}