    <style>
        /* 基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Serif SC', serif;
            background-color: #f8f4e9;
            color: #3c2f2f;
            line-height: 1.5;
            padding-top: 80px;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4c4a8' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        /* 主体容器 */
        .container {
            width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 固定导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #8b4513;
            padding: 12px 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid #d4a76a;
        }
        
        .nav-container {
            width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .site-title {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 2rem;
            color: #f8f4e9;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .site-title:hover {
            color: #d4a76a;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-link {
            color: #f8f4e9;
            text-decoration: none;
            font-size: 1rem;
            position: relative;
            padding: 3px 0;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background-color: #d4a76a;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: #d4a76a;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        /* 页面标题 */
        .page-header {
            text-align: center;
            margin: 30px 0 35px;
            position: relative;
        }
        
        .page-header:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: #8b4513;
            border-radius: 1px;
        }
        
        .page-title {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 2.2rem;
            color: #5d4037;
            letter-spacing: 3px;
        }
        
        .page-subtitle {
            font-size: 1rem;
            color: #a67c52;
            margin-top: 8px;
            font-style: italic;
        }
        
        /* 文章列表 - 紧凑设计 */
        .article-list {
            background-color: #fffef9;
            border-radius: 6px;
            padding: 25px 30px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e6d5b8;
            margin-bottom: 50px;
        }
        
        .article-item {
            list-style: none;
            padding: 15px 15px;
            border-bottom: 1px solid #e6d5b8;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            min-height: 50px;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
        .article-item:hover {
            background-color: #f9f5ed;
            border-radius: 3px;
        }
        
        .article-number {
            color: #8b4513;
            font-size: 1rem;
            font-weight: 600;
            margin-right: 20px;
            min-width: 25px;
            text-align: right;
            font-family: 'Noto Serif SC', serif;
        }
        
        .article-link {
            color: #3c2f2f;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 500;
            flex-grow: 1;
            transition: all 0.2s ease;
            padding: 2px 0;
            display: block;
        }
        
        .article-link:hover {
            color: #8b4513;
            transform: translateX(3px);
        }
        
        /* 底部版权 */
        .footer {
            background-color: #8b4513;
            padding: 20px 0;
            color: #f8f4e9;
            text-align: center;
            border-top: 2px solid #d4a76a;
        }
        
        .footer-content {
            width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .copyright {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .footer-link {
            color: #d4a76a;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: #f8f4e9;
            text-decoration: underline;
        }
        
        .footer-seal {
            display: inline-block;
            padding: 6px 15px;
            border: 1.5px solid #d4a76a;
            border-radius: 50%;
            font-family: 'Ma Shan Zheng', cursive;
            color: #f8f4e9;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-top: 8px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1040px) {
            .container, .nav-container, .footer-content {
                width: 95%;
                max-width: 1000px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .site-title {
                font-size: 1.6rem;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .article-list {
                padding: 20px;
            }
            
            .article-item {
                padding: 12px 10px;
            }
            
            .article-link {
                font-size: 1.05rem;
            }
        }
        
        @media (max-width: 480px) {
            .page-title {
                font-size: 1.6rem;
            }
            
            .article-link {
                font-size: 1rem;
            }
            
            .nav-links {
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-link {
                font-size: 0.9rem;
            }
            
            .footer-links {
                flex-wrap: wrap;
                gap: 12px;
            }
        }
    </style>