 /* -----------------------内页主图------------------------ */
        .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.01); /* 使背景图片变暗 */
            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;
			color: #cc0000;
            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;
				display:none
            }
            
            .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;display:none
            }
			
            
            .ny_banner__nav-link {
                font-size: 1rem;
            }
        }
/* -----------------------内页面包------------------------ */
        
        
        .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: #cc0000;
        }
        
        /* 悬停时文字变红 */
        .bread-tab-item:hover .bread-tab-link {
            color: #cc0000;
        }
        
        .bread-tab-underline {
            position: absolute;
            bottom: -15px; /* 关键：下移1px，让红色线覆盖在灰色线上 */
            left: 50%; /* 从中间开始 */
            transform: translateX(-50%); /* 居中 */
            width: 0; /* 初始宽度为0 */
            height: 3px;
            background-color: #cc0000;
            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: #cc0000;
            }
        }
/* -----------------------内页菜单------------------------ */


/* -----------------------内页关于------------------------ */
         /* about 容器样式 */
        .about-container {
            margin: 0 auto;
            background-color: white;
            border-radius: 0px;
            box-shadow-: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        /* 上部分样式 */
        .about-top {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 0;
            border-bottom: 1px solid #eee;
        }
        
        /* 左部分样式 - 图片区域 */
        .about-left {
            flex: 0 0 45%;
            padding-right: 10px;
        }
        
        .about-image-container {
            position: relative;
            width: 100%;
            padding-top: 90%; /* 5:4 比例 (4/5 = 0.8 = 80%) */
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .about-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover {
            transform: scale(1.03);
        }
        
        /* 右部分样式 - 内容区域 */
        .about-right {
            flex: 0 0 55%;
            padding-left: 30px;
        }
        
        /* 英文小标题样式 */
        .about-subtitle {
            color: #cc0000;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        /* 灰色横线样式 */
        .about-line {
            width: 130px;
            height: 1px;
            background-color: #ccc;
            margin-bottom: 10px;
        }
        
        /* 公司名称样式 */
        .about-company-name {
            font-size: 32px;
            font-weight: 500;
            color: #222;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        /* 公司简介样式 */
        .about-description {
            color: #555;
            font-size: 16px;
            line-height: 2;
        }
        
        /* 下部分样式 */
        .about-bottom {
            padding: 40px;
            background-color: #f9f9f9;
        }
        
        .about-bottom-content {
            color: #444;
            font-size: 16px;
            line-height: 2;
            max-width----: 900px;
            margin: 0 auto;
        }
        
        /* 响应式设计 */
        /* 平板设备 */
        @media (max-width: 992px) {
            .about-top {
                padding: 30px;
            }
            
            .about-left, .about-right {
                flex: 0 0 100%;
                padding: 0;
            }
            
            .about-left {
                margin-bottom: 30px;
            }
            
            .about-image-container {
                padding-top: 75%; /* 调整为4:3比例适应平板 */
            }
            
            .about-bottom {
                padding: 30px;
            }
        }
        
        /* 移动设备 */
        @media (max-width: 768px) {

            
            .about-top, .about-bottom {
                padding: 20px;
            }
            
            .about-company-name {
                font-size: 26px;
            }
            
            .about-description, .about-bottom-content {
                font-size: 15px;
            }
            
            .about-image-container {
                padding-top: 80%; /* 恢复5:4比例 */
            }
        }
        
        /* 小屏幕移动设备 */
        @media (max-width: 480px) {
            .about-top, .about-bottom {
                padding: 15px;
            }
            
            .about-company-name {
                font-size: 22px;
            }
            
            .about-subtitle {
                font-size: 13px;
            }
        }
        
        /* 装饰元素 */
        .about-decoration {
            text-align: center;
            margin-top: 20px;
            color: #999;
            font-size: 14px;
        }
        
        .about-decoration i {
            margin: 0 5px;
        }
 
 /* -----------------------内页公司数据------------------------ */
 
 
         
        .iyoushi-container {
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 主容器 */
        .iyoushi-stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 0 -10px;
        }
        
        /* 每个统计项 */
        .iyoushi-stat-item {
            flex: 1 1 22%;
            margin: 15px 10px;
            padding: 25px 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            min-height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .iyoushi-stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* 左侧内容 */
        .iyoushi-stat-left {
            flex: 1;
        }
        
        /* 数字部分 */
        .iyoushi-stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #cc0000;
            line-height: 1;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        
        .iyoushi-stat-unit {
            font-size: 20px;
            font-weight: 500;
            color: #7f8c8d;
            position: absolute;
            bottom: 5px;
            right: -30px;
        }
        
        /* 标题 */
        .iyoushi-stat-title {
            font-size: 18px;
            color: #7f8c8d;
            font-weight: 600;
			text-transform: Capitalize;
        }
        
        /* 图标部分 */
        .iyoushi-stat-icon {
            position: absolute;
            top: 25px;
            right: 20px;
            color: #bdc3c7;
            font-size: 32px;
            opacity: 0.8;
        }
        
        /* 平板设备适配 */
        @media (max-width: 992px) {
            .iyoushi-stat-item {
                flex: 1 1 45%;
            }
            
            .iyoushi-stat-number {
                font-size: 42px;
            }
            
            .iyoushi-stat-unit {
                font-size: 18px;
            }
        }
        
        /* 移动设备适配 */
        @media (max-width: 768px) {
            .iyoushi-stats-container {
                margin: 0;
            }
            
            .iyoushi-stat-item {
                flex: 1 1 100%;
                max-width: 100%;
                margin: 10px 0;
            }
            
            .iyoushi-stat-number {
                font-size: 40px;
            }
            
            .iyoushi-stat-unit {
                font-size: 16px;
                right: -25px;
            }
            
            body {
                padding: 10px;
            }
        }
        
        /* 移动端两列布局 */
        @media (max-width: 576px) {
            .iyoushi-stats-container {
                display: flex;
                flex-wrap: wrap;
            }
            
            .iyoushi-stat-item {
                flex: 1 1 48%;
                margin: 1%;
                min-height: 150px;
                padding: 20px 15px;
            }
            
            .iyoushi-stat-number {
                font-size: 36px;
            }
            
            .iyoushi-stat-unit {
                font-size: 14px;
                right: -20px;
            }
            
            .iyoushi-stat-title {
                font-size: 16px;
            }
            
            .iyoushi-stat-icon {
                font-size: 28px;
                top: 20px;
                right: 15px;
            }
        }
        
        /* 超小屏幕适配 */
        @media (max-width: 380px) {
            .iyoushi-stat-item {
                flex: 1 1 100%;
            }
        }
 /* -----------------------内页图片------------------------ */        
         @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }        
        .piclist-container {
            margin: 0 auto;
            padding: 0px 0;
        }        
        .piclist-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .piclist-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);
        }
        
        .piclist-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .piclist-img-container {
            position: relative;
            width: 100%;
            height: 230px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .piclist-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .piclist-item:hover .piclist-img {
            transform: scale(1.05);
        }
        
        .piclist-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; /* 允许点击穿透 */
        }
        
        .piclist-item:hover .piclist-img-container::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .piclist-content {
            padding: 20px;
            text-align: center;
        }
        
        .piclist-title {
            font-size: 1rem;
			font-weight:400;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }
        
        .piclist-title a {
            color: #333333;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        
        .piclist-title a:hover {
            color: #000000;
        }
        
        .piclist-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;
        }
        
        .piclist-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 */
        .piclist-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;
        }
        
        .piclist-lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .piclist-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.8);
            transition: transform 0.5s ease;
        }
        
        .piclist-lightbox.active .piclist-lightbox-content {
            transform: scale(1);
        }
        
        .piclist-lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 0px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        }
        
        .piclist-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);
        }
        
        .piclist-lightbox-close:hover {
            background: #ffffff;
            transform: rotate(90deg);
        }
        
        /* 图片信息 */
        .piclist-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;
        }
        
        /* 导航按钮 */
        .piclist-lightbox-nav {
            position: absolute;

            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .piclist-lightbox-prev,
        .piclist-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;
        }
        
        .piclist-lightbox-prev:hover,
        .piclist-lightbox-next:hover {
			color: #000000;
            background: rgba(255, 255, 255, 0.99);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .piclist-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .piclist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .piclist-header h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 600px) {
            .piclist-grid {
                grid-template-columns: 1fr;
            }
            
            .piclist-header h1 {
                font-size: 2.2rem;
            }
            
            .piclist-header p {
                font-size: 1rem;
            }
            
            .piclist-lightbox-close {
                top: -60px;
                right: 0;
            }
        }
        
        .piclist-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, .piclist-btn, .piclist-lightbox-close, 
        .piclist-img-container, .piclist-lightbox-prev, 
        .piclist-lightbox-next {
            cursor: pointer;
        } 
 
 
/* -----------------------内页证书------------------------ */ 
        @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 {
            width: 100%;
            margin: 0 auto;
			padding:50px 0 0px 0
        }
        
        
        /* 新闻项样式 */
        .news-item {
            display: flex;
            background-color: #f5f7fa;
            border-radius: 0px;
            overflow: hidden;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .news-item:hover {
            background-color: #f5f7fa;
            color: #999999;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 左侧图片区域 */
        .news-image {
            width: 32%;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .news-image img {
            width: 100%;
            overflow: hidden;
			 border-radius: 2px;
			 aspect-ratio: 5/2.8;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.08);
        }
        
        /* 右侧内容区域 */
        .news-content {
            width: 68%;
            padding: 50px;
            display: flex;
            flex-direction: column;
        }
        
        /* 标题样式 */
        .news-title-row {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .news-item:hover .news-title-row {
            color: #cc0000;
        }
        
        /* 横线分隔线 */
        .news-line {
            height: 1px;
            background: linear-gradient(to right, #ededed 30%, #ededed 30%);
            margin-bottom: 15px;
        }
        
        .news-item:hover .news-line {
            background: linear-gradient(to right, #cc0000 30%, #ededed 30%);
        }
        
        /* 日期区域 */
        .news-date {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
			width:130px;
            border: 1px dashed #bdc3c7;
            border-radius: 50px;
            margin-bottom: 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .news-item:hover .news-date {
            border-color: #cc0000;
            color: #cc0000;
        }
        
        .news-date i {
            margin-right: 8px;
            color: #cc0000;
            transition: color 0.3s ease;
        }
        
        .news-item:hover .news-date i {
            color: #cc0000;
        }
        
        /* 描述文本 */
        .news-description {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #666666;
            transition: color 0.3s ease;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .news-item:hover .news-description {
            color: rgba(0, 0, 0, 0.9);
        }
        
        /* 了解更多链接 */
        .news-readmore {
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .news-readmore-line {
            width: 40px;
            height: 2px;
            background-color: #cc0000;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        
        .news-item:hover .news-readmore-line {
            background-color: #cc0000;
        }
        
        .news-readmore-text {
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .news-item:hover .news-readmore-text {
            color: #cc0000;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
            }
            
            .news-image {
                width: 100%;
                height: 200px;
            }
            
            .news-content {
                width: 100%;
                padding: 15px;
            }
            
            .news-title-row {
                font-size: 18px;
            }
            
            .news-description {
                -webkit-line-clamp: 2;
            }
        }
        
        @media (max-width: 480px) {

            
            .news-title {
                font-size: 24px;
            }
            
            .news-image {
                height: 180px;
            }
            
            .news-content {
                padding: 12px;
            }
            
            .news-title-row {
                font-size: 17px;
            }
            
            .news-description {
                font-size: 14px;
            }
        }
        
        /* 平板设备优化 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .news-content {
                padding: 15px;
            }
            
            .news-title-row {
                font-size: 19px;
            }
            
            .news-description {
                font-size: 15px;
            }
        }
/* -----------------------内页新闻详情------------------------ */ 
        .newsv-container {
            margin: 0 auto;
            padding: 50px 0;
            font-family: "Microsoft Yahei", sans-serif;
        }
        .newsv-title {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
        }
        .newsv-title::after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            background: #cc0000;
            margin: 8px auto 0;
        }
        .newsv-date-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #666;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        .newsv-back-link {
            color: #cc0000;
            text-decoration: none;
        }
        .newsv-content {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
			border-bottom: 1px solid #eee;
        }
        .newsv-nav {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #666;
        }
        .newsv-nav a {
            color: #666;
            text-decoration: none;
        }
        .newsv-nav a:hover {
            color: #cc0000;
        }
        /* 自适应调整 */
        @media (max-width: 768px) {
            .newsv-title {
                font-size: 20px;
            }
            .newsv-nav {
                flex-direction: column;
                gap: 8px;
            }
        }

/* -----------------------内页产品------------------------ */

 /* -----------------------内页产品列表------------------------ */
.prolist-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 40px;
    /* 通过负边距和子元素内边距模拟gap效果 */
    margin-left: -12.5px;
    margin-right: -12.5px;
}

.prolist-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Flex项目宽度计算：每个项目25%宽度，减去两边的内边距 */
    width: calc(25% - 25px);
    margin: 12.5px;
}

.prolist-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}

.prolist-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.prolist-image-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.prolist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.prolist-item:hover .prolist-image {
    transform: scale(1.01);
    filter: brightness(0.99);
    border: 2px solid #eaeaea;
}

.prolist-title {
    background: #f6f6f6;
    color: #000000;
    padding: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
    /* 固定高度，使用min-height确保一致性 */
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prolist-item:hover .prolist-title {
    background: #f6f6f6;
    color: #cc0000;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .prolist-item {
        width: calc(50% - 25px); /* 2列布局 */
    }
}

@media (max-width: 768px) {
    .prolist-item {
        width: calc(33.333% - 25px); /* 3列布局 */
    }
    
    .prolist-title {
        padding: 15px;
        font-weight: 500;
        font-size: 14px;
        min-height: 70px;
    }
}

@media (max-width: 600px) {
    .prolist-container {
        margin-left: -6px;
        margin-right: -6px;
    }
    
    .prolist-item {
        width: calc(50% - 12px); /* 2列布局 */
        margin: 6px;
    }
    
    .prolist-title {
        padding: 15px;
        font-weight: 500;
        font-size: 14px;
        min-height: 70px;
    }
}

@media (max-width: 375px) {
    .prolist-container {
        margin-left: -4px;
        margin-right: -4px;
    }
    
    .prolist-item {
        width: calc(50% - 8px); /* 2列布局 */
        margin: 4px;
    }
    
    .prolist-title {
        padding: 15px;
        font-weight: 500;
        font-size: 14px;
        min-height: 70px;
    }
}

/* -----------------------内页产品内容------------------------ */

       .proview-reset {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        .proview-container {
            max-width---: 1400px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 页面上半部分 */
        .proview-upper-section {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        /* 左侧图片区域 */
        .proview-image-container {
            width: 40%;
            padding-right: 0px;
        }
        
        .proview-product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        /* 右侧内容区域 */
        .proview-content-container {
            width: 57%;
            padding-left: 3%;
        }
        
        .proview-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .proview-divider {
            display: flex;
            height: 1px;
            margin-bottom: 25px;
            overflow: hidden;
        }
        
        .proview-divider-orange {
            width: 50%;
            background-color: #e0e0e0;
        }
        
        .proview-divider-gray {
            width: 50%;
            background-color: #e0e0e0;
        }
        
        .proview-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }
        
        /* 联系信息样式 */
        .proview-contact-info {
            margin-top: 20px;
        }
        
        .proview-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1rem;
            color: #444;
        }
        
        .proview-contact-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f8f8;
            border-radius: 50%;
            margin-right: 12px;
            color: #cc0000;
        }
        
        /* 页面下半部分 */
        .proview-lower-section {
            background-color: #f5f5f5;
            padding: 30px;
            border-radius: 8px;
        }
        
        .proview-lower-divider {
            height: 3px;
            background-color: #cc0000;
            margin-bottom: 20px;
            width: 100%;
        }
        
        .proview-parameter-title {
            display: inline-block;
            background-color: #cc0000;
            color: white;
            padding: 10px 25px;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            border-radius: 4px;
            text-align: center;
        }
        
        .proview-parameter-description {
            font-size: 1rem;
            line-height: 2;
            color: #444;
           
        }
        
        /* 响应式设计 - 修正了断点 */
        @media (max-width: 768px) {
            /* 平板端和移动端样式 */
            .proview-image-container,
            .proview-content-container {
                width: 100%;
                padding: 0;
            }
            
            .proview-image-container {
                margin-bottom: 30px;
            }
            
            .proview-title {
                font-size: 1.9rem;
            }
            
            .proview-divider-orange {
                width: 20%;
            }
            
            .proview-divider-gray {
                width: 80%;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            /* 平板端横向样式 - 保持左右布局但调整间距 */
            .proview-image-container {
                padding-right: 20px;
            }
            
            .proview-content-container {
                padding-left: 20px;
            }
            
            .proview-title {
                font-size: 1.9rem;
            }
        }
        
        @media (max-width: 480px) {
            /* 小屏幕移动端样式 */
            .proview-container {
                padding: 15px;
            }
            
            .proview-title {
                font-size: 1.7rem;
            }
            
            .proview-description {
                font-size: 1rem;
            }
            
            .proview-contact-item {
                font-size: 0.95rem;
            }
            
            .proview-lower-section {
                padding: 20px;
            }
            
            .proview-parameter-title {
                font-size: 1.1rem;
                padding: 8px 20px;
            }
        }

/* ————————————————————————————内页下载———————————————————————————— */
/* -------------------------内页下载列表---------------------------------  */	
        
 .download-container {
    margin: 0 auto;
    width: 100%;
}

/* 下载卡片容器 - 使用Flex替代Grid */
.download-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12.5px; /* 负边距抵消内边距，模拟gap效果 */
}

/* 下载卡片样式 */
.download-card {
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    width: calc(25% - 25px); /* 4列布局 */
    margin: 0 12.5px 25px; /* 替代gap效果 */
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* 卡片图片区域 */
.download-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f5f7fa;
    /* 移除 padding-bottom 和高度控制 */
}

.download-image img {
    width: 100%;
    height: auto; /* 让高度根据图片比例自适应 */
    display: block; /* 防止图片底部有间隙 */
    object-fit: contain; /* 或使用 'cover' 根据需求选择 */
    transition: transform 0.4s ease;
}

.download-card:hover .download-image img {
    transform: scale(1.01);
}

/* 卡片内容区域 */
.download-content {
    padding: 20px 15px;
    text-align: center;
}

.download-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-card:hover .download-title {
    color: #cc0000;
}

/* PDF信息行 */
.download-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f1f2f6;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.download-info-type {
    background-color: #95a5a6;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.download-info-size {
    color: #2c3e50;
    font-weight: 500;
}

.download-info-icon {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.download-info-date {
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* 下载按钮 */
.download-button {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #95a5a6;
    border-radius: 6px;
    background-color: transparent;
    color: #999999;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 180px;
}

.download-card:hover .download-button {
    background-color: #cc0000;
    border-color: #cc0000;
    color: white;
}

/* 平板设备响应式 */
@media (max-width: 1024px) {
    .download-card {
        width: calc(33.333% - 20px); /* 3列布局 */
        margin: 0 10px 20px; /* 调整边距 */
    }
    
    .download-grid {
        margin: 0 -10px;
    }
}

/* 移动设备响应式 */
@media (max-width: 768px) {
    .download-card {
        width: calc(50% - 18px); /* 2列布局 */
        margin: 0 9px 18px; /* 调整边距 */
    }
    
    .download-grid {
        margin: 0 -9px;
    }
    
    .download-header h1 {
        font-size: 1.8rem;
    }
    
    .download-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .download-card {
        width: calc(100% - 40px); /* 1列布局 */
        margin: 0 auto 20px; /* 居中显示 */
        max-width: 350px;
    }
    
    .download-grid {
        margin: 0;
        justify-content: center; /* 卡片居中 */
    }
    
    .download-header h1 {
        font-size: 1.6rem;
    }
    
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .download-card {
        background-color: #1e1e1e;
    }
    
    .download-title {
        color: #e0e0e0;
    }
    
    .download-header h1 {
        color: #e0e0e0;
    }
    
    .download-header p {
        color: #aaa;
    }
    
    .download-info {
        background-color: #2a2a2a;
    }
    
    .download-info-size {
        color: #e0e0e0;
    }
    
    .download-info-date, .download-info-icon {
        color: #aaa;
    }
}

/* 兼容性增强 - 处理不支持calc()的旧浏览器 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE浏览器兼容性 */
    .download-grid {
        display: block;
        font-size: 0; /* 移除inline-block元素间的空白 */
    }
    
    .download-card {
        display: inline-block;
        vertical-align: top;
        width: 23%;
        margin: 0 1% 25px;
        box-sizing: border-box;
    }
    
    @media (max-width: 1024px) {
        .download-card {
            width: 31.333%;
        }
    }
    
    @media (max-width: 768px) {
        .download-card {
            width: 48%;
        }
    }
    
    @media (max-width: 480px) {
        .download-card {
            width: 100%;
            margin: 0 auto 20px;
            display: block;
        }
    }
}


/* -----------------------内页联系------------------------ */

        .contact-container {
            margin: 0 auto;
            padding: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-info {
            flex: 2;
            min-width: 250px;
            border-right: 1px solid #ededed;
            padding-right: 0px;
        }
        
        .contact-info h2 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .contact-info p {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .contact-qrcode {
            margin-top: 10px;
        }
        
        .contact-qrcode img {
            width: 120px;
            height: 120px;
            max-width: 100%; /* 确保图片响应式 */
        }
        
        .contact-qrcode p {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }
        
        .contact-form {
            flex: 3;
            min-width: 400px;
        }
        
        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #333;
            padding-bottom: 5px;
            border-bottom: 2px solid #333;
            display: inline-block;
        }
        
        .contact-form .contact-form-group {
            margin-bottom: 15px;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-size: 14px;
            color: #999;
            max-width: 100%; /* 防止输入框溢出 */
        }
        
        .contact-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .contact-form .contact-form-btns {
            margin-top: 20px;
            display: flex;
			    justify-content: center;
            gap: 10px;
        }
        
        .contact-form button {
            padding: 10px 40px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }
        
        .contact-form .contact-btn-reset {
            background: #ccc;
            color: #fff;
        }
        
        .contact-form .contact-btn-submit {
            background: #cc0000;
            color: #fff;
        }
        
        /* 移动端响应式样式 */
        @media (max-width: 768px) {
            .contact-container {
                padding: 15px;
                gap: 30px;
                flex-direction: column;
            }
            
            .contact-info {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
                padding-right: 0;
                padding-bottom: 30px;
                min-width: unset;
                width: 100%;
            }
            
            .contact-form {
                min-width: unset;
                width: 100%;
            }
            
            .contact-info h2,
            .contact-form h2 {
                font-size: 16px;
            }
            
            .contact-info p {
                font-size: 13px;
            }
            
            .contact-form input,
            .contact-form textarea {
                font-size: 13px;
                padding: 8px;
            }
            
            .contact-form button {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            .contact-form .contact-form-btns {
                justify-content: center;
            }
        }
        
        /* 超小屏幕手机优化 */
        @media (max-width: 480px) {
            .contact-container {
                padding: 10px;
                gap: 20px;
            }
            
            .contact-info {
                padding-bottom: 20px;
            }
            
            .contact-info h2 {
                font-size: 15px;
                margin-bottom: 15px;
            }
            
            .contact-info p {
                font-size: 12px;
                margin-bottom: 8px;
            }
            
            .contact-qrcode {
                margin-top: 20px;
            }
            
            .contact-qrcode img {
                width: 70px;
                height: 70px;
            }
            
            .contact-form h2 {
                font-size: 15px;
                margin-bottom: 12px;
            }
            
            .contact-form input,
            .contact-form textarea {
                font-size: 12px;
                padding: 7px;
            }
            
            .contact-form textarea {
                min-height: 80px;
            }
            
            .contact-form .contact-form-btns {
                gap: 8px;
            }
            
            .contact-form button {
                padding: 7px 14px;
                font-size: 12px;
            }
        }

