

#product-center {
	width: 100%;
    min-height: calc(100% - 150px);
}

#product-center .container {
	width: 1160px;
	margin: 0 auto;
	padding: 20px 14px 20px 0;
}

#product-center .container .product-item {
	width: 260px;
	height: 290px;
	padding: 5px;
	border: 1px solid #3E3C3C;
	display: inline-block;
	margin-left: 15px;
	margin-top: 10px;
	background: #FFF;
	cursor: pointer;
	-webkit-transition: all .1s;
	-moz-transition: all .1s;
	transition: all .1s;
}

#product-center .container .product-item:hover {
    box-shadow: 0 0 0 5px #235dad inset, 0 5px 20px rgba(0,0,0,.22);
    border: 1px solid #235dad;
}

#product-center .container .product-item img {
	height: 220px;
	display: block;
	margin: 0 auto;
}

#product-center .container .product-item p {
	font-size: 14px;
	color: #235DAD;
	line-height: 2;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-top: 15px;
}

#product-center .container .product-item .title {
	margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
	#product-center .container {
		width: 868px;
	}
}

@media only screen and (max-width: 900px) {
	#product-center .container {
		width: 578px;
	}
}

@media only screen and (max-width: 610px) {
	#product-center .container {
		width: 288px;
	}
}