
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #faf9f6;
        }

        /* 导航栏样式（与首页一致） */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(139, 69, 19, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #d4af37;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* 页面头部 */
        .page-header {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(210, 105, 30, 0.8)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%238B4513" width="1200" height="400"/><path d="M0,200 Q300,100 600,200 T1200,200" stroke="%23D4AF37" stroke-width="2" fill="none" opacity="0.3"/><circle fill="%23CD853F" cx="200" cy="100" r="30" opacity="0.2"/><circle fill="%23D2691E" cx="1000" cy="150" r="40" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 2rem 4rem;
            margin-top: 80px;
        }

        .page-header h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            color: #d4af37;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .page-header p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* 主要内容区域 */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* 搜索和过滤器 */
        .blog-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
            align-items: center;
            justify-content: space-between;
        }

        .search-box {
            position: relative;
            flex: 1;
            min-width: 250px;
            max-width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 3rem;
            border: 2px solid #ddd;
            border-radius: 25px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: #d4af37;
        }

        .search-box i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .category-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1rem;
            background: white;
            border: 2px solid #d4af37;
            color: #8b4513;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #d4af37;
            color: white;
        }

        /* 博客文章网格 */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .blog-article {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .blog-article:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #8b4513, #d2691e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .article-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23D4AF37" cx="20" cy="30" r="3" opacity="0.4"/><circle fill="%23F4D03F" cx="80" cy="70" r="4" opacity="0.3"/><path d="M10,50 Q30,30 50,50 T90,50" stroke="%23FFD700" stroke-width="1" fill="none" opacity="0.5"/></svg>');
            background-size: 30px 30px;
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #666;
        }

        .article-category {
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .article-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #8b4513;
            line-height: 1.4;
        }

        .article-excerpt {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .read-time {
            font-size: 0.9rem;
            color: #999;
        }

        .btn {
            padding: 0.6rem 1.2rem;
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            color: #8b4513;
            text-decoration: none;
            border-radius: 20px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* 特色文章部分 */
        .featured-article {
            background: linear-gradient(135deg, #f5f5dc, #faf0e6);
            padding: 3rem 2rem;
            border-radius: 20px;
            margin-bottom: 4rem;
            text-align: center;
        }

        .featured-article h2 {
            font-size: 2rem;
            color: #8b4513;
            margin-bottom: 1rem;
        }

        .featured-article p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 3rem 0;
        }

        .pagination a,
        .pagination span {
            padding: 0.8rem 1rem;
            background: white;
            border: 2px solid #d4af37;
            color: #8b4513;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .pagination a:hover,
        .pagination .current {
            background: #d4af37;
            color: white;
        }

        /* CTA 部分 */
        .blog-cta {
            background: linear-gradient(135deg, #8b4513, #d2691e);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 4rem;
        }

        .blog-cta h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #d4af37;
        }

        .blog-cta p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 25px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .social-link:hover {
            background: rgba(255,255,255,0.2);
            border-color: #d4af37;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: #2c1810;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(139, 69, 19, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: block;
            }

            .blog-controls {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                max-width: none;
            }

            .category-filters {
                justify-content: center;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .pagination {
                flex-wrap: wrap;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .main-content {
                padding: 2rem 1rem;
            }
        }

        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-article {
            animation: fadeInUp 0.6s ease forwards;
        }

        .blog-article:nth-child(2) { animation-delay: 0.1s; }
        .blog-article:nth-child(3) { animation-delay: 0.2s; }
        .blog-article:nth-child(4) { animation-delay: 0.3s; }
        .blog-article:nth-child(5) { animation-delay: 0.4s; }
        .blog-article:nth-child(6) { animation-delay: 0.5s; }

        html {
            scroll-behavior: smooth;
        }

        .navbar.scrolled {
            background: rgba(139, 69, 19, 0.98);
            padding: 0.5rem 0;
        }
