  /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        /* 页面容器 */
        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* 标题区 */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-subtitle {
            color: #718096;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* 新闻列表 */
        .news-list {
            display: grid;
            gap: 30px;
			padding: 50px 200px;
        }

        /* 新闻条目 */
        .news-item {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
                        0 2px 4px -1px rgba(0, 0, 0, 0.02);
            border: 1px solid #e2e8f0;
        }

        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08),
                        0 4px 6px -2px rgba(0, 0, 0, 0.03);
        }

        /* 新闻元信息 */
        .news-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            color: #718096;
            font-size: 0.9rem;
        }

        .news-date {
            background: #f7fafc;
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 500;
        }

        .news-category {
            color: #4299e1;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* 新闻内容 */
        .news-title {
            font-size: 1.4rem;
            color: #2d3748;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .news-excerpt {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: #4299e1;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
        }

        .read-more:hover {
            color: #3182ce;
        }

        .read-more::after {
            content: "→";
            margin-left: 8px;
            transition: margin 0.2s;
        }

        .read-more:hover::after {
            margin-left: 12px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .news-container {
                padding: 30px 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .news-item {
                padding: 25px;
            }

            .news-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
		
.pagination {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.pagination-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pagination a:hover {
    background: #f7fafc;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.pagination .active {
    background: #4299e1;
    color: white !important;
    border-color: #4299e1;
    box-shadow: 0 2px 4px rgba(66,153,225,0.2);
}

.pagination .ellipsis span {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 12px;
    color: #a0aec0;
}

/* 响应式分页 */
@media (max-width: 768px) {
    .pagination-list li:not(.ellipsis):not(:first-child):not(:last-child) {
        display: none;
    }
    
    .pagination a {
        width: 36px;
        height: 36px;
    }
}

    /* 内容容器 */
        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* 文章头部 */
        .article-header {
            margin-bottom: 40px;
        }

        .article-title {
            font-size: 2.2rem;
            color: #2d3748;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            gap: 25px;
            color: #718096;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .meta-icon {
            width: 18px;
            height: 18px;
            opacity: 0.7;
        }

        /* 正文内容 */
        .article-content {
            color: #4a5568;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .article-content p {
            margin-bottom: 1.8em;
            text-align: justify;
        }

        .article-content img {
            width: 100%;
            height: auto;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .article-content blockquote {
            border-left: 4px solid #4299e1;
            padding: 20px 30px;
            margin: 30px 0;
            background: #f8fafc;
            border-radius: 0 8px 8px 0;
        }

        /* 返回链接 */
        .back-link {
            display: inline-flex;
            align-items: center;
            margin-top: 50px;
            color: #4299e1;
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        .back-link::before {
            content: "←";
            margin-right: 8px;
            transition: margin 0.2s;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .article-container {
                padding: 40px 15px;
            }

            .article-title {
                font-size: 0.5rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .article-content {
                font-size: 0.23rem;
            }

            .article-content img {
                margin: 30px 0;
            }
        }
		
		.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

/* 导航链接通用样式 */
.article-navigation a {
    display: inline-flex;
    align-items: center;
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    max-width: 45%;
    transition: all 0.2s;
}

/* 导航图标 */
.nav-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.2s;
}

/* 上一篇样式 */
.nav-previous {
    padding-right: 30px;
}

.nav-previous .nav-icon {
    margin-right: 10px;
}

/* 下一篇样式 */
.nav-next {
    padding-left: 30px;
    text-align: right;
}

.nav-next .nav-icon {
    margin-left: 10px;
}

/* 悬停效果 */
.article-navigation a:hover {
    color: #3182ce;
}

.nav-previous:hover .nav-icon {
    transform: translateX(-3px);
}

.nav-next:hover .nav-icon {
    transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-navigation {
        flex-direction: column;
        gap: 25px;
        padding-top: 30px;
    }

    .article-navigation a {
        max-width: 100%;
        padding: 0 !important;
    }

    .nav-next {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .nav-next .nav-icon {
        margin-left: 0;
        margin-right: 10px;
    }
}

.site-footer {
    background: #f5f5f5;
    border-top: 1px solid #e2e8f0;
    padding: 40px 20px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.copyright {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.icp-info {
    color: #a0aec0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.divider {
    color: #cbd5e0;
    margin: 0 10px;
}

.footer-link {
    color: #718096;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #4299e1;
}

.beian-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
        margin-top: 60px;
    }
    
    .copyright, .icp-info {
        font-size: 0.8rem;
    }
    
    .divider {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .copyright br {
        display: block;
    }
    
    .divider {
        display: none;
    }
    
    .icp-info {
        flex-direction: column;
    }
}