/* 分页器样式 */
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination img {
    background: #0000000a;
}

.page-num,
.page-prev,
.page-next {
    width: 35px;
    height: 35px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 2rem;
    color: #595959;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.3s;
}
.page-num{
    border-radius: 50%;
}

.page-prev,
.page-next {
    border: none;
}

.page-num.active {
    background: var(--bjtu-blue);
    color: #fff;
    border-color: var(--bjtu-blue);
}

.page-num:hover:not(.active) {
    border-color: var(--bjtu-blue);
    color: var(--bjtu-blue);
}