 /* 新闻详情页面特定样式 */
        .news-detail-page {
            padding: 80px 0 60px;
            background-color: #f8f9fa;
        }
        
        .news-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* 主要内容区域 */
        .news-main {
            flex: 3;
            padding:20px 50px 30px 0px;
        }
        .newss{display:flex;
         }
        .news-title {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            line-height: 1.4;
            margin-bottom: 20px;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            padding-bottom: 25px;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
			
        }
        
        .publish-time {
            font-size: 16px;
            color: #999;
        }
        
        .share-actions {
            display: flex;
            align-items: center;
            gap: 15px;
			margin-left:20px;
        }
        
        .share-text {
            font-size: 14px;
            color: #666;
        }
        
        .wechat-share {
            position: relative;
            cursor: pointer;
        }
        
        .wechat-icon {
            width: 36px;
            height: 36px;
           
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .wechat-icon:hover {
            transform: scale(1.1);
        }
        
        .qrcode-tooltip {
            position: absolute;
            top: 50px;
            right: -60px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 100;
            width: 180px;
            text-align: center;
        }
        
        .qrcode-tooltip::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 70px;
            width: 16px;
            height: 16px;
            background: white;
            transform: rotate(45deg);
        }
        
        .qrcode-img {
            width: 120px;
            height: 120px;
            background: #f5f5f5;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 12px;
        }
        
        .qrcode-text {
            font-size: 12px;
            color: #666;
        }
        
        /* 正文内容样式 */
        .news-content {
            font-size: 18px;
            line-height: 1.8;
            color: #444;
        }
        .news-content *{text-wrap-mode: inherit !important;}
        .news-content h2 {
            font-size: 24px;
            font-weight: bold;
            color: #018eab;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e6f7fa;
        }
        
        .news-content h3 {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin: 30px 0 15px;
        }
        
        .news-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .news-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .news-content blockquote {
            border-left: 4px solid #018eab;
            background: #f8fdff;
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #555;
        }
        
        .highlight-text {
            background: linear-gradient(transparent 60%, #e6f7fa 40%);
            padding: 0 5px;
            font-weight: 500;
        }
        
        /* 边栏区域 */
        .news-sidebar {
            flex: 1;
        }
        
        .sidebar-sticky {
            position: sticky;
            top: 100px;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* 关注公众号组件 */
        .follow-widget {
            text-align: center;
        }
        
        .follow-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }
        
        .follow-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .follow-qrcode {
            flex: 1;
        }
        
        .qrcode-box {
            width: 120px;
            height: 120px;
            background: #f5f5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 12px;
            margin: 0 auto;
        }
        
        .follow-text {
            flex: 1;
            text-align: left;
        }
        
        .follow-text p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .follow-btn {
            display: inline-block;
            padding: 8px 15px;
            background: #07c160;
            color: white;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .follow-btn:hover {
            background: #06ae56;
            transform: translateY(-2px);
        }
        
        /* 热门动态组件 */
        .hot-news-widget .widget-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            position:relative;
            padding-bottom: 10px;
            
        }
        .hot-news-widget .widget-title:after{content:"";width:30px;height:3px;background:#008cab;position:absolute;bottom:0px;left:0px;}
        .hot-news-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hot-news-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .hot-news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .hot-news-link {
            display: block;
            font-size: 14px;
            color: #555;
            line-height: 1.5;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .hot-news-link:hover {
            color: #018eab;
            transform: translateX(5px);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .news-container {
                gap: 30px;
            }
            
            .news-main {
                padding: 40px;
            }
        }
        
        @media (max-width: 992px) {
            .news-container {
                flex-direction: column;
            }
            .newss{display:block;}
            .news-title {
                font-size: 32px;
            }
            
            .news-content {
                font-size: 16px;
            }
            
            .sidebar-sticky {
                position: static;
            }
            
            .follow-content {
                flex-direction: column;
                text-align: center;
            }
            
            .follow-text {
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .news-detail-page {
                padding: 60px 0 40px;
            }
            
            .news-main {
                padding: 30px 25px;
            }
            
            .news-title {
                font-size: 28px;
            }
            
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .share-actions {
                width: 100%;
            }
            
            .qrcode-tooltip {
                right: 0;
                left: 0;
                margin: 0 auto;
                width: 160px;
            }
            
            .qrcode-tooltip::before {
                right: 50%;
                margin-right: -8px;
            }
            
            .sidebar-widget {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .news-detail-page {
                padding: 40px 0 30px;
            }
            
            .news-main {
                padding: 25px 20px;
            }
            
            .news-title {
                font-size: 24px;
            }
            
            .news-content h2 {
                font-size: 20px;
            }
            
            .news-content h3 {
                font-size: 18px;
            }
            
            .widget-title {
                font-size: 18px;
            }
        }