@charset "utf-8";
/* CSS Document */

/* ===== 现代简约分页样式 ===== */
.dede-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dede-pagination .page-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.dede-pagination .page-list li {
    margin: 5px;
}

.dede-pagination .page-list a,
.dede-pagination .page-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.dede-pagination .page-list a:hover {
    border-color: #4285f4;
    color: #4285f4;
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.2);
}

.dede-pagination .page-list .thisclass a,
.dede-pagination .page-list .thisclass span {
    border-color: #4285f4;
    background-color: #4285f4;
    color: white;
    cursor: default;
    box-shadow: 0 2px 4px rgba(66, 133, 244, 0.3);
}

.dede-pagination .page-list .page-nomore {
    color: #999;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.dede-pagination .page-list .page-ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    min-width: auto;
}

/* 响应式设计：移动端适配 */
@media (max-width: 768px) {
    .dede-pagination .page-list a,
    .dede-pagination .page-list span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 0 6px;
    }
    
    .dede-pagination .page-list .page-prev,
    .dede-pagination .page-list .page-next {
        padding: 0 10px;
    }
}