/* 产品列表 S */
.R input:nth-child(1) {
	display:block;
	width:184px;height:28px;
	padding-left:16px;
	line-height:28px;
	color:#999;
	margin-bottom:22px;
	border:1px solid #ddd;
	border-radius:50px;
	outline:none;
}

.R ul.items {
	display:flex;
	display:-webkit-flex;
	flex-flow:row wrap;
	justify-content:flex-start;
	width:864px;
}
.R ul.items li {
	width:260px;height:280px;
	text-align:center;
	margin-right:28px;
	margin-bottom:30px;
	background-color:#fff;
	transition:.5s;
	cursor:pointer;
}
.R ul.items li a {color:#555;}
.R ul.items li .img {
	width:260px;height:230px;
	margin-bottom:15px;
	overflow:hidden;
}
.R ul.items li img {width:inherit;}

.R ul.pager li {
	display:inline-block;
	margin-right:8px;
	padding:4px 8px;
	border:1px solid #ddd;
	background-color:#fff;
	transition:.5s;
}
.R ul.pager li:hover, .R ul.pager li.thisclass {
	color:#fff;
	background-color:#2067ef;
	border:1px solid #2067ef;
}
.R ul.pager li a {color:#999;}
.R ul.pager li:hover a, .R ul.pager li.thisclass a {color:#fff;}
/* 产品列表 E */