
/* ————————————————————————————内页新闻内容—————————————————————————— */  

        .news_view {
    
            margin: 0 auto;
            background: white;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        /* 主内容区 */
        .news_view__container {
            display: flex;
            padding: 2%;

        }
        
        /* 左侧区域 */
        .news_view__left {
            flex: 0 0 65%;
        }
        
        /* 右侧区域 */
        .news_view__right {
            flex: 0 0 35%;
			margin-left:2%; 
			margin-right:2%;
			background: #f7f9fc;
			border-left: 1px solid #dddddd;
        }
        
        /* 标题样式 */
        .news_view__title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #000000;
            margin-top: 30px;
			margin-bottom: 20px;
            line-height: 1.3;
        }
        
        /* 元信息样式 */
        .news_view__meta {
            text-align: center;
            color: #718096;
            font-size: 14px;
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            gap: 25px;
        }
        
        .news_view__meta i {
            margin-right: 6px;
        }
        
        /* 分隔线 */
        .news_view__divider {
            height: 1px;
            background: #e2e8f0;
            margin: 25px 0;
        }
        
        /* 内容样式 */
        .news_view__content {
            font-size: 16px;
            line-height: 1.8;
          
        }
        
        .news_view__content p {
            margin-bottom: 20px;
          
        }
        
        /* 导航区 */
        .news_view__nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
        }
        
        .news_view__prev-next a {
            display: block;
            color: #4a5568;
            text-decoration: none;
            margin: 8px 0;
            transition: color 0.3s;
        }
        
        .news_view__prev-next a:hover {
            color: #015bac;
        }
        
        /* 返回按钮 */
        .news_view__back-btn {
            padding: 12px 25px;
            background: transparent;
            border: 1px solid #cbd5e0;
            color: #ffffff;
            border-radius: 6px;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }
        

        .news_view__back-btn:hover {
            color: white;
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 右侧标题 */
        .news_view__related-title {
            font-size: 24px;
            font-weight: 700;
            color: #222222;
			 margin: 20px;
             padding-bottom: 20px;
            border-bottom: 2px solid #015bac;
        }
        
        /* 相关新闻容器 */
        .news_view__related-news {
            background: #f7f9fc;
            border-radius: 0px;
            padding: 20px;
            box-shadow-: inset 0 0 10px rgba(0, 0, 0, 0.03);
        }
        
        /* 相关新闻项 */
        .news_view__related-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px dashed #e2e8f0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .news_view__related-item:last-child {
            border-bottom: none;
        }
        
        .news_view__related-item:hover {
            transform: translateX(5px);
        }
        
        /* 图片容器 */
        .news_view__related-img {
            flex: 0 0 30%;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }
        
        .news_view__related-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            aspect-ratio: 5/3;
        }
        
        .news_view__related-item:hover .news_view__related-img img {
            transform: scale(1.05);
        }
        
        /* 文本内容 */
        .news_view__related-content {
            flex: 1;
        }
        
        .news_view__related-item-title {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 8px;
			padding-right:15px;
            color: #2d3748;
            transition: color 0.3s;
        }
        
        .news_view__related-item:hover .news_view__related-item-title {
            color: #015bac;
        }
        
        .news_view__related-item-time {
            display: flex;
            align-items: center;
            color: #718096;
            font-size: 13px;
        }
        
        .news_view__related-item-time i {
            margin-right: 6px;
            font-size: 12px;
        }
        
        /* 移动端适配 */
        @media (max-width: 992px) {
            .news_view__container {
                flex-direction: column;
                padding: 0px;
            }
            
            .news_view__left,
            .news_view__right {
                flex: 0 0 100%;
                width: 100%;
            }
            
            .news_view__title {
                font-size: 26px;
            }
            
            .news_view__related-title {
                margin-top: 30px;
            }
            
            .news_view__meta {
                flex-direction: column;
                gap: 8px;
            }
        }
        
        @media (max-width: 768px) {
			
			    .news_view__right {
            flex: 0 0 35%;
			margin-left:0%; 
			margin-right:2%;
			background: #ffffff;
			border-left: 0px solid #dddddd;
        }
			
            .news_view__nav {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .news_view__back-btn {
                width: 100%;
                margin-top: 10px;
            }
            
            .news_view__title {
                font-size: 18px;	padding-right:0;
            }
            
            .news_view__content {
                font-size: 16px;
            }
			
			
			 .news_view__related-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
            aspect-ratio: 5/5;
        }
			
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .news_view__container {
            animation: fadeIn 0.6s ease-out;
        }
        
        /* 特色样式 */
        .news_view__highlight {
            background: linear-gradient(transparent 60%, rgba(229, 62, 62, 0.15) 40%);
        }


