 /* -----------------------内页主图------------------------ */
        .ny_banner {
            width: 100%;
            min-height: 200px;
            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;
            }
        }
/* -----------------------内页面包------------------------ */
          .in_nav-container {
            margin: 0 auto;
            overflow: hidden;
			background: linear-gradient(to left,#ffffff 0%,#ffffff 50%, #cc0000 50%,  #cc0000 100% );
		    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        /* 导航栏样式 */
        .in_nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 0px;
            background: #fff;
            position: relative;
        }
        
        /* 左侧菜单样式 */
        .in_nav-menu {
            display: flex;
            list-style: none;
            flex--------------------: 1;
        }
        
        .in_nav-menu-item {
            position: relative;
            flex: 1;
			text-align: center;
        }
        
        .in_nav-menu-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 20px;
            width: 0px;
            background-color: #e0e0e0;
        }
        
        .in_nav-menu-link {
			width:160px;
            display: block;
            padding: 25px 23px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .in_nav-menu-link i {
            margin-left: 10px;
            font-size: 14px;
            color: #555;
            transition: all 0.3s ease;
        }
        
        .in_nav-menu-link:hover,
        .in_nav-menu-link.active {
            background-color: #cc0000;
            color: white;
        }
        
        .in_nav-menu-link:hover i,
        .in_nav-menu-link.active i {
            color: white;
        }
        
        /* 右侧当前位置样式 */
        .in_nav-current {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: #999;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .in_nav-current i {
            margin-right: 8px;
            color: #cc0000;
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .in_nav {
                flex-direction: column;
                padding: 0;
            }
            
            .in_nav-menu {
                flex-wrap: wrap;
                width: 100%;
            }
            
            .in_nav-menu-item {
                flex: 0 0 50%;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .in_nav-menu-item:nth-child(odd) {
                border-right: 1px solid #f0f0f0;
            }
            
            .in_nav-menu-item:not(:last-child)::after {
                display: none;
            }
            
            .in_nav-current {
                display: none;
            }
            
            .in_nav-menu-link {
				width:100%;
                padding: 15px 10px;
                font-size: 14px;
            }
        }
        
        /* 平板端样式 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .in_nav-menu-link {
                padding: 15px 10px;
                font-size: 15px;
            }
            
            .in_nav-current {
                padding: 15px 10px;
                font-size: 14px;
            }
        }
/* -----------------------内页菜单------------------------ */

        .content-box {
            width: 100%;
         
            margin: 0 auto;
            padding: 20px 20px;
            background-color: #f5f5f5; /* 浅灰背景 */
            border-left: 2px solid #cc0000; /* 左侧竖线 */
        }
        .service-text {
            color: #cc0000; /* 红色字体 */
            font-size: 18px;
            line-height: 1.8;
        }
        /* 移动端适配 */
        @media (max-width: 768px) {
            .service-text {
                font-size: 14px; /* 移动端字体稍小 */
            }
        }
/* -----------------------内页关于------------------------ */
        .about-container {
            margin: 0 auto;
            padding: 50px 0;
            color: #333;
        }
        
        .about-title {
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 10px;
            color: #222;
        }
        
        .about-underline {
            width: 80px;
            height: 4px;
            background-color: #cc0000;
            margin: 15px 0 25px 0;
            transition: all 0.4s ease;
        }
        
        .about-title:hover + .about-underline {
            width: 180px;
        }
        
        .about-description {
            font-size: 16px;
            line-height: 30px;
            color: #333333;
            margin-bottom: 10px;
 
        }
        
        .about-stats {
            display: flex;
            flex-wrap: wrap;
            margin-top: 40px;
			margin-bottom: 40px;
            position: relative;
        }
        
        .about-stat-item {
            flex: 1 0 25%;
            padding: 0 30px;
            position: relative;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 100px;
        }
        
        .about-stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background-color: #e0e0e0;
        }
        
        .about-stat-content {
            flex: 1;
        }
        
        .about-stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #cc0000;
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .about-stat-label {
            font-size: 1rem;
            color: #777;
            letter-spacing: 0px;
        }
        
        .about-stat-icon {
            font-size: 2.8rem;
            color: #aaa;
            margin-left: 0px;
            width: 100px;
            text-align: center;
        }
        
        /* 平板端适配 */
        @media (max-width: 1024px) {
            .about-title {
                font-size: 2.4rem;
            }
            
            .about-stat-item {
                flex: 1 0 25%;
                padding: 0 20px;
            }
            
            .about-stat-number {
                font-size: 2.4rem;
            }
            
            .about-stat-icon {
                font-size: 2.4rem;
            }
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .about-container {
                padding: 15px;
            }
            
            .about-title {
                font-size: 2rem;
            }
            
            .about-underline {
                width: 60px;
            }
            
            .about-title:hover + .about-underline {
                width: 120px;
            }
            
            .about-description {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .about-stats {
                margin-top: 30px;
            }
            
            /* 强制2列显示 */
            .about-stat-item {
                flex: 1 0 50%;
                padding: 15px 20px;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .about-stat-item:nth-child(odd)::after {
                content: '';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 60%;
                background-color: #e0e0e0;
            }
            
            .about-stat-item:nth-child(even)::after {
                display: none;
            }
            
            .about-stat-item:nth-last-child(-n+2) {
                border-bottom: none;
            }
            
            .about-stat-number {
                font-size: 2.2rem;
            }
            
            .about-stat-icon {
                font-size: 2rem;
            }
        }
        
        /* 小屏幕移动端适配 */
        @media (max-width: 480px) {
            .about-title {
                font-size: 1.8rem;
            }
            
            .about-stat-item {
                flex: 1 0 100%;
                padding: 15px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .about-stat-item::after {
                display: none !important;
            }
            
            .about-stat-item:last-child {
                border-bottom: none;
            }
            
            .about-stat-number {
                font-size: 2rem;
            }
            
            .about-stat-icon {
                font-size: 1.8rem;
            }
        }
/* -----------------------内页证书------------------------ */




/* -----------------------内页公司证书------------------------ */
		
       @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;
			padding:50px 0;
        }
        
        
        /* 新闻列表样式 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .news-item {
            display: flex;
            background-color: white;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.01);
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }
        
        /* 新闻左侧图片区域 */
        .news-image-container {
            flex: 0 0 35%;
            position: relative;
            overflow: hidden;
        }
        
        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
            aspect-ratio: 5/3.2;
        }
        
        .news-item:hover .news-image {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .news-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0);
            transition: all 0.4s ease;
            opacity: 0;
        }
        
        .news-item:hover .news-image-overlay {
            background-color: rgba(0, 0, 0, 0.2);
            opacity: 1;
        }
        
        .news-image-more {
            color: white;
            font-size: 1.2rem;
            font-weight: 5old;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }
        
        .news-item:hover .news-image-more {
            opacity: 1;
            transform: translateY(0);
        }
        
        .news-image-more-line {
            display: block;
            width: 40px;
            height: 2px;
            background-color: white;
            margin: 8px auto;
            transition: all 0.4s ease;
        }
        
        .news-item:hover .news-image-more-line {
            width: 20px;
        }
        
        /* 新闻右侧内容区域 */
        .news-content {
            flex: 0 0 65%;
            padding: 40px;
            display: flex;
            flex-direction: column;
        }
        
        .news-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: #222;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }
        
        .news-item:hover .news-title {
            color: #cc0000;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #777;
            font-size: 0.9rem;
        }
        
        .news-meta i {
            margin-right: 8px;
        }
        
        .news-date {
            margin-right: 20px;
        }
        
        .news-description {
            color: #999999;
			font-size: 0.9rem;
            margin-bottom: 20px;
			line-height:1.8;
            flex-grow: 1;
        }
        
        /* 查看更多按钮 */
        .news-more-btn {
            display: inline-flex;
            align-self: flex-start;
            align-items: center;
            justify-content: center;
            padding: 10px 25px;
            border: 2px solid #ddd;
            border-radius: 50px;
            background-color: transparent;
            color: #999;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .news-more-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .news-more-btn:hover {
            background-color: #cc0000;
            border-color: #cc0000;
            color: white;
        }
        
        .news-more-btn:hover i {
            transform: translateX(4px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            /* 平板端 */
            .news-item {
                flex-direction: column;
            }
            
            .news-image-container {
                flex: 0 0 auto;
                height: 250px;
            }
            
            .news-content {
                flex: 0 0 auto;
            }
        }
        
        @media (max-width: 768px) {

            
            .news-header h1 {
                font-size: 2rem;
            }
            
            .news-description {
                /* 移动端只显示2行 */
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .news-image-container {
                height: 220px;
            }
            
            .news-content {
                padding: 20px;
            }
            
            .news-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .news-image-container {
                height: 200px;
            }
            
            .news-meta {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .news-more-btn {
                align-self: stretch;
                text-align: center;
            }
        }

/* -----------------------内页新闻内容------------------------ */
        .newsv-container {
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
      		max-width: 1400px;
			 background-color: #ffffff;
            margin: 0 auto;
             padding: 50px 0;
			 margin-top:30px;
			 margin-bottom:30px;
        }
        
        /* 标题样式 */
        .newsv-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
            padding: 0 10px;
        }
        
        /* 日期和图标行 */
        .newsv-meta {
            text-align: center;
            margin-bottom: 20px;
            color: #7f8c8d;
            font-size: 1rem;
        }
        
        .newsv-meta-icon {
            margin-right: 10px;
            color: #cc0000;
        }
        
        /* 横线样式 */
        .newsv-divider {
            height: 1px;
            background-color: #ecf0f1;
            border: none;
            margin: 25px 0;
        }
        
        /* 新闻内容样式 */
        .newsv-content {
            font-size: 1.1rem;
            color: #444;
	
            padding: 0 10px;
        }
        
        .newsv-content p {
            margin-bottom: 20px;
			line-height:30px;
            text-align: justify;
        }
		
		  .newsv-content img {

            text-align: center;
        }
        
        /* 导航区域样式 */
        .newsv-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding: 0 10px;
        }
        
        .newsv-nav-item {
            flex: 0 0 40%;
            max-width: 40%;
        }
        
        .newsv-nav-center {
            flex: 0 0 20%;
            max-width: 20%;
            text-align: center;
        }
        
        .newsv-nav-link {
            display: flex;
            align-items: center;
            color: #cc0000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .newsv-nav-link:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .newsv-nav-icon {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        .newsv-nav-title {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .newsv-nav-prev .newsv-nav-title {
            text-align: left;
        }
        
        .newsv-nav-next {
            justify-content: flex-end;
            text-align: right;
        }
        
        .newsv-nav-next .newsv-nav-icon {
            order: 2;
            margin-right: 0;
            margin-left: 8px;
        }
        
        .newsv-nav-next .newsv-nav-title {
            order: 1;
            text-align: right;
        }
        
        .newsv-home-icon {
            color: #7f8c8d;
            font-size: 1.5rem;
            text-decoration: none;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }
        
        .newsv-home-icon:hover {
            color: #cc0000;
            transform: scale(1.1);
        }
        
        /* 平板端适配 */
        @media (max-width: 1024px) {
            .newsv-title {
                font-size: 1.8rem;
            }
            
            .newsv-content {
                font-size: 1.05rem;
            }
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .newsv-container {
                padding: 15px;
            }
            
            .newsv-title {
                font-size: 1.6rem;
            }
            
            .newsv-content {
                font-size: 1rem;
                padding: 0;
            }
            
            .newsv-navigation {
                flex-wrap: wrap;
                margin-top: 30px;
            }
            
            .newsv-nav-item {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 20px;
            }
            
            .newsv-nav-center {
                order: 3;
                flex: 0 0 100%;
                max-width: 100%;
                text-align: center;
                margin-top: 10px;
            }
            
            .newsv-nav-next {
                justify-content: flex-start;
                text-align: left;
            }
            
            .newsv-nav-next .newsv-nav-icon {
                order: 1;
                margin-left: 0;
                margin-right: 8px;
            }
            
            .newsv-nav-next .newsv-nav-title {
                order: 2;
                text-align: left;
            }
        }
        
        /* 小屏幕移动端适配 */
        @media (max-width: 480px) {
            .newsv-title {
                font-size: 1.4rem;
            }
            
            .newsv-meta {
                font-size: 0.9rem;
            }
            
            .newsv-nav-title {
                font-size: 0.95rem;
            }
        }
		
		
		
/* -----------------------内页产品列表------------------------ */

        .ipro-container {
            box-sizing: border-box;
        }
        
        /* Grid container */
        .ipro-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 20px 0;
            margin: 0 auto;
        }
        
        /* Grid items */
        .ipro-item {
            background-color: #ffffff;
           
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        /* Image container */
        .ipro-image-container {
            position: relative;
            width: 100%;
            padding-top: 1:1 aspect ratio;
            overflow: hidden;
			 border: 1px solid #eeeeee;
        }
        
        .ipro-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        
        /* Hidden title overlay for hover effect */
        .ipro-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.3s ease;
            color: white;
        }
        
        .ipro-overlay-line {
            height: 2px;
            background: white;
            width: 0;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .ipro-overlay-title {
            font-size: 1.2rem;
            font-weight: 500;
            text-align: center;
            padding: 10px 0;
        }
        
        /* Content styles */
        .ipro-titlea {
            font-size: 1.1rem;
            font-weight: 500;
            text-align: center;
            padding: 15px 10px;
            color: black;
            transition: color 0.3s ease;
        }
        
        .ipro-divider {
            height: 1px;
            background-color: #ddd;
            margin: 0 15px;
        }
        
        .ipro-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }
        
        .ipro-view {
            color: #666;
            transition: color 0.3s ease;
        }
        
        .ipro-arrow {
            color: #666;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        
        /* Hover effects */
        .ipro-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .ipro-item:hover .ipro-image {
            transform: scale(1.05);
            filter: brightness(0.9);
        }
        
        .ipro-item:hover .ipro-image-overlay {
            opacity: 1;
            background-color: rgba(0,0,0,0.3);
        }
        
        .ipro-item:hover .ipro-overlay-line {
            width: 50px;
        }
        
        .ipro-item:hover .ipro-title,
        .ipro-item:hover .ipro-view,
        .ipro-item:hover .ipro-arrow {
            color: #cc0000;
        }
        
        /* Responsive styles */
        @media (max-width: 900px) {
            .ipro-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .ipro-grid {
                grid-template-columns: 1fr;
            }
        }


/* -----------------------内页联系我们------------------------ */



/* -----------------------内页联系我们------------------------ */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            margin: 0 auto;
            padding: 20px 0; 
        }

        .contact-left {
            flex: 0 0 55%;
            padding: 10px;
            box-sizing: border-box;
        }

        .contact-right {
            flex: 0 0 45%;
            padding: 20px;
            box-sizing: border-box;
        }

        .contact-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
        }

        .contact-company {
            font-size: 28px;
            font-weight: bold;
            color: #333;
			 margin-top: 50px;
            margin-bottom: 15px;
        }

        .contact-divider {
            height: 1px;
            background-color: #ccc;
            margin-bottom: 25px;
            width: 100%;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: #555;
        }

        .contact-icon {
            width: 24px;
            text-align: center;
            margin-right: 15px;
            color: #666;
            font-size: 18px;
        }

        .contact-detail {
            flex: 1;
            font-size: 16px;
            line-height: 1.5;
        }

        .contact-link {
            color: #333333;
            text-decoration: none;
        }

        .contact-link:hover {
            text-decoration: underline;
        }

        /* 平板端适配 */
        @media (max-width: 992px) {
            .contact-left,
            .contact-right {
                flex: 0 0 100%;
            }
            
            .contact-company {
                font-size: 24px;
            }
            
            .contact-info-item {
                margin-bottom: 18px;
            }
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .contact-container {
                padding: 15px;
            }
            
            .contact-left,
            .contact-right {
                padding: 10px;
            }
            
            .contact-company {
                font-size: 22px;
                margin-bottom: 12px;
            }
            
            .contact-divider {
                margin-bottom: 20px;
            }
            
            .contact-info-item {
                margin-bottom: 16px;
            }
            
            .contact-icon {
                font-size: 16px;
                margin-right: 12px;
            }
            
            .contact-detail {
                font-size: 15px;
            }
        }

        /* 小屏幕移动端适配 */
        @media (max-width: 480px) {
            .contact-container {
                padding: 10px;
            }
            
            .contact-company {
                font-size: 20px;
            }
            
            .contact-info-item {
                flex-direction: column;
                margin-bottom: 15px;
            }
            
            .contact-icon {
                margin-bottom: 5px;
                margin-right: 0;
            }
        }

/* -----------------------内页留言表单------------------------ */

        .guest-container {

            margin: 0 auto;
            padding: 50px 0;
            color: #333;
            box-sizing: border-box;
        }

        .guest-header {
            margin-bottom: 30px;
        }

        .guest-main-title {
            font-size: 2rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .guest-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 25px;
        }

        .guest-divider {
            height: 4px;
            width: 80px;
            background-color: #cc0000;
            margin-bottom: 40px;
            transition: width 0.5s ease;
        }

        .guest-divider:hover {
            width: 150px;
        }

        /* 表单样式 */
        .guest-form {
            background-color-: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            box-shadow----: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .guest-form-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
            gap: 20px;
        }

        .guest-form-group {
            flex: 1;
            min-width: 250px;
        }

        .guest-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        .guest-input-wrapper {
            position: relative;
        }

        .guest-input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        .guest-form-input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            box-sizing: border-box;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .guest-form-input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        .guest-form-input::placeholder {
            color: #aaa;
        }

        /* 留言内容区域 */
        .guest-textarea-wrapper {
            position: relative;
        }

        .guest-textarea-wrapper i {
            position: absolute;
            left: 15px;
            top: 20px;
            color: #777;
        }

        .guest-form-textarea {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
            box-sizing: border-box;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .guest-form-textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        /* 验证码区域 */
        .guest-captcha-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
        }

        .guest-captcha-input {
            flex: 1;
            min-width: 200px;
        }

        .guest-captcha-image {
            height: 50px;
            border-radius: 4px;
            border: 1px solid #ddd;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #333;
            padding: 0 15px;
            user-select: none;
        }

        .guest-orange-btn {
            background-color: #f39c12;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .guest-orange-btn:hover {
            background-color: #cc0000;
            transform: translateY(-2px);
        }

        /* 提交按钮 */
        .guest-submit-row {
            text-align: center;
            margin-top: 30px;
        }

        .guest-red-btn {
            background-color: #cc0000;
            color: white;
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 4px 6px rgba(231, 76, 60, 0.2);
        }

        .guest-red-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(231, 76, 60, 0.3);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .guest-container {
                padding: 15px 0px 15px 0px;
            }
            
            .guest-main-title {
                font-size: 2rem;
            }
            
            .guest-subtitle {
                font-size: 1.1rem;
            }
            
            .guest-form {
                padding: 20px;
            }
            
            .guest-form-group {
                min-width: 100%;
            }
            
            .guest-captcha-row {
                flex-direction: column;
                align-items: stretch;
            }
            
            .guest-captcha-input {
                min-width: 100%;
            }
            
            .guest-orange-btn, .guest-red-btn {
                width: 100%;
                padding: 18px 20px;
            }
        }

        @media (max-width: 480px) {
            .guest-main-title {
                font-size: 1.7rem;
            }
            
            .guest-form {
                padding: 5px;
            }
            
            .guest-form-input, .guest-form-textarea {
                padding-left: 40px;
            }
        }






