@charset "utf-8";
main {
	width: 100%;
	background:#efe9cf;
}
/*----产品页----*/
#content ul.product-list {
	height: auto !important;
	overflow: hidden;
	padding: 25px 0px 0px 10px;
}
#content >h1 {
	text-align: center;
	font-size: 1.6em;
	color: #555;
	margin-bottom: 10px;
}
#content ul.product-list li {
	float: left;
	width: 25%;
	text-align: center;
}
#content ul.product-list li>a {
	margin: 0 auto;
	display: block;
	width: 205px;
	height:192px;
	overflow: hidden;
	border: solid 1px #b48f12;
}
#content ul.product-list li img {
	width: 205px;
	height:192px;
	-webkit-transition: transform 0.6s ease 0s;  /*过渡效果，所有属性改变|变换延续的时间0.6秒|逐渐变慢*/
	-moz-transition: transform 0.6s ease 0s;
	-o-transition: transform 0.6s ease 0s;
	transition: transform 0.6s ease 0s;
}
#content ul.product-list li a:hover img {
	-webkit-transform: scale(1.1, 1.1); /*放大1.1倍*/
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

#content >ul.product-list >li h3 {
	height: 36px;
	line-height: 36px;
	overflow: hidden;
	text-align: center;
	font-size: 1.4em;
	font-weight: normal;
	margin-bottom: 10px;
}