        /* 主内容区样式 */
        main {
            padding: 15px 0 30px;
            min-height: calc(100vh - 100px);
        }
        
        .page-header {
            margin-bottom: 20px;
            padding: 15px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 8px;
            color: var(--white);
            box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
        }
        
        .page-header h1 {
            font-size: 2.2rem;
            margin-bottom: 8px;
        }
        
        .page-header p {
            font-size: 1.4rem;
            opacity: 0.9;
        }
        
        /* 文章内容样式 */
        .article-content {
            background: var(--white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 30px;
        }
        
        .article-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--secondary-color);
        }
        
        .article-title {
            font-size: 2.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 1.3rem;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        .article-meta .category {
            background: rgba(139, 69, 19, 0.1);
            padding: 4px 10px;
            border-radius: 15px;
        }
        
        .article-body {
            font-size: 1.5rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

/*#post1 img {
width: 60%;
    max-width: 100%;
}*/

.article-body img {
    margin: 0 auto;
   /* margin-bottom: 5px;*/
    height: auto;
    max-width: 100%;
}
        
        .article-body p {
            margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
        }
        
        .article-body h2, .article-body h3 {
            color: var(--primary-color);
            margin: 25px 0 15px;
        }
        
        .article-body h2 {
            font-size: 2rem;
        }
        
        .article-body h3 {
            font-size: 1.8rem;
        }
        
        .article-body blockquote {
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
            margin: 20px 0;
            font-style: italic;
            color: var(--text-light);
            background: rgba(210, 180, 140, 0.1);
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .article-body ul, .article-body ol {
            margin: 15px 0;
            padding-left: 25px;
        }
        
        .article-body li {
            margin-bottom: 8px;
        }
        
        
        /* 相关文章 */
        .related-articles {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .related-articles-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }
        
        .related-article {
            background: var(--white);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        
        .related-article:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .related-article h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .related-article h3 a {
            color: var(--text-dark);
        }
        
        .related-article h3 a:hover {
            color: var(--primary-color);
        }
        
        .related-article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 1.1rem;
            color: var(--text-light);
        }
        /* 响应式设计 */
        @media screen and (max-width: 768px) {
            
            .article-title {
                font-size: 2rem;
            }
            
            .article-body {
                font-size: 1.4rem;
            }
            /*#post1 img {
width: 100%;
    max-width: 100%;
}*/
            .related-articles-list {
                grid-template-columns: 1fr;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /*
        .article-content, .related-article {
            animation: fadeIn 0.4s ease forwards;
        }*/