@charset "utf-8";
.pagination{
    display: flex;
    justify-content: center;
    width:100%;
    height:100%;
    text-align: center;
}
 
.pagination a {
    text-decoration: none;
}
 
.pagination a, .pagination span {
    display: inline-block;
    /* width: 100%; */
    padding: 0 16px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    margin-right: 5px;
	margin-bottom: 5px;
    font-size: 16px;
    border:1px solid #f3f3f3;
}
 
.pagination .current {
    background: #E40012;
    color: #fff;
	border: 1px solid #E40012;
}
 
.pagination .current.prev, .pagination .current.next{
	color:#999;
	border-color:#999;
	background:#fff;
}
 