 /* -----------------------内页主图------------------------ */
        .ny_banner {
            width: 100%;
            min-height: 350px;
            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;
            }
        }
/* -----------------------内页面包------------------------ */
/* 面包屑容器 */
        .bread-container {
            background-color: #f9f9f9;
            padding: 16px 24px;
            margin-bottom: 30px;
        }
        
        /* 面包屑内部容器 */
        .bread-inner { font-size: 14px;color: #999999;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        
        /* 面包屑项目 */
        .bread-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #6c757d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .bread-item:hover {
            color: #ff3300;
        }
        
        /* 面包屑分隔符 */
        .bread-separator {
            margin: 0 12px;
            color: #adb5bd;
            font-size: 12px;
        }
        
        /* 当前页面包屑 */
        .bread-current {
            font-weight: 600;
            color: #495057;
        }
        
        /* 面包屑图标 */
        .bread-icon {
            margin-right: 8px;
            font-size: 14px;
            width: 20px;
            text-align: center;
        }
        
        /* 响应式设计 - 平板端 */
        @media (max-width: 992px) {
            .bread-container {
                padding: 14px 20px;
            }
            
            .bread-item {
                font-size: 14px;
            }
            
            .bread-icon {
                font-size: 15px;
                width: 18px;
            }
            
            .bread-separator {
                margin: 0 10px;
                font-size: 11px;
            }
        }
        
        /* 响应式设计 - 移动端 */
        @media (max-width: 768px) {
            .bread-container {
                padding: 12px 16px;
                border-radius: 6px;
            }
            
            .bread-inner {
                justify-content: flex-start;
            }
            
            .bread-item {
                font-size: 13px;
            }
            
            .bread-icon {
                font-size: 14px;
                width: 16px;
            }
            
            .bread-separator {
                margin: 0 8px;
                font-size: 10px;
            }
        }
        
        /* 响应式设计 - 小屏幕移动端 */
        @media (max-width: 480px) {
            .bread-container {
                padding: 10px 12px;
            }
            
            .bread-item {
                font-size: 12px;
            }
            
            .bread-icon {
                font-size: 13px;
                width: 15px;
            }
            
            .bread-separator {
                margin: 0 6px;
            }
        }
/* -----------------------内页菜单------------------------ */


/* -----------------------内页关于------------------------ */
        
        /* 关于我们容器 */
        .about-container {
			  padding: 40px 0;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            overflow: hidden;
        }
        
        /* 关于我们内容区域 */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 0;
        }
        
        /* 左侧图片区域 */
        .about-left {
            width: 40%;
            padding-right: 40px;
        }
        
        .about-image {
            width: 100%;
            height: 0;
            padding-bottom: 75%; /* 4:3 比例 */
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        /* 右侧内容区域 */
        .about-right {
            width: 60%;
            padding-left: 20px;
        }
        
        .about-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(to right, #ff3300, #ff3300);
            border-radius:2px;
        }
        
        .about-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #ddd, transparent);
            margin: 25px 0;
        }
        
        .about-description {
            font-size: 1rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 2;
        }
        
        /* 特性列表 */
        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .about-feature {
            flex: 1 1 calc(50% - 20px);
            display: flex;
            align-items: flex-start;
            gap: 25px;
        }
        
        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff3300, #ff0000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .about-feature-text h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .about-feature-text p {
            font-size: 0.95rem;
            color: #666;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                padding: 30px;
            }
            
            .about-left {
                padding-right: 30px;
            }
            
            .about-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
                padding: 25px;
            }
            
            .about-left, .about-right {
                width: 100%;
                padding: 0;
            }
            
            .about-left {
                margin-bottom: 30px;
            }
            
            .about-title {
                font-size: 2rem;
            }
            
            .about-feature {
                flex: 1 1 100%;
            }
        }
        
        @media (max-width: 576px) {
            .about-content {
                padding: 20px;
            }
            
            .about-title {
                font-size: 1.8rem;
            }
            
            .about-features {
                gap: 15px;
            }
        }

/* -----------------------内页证书------------------------ */




/* -----------------------内页公司图片------------------------ */
		
       @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 {
            margin: 0 auto;
        }
        
        .news-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 2.2rem;
            font-weight: 600;
        }
        
        /* 新闻列表样式 */
        .news-list {
            list-style: none;
            background: white;
            border-radius: 0px;
            box-shadow-: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .news-item {
            border-bottom: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }
        
        .news-item:last-child {
            border-bottom-: none;
        }
        
        .news-item-link {
            display: flex;
            align-items: center;
            padding: 50px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        /* 左侧日期样式 */
        .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 100px;
            margin-right: 100px;
        }
        
        .news-day {
            font-size: 2rem;
            font-weight: 500;
            color: #666666;
            line-height: 1.2;
        }
        
        .news-year {
            font-size: 0.9rem;
            color: #95a5a6;
            margin-top: 5px;
        }
        
        /* 中间内容样式 */
        .news-content {
            flex: 1;
            padding-right: 100px;
        }
        
        .news-title-text {
            font-size: 16px;
            font-weight: 500;
            color: #333333;
            margin-bottom: 8px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .news-description {
            color: #999999;
            font-size: 14px;
            line-height: 1.8;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* 右侧按钮样式 */
        .news-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid #bdc3c7;
            border-radius: 50%;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .news-button i {
            color: #7f8c8d;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        /* 悬停效果 */
        .news-item:hover {
            background-color: #f8f9fa;
        }
        
        .news-item:hover .news-title-text {
            color: #ff3300;
        }
        
        .news-item:hover .news-button {
            background-color: #ff3300;
            border-color: #ff3300;
        }
        
        .news-item:hover .news-button i {
            color: white;
        }
        
        /* 平板端适配 */
        @media (max-width: 992px) {
            .news-item-link {
                padding: 18px 15px;
            }
            
            .news-date {
                min-width: 70px;
                margin-right: 20px;
            }
            
            .news-day {
                font-size: 1.4rem;
            }
            
            .news-title-text {
                font-size: 1.2rem;
            }
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .news-item-link {
                flex-direction: column;
                align-items: flex-start;
                padding: 18px 15px;
            }
            
            .news-date {
                flex-direction: row;
                justify-content: space-between;
                width: 100%;
                margin-right: 0;
                margin-bottom: 12px;
				display:none
            }
            
            .news-day {
                font-size: 1.1rem;
            }
            
            .news-year {
                margin-top: 0;
                font-size: 1rem;
            }
            
            .news-content {
                padding-right: 0;
                margin-bottom: 15px;
                width: 100%;
            }
            
            .news-title-text {
                font-size: 1.2rem;
                margin-bottom: 8px;
            }
            
            .news-description {
                -webkit-line-clamp: 2;
                margin-bottom: 15px;
            }
            
            .news-button-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }
            
            .news-date-mobile {
                display: flex;
                font-size: 0.95rem;
                color: #95a5a6;
            }
            
            .news-button {
                width: 40px;
                height: 40px;
            }
        }
        
        /* 小屏幕手机适配 */
        @media (max-width: 480px) {
            .news-title {
                font-size: 1.8rem;
            }
            
            .news-item-link {
                padding: 15px 12px;
            }
            
            .news-title-text {
                font-size: 1.1rem;
            }
            
            .news-description {
                font-size: 0.95rem;
            }
        }

/* -----------------------内页新闻内容------------------------ */
        .newsv-container {
            margin: 0 auto;
            background: white;
            overflow: hidden;
        }
        
        .newsv-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px 0;
        }
        
        .newsv-main {
            flex: 0 0 70%;
            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 30%;
            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: 40px;
        }
        
        .newsv-nav-links {
            flex: 1;
        }
        
        .newsv-nav-item {
            margin-bottom: 15px;
        }
        
        .newsv-nav-label {
            display: inline-block;
            padding: 6px 20px;
            border: 1px dashed #bbb;
            border-radius: 4px;
            color: #777;
            font-size: 14px;
            margin-right: 10px;
        }
        
        .newsv-nav-link a{
            color: #666666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .newsv-nav-link:hover {
            color: #ff3300;
            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: #ff3300;
            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: #ff3300;
            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: #ff3300;
        }
        
        .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;
            }
        }
/* -----------------------内页伙伴------------------------ */

/* -----------------------内页视频------------------------ */
        .vodlist-container {
            margin: 0 auto;
        }


        .vodlist-grid {
			 margin: 50px 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .vodlist-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .vodlist-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .vodlist-video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 宽高比 */
            overflow: hidden;
        }

        .vodlist-video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter 0.3s ease;
        }

        .vodlist-item:hover .vodlist-video-thumbnail {
            filter: brightness(0.9);
        }

        .vodlist-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff3300;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .vodlist-item:hover .vodlist-play-button {
            background: #ff3300;
            color: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .vodlist-video-info {
            padding: 20px;
        }

        .vodlist-video-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .vodlist-video-duration {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .vodlist-video-duration i {
            margin-right: 5px;
        }

        /* 视频播放模态框样式 */
        .vodlist-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .vodlist-modal.active {
            display: flex;
            opacity: 1;
        }

        .vodlist-modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .vodlist-modal.active .vodlist-modal-content {
            transform: scale(1);
        }

        .vodlist-modal-video {
            width: 100%;
            height: auto;
            display: block;
        }

        .vodlist-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: background 0.3s ease;
            z-index: 10;
        }

        .vodlist-modal-close:hover {
            background: rgba(0, 0, 0, 0.9);
        }

        .vodlist-modal-info {
            padding: 20px;
        }

        .vodlist-modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .vodlist-modal-description {
            color: #7f8c8d;
            line-height: 1.6;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .vodlist-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .vodlist-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .vodlist-header h1 {
                font-size: 2rem;
            }
            
            .vodlist-modal-content {
                width: 95%;
            }
        }

         