.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    margin: 20px 0;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #C7C7C7;
    border-top: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
    background: #fff;
    cursor: pointer;
}

.pagination .next {
    border-right: 1px solid #C7C7C7;
}

.pagination a:hover {
    background: #C7C7C7;
}

.pagination a {
    color: #35a6db;
}

.pagination a.disabled {
    color: #b8b8b8;
    pointer-events: none;
}

.page-box {
    display: flex;
    justify-content: center;
    align-items: center;
}


.page-box a {
    display: block;
    padding: 4px 20px;
    border: 1px #b5b6b8 solid;
    text-decoration: none;
    color: #313131;
    font-size: 14px;
    line-height: 30px;
    margin: 0px 2px;
}

.page-box a:hover {
    color: #065ecb;
}

.page-box a.current {
    border-color: #065ecb;
    background: #065ecb;
    color: #fff;
}

.page-box p {
    float: left;
    padding: 4px 16px;
    font-size: 14px;
    line-height: 30px;
    color: #bbb;
    border: 1px #b5b6b8 solid;
    margin: 0px 2px;
    cursor: not-allowed;
}