   /* 资讯详情样式 */
        .news-detail-header {
            margin-bottom: 40px;
        }
        
        .news-category {
            display: inline-block;
            background: var(--primary);
            color: white;
            font-size: 14px;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        
        .news-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            color: #64748b;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .news-meta div {
            margin-right: 25px;
            display: flex;
            align-items: center;
        }
        
        .news-meta i {
            margin-right: 8px;
            color: var(--accent);
        }
        
        .news-featured-image {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .news-featured-image img {
            width: 100%;
            height: auto;
        }
        
        /* 内容样式 */
        .news-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #334155;
        }
        
        .news-content h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        
        .news-content h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        
        .news-content p {
            margin-bottom: 20px;
        }
        
        .news-content ul, .news-content ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        .news-content li {
            margin-bottom: 10px;
        }
        
        .news-content blockquote {
            background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        
        /* 信息框样式 */
        .info-box {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--accent);
        }
        
        .info-box-title {
            color: var(--accent);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-box-title i {
            margin-right: 10px;
        }
        
        /* 表格样式 */
        .news-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .news-table th, .news-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .news-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        
        .news-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        /* 标签样式 */
        .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
        }
        
        .news-tag {
            background: var(--light);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .news-tag:hover {
            background: var(--primary);
            color: white;
        }
        
        /* 分享按钮 */
        .share-buttons {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }
        
        .share-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }
        
        .share-button:hover {
            transform: translateY(-3px);
        }
        
        .share-wechat {
            background: #2aae67;
        }
        
        .share-weibo {
            background: #e6162d;
        }
        
        .share-qq {
            background: #12b7f5;
        }
        
        .share-link {
            background: var(--primary);
        }
        
        /* 导航样式 */
        .news-navigation {
            display: flex;
            justify-content: space-between;
            margin: 50px 0;
            padding: 20px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .nav-previous, .nav-next {
            max-width: 45%;
        }
        
        .nav-label {
            color: #64748b;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .nav-title {
            color: var(--primary);
            font-weight: 600;
        }
        
        /* 相关资讯 */
        .related-news {
            margin: 60px 0;
        }
        
        .related-title {
            color: var(--primary);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light);
        }
        
        .related-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .related-news-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .related-news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .related-news-image {
            height: 180px;
            overflow: hidden;
        }
        
        .related-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .related-news-item:hover .related-news-image img {
            transform: scale(1.05);
        }
        
        .related-news-content {
            padding: 20px;
        }
        
        .related-news-category {
            display: inline-block;
            background: var(--primary);
            color: white;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        
        .related-news-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .related-news-title a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .related-news-title a:hover {
            color: var(--primary);
        }
        
        .related-news-meta {
            font-size: 12px;
            color: #94a3b8;
        }
        
        /* 评论区域 */
        .comments-section {
            margin: 60px 0;
        }
        
        .comments-title {
            color: var(--primary);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light);
        }
        
        .comment-form {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        .comment-form-title {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .news-title {
                font-size: 1.8rem;
            }
            
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .news-meta div {
                margin-bottom: 10px;
            }
            
            .news-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-previous, .nav-next {
                max-width: 100%;
            }
            
            .related-news-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 图片自适应样式 */
        .container img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .container img:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* 确保所有图片容器正确显示 */
        .image-container {
            overflow: hidden;
            margin: 20px 0;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .container img {
                border-radius: 6px;
            }
        }
        
        @media (max-width: 576px) {
            .container img {
                border-radius: 4px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            }
        }
    