@charset "utf-8";      
.pagination a {
    /*text-decoration: none;
	border: 1px solid #AAE;
	color: #15B;
	*/
    height: 30px;padding:10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #f1f1f1;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #333;
}

.pagination a, .pagination span {
    /*display: inline-block;
    padding: 0.1em 0.4em;
    margin-right: 5px;
	margin-bottom: 5px;
	*/
	padding:10px 10px;
	height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #f1f1f1;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #333;
	
}

.pagination .current {
    /*background: #26B;
    color: #fff;
	border: 1px solid #AAE;
	*/
	
	background-color: #0474dc;
    border-color: #f1f1f1;
    color: white;
}

.pagination .current.prev, .pagination .current.next{
	color:#333;
	border-color:#f1f1f1;
	background:#fff;
}

