@import "init.css";
@import "header-footer.css";
@import "banner.css";
.product-container .page-panel{
	margin-bottom: 90px;
}
.product-panel{
	padding: 0 0 30px 0;
}
.product-list-panel{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.product-list-panel .list-item{
	width: 380px;
	margin-right: 30px;
	margin-bottom: 40px;
}
.product-list-panel .list-item:nth-child(3n){
	margin-right: 0;
}
.product-list-panel .list-item .img{
	background: #FFFFFF;
	width:380px;
	height:245px;
	overflow:hidden;
	position:relative;
}
	.product-list-panel .list-item .img img {
		max-width: 100%;
		max-height: 100%;
		display: block;
		margin: auto;
		transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
	}
		.product-list-panel .list-item .img img:hover {
			-webkit-transform: scale(1.1, 1.1);
			-moz-transform: scale(1.1, 1.1);
			transform: scale(1.1, 1.1);
		}
.product-list-panel .list-item  .tips{
	font-size: 16px;
	line-height: 20px;
	color: #727272;
	text-align: center;
	padding: 20px 0;
}
