* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background-color: #f9f6f0;
            color: #3a2e20;
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: #2d6a4f;
            padding: 15px 0;
            border-bottom: 3px solid #d4a373;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .nav-links a {
            color: #fefae0;
            text-decoration: none;
            font-size: 16px;
            padding: 6px 14px;
            border-radius: 20px;
            transition: all 0.3s;
            background: rgba(255,255,240,0.1);
        }
        .nav-links a:hover {
            background: #d4a373;
            color: #2d6a4f;
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 36px;
            margin: 40px 0 20px;
            color: #2d6a4f;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 #e9c891;
        }
        /* 区块通用 */
        section {
            margin: 50px 0;
            padding: 30px;
            background: #fefcf5;
            border: 1px solid #e2d6c0;
            border-radius: 12px;
            box-shadow: 6px 6px 0 #d4a37340;
            position: relative;
        }
        section::before {
            content: '';
            position: absolute;
            top: -6px; left: -6px; right: 6px; bottom: 6px;
            border: 1px solid #d4a373;
            border-radius: 14px;
            pointer-events: none;
        }
        h2 {
            color: #2d6a4f;
            font-size: 28px;
            border-left: 6px solid #d4a373;
            padding-left: 15px;
            margin-bottom: 20px;
        }
        h3 {
            color: #3a5a40;
            margin: 15px 0 8px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: #fffdf7;
            border: 1px solid #d4c9b0;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 4px 6px 0 #b7a88a;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 12px;
            border: 1px solid #cbb99b;
        }
        .flex-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        .flex-row .text {
            flex: 1;
            min-width: 260px;
        }
        .flex-row .img-box {
            flex: 1;
            min-width: 260px;
        }
        .flex-row .img-box img {
            width: 100%;
            border-radius: 10px;
            border: 2px solid #d4a373;
        }
        .btn {
            display: inline-block;
            background: #2d6a4f;
            color: #fefae0;
            padding: 10px 28px;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid #1b4d3b;
        }
        .btn:hover {
            background: #d4a373;
            color: #2d6a4f;
        }
        .date-tag {
            color: #7a6a58;
            font-size: 14px;
            font-style: italic;
            margin-bottom: 6px;
        }
        .faq-item {
            border-bottom: 1px dashed #d4c9b0;
            padding: 15px 0;
        }
        .faq-item strong {
            color: #2d6a4f;
            display: block;
            margin-bottom: 6px;
        }
        /* 页脚 */
        footer {
            background: #2d6a4f;
            color: #fefae0;
            padding: 30px 0;
            margin-top: 60px;
            text-align: center;
            border-top: 4px solid #d4a373;
        }
        footer a {
            color: #f3d9b1;
            text-decoration: underline;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-links {
            margin: 16px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .footer-links a {
            margin: 0 6px;
        }
        .address-line {
            margin-top: 10px;
            font-size: 14px;
            opacity: 0.9;
        }
        /* 新闻列表 */
        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid #e2d6c0;
        }
        .news-item:last-child {
            border: none;
        }
        .news-item h3 a {
            color: #2d6a4f;
            text-decoration: none;
        }
        .news-item h3 a:hover {
            text-decoration: underline;
        }
        .quote {
            font-style: italic;
            background: #f0ebe0;
            padding: 16px 24px;
            border-radius: 8px;
            border-left: 4px solid #d4a373;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #2d6a4f;
        }
        .stat-label {
            color: #5f4e3c;
        }
        @media (max-width: 768px) {
            h1 { font-size: 26px; }
            .navbar .nav-links { gap: 8px; }
            .navbar .nav-links a { font-size: 14px; padding: 4px 10px; }
        }