/* ========== 分页样式优化 ========== */
.page-bar { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 5px; 
    margin: 30px 0; 
    flex-wrap: wrap;
}
.page-btn { 
    padding: 8px 12px; 
    background: #fff; 
    border-radius: 5px; 
    min-width: 40px; 
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.page-btn:hover { 
    background: #e94560; 
    color: #fff; 
    transform: translateY(-2px);
}
.page-btn.current { 
    background: #e94560; 
    color: #fff; 
    font-weight: bold;
}
.page-btn.prev, .page-btn.next { 
    font-size: 18px; 
    font-weight: bold;
}
.page-btn.disabled { 
    opacity: 0.5; 
    cursor: not-allowed;
    background: #f5f5f5;
}
.page-btn.disabled:hover { 
    background: #f5f5f5; 
    color: #666;
    transform: none;
}
.page-ellipsis { 
    padding: 0 5px; 
    color: #999;
}
.page-info { 
    margin-left: 15px; 
    color: #666; 
    font-size: 14px;
    white-space: nowrap;
}
