body {
	background: #f2f2f2;
}

.banner {
	display: block;
	width: 100%;
}

.title {
	text-align: center;
	font-size: 0.1rem;
	font-weight: 300;
	padding: 2% 0;
	background: #fff;
	position: relative;
}

.title:before {
	content: '';
	height: 1px;
	background: #2980e3;
	width: 0.1rem;
	display: block;
	position: absolute;
	left: 46%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.title:after {
	content: '';
	height: 1px;
	background: #2980e3;
	width: 0.1rem;
	display: block;
	position: absolute;
	right: 45%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.list {
	width: 100%;
	background: #fff;
	text-align: center;
}

.list li {
	display: inline-block;
	text-align: center;
	font-size: 0.06rem;
	position: relative;
	margin-right: 0.08rem;
}

.list li span {
	margin-left: 0.08rem;
}

.list li:last-child {
	margin-right: 0;
}

.list li a:hover {
	color: #2980e3;
	padding-bottom: 0.04rem;
	border-bottom: 2px solid #2980e3;
}

.cont {
	width: 70%;
	margin:0 auto;
	margin-top: 3%;
}
.cont .product-list {
	width: 100%;
	background: #fff;
	margin-bottom: 0.1rem;
}
.cont .product-list li {
	float: left;
	margin-right: 0.069rem;
	margin-bottom: 0.02rem;
	overflow: hidden;
}
.cont .product-list li img{
	width: 100%;
}
.cont .product-list li:nth-child(4n){
	margin-right: 0;
}
.cont .product-list li p{
	text-align: center;
	font-size: 0.06rem;
	padding-bottom: 0.02rem;
}
@media screen and (min-width: 768px) {
	.cont .product-list li {
		width: 24%;
	}
}