.pagination {
    width: 1200px;
    margin: 30px auto;
    display: flex;
}
.prev{
    width: 39px;
	height: 38px;
	background-color: #ffffff;
	border-radius: 3px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    font-weight: 600;
    user-select: none;
}
.page-item{
    width: 39px;
	height: 38px;
	background-color: #ffffff;
	border-radius: 3px;
    border: solid 1px #eeeeee;
    text-align: center;
    line-height: 38px;
    color:#b1b1b1;
    cursor: pointer;
    margin-right: 10px;
    user-select: none;
}
.page-active{
    background: #227faf;
    color: #fff;
}
.next{
    width: 39px;
	height: 38px;
	background-color: #ffffff;
	border-radius: 3px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    user-select: none;
}
.next img{
    transform: rotate(180deg);
    user-select: none;
}