﻿/* CSS变量 - 主题色 */
:root {
    --primary-color: #bba0ae;
    --secondary-color: #a894a6;
    --accent-color-1: #251c3a;
    --accent-color-2: #642c50;
    --accent-color-3: #9a5e43;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* 头部导航 */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color-1);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-color-1);
    cursor: pointer;
}

/* 英雄区 */
.hero {
    background: linear-gradient(135deg, rgba(37, 28, 58, 0.85) 0%, rgba(100, 44, 80, 0.85) 100%), url('./img/gta6-cover.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    min-height: 500px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: #fff;
    color: var(--accent-color-1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--accent-color-1);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* 通用区块样式 */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* 新闻动态 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color-1);
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    color: var(--accent-color-2);
}

/* 媒体画廊 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* 用户评价 */
.reviews {
    background: var(--bg-light);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.rating-score {
    text-align: center;
}

.score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin: 0.5rem 0;
}

.rating-count {
    color: var(--text-light);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.review-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--accent-color-1);
}

.review-stars {
    color: #ffc107;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

/* 版本历史 */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -30px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--bg-color), 0 0 0 6px var(--primary-color);
}

.timeline-content {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.version-header h3 {
    font-size: 1.5rem;
    color: var(--accent-color-1);
}

.version-date {
    color: var(--primary-color);
    font-weight: 600;
}

.version-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.version-changes {
    list-style: none;
    margin: 1rem 0;
}

.version-changes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.version-changes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* 游戏攻略 */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.guide-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guide-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color-1);
}

.guide-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.difficulty-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.difficulty-badge.easy {
    background: #4caf50;
    color: #fff;
}

.difficulty-badge.medium {
    background: #ff9800;
    color: #fff;
}

.difficulty-badge.hard {
    background: #f44336;
    color: #fff;
}

.difficulty-badge.recommended {
    background: var(--primary-color);
    color: #fff;
}

/* 章节介绍 */
.chapters-list {
    display: grid;
    gap: 2rem;
}

.chapter-card {
    display: flex;
    gap: 2rem;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.chapter-card:hover {
    box-shadow: var(--shadow-hover);
}

.chapter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
    width: 100px;
    text-align: center;
}

.chapter-content {
    flex: 1;
}

.chapter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color-1);
}

.chapter-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.chapter-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.chapter-info {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.chapter-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chapter-tag.main {
    background: var(--primary-color);
    color: #fff;
}

.chapter-tag.character {
    background: var(--accent-color-3);
    color: #fff;
}

.chapter-tag.important {
    background: #f44336;
    color: #fff;
}

.chapter-tag.action {
    background: #ff9800;
    color: #fff;
}

.chapter-tag.emotional {
    background: #9c27b0;
    color: #fff;
}

/* 常见问题 */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-color);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--accent-color-1);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* 底部信息 */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.85rem;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color-2);
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .chapter-card {
        flex-direction: column;
    }

    .chapter-number {
        width: 100%;
        text-align: left;
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-info {
        flex-direction: column;
        align-items: stretch;
    }

    .info-tag {
        justify-content: center;
    }
}

/* 文章页面样式 */
.article-page {
    padding: 2rem 0;
    background: var(--bg-light);
}

.article-header {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    color: var(--accent-color-2);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.article-title {
    font-size: 2.5rem;
    color: var(--accent-color-1);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-content {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--accent-color-1);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--accent-color-2);
    margin: 2rem 0 1rem;
}

.article-content h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.8rem;
}

.article-content p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--accent-color-1);
    font-weight: 600;
}

.article-content em {
    color: var(--primary-color);
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-light);
}

.info-box {
    background: #f0f7ff;
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box h4 {
    color: var(--accent-color-1);
    margin-top: 0;
}

.quote-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 2;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.comparison-table th {
    background: var(--accent-color-1);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-light);
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.article-tags {
    margin-bottom: 1.5rem;
}

.tag-label,
.share-label {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 0.5rem;
}

.article-tags .tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.article-tags .tag:hover {
    background: var(--accent-color-2);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.nav-btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(0);
}

.nav-prev {
    justify-content: flex-start;
}

.nav-prev:hover {
    transform: translateX(-5px);
}

.nav-next {
    justify-content: flex-end;
    text-align: right;
}

.nav-next:hover {
    transform: translateX(5px);
}

/* 文章页面响应式 */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-nav {
        flex-direction: column;
    }

    .nav-btn {
        min-width: 100%;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

/* 通用页面内容样式 */
.page-content {
    padding: 3rem 0;
    background: var(--bg-light);
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--accent-color-1);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

.page-body {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.page-body h2 {
    font-size: 1.8rem;
    color: var(--accent-color-1);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.page-body h3 {
    font-size: 1.4rem;
    color: var(--accent-color-2);
    margin: 1.5rem 0 0.8rem;
}

.page-body h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 1rem 0 0.5rem;
}

.page-body p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-body ul,
.page-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body strong {
    color: var(--accent-color-1);
    font-weight: 600;
}

/* FAQ分类按钮 */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.faq-category {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.faq-category:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-category.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* 支持渠道卡片 */
.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.support-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color-1);
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.support-time {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 技术问题样式 */
.manual-section {
    margin-bottom: 3rem;
}

.tech-issue {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

/* 反馈表单 */
.feedback-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* 帮助提示框 */
.help-box {
    background: #f0f7ff;
    border: 2px solid #b8daff;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.help-box h3 {
    color: var(--accent-color-1);
    margin-bottom: 1rem;
}

.help-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.help-box a:hover {
    color: var(--accent-color-2);
}

/* 响应式 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-body {
        padding: 1.5rem;
    }

    .faq-categories {
        flex-direction: column;
    }

    .faq-category {
        width: 100%;
        text-align: center;
    }

    .support-channels {
        grid-template-columns: 1fr;
    }
}
