 /* -----------------------内页主图------------------------ */
        .ny_banner {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: #000; /* 备用背景色 */
        }
        
        /* 背景图片 */
        .ny_banner__background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('');
            background-size: cover;
            background-position: center;
            filter: brightness(0.7); /* 使背景图片变暗 */
            z-index: 1;
        }
        
        /* 内容容器 */
        .ny_banner__content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: white;
        }
        
        /* 左侧标题 */
        .ny_banner__title {
            flex: 1;
            min-width: 300px;
            margin-bottom: 20px;
        }
        
        .ny_banner__title h1 {
            font-family: 'Arial', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* 右侧导航 */
        .ny_banner__navigation {
            flex: 1;
            min-width: 300px;
        }
        
        .ny_banner__nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 15px;
        }
        
        .ny_banner__nav-link {
            color: white;
            text-decoration: none;
            font-family: 'Arial', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .ny_banner__nav-link:hover {
            color: #f0f0f0;
            transform: translateY(-2px);
        }
        
        .ny_banner__nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: white;
            transition: width 0.3s ease;
        }
        
        .ny_banner__nav-link:hover::after {
            width: 100%;
        }
        
        /* 分隔符样式 */
        .ny_banner__separator {
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .ny_banner {
                min-height: 200px;
            }
            
            .ny_banner__content {
                flex-direction: column;
                text-align: center;
            }
            
            .ny_banner__title h1 {
                font-size: 2.5rem;
            }
            
            .ny_banner__nav-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .ny_banner__title h1 {
                font-size: 2rem;
            }
            
            .ny_banner__nav-link {
                font-size: 1rem;
            }
        }

 /* 内页子菜单-------------------------------------------- */
 
 
 
 .nav_a{ margin-top:50px;padding: 0 10%;}
.nav_a .typelist{ text-align:center;}
.nav_a .typelist li{ display:inline-block;margin-bottom:10px;}
.nav_a .typelist li .box{ margin:0 1px; padding:10px 5px; font-size:14px; color:#666666; width:160px; text-align:center; border: solid #d9d9d9 1px; display:inline-block; border-radius:5px;background:#ffffff;}
.nav_a .typelist li .box:hover{ background:#ff6600; color:#fff;  border: solid #ff6600 0px; transition: ease .3s;}
.nav_a .typelist li .on{ background:#ff6600; color:#fff;  border: solid #ff6600 0px; transition: ease .3s;}
 @media (max-width: 768px) {
 .nav_a .typelist li .box{ margin:0 1px; padding:8px 5px; font-size:12px; color:#000; width:150px; text-align:center; border: solid #6f6f6f 0px; display:inline-block; border-radius:5px;background:#efefef;}  
}
  /* 内页上一下页-------------------------------------------- */

       .next-container {
            width: 100%;
   
            padding: 30px;

        }
        
        .next-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .next-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .next-link {
            text-decoration: none;
            font-size: 16px;
        }
        
        .next-link.prev {
            color: #000;
        }
        
        .next-link.next {
            color: #000;
        }
        
        .next-button {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .next-button:hover {
            background-color: #a00;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .next-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .next-button {
                align-self: flex-end;
            }
        }
        
        @media (max-width: 480px) {
            .next-container {
                padding: 20px;
            }
            
            .next-button {
                width: 100%;
                text-align: center;
            }
        }
		
		
		        /* 按钮样式 */
        .down_b-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 40px;
            background-color: #ff6600;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 8px;
            line-height: 1;
        }
        
        .down_b-btn:hover {
            background-color: #333333;
            color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
        }
        
        .down_b-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(220, 53, 69, 0.2);
        }
        
        /* 图标样式 */
        .down_b-btn-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
            flex-shrink: 0;
        }
        
        /* 响应式调整 */
        @media (max-width: 480px) {
            .down_b-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .down_b-btn-icon {
                width: 18px;
                height: 18px;
            }
        }
/* -----------------------内页面包------------------------ */
        
        
        .bread-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
   
            margin: 0 auto;
            padding: 15px 0;
            position: relative; /* 为绝对定位子元素提供参考 */
        }
        
        .bread-crumb {
            color: #333333;
            font-size: 14px;
        }
        
        .bread-crumb a {
            color: #333333;
            text-decoration: none;
        }
        
        .bread-crumb a:hover {
            color: #000000;
        }
        
        .bread-separator {
            color: #cccccc;
            margin: 0 5px;
        }
        
        .bread-tab-menu {
            display: flex;
            gap: 30px;
            position: relative; /* 为下划线提供定位参考 */
        }
        
        .bread-tab-item {
            position: relative;
            padding: 8px 0;
            cursor: pointer;
            font-size: 15px;
        }
        
        .bread-tab-link {
            color: #666666;
            text-decoration: none;
        }
        
        .bread-tab-link.active {
            color: #ff6600;
        }
        
        /* 悬停时文字变红 */
        .bread-tab-item:hover .bread-tab-link {
            color: #ff6600;
        }
        
        .bread-tab-underline {
            position: absolute;
            bottom: -15px; /* 关键：下移1px，让红色线覆盖在灰色线上 */
            left: 50%; /* 从中间开始 */
            transform: translateX(-50%); /* 居中 */
            width: 0; /* 初始宽度为0 */
            height: 3px;
            background-color: #ff6600;
            transition: all 0.3s ease;
            z-index: 2; /* 确保红色线在灰色线上面 */
        }
        
        /* 激活状态下划线完全显示 */
        .bread-tab-item.active .bread-tab-underline {
            width: 100%;
            left: 0;
            transform: none;
        }
        
        /* 悬停时下划线从中间向两边展开 */
        .bread-tab-item:hover .bread-tab-underline {
            width: 100%;
            left: 0;
            transform: none;
        }
        
        .bread-divider {
            position: relative;
            width: 100%;
            margin: 0 auto;
            height: 1px;
            background-color: #eeeeee;
            z-index: 1; /* 灰色线在红色线下面 */
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .bread-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .bread-tab-menu {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                width: 100%;
            }
            
            .bread-tab-item {
                text-align: center;
                padding: 10px 5px;
                border: 1px solid #dddddd;
                border-radius: 4px;
                transition: all 0.3s ease;
            }
            
            .bread-tab-item:hover {
                background-color: #f9f9f9;
            }
            
            .bread-tab-underline {
                display: none; /* 移动端隐藏下划线 */
            }
            
            /* 移动端悬停效果 */
            .bread-tab-item:hover .bread-tab-link {
                color: #e74c3c;
            }
        }
/* -----------------------内页菜单------------------------ */


/* -----------------------内页关于------------------------ */
        /* 主容器 */
        .about-container {
            width: 100%;
            margin: 0 auto;
            padding: 50px 0;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
        }

        /* 内容区域 */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        /* 图片容器 */
        .about-image-container {
            width: 40%;
            padding-right:50px;
        }

        /* 图片样式 */
        .about-image {
            width: 100%;
            aspect-ratio-: 5/4;
            object-fit: cover;
            display: block;
        }

        /* 文本容器 */
        .about-text-container {
            width: 60%;
        }

        /* 标题样式 */
        .about-title {
            color: green;
			  color: #333333;
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        /* 分隔线样式 */
        .about-divider {
            height: 1px;
            background-color: #ccc;
            margin-bottom: 15px;
            width: 100%;
        }

        /* 描述文本样式 */
        .about-description {
            color: #333333;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* 移动端响应式样式 */
        @media (max-width: 768px) {
            .about-container {
                padding: 15px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image-container, 
            .about-text-container {
                width: 100%;
                padding-right: 0;
            }
            
            .about-image-container {
                margin-bottom: 20px;
            }
            
            .about-title {
                font-size: 1.5rem;
            }
        }
/* -----------------------内页全屏单页------------------------ */

        /* 全屏设置，让容器占满整个视口 */
       .abouttxt - container {
            width: 100vw;
            height: 100vh;
            display: flex;
            justify - content: center;
            align - items: center;
        }

        /* 文字样式设置，使用clamp函数实现字体大小的响应式 */
       .abouttxt - text {
            font - family: Arial, sans - serif;
            font - size: clamp(14px, 2vw, 24px);
            text - align: center;
            padding: 20px;
            box - sizing: border - box;
        }

/* -----------------------内页公司图片------------------------ */
		
       @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }        
        .honorlist-container {
            margin: 0 auto;
            padding: 0px 0;
        }        
        .honorlist-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .honorlist-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 0px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .honorlist-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .honorlist-img-container {
            position: relative;
            width: 100%;
            height-------------: 250px;
            overflow--------------: hidden;
            cursor: pointer;
        }
        
        .honorlist-img {
            width: 100%;
            height-: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .honorlist-item:hover .honorlist-img {
            transform: scale(1.05);
        }
        
        .honorlist-img-container::after {
            content: "\f00e";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            color: white;
            font-size: 2.5rem;
            opacity: 0;
            text-shadow: 0 0 15px rgba(0,0,0,0.7);
            transition: all 0.3s ease;
            z-index: 2;
            pointer-events: none; /* 允许点击穿透 */
        }
        
        .honorlist-item:hover .honorlist-img-container::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .honorlist-content {
            padding: 20px;
            text-align: center;
        }
        
        .honorlist-title {
            font-size: 1rem;
			font-weight:400;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }
        
        .honorlist-title a {
            color: #333333;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        
        .honorlist-title a:hover {
            color: #000000;
        }
        
        .honorlist-btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(to right, #0a4387, #0a4387);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        
        .honorlist-btn:hover {
            transform: translateY(-3px);
			color: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(to right, #0a4387, #0a4387);
        }
        
        /* Lightbox Styles */
        .honorlist-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }
        
        .honorlist-lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .honorlist-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.8);
            transition: transform 0.5s ease;
        }
        
        .honorlist-lightbox.active .honorlist-lightbox-content {
            transform: scale(1);
        }
        
        .honorlist-lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 0px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        }
        
        .honorlist-lightbox-close {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 45px;
            height: 45px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333333;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 74, 0.4);
        }
        
        .honorlist-lightbox-close:hover {
            background: #ffffff;
            transform: rotate(90deg);
        }
        
        /* 图片信息 */
        .honorlist-lightbox-info {
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            padding: 15px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 0 0 10px 10px;
        }
        
        /* 导航按钮 */
        .honorlist-lightbox-nav {
            position: absolute;

            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .honorlist-lightbox-prev,
        .honorlist-lightbox-next {
            background: rgba(255, 255, 255, 0.9);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333333;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }
        
        .honorlist-lightbox-prev:hover,
        .honorlist-lightbox-next:hover {
			color: #000000;
            background: rgba(255, 255, 255, 0.99);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .honorlist-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .honorlist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .honorlist-header h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 600px) {
            .honorlist-grid {
                grid-template-columns: 1fr;
            }
            
            .honorlist-header h1 {
                font-size: 2.2rem;
            }
            
            .honorlist-header p {
                font-size: 1rem;
            }
            
            .honorlist-lightbox-close {
                top: -60px;
                right: 0;
            }
        }
        
        .honorlist-footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }
        
        
        @keyframes loader {
            to {
                transform: translateY(-15px);
                background: #feb47b;
            }
        }
        
        /* 所有可点击元素添加手形光标 */
        a, .honorlist-btn, .honorlist-lightbox-close, 
        .honorlist-img-container, .honorlist-lightbox-prev, 
        .honorlist-lightbox-next {
            cursor: pointer;
        } 

/* -----------------------内页新闻列表------------------------ */


        .news-container {
            padding:50px 0 0px 0;;
            margin: 0 auto;
        }
        
        .news-title {
            text-align: center;
            margin-bottom: 30px;
            color: #ff6600;
            font-size: 2.2rem;
            font-weight: 600;
        }
        
        /* 新闻列表样式 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .news-item {
            display: flex;
            background-color: #fff;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            background-color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        /* 图片区域样式 */
        .news-image {
            flex: 0 0 30%;
            position: relative;
            overflow: hidden;
        }
        
        .news-image-link {
            display: block;
            width: 100%;
            height: 0;
            padding-bottom: 60%; /* 5:3比例 */
            position: relative;
            overflow: hidden;
        }
        
        .news-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .news-image-link:hover img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        /* 内容区域样式 */
        .news-content {
            flex: 1;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }
        
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .news-title-link {
            flex: 1;
            font-size: 1.2em;
            font-weight: 500;
            color: #66666;
            text-decoration: none;
            transition: color 0.2s;
            line-height: 1.3;
        }
        
        .news-title-link:hover {
            color: #ff6600;
        }
        
        .news-date {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-left: 15px;
            white-space: nowrap;
        }
        
        .news-date i {
            margin-right: 5px;
            color: #95a5a6;
        }
        
        .news-description {
            color: #5d6d7e;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .news-button {
            align-self: flex-start;
            padding: 10px 20px;
            background-color: transparent;
            border: 1px solid #bdc3c7;
            color: #ff6600;
            text-decoration: none;
            border-radius: 0px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .news-button i {
            margin-left: 8px;
            font-size: 0.8rem;
        }
        
        .news-button:hover {
            background-color: #ff6600;
            border-color: #ff6600;
            color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
            }
            
            .news-image {
                flex: none;
            }
            
            .news-image-link {
                padding-bottom: 56.25%; /* 16:9比例，在移动端更合适 */
            }
            
            .news-header {
                flex-direction: column;
            }
            
            .news-date {
                margin-left: 0;
                margin-top: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .news-content {
                padding: 20px;
            }
            
            .news-title-link {
                font-size: 1.2rem;
            }
        }




/* -----------------------内页新闻内容------------------------ */
        .newsv-container {
            margin: 0 auto;
            background: white;
            overflow: hidden;
        }
        
        .newsv-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px 0;
        }
        
        .newsv-main {
            flex: 0 0 75%;
            padding-right: 30px;
            position: relative;
        }
        
        .newsv-main::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 1px;
            background-color: #eaeaea;
        }
        
        .newsv-sidebar {
            flex: 0 0 25%;
            padding-left: 30px;
        }
        
        /* 标题样式 */
        .newsv-title {
            font-size: 20px;
            font-weight: 500;
            text-align: center;
            color: #222222;
			margin-top: 30px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        /* 横线样式 */
        .newsv-divider {
            height: 1px;
            background-color: #dddddd;
            margin: 20px 0;
        }
        
        /* 元信息样式 */
        .newsv-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #777;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .newsv-meta-item {
            display: flex;
            align-items: center;
            margin: 0 15px;
        }
        
        .newsv-meta-icon {
            margin-right: 8px;
            font-size: 16px;
        }
        
        /* 内容样式 */
        .newsv-body {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }
        
        .newsv-body p {
            margin-bottom: 0px;
        }
		
        
        /* 导航样式 */
        .newsv-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 0px;
        }
        
        .newsv-nav-links {
            flex: 1;
        }
        
        .newsv-nav-item {
            margin-bottom: 5px;
        }
        
        .newsv-nav-label {
            display: inline-block;
            padding: 6px 20px;
            border: 1px dashed #bbb;
            border-radius: 4px;
        color: #666666;
            font-size: 14px;
            margin-right: 10px;
        }
        
        .newsv-nav-link a{
            color: #666666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .newsv-nav-link:hover {
            color: #ff6600;
            text-decoration: underline;
        }
        
        .newsv-return-btn {
            display: inline-block;
            background-color: #eeeeee;
            color: #222222;
            padding: 12px 25px;
			height:50px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
     
        }
        
        .newsv-return-btn:hover {
			color: #ffffff;
            background-color: #ff6600;
            transform: translateY(-1px);
        }
        
        /* 侧边栏样式 */
        .newsv-sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .newsv-sidebar-title {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        
        .newsv-sidebar-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background-color: #ff6600;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .newsv-sidebar-icon i {
            color: white;
            font-size: 14px;
        }
        
        .newsv-sidebar-return {
            color: #777;
            text-decoration: none;
            font-size: 14px;
        }
        
        .newsv-sidebar-return:hover {
            color: #ff6600;
        }
        
        .newsv-related-item {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #eaeaea;
        }
        
        .newsv-related-item:last-child {
            border-bottom: none;
        }
        
        .newsv-related-img {
            width: 100px;
            height: 70px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .newsv-related-content {
            flex: 1;
        }
        
        .newsv-related-title {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .newsv-related-title a {
            color: #666666;
            text-decoration: none;
        }
        
        .newsv-related-title a:hover {
            color: #ff3300;
        }
        
        .newsv-related-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 13px;
        }
        
        .newsv-related-meta i {
            margin-right: 5px;
            font-size: 12px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .newsv-main, .newsv-sidebar {
                flex: 0 0 100%;
                padding: 0;
            }
            
            .newsv-main::after {
                display: none;
            }
            
            .newsv-sidebar {
                border-top: 1px solid #eaeaea;
                padding-top: 30px;
                margin-top: 30px;
            }
            
            .newsv-navigation {
                flex-direction: column;
            }
            
            .newsv-return-btn {
                margin-top: 15px;
                align-self: flex-start;
            }
        }
        
        @media (max-width: 576px) {
            .newsv-content {
                padding: 20px;
            }
            
			
            .newsv-title {
                font-size: 24px;
            }
            
            .newsv-meta {
                flex-direction: column;
                align-items: center;
            }
            
            .newsv-meta-item {
                margin: 5px 0;
            }
            
            .newsv-related-item {
                flex-direction: column;
            }
            
            .newsv-related-img {
                width: 100%;
                height: 150px;
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
/* -----------------------联系我们------------------------ */
