/* img list */
.img_list{
	margin-top: 0.4167rem;
	background-color: #353636;
	box-sizing: border-box;
	padding: 0 0.8333rem;
	color: #fff;
	overflow: hidden;
}
.img_tit{
	font-size: 0.8333rem;
	padding: 0.625rem 0 0.4167rem;
	border-bottom: 0.0417rem solid #fff;
}
.img_item{
  width: 19.5833rem;
  height: 11.6667rem;
	overflow: hidden;
	display:inline-block;
	margin-bottom: 2rem;
	position: relative;
}
.img_item:nth-child(2n){
	float: right;
}
.img_item img{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	transition: 0.3s;
}
.img_item .img_info{
    text-align: center;
	width: 100%;
	height: 1.6667rem;
	background: rgba(0,0,0,.7);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	line-height: 1.6667rem;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0 0.8333rem;
}
.img_info a{
	color: #fff;
	font-size: 0.6667rem;
	text-decoration: none;
}
.img_item:hover img{
	transform: scale(1.1);
	transition: 0.5s;
}
/* pagination */
.pagination{
	width: 100%;
	text-align: center;
	overflow: hidden;
	font-size: 0.5833rem;
	color: #fff;
	background-color: #353636;
	margin-bottom: 0.8333rem;
	box-sizing: border-box;
	padding: 0.625rem 0 0;
}
.pagination a{
	color: #fff;
	display: inline-block;
	padding: 0.125rem 0.4167rem;
}
.pagination a:hover{
	background-color: #242222;
}
