/* ————————————————————————————通用标题———————————————————————————— */
        .ititle-container {
            width: 100%;
            padding: 20px 15px;
            box-sizing: border-box;
            text-align: center;
        }

        /* 标题样式 */
        .ititle-title {
            font-size: clamp(1.8rem, 5vw, 2rem); /* 响应式字体大小 */
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #333;
            transition: color 0.3s ease;
        }

        /* 红色短横容器 */
        .ititle-line-wrap {
            display: inline-block;
            width: 100%;
            position: relative;
            height: 3px;
        }

        /* 红色短横样式 */
        .ititle-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px; /* 初始宽度 */
            height: 100%;
            background-color: #cc0000;
            transition: width 0.5s ease; /* 变长动画 */
        }

        /* 鼠标悬浮效果 */

        .ititle-container:hover .ititle-line {
            width: 120px; /* 悬浮后宽度 */
        }

        /* 平板端适配 */
        @media (max-width: 768px) {
            .ititle-line {
                width: 40px;
            }
            .ititle-container:hover .ititle-line {
                width: 80px;
            }
        }

        /* 移动端适配 */
        @media (max-width: 480px) {
            .ititle-line {
                width: 30px;
            }
            .ititle-container:hover .ititle-line {
                width: 60px;
            }
            .ititle-title {
                font-size: clamp(1.5rem, 4vw, 2.5rem);
            }
        }		
/* ————————————————————————————首页banner轮播———————————————————————————— */
        
        /* 轮播组件容器 */
        .ibanner_wrapper {
            position: relative;
            width: 100%;
            
            margin: 0 auto;
            overflow: hidden;
            border-radius: 0px;
        }
        
        /* 轮播图片容器 */
        .ibanner_container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/7; /* 初始宽高比 */
        }
        
        /* 轮播图片项 */
        .ibanner_slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.02);
            transition: opacity 0.8s ease, transform 0.8s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ibanner_slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }
        
        /* 轮播图片 */
        .ibanner_slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* 文字容器 */
        .ibanner_caption {
            position: absolute;
            bottom: 100px;
            left: 0;
            width: 100%;
            padding: 0 50px;
            z-index: 10;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* 第一行文字 */
        .ibanner_caption_line1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
        }
        
        .ibanner_slide.active .ibanner_caption_line1 {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 第二行文字 */
        .ibanner_caption_line2 {
            font-size: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
        }
        
        .ibanner_slide.active .ibanner_caption_line2 {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 导航按钮 */
        .ibanner_prev, .ibanner_next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .ibanner_prev:hover, .ibanner_next:hover {
            background:#bf000a;
        }
        
        .ibanner_prev {
            left: 20px;
        }
        
        .ibanner_next {
            right: 20px;
        }
        
        /* 指示器容器 */
        .ibanner_indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
            padding: 0 10px;
        }
        
        /* 单个指示器 */
        .ibanner_indicator {
            width: 15px;
            height: 15px;
            background: rgba(255, 255, 255, 0.7);
            margin: 0 5px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ibanner_indicator.active {
            background: #bf000a;
            transform: scaleX(1);
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .ibanner_container {
                width: 100%;
                height: 100%;
            }
            
            .ibanner_caption {
                bottom: 80px;
                padding: 0 20px;
            }
            
            .ibanner_caption_line1 {
                font-size: 2rem;
            }
            
            .ibanner_caption_line2 {
                font-size: 1.2rem;
            }
            
            .ibanner_prev, .ibanner_next {
				
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .ibanner_prev {display: none;
                left: 10px;
            }
            
            .ibanner_next {display: none;
                right: 10px;
            }
            
            .ibanner_indicators {
                bottom: 20px;
            }
			 }

/* -------------------------------首页公司简介 ---------------------- */       
        /* 主容器 */
        .iabout-container {
            margin: 0 auto;
            overflow: hidden;
        }
        
        /* 两栏布局 */
        .iabout-row {
            display: flex;
            flex-wrap: wrap;
            min-height: 500px;
        }
        
        /* 左侧视频区域 */
        .iabout-left {
            flex: 0 0 40%;

            padding: 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 右侧内容区域 */
        .iabout-right {
            flex: 0 0 60%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* 视频容器 */
        .iabout-video-container {
            width: 100%;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .iabout-video-container video {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .iabout-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.4);
            color: #fff;
            transition: background-color 0.3s;
        }
        
        .iabout-video-overlay:hover {
            background-color: rgba(0, 0, 0, 0.2);
        }
        
        .iabout-play-icon {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .iabout-video-text {
            font-size: 18px;
            font-weight: 500;
        }
        
        /* 标题样式 */
        .iabout-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #222;
        }
        
        /* 红色短横线 */
        .iabout-red-line {
            width: 60px;
            height: 4px;
            background-color: #cc0000;
            margin-bottom: 25px;
            transition: width 0.5s ease;
        }
        
        .iabout-right:hover .iabout-red-line {
            width: 120px;
        }
        
        /* 描述文字 */
        .iabout-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        /* 查看更多按钮 */
        .iabout-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 160px;
            padding: 12px 18px;
            background-color: #cc0000;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid #cc0000;
        }
        
        .iabout-btn:hover {
            background-color: #cc0000;
            border-color: #cc0000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .iabout-btn:active {
            transform: translateY(-1px);
        }
        
        .iabout-btn-icon {
            margin-left: 8px;
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .iabout-btn:hover .iabout-btn-icon {
            transform: translateX(4px);
        }
        
        /* 响应式设计 - 平板设备 */
        @media (max-width: 992px) {
            .iabout-left, .iabout-right {
                flex: 0 0 100%;
            }
            
            .iabout-left {
                padding: 25px;
                min-height: 350px;
            }
            
            .iabout-right {
                padding: 35px;
            }
            
            .iabout-title {
                font-size: 32px;
            }
            
            .iabout-video-overlay {
                padding: 0px;
            }
        }
        
        /* 响应式设计 - 移动设备 */
        @media (max-width: 768px) {
            body {
                padding: 0px;
            }
            
            .iabout-container {
                border-radius: 8px;
            }
            
            .iabout-left {
                padding: 0px;
            }
			  .iabout-right {
                padding: 20px;
            }
            
            .iabout-left {
                min-height: 300px;
            }
            
            .iabout-title {
                font-size: 28px;
            }
            
            .iabout-description {
                font-size: 15px;
            }
            
            .iabout-play-icon {
                font-size: 36px;
            }
            
            .iabout-video-text {
                font-size: 16px;
            }
        }
        
        /* 小屏幕手机 */
        @media (max-width: 480px) {
            .iabout-title {
                font-size: 24px;
            }
            
            .iabout-btn {
                width: 100%;
                padding: 12px 20px;
            }
            
            .iabout-left {
                min-height: 250px;
            }
        }
/* -------------------------------首页公司产品滚动 ---------------------- */  
        .ipro-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        /* 轮播容器 */
        .ipro-container {

            margin: 0 auto;
            padding: 20px 0;
            position: relative;
        }
        
        .ipro-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #cc0000;
            font-weight: 600;
        }
        
        /* 轮播主体 */
        .ipro-carousel {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .ipro-slides-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        /* 新闻项样式 - 修改为每屏显示4个 */
        .ipro-slide {
            flex: 0 0 25%; /* 从33.333%改为25%，这样每屏显示4个 */
            padding: 0 15px;
            transition: opacity 0.3s;
        }
        
        .ipro-slide-link {
            display: block;
            text-decoration: none;
            color: inherit;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .ipro-slide-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        /* 修改：新闻图片容器 - 改为1:1正方形 */
        .ipro-image-container {
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        /* 新增：使用padding-bottom技巧创建1:1正方形容器 */
        .ipro-image-container::before {
            content: '';
            display: block;
            padding-top: 100%; /* 创建1:1宽高比 */
        }
        
        /* 修改：图片样式 - 绝对定位填充整个容器 */
        .ipro-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease, filter 0.4s ease;
        }
        
        /* 图片悬停效果 */
        .ipro-slide-link:hover .ipro-image {
            transform: scale(1.05);
            filter: brightness(0.85);
        }
        
        /* More文字效果 */
        .ipro-more-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: opacity 0.4s ease;
            z-index: 1;
        }
        
        .ipro-slide-link:hover .ipro-more-overlay {
            opacity: 1;
        }
        
        /* 短横线动画效果 */
        .ipro-line {
            width: 30px;
            height: 2px;
            background-color: white;
            margin: 4px 0;
            transition: width 0.3s ease;
        }
        
        .ipro-slide-link:hover .ipro-line {
            width: 20px;
        }
        
        /* More文字样式 */
        .ipro-more-text {
            color: white;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 8px 0;
        }
        
        /* 新闻内容 */
        .ipro-content {
            padding: 20px;
        }
        
        .ipro-title-line {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #666666;
            height: 20px;
			text-align:center;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            transition: color 0.3s ease;
        }
        
        /* 标题悬停变色效果 */
        .ipro-slide-link:hover .ipro-title-line {
            color: #cc0000;
        }
        
        .ipro-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .ipro-meta i {
            margin-right: 8px;
            color: #cc0000;
        }
        
        .ipro-description {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
            height: 72px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            transition: color 0.3s ease;
        }
        
        /* 描述悬停变色效果 */
        .ipro-slide-link:hover .ipro-description {
            color: #333;
        }
        
        /* 导航箭头 */
        .ipro-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            font-size: 20px;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            z-index: 10;
        }
        
        .ipro-arrow:hover {
            background-color: #cc0000;
            color: white;
        }
        
        .ipro-arrow-left {
            left: 0;
        }
        
        .ipro-arrow-right {
            right: 0;
        }
        
        /* 指示器 */
        .ipro-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        
        .ipro-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .ipro-indicator.active {
            background-color: #cc0000;
        }
        
        /* 新增按钮样式 */
        .ipro-view-all-btn {
            display: block;
            width: 200px;
            margin: 0 auto;
            padding: 14px 30px;
            background-color: #cc0000;
            color: white;
            text-decoration: none;
            text-align: center;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
            letter-spacing: 0.5px;
        }
        
        .ipro-view-all-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
        }
        
        .ipro-view-all-btn:active {
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
        }
        
        /* 平板端适配 - 修改为每屏显示3个 */
        @media (max-width: 992px) {
            .ipro-slide {
                flex: 0 0 33.333%; /* 平板端显示3个 */
            }
            
            .ipro-arrow-left {
                left: 10px;
            }
            
            .ipro-arrow-right {
                right: 10px;
            }
            
            /* 平板端调整标题高度 */
            .ipro-title-line {
                height: 46px;
            }
        }
        
        /* 移动端适配 - 修改为每屏显示2个 */
        @media (max-width: 768px) {
            .ipro-container {
                padding: 1px;
            }
            
            .ipro-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .ipro-slide {
                flex: 0 0 50%; /* 移动端显示2个 */
            }
            
            .ipro-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            /* 移动端调整图片高度 - 保持1:1比例，不需要调整高度 */
            .ipro-image-container {
                /* 保持1:1，通过padding-bottom实现 */
            }
            
            .ipro-title-line {
                font-size: 17px;
                height: 46px;
            }
            
            .ipro-description {
                font-size: 14px;
                height: 66px;
            }
            
            /* 移动端调整More效果 */
            .ipro-more-text {
                font-size: 16px;
            }
            
            .ipro-line {
                width: 25px;
            }
            
            .ipro-slide-link:hover .ipro-line {
                width: 15px;
            }
            
            /* 移动端按钮适配 */
            .ipro-view-all-btn {
                width: 180px;
                padding: 12px 25px;
                font-size: 15px;
            }
        }
        
        /* 小屏幕移动端适配 - 修改为单列显示 */
        @media (max-width: 480px) {
            .ipro-container {
                padding: 10px;
            }
            
            .ipro-title {
                font-size: 22px;
            }
            
            .ipro-slide {
                flex: 0 0 100%; /* 小屏幕显示1个 */
            }
            
            /* 小屏幕保持1:1比例 */
            .ipro-image-container {
                /* 保持1:1，通过padding-bottom实现 */
            }
            
            .ipro-content {
                padding: 15px;
            }
            
            .ipro-title-line {
                font-size: 16px;
                height: 44px;
            }
            
            .ipro-description {
                height: 63px;
            }
            
            /* 小屏幕调整More效果 */
            .ipro-more-overlay {
                opacity: 0.8;
            }
            
            .ipro-more-text {
                font-size: 14px;
            }
            
            /* 小屏幕按钮适配 */
            .ipro-view-all-btn {
                width: 160px;
                padding: 10px 20px;
                font-size: 14px;
            }
        }
/* -------------------------------首页新闻切换 ---------------------- */          
        .inews-container {

            margin: 0 auto;
            padding: 20px 0;
            position: relative;
        }
       
        
        /* 轮播主体 */
        .inews-carousel {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .inews-slides-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        /* 新闻项样式 */
        .inews-slide {
            flex: 0 0 33.333%;
            padding: 0 15px;
            transition: opacity 0.3s;
        }
        
        .inews-slide-link {
            display: block;
            text-decoration: none;
            color: inherit;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .inews-slide-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        /* 新闻图片容器 */
        .inews-image-container {
            width: 100%;
            height: 250px;
            position: relative;
            overflow: hidden;
        }
        
        .inews-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease, filter 0.4s ease;
        }
        
        /* 图片悬停效果 */
        .inews-slide-link:hover .inews-image {
            transform: scale(1.05);
            filter: brightness(0.85);
        }
        
        /* More文字效果 */
        .inews-more-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: opacity 0.4s ease;
            z-index: 1;
        }
        
        .inews-slide-link:hover .inews-more-overlay {
            opacity: 1;
        }
        
        /* 短横线动画效果 */
        .inews-line {
            width: 30px;
            height: 2px;
            background-color: white;
            margin: 4px 0;
            transition: width 0.3s ease;
        }
        
        .inews-slide-link:hover .inews-line {
            width: 20px;
        }
        
        /* More文字样式 */
        .inews-more-text {
            color: white;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 8px 0;
        }
        
        /* 新闻内容 */
        .inews-content {
            padding: 20px;
        }
        
        .inews-title-line {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #333333;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            transition: color 0.3s ease;
        }
        
        /* 标题悬停变色效果 */
        .inews-slide-link:hover .inews-title-line {
            color: #cc0000;
        }
        
        .inews-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .inews-meta i {
            margin-right: 8px;
            color: #cc0000;
        }
        
        .inews-description {
            font-size: 14px;
            line-height: 1.6;
            color: #999999;
            height: 72px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            transition: color 0.3s ease;
        }
        
        /* 描述悬停变色效果 */
        .inews-slide-link:hover .inews-description {
            color: #333;
        }
        
        /* 导航箭头 */
        .inews-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            font-size: 20px;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            z-index: 10;
        }
        
        .inews-arrow:hover {
            background-color: #cc0000;
            color: white;
        }
        
        .inews-arrow-left {
            left: 0;
        }
        
        .inews-arrow-right {
            right: 0;
        }
        
        /* 指示器 */
        .inews-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        
        .inews-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .inews-indicator.active {
            background-color: #cc0000;
        }
        
        /* 新增按钮样式 */
        .inews-view-all-btn {
            display: block;
            width: 200px;
            margin: 0 auto;
            padding: 14px 30px;
            background-color: #cc0000;
            color: white;
            text-decoration: none;
            text-align: center;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
            letter-spacing: 0.5px;
        }
        
        .inews-view-all-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
        }
        
        .inews-view-all-btn:active {
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
        }
        
        /* 平板端适配 */
        @media (max-width: 992px) {
            .inews-slide {
                flex: 0 0 50%;
            }
            
            .inews-arrow-left {
                left: 10px;
            }
            
            .inews-arrow-right {
                right: 10px;
            }
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .inews-container {
                padding: 15px;
            }
            
            .inews-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .inews-slide {
                flex: 0 0 100%;
            }
            
            .inews-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .inews-image-container {
                height: 180px;
            }
            
            .inews-title-line {
                font-size: 17px;
                height: 46px;
            }
            
            .inews-description {
                font-size: 14px;
                height: 66px;
            }
            
            /* 移动端调整More效果 */
            .inews-more-text {
                font-size: 16px;
            }
            
            .inews-line {
                width: 25px;
            }
            
            .inews-slide-link:hover .inews-line {
                width: 15px;
            }
            
            /* 移动端按钮适配 */
            .inews-view-all-btn {
                width: 180px;
                padding: 12px 25px;
                font-size: 15px;
            }
        }
        
        /* 小屏幕移动端适配 */
        @media (max-width: 480px) {
            .inews-container {
                padding: 10px;
            }
            
            .inews-title {
                font-size: 22px;
            }
            
            .inews-image-container {
                height: 160px;
            }
            
            .inews-content {
                padding: 15px;
            }
            
            .inews-title-line {
                font-size: 16px;
                height: 44px;
            }
            
            .inews-description {
                height: 63px;
            }
            
            /* 小屏幕调整More效果 */
            .inews-more-overlay {
                opacity: 0.8;
            }
            
            .inews-more-text {
                font-size: 14px;
            }
            
            /* 小屏幕按钮适配 */
            .inews-view-all-btn {
                width: 160px;
                padding: 10px 20px;
                font-size: 14px;
            }
        }


 /* -------------------------------首页联系方式 ---------------------- */  
 
 
        /* 主容器 */
        .icontact-container {
            width: 100%;
			text-align:center;
            max-width: 800px;
            margin: 0 auto;
            padding:50px;


        }

        /* 标题样式 */
        .icontact-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #fff;
            position: relative;
            padding-bottom: 15px;
        }

        .icontact-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #cc0000;
        }

        /* 联系方式列表 */
        .icontact-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .icontact-item {
            display: flex;
            align-items: center;
            padding: 10px;
            margin-bottom: 5px;

            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .icontact-item:hover {

            transform: translateY(-1px);

        }

        /* 图标样式 */
        .icontact-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #333;
            border-radius: 50%;
            margin-right: 20px;
            font-size: 1rem;
            color: #cc0000;
            flex-shrink: 0;
        }

        /* 内容区域 */
        .icontact-content {
            flex: 1;
        }

        .icontact-label {
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .icontact-value {
            font-size: 1.2rem;
            color: #fff;
            word-break: break-word;
        }

        /* 链接样式 */
        .icontact-link {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .icontact-link:hover {
            color: #cc0000;
            text-decoration: underline;
        }

        /* 按钮样式 */
        .icontact-button-container {
            text-align: center;
            margin-top: 20px;
        }

        .icontact-button {
            display: inline-block;
            background-color: #cc0000;
            color: white;
            padding: 12px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
            letter-spacing: 1px;
        }

        .icontact-button:hover {
            background-color: #c62828;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
        }

        .icontact-button:active {
            transform: translateY(-2px);
        }

        /* 响应式设计 */
        /* 平板端 */
        @media (max-width: 768px) {
            .icontact-container {
                padding: 25px;
            }
            
            .icontact-title {
                font-size: 1.9rem;
            }
            
            .icontact-icon {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .icontact-value {
                font-size: 1.1rem;
            }
            
            .icontact-button {
                padding: 16px 35px;
                font-size: 1.2rem;
            }
        }

        /* 移动端 */
        @media (max-width: 480px) {

            
            .icontact-container {
                padding: 20px;
                border-radius: 10px;
            }
            
            .icontact-title {
                font-size: 1.7rem;
                margin-bottom: 25px;
            }
            
            .icontact-item {
                padding: 1px;
                flex-direction: column;
                align-items: flex-start;
				font-size: 1rem;
            }
            
            .icontact-icon {
                margin-right: 0;
                margin-bottom: 15px;
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .icontact-value {
                font-size: 1rem;
            }
            
            .icontact-button {
                width: 100%;
                padding: 15px;
                font-size: 1.1rem;
            }
        }
  /* -------------------------------首页底部版权 ---------------------- */  
  .ifoot-footer {
            width: 100%;
            background-color: #f5f5f5;
        }
        
        .ifoot-footer-top {
            background-color: #f9f9f9;
            padding: 40px 1%;
        }
        
        .ifoot-footer-container {
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
        }
        
        /* 左侧二维码区域 */
        .ifoot-qr-section {
            flex: 0 0 25%;
            padding-right: 30px;
            text-align: center;
        }
        
        .ifoot-qr-code {
            width: 150px;
            height: 150px;
            margin: 0 auto 5px;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
            border-radius: 4px;
        }
        
        .ifoot-qr-text {
            color: #000;
            font-size: 16px;
            font-weight: 500;
        }
        
        /* 右侧分类区域 */
        .ifoot-links-section {
            flex: 0 0 75%;
        }
        
        .ifoot-links-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }
        
        .ifoot-category-column {
            display: flex;
            flex-direction: column;
        }
        
        .ifoot-category-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #222;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .ifoot-category-title:hover {
            color: #cc0000;
        }
        
        .ifoot-divider {
            height: 1px;
            width: 25px;
            background-color: #cc0000;
            margin-top: 15px;
			margin-bottom: 15px;
        }
        
        .ifoot-subcategory-link {
            display: block;
            color: #666;
            text-decoration: none;
            font-size: 15px;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        
        .ifoot-subcategory-link:hover {
            color: #cc0000;
        }
        
        /* 底部版权区域 */
        .ifoot-footer-bottom {
            background-color: #f0f0f0;
            padding: 20px 5%;
            border-top: 1px solid #e0e0e0;
        }
        
        .ifoot-footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .ifoot-copyright {
            color: #666;
            font-size: 14px;
        }
        
        .ifoot-icp {
            color: #666;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .ifoot-icp:hover {
            color: #cc0000;
        }
        
        /* 移动端响应式样式 */
        @media (max-width: 992px) {
            .ifoot-qr-section {
                flex: 0 0 100%;
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .ifoot-links-section {
                flex: 0 0 100%;
            }
            
            .ifoot-links-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .ifoot-links-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .ifoot-category-column {
                border-bottom: 1px solid #eee;
                padding: 15px 0;
            }
            
            .ifoot-category-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                padding: 5px 0;
            }
            
            .ifoot-category-title {
                margin-bottom: 0;
                pointer-events: none; /* 在移动端禁止标题链接点击 */
            }
            
            .ifoot-toggle-icon {
                color: #999;
                font-size: 18px;
                font-weight: bold;
                transition: transform 0.3s;
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: 10px;
            }
            
            .ifoot-subcategories {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
            }
            
            .ifoot-category-column.active .ifoot-subcategories {
                max-height: 500px;
                padding-top: 15px;
            }
            
            .ifoot-category-column.active .ifoot-toggle-icon {
                transform: rotate(45deg);
                color: #cc0000;
            }
            
            .ifoot-divider {
                display: none;
            }
            
            .ifoot-footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            /* 修复移动端链接点击问题 */
            .ifoot-category-title {
                flex-grow: 1;
            }
        }
        
        @media (min-width: 769px) {
            .ifoot-category-header {
                pointer-events: none;
            }
            
            .ifoot-toggle-icon {
                display: none;
            }
            
            .ifoot-subcategories {
                display: block !important;
            }
        }
        
        /* 平板端响应式样式 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .ifoot-links-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
            
            .ifoot-qr-section {
                flex: 0 0 30%;
            }
            
            .ifoot-links-section {
                flex: 0 0 70%;
            }
        }
 
 