/* 分页容器 */
.pagination-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 15px 0;
}

/* PC端基础按钮 */
.pagination-pc .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}
.pagination-pc .page-item:hover:not(.page-disabled):not(.page-active) {
    background-color: #f5f5f5;
}

/* 移动端样式 */
.pagination-mobile .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

/* 当前激活页 */
.page-active {
    background-color: #0066cc;
    border-color: #0066cc;
    color: #fff !important;
}

/* 禁用状态（不可点击） */
.page-disabled {
    border-color: #ccc !important;
    color: #999 !important;
    cursor: not-allowed;
    text-decoration: none;
}

/* 总页数文字 */
.page-total {
    font-size: 14px;
    margin: 0 10px;
    color: #333;
}

/* 跳转输入框 */
.page-jump-input {
    width: 60px;
    padding: 4px;
    text-align: center;
    border: 1px solid #ccc;
    outline: none;
}

/* 跳转按钮 */
.page-jump-btn {
    padding: 4px 8px;
    margin-left: 5px;
    cursor: pointer;
    border: 1px solid #333;
    background: #fff;
}
.page-jump-btn:hover {
    background: #f2f2f2;
}
