/* Sitemap页面特定样式 */
.sitemap-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2196F3 100%);
    margin: -2rem -2rem 2rem -2rem;
    color: white;
    border-radius: 0 0 20px 20px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sitemap-section {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.sitemap-section h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    background: var(--secondary-color);
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.link-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.link-desc {
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .sitemap-page {
        padding: 1rem;
    }

    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .sitemap-section {
        padding: 1.5rem;
    }

    .sitemap-section h2 {
        font-size: 1.5rem;
    }

    .site-link {
        padding: 0.8rem;
    }

    .link-title {
        font-size: 1.1rem;
    }
} 