* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #f5efe6;
            color: #3a2e2a;
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: #2d6a4f;
            padding: 16px 0;
            border-bottom: 4px solid #c9a96e;
            box-shadow: 0 2px 12px rgba(45, 106, 79, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f5efe6;
            text-decoration: none;
            font-size: 1.05rem;
            letter-spacing: 2px;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.3s;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: rgba(201, 169, 110, 0.25);
            border-color: #c9a96e;
            color: #f5efe6;
        }
        /* 标题 */
        h1 {
            text-align: center;
            font-size: 2.6rem;
            padding: 60px 20px 20px;
            color: #2d6a4f;
            font-weight: 400;
            letter-spacing: 6px;
            text-shadow: 2px 2px 0 rgba(201, 169, 110, 0.15);
        }
        h1 small {
            display: block;
            font-size: 1rem;
            color: #6b5b50;
            letter-spacing: 4px;
            margin-top: 8px;
        }
        h2 {
            font-size: 1.9rem;
            color: #2d6a4f;
            border-left: 5px solid #c9a96e;
            padding-left: 18px;
            margin: 50px 0 30px;
            font-weight: 400;
        }
        h3 {
            color: #3a2e2a;
            font-weight: 400;
            letter-spacing: 1px;
        }
        /* 卡片复古 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        .card {
            background: #fdfaf5;
            border: 1px solid #d9cdb8;
            border-radius: 20px;
            padding: 28px 22px;
            box-shadow: 6px 6px 0 rgba(45, 106, 79, 0.05);
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: linear-gradient(90deg, #2d6a4f, #c9a96e);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 8px 8px 0 rgba(45, 106, 79, 0.1);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 2px solid #e6dccb;
        }
        .card p {
            color: #5a4a3e;
            font-size: 0.95rem;
        }
        .tag {
            display: inline-block;
            background: #c9a96e;
            color: #fdfaf5;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .date-tag {
            font-size: 0.85rem;
            color: #8a7a6a;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .btn-ghost {
            display: inline-block;
            border: 1px solid #2d6a4f;
            padding: 8px 28px;
            border-radius: 40px;
            color: #2d6a4f;
            text-decoration: none;
            transition: 0.3s;
            margin-top: 12px;
        }
        .btn-ghost:hover {
            background: #2d6a4f;
            color: #f5efe6;
        }
        /* 统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
            background: #fdfaf5;
            border: 1px solid #d9cdb8;
            border-radius: 40px;
            padding: 40px 20px;
            margin: 30px 0;
        }
        .stat-item h3 {
            font-size: 2.2rem;
            color: #2d6a4f;
            font-weight: 400;
        }
        .stat-item p {
            color: #6b5b50;
            letter-spacing: 2px;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px dashed #d9cdb8;
            padding: 24px 0;
        }
        .faq-item h3 {
            font-weight: 500;
            color: #2d6a4f;
            cursor: default;
        }
        .faq-item p {
            margin-top: 12px;
            color: #5a4a3e;
        }
        /* 页脚 */
        footer {
            background: #2d6a4f;
            color: #f5efe6;
            padding: 50px 0 30px;
            margin-top: 60px;
            text-align: center;
        }
        footer a {
            color: #c9a96e;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin: 20px 0;
        }
        .footer-links a {
            padding: 0 8px;
        }
        .footer-addr {
            max-width: 600px;
            margin: 0 auto 16px;
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .beian {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 12px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; padding: 40px 10px 10px; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.9rem; padding: 4px 10px; }
        }