﻿/* 分页样式 */
.pagination {
    margin: 0;
}

.page-item {
    margin: 0 2px;
}

.page-link {
    min-width: 36px;
    text-align: center;
    border-radius: 4px !important;
    border-color: #ddd;
    color: #555;
    font-size: 16px;
}

.page-item.active .page-link {
    background-color: #4285f4;
    border-color: #4285f4;
    color: white;
}

.page-item.disabled .page-link {
    color: #bbb;
    pointer-events: none;
}

.page-info {
    background: transparent;
    border: none;
    color: #666;
    pointer-events: none;
}

.page-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    text-align-last: center;
}

/* 响应式调整 */
@@media (max-width: 767.98px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-goto {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}
