/* 新闻主要内容区域 */
        .news-main-container {
            padding: 40px 0;
			width: 1400px;
			margin: 40px auto;
        }
        
        .detail-layout-container {
            display: flex;
            gap: 30px;
        }
        
        /* 左侧新闻详情 */
        .news-detail {
            flex: 1;
            background: #fff;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 40px;
        }
        
        .news-title {
            font-size: 32px;
            line-height: 1.3;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }
        
        .news-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-medium);
            font-size: 14px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .meta-item i {
            color: var(--primary-orange);
        }
        
        .news-body {
            margin-bottom: 40px;
        }
        
        .news-body p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }
        
        .news-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        /* 社交分享 */
        .social-share {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .social-share span {
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray-light);
            color: var(--text-medium);
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        .facebook:hover {
            background: #3b5998;
            color: #fff;
        }
        
        .twitter:hover {
            background: #1da1f2;
            color: #fff;
        }
        
        .linkedin:hover {
            background: #0077b5;
            color: #fff;
        }
        
        .whatsapp:hover {
            background: #25d366;
            color: #fff;
        }
        
        .link:hover {
            background: var(--primary-orange);
            color: #fff;
        }
        
        /* 点赞按钮 */
        .like-section {
            margin: 25px 0;
        }
        
        .like-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gray-light);
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 16px;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .like-button:hover {
            background: #e9f0ff;
            color: var(--primary-blue);
        }
        
        .like-button i {
            transition: transform 0.3s;
        }
        
        .like-button:hover i {
            transform: scale(1.1);
        }
        
        /* 上一篇下一篇 */
        .news-navigation {
            display: flex;
            justify-content: space-between;
            margin: 40px 0 30px;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
        }
        
        .prev-news, .next-news {
            max-width: 45%;
        }
        
        .prev-news a, .next-news a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-medium);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .prev-news a:hover, .next-news a:hover {
            color: var(--primary-orange);
        }
        
        .next-news {
            text-align: right;
            margin-left: auto;
        }
        
        /* 返回列表按钮 */
        .back-to-list {
            text-align: center;
            margin-top: 30px;
        }
        
        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--dark-blue);
            color: white;
            padding: 14px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-back:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
 
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .detail-layout-container {
                flex-direction: column;
            }

            
            .news-detail {
                padding: 30px;
            }
            
            .news-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .news-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .prev-news, .next-news {
                max-width: 100%;
            }
            
            .next-news {
                text-align: left;
            }
            
            .news-detail {
                padding: 25px 20px;
            }
            
            .news-title {
                font-size: 24px;
            }
            
            .social-share {
                flex-wrap: wrap;
            }
			
        }
        
        @media (max-width: 480px) {
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .news-title {
                font-size: 22px;
            }

        }