@charset "utf-8";
/* CSS Document */
.page{
	margin:1rem 0 1.6rem;
	font-size:16px;
	height:40px;
	line-height:40px;
	 display:flex;
    flex-flow:row wrap;
    justify-content:flex-start;
    align-items:center;
}
.page a{
	text-decoration:none;
	color:#666;
	background:#f9f9f9;
	border:1px solid #dadada;
	width:40px;
	height:40px;
	line-height:40px;
	margin-right:3px;
	display:inline-block;
	text-align:center;
	transition: all .3s ease;
}
.page a.active{
	background:#e60012;
	border:1px solid #e60012;
	color:#fff
}
.page a:hover{
	text-decoration:none;
	color:#fff;
	background:#e60012;
	border:1px solid #e60012
}
.prevbox,.nextbox{
	position:relative;
}
.prevbox:before{
	content:"\e61c";
	position:absolute;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:16px;
	left:0;
	top:0;
	transform:rotate(-180deg);
}
.nextbox:before{
	content:"\e61c";
	position:absolute;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:16px;
	left:0;
	top:0;
}