
/**
分页
 */
.page-container {
    margin-top: 30px;
    justify-content: flex-end;
}

.page-item {
    margin: 0 4px;
}

.page-link {
    width: 25px;
    text-align: center;
    height: 25px;
    padding: 0;
    background: rgba(255, 255, 255, 1);
    border-radius: 2px;
    border: 1px solid rgba(232, 235, 242, 1);
    font-size: 12px;
    font-weight: 400;
    color: rgba(114, 114, 114, 1);
    line-height: 25px;
}

.page-link.active {
    background: rgba(0, 143, 139, 1);
    border-radius: 2px;
    color: white;
}

.page-link:hover {
    background: unset;
    border-radius: 2px;
}

.page-item.active .page-link:hover {
    color: white !important;
}

.page-container .active a:hover {
    color: white !important;
}

.page-container a:hover {
    color: rgba(114, 114, 114, 1) !important;
}