
/* 分页组件样式 */
.pagenation{ margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 15px;}

.page{ flex-wrap: wrap; wdisplay: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 30px;}
.page a{
    display: flex;
    border-radius: 4px;
    color: #555555;
    align-items: center;
    justify-content: center;
    height: 32px;
    min-width: 32px;
    padding: 0 12px;
    background: #f3f4f6;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.page a:hover{
    background: #ff6600;
    color: #ffffff;
    border-color: #ff6600;
}

.page a.active{
    background: #189d00;
    color: #ffffff;
    border-color: #189d00;
}

.page a.active:hover{
    background: #189d00;
    border-color: #189d00;
}

.page a.disabled{
    background: #e5e6e8;
    color: #c9cdd4;
    cursor: not-allowed;
}

.page a.disabled:hover{
    background: #e5e6e8;
    color: #c9cdd4;
    border-color: transparent;
}

.page .dots{
    color: #86909c;
    padding: 0 8px;
    font-size: 14px;
}

.page-info{
    color: #86909c;
    font-size: 14px;
}

/* 响应式分页 */
@media (max-width: 768px) {
    .page{
        flex-wrap: wrap;
        gap: 4px;
    }

    .page a{
        height: 28px;
        min-width: 28px;
        padding: 0 8px;
        font-size: 12px;
    }

    .page-info{
        font-size: 12px;
        text-align: center;
    }
}