body {
    display: flex;
    flex-direction: column;
    color: #333;
    line-height: 1.6;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f2f5f5 0%, #f2f5f5 100%);
}

.container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.hero .container {
    align-items: center;
}

.subtitle {
    color: var(--muted);
    font-size: 16px;
}

/* Sections */
section {
    padding: 80px 6vw;
    display: flex;
    align-items: center;
    height: 60vh;
    /* background: var(--section); */
}

section:nth-child(even) {
    background-color: #fff;
}

/* 分页组件通用样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.page-btn {
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
}

.page-btn:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.page-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
}

.page-btn:disabled:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

@media (max-width: 480px) {

    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .page-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}