/* ————————————————————————————首页标题样式1———————————————————————————— */
        .title-container { text-align: center;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out;
        }        
        .main-title {text-transform: uppercase;
            font-size: 30px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 5px;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }        
        .subtitle {text-transform: uppercase;
            font-size: 12px;
            color: #999999;
            font-weight: 400;
            letter-spacing: 0px;
            text-transform: uppercase;
        }
	@media (max-width: 768px) {
            .main-title {
                font-size: 30px;
            }            
            .subtitle {
               font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .main-title {
                font-size: 30px;
            }            
            .subtitle {
              font-size: 12px;
            }
        }
/* ————————————————————————————首页查看更多按钮通用———————————————————————————— */
        .index_more_w {
            margin: 0;
            display: flex;
			text-align:center;
            justify-content: center;
            align-items: center;    
        }
            .index_more {
            text-align:center;
            padding: 10px 30px;		
            border-radius: 50px;
			margin: 0px 0px 40px 0px;  
            border: 1px solid #1b5c32;
            color: #1b5c32;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;            
            /* 移动端适配 */
            font-size: clamp(17px, 3vw, 16px);
            white-space: nowrap;
        }
        /* 悬停动画效果 */
        .index_more:hover {
            background: #f6f6f6;
            border-color: #1b5c32;
            color: #1b5c32;
            transform: translateY(-2px);
        }
        /* 移动端优化 */
        @media (max-width: 480px) {
            .index_more {
                padding: 8px 24px;
                border-radius: 24px;
            }
        }

        /* 点击效果 */
        .index_more:active {
            transform: translateY(1px);
            transition-duration: 0.1s;
        }
/* ————————————————————————————首页banner轮播———————————————————————————— */
        .ibanner_container {
            width: 100%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }        
        .ibanner_slides {
            position: relative;
            width: 100%;
            height: 650px;
            padding-bottom-: 20%; /* 16:9 aspect ratio */
            overflow: hidden;
        }        
        .ibanner_slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.8s ease;
            transform: scale(1);
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }
        
        .ibanner_slide.active {
            opacity: 1;
            transform: scale(1.01);
            z-index: 2;
        }
        
        .ibanner_content {
            width: 100%;
            max-width: 800px;
            padding: 80px;
            color: white;
            position: relative;
            z-index: 3;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .ibanner_title {
            font-size: 4.5rem;
			font-family: 'fontb', sans-serif;
            font-weight: 600;
            margin-bottom: 20px;
            opacity: 0;
			color: #fff;
			text-shadow:1px 1px 5px #000000;
            transform: translateX(-50px);
            transition: all 0.6s ease 0.2s;
        }        
        .ibanner_line {
            width: 0;
            height: 3px;
            background: linear-gradient(to right, #f38031, #f38031);
            margin-bottom: 20px;			
            transition: all 0.6s ease 0.5s;
        }
        
        .ibanner_subtitle {
            font-size: 2.5rem;
            font-weight: 500;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.8s;
color: #fff;
text-shadow:1px 1px 2px #000000;

}
        .ibanner_slide.active .ibanner_title {
            opacity: 1;
            transform: translateX(0);
        }
        
        .ibanner_slide.active .ibanner_line {
            width: 120px;
        }
        
        .ibanner_slide.active .ibanner_subtitle {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ibanner_nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 98.3%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 4;
			display:none-
        }
        
        .ibanner_prev, .ibanner_next {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .ibanner_prev:hover, .ibanner_next:hover {
            background: rgba(0, 0, 0, 0.6);
            transform: scale(1.1);
        }
        
        .ibanner_prev::after, .ibanner_next::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            border-top: 2px solid white;
            border-right: 2px solid white;
        }
        
        .ibanner_prev::after {
            transform: rotate(-135deg);
            left: 15px;
        }
        
        .ibanner_next::after {
            transform: rotate(45deg);
            right: 15px;
        }
        
        .ibanner_dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        
        .ibanner_dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ibanner_dot.active {
            background: #1b5c32;
            transform: scale(1.1);
        }
        
        .ibanner_dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        .ibanner_line_bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0px;
            background: linear-gradient(to right, #1b5c32, #9b59b6, #cc0000);
            z-index: 3;
        }
        
        /* Responsive adjustments */
        @media (max-width: 900px) {
            .ibanner_title {
                font-size: 3.2rem;color: #fff;text-shadow:1px 1px 2px #000000;
            }
            
            .ibanner_subtitle {
                font-size: 1.8rem;color: #fff;text-shadow:1px 1px 2px #000000;
            }
        }
        
        @media (max-width: 768px) {
			
			.ibanner_slides {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }  	
			            .ibanner_prev, .ibanner_next {
                display: none;
            }           
			
            .ibanner_title {
                font-size: 3rem;color: #fff;text-shadow:1px 1px 2px #000000;
            }
			
			   .ibanner_subtitle {
                font-size: 2rem;color: #fff;text-shadow:1px 1px 2px #000000;
            }
            
            .ibanner_content {
                padding-top: 100px;
            }
			
			.ibanner_dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
			
        }
        
        @media (max-width: 480px) {
		   .ibanner_slides {
            position: relative;
            width: 100%;
   height: 300px;
            overflow-: hidden;
        }   
            .ibanner_title {
                font-size: 2.3rem;font-weight: 500;color: #fff;text-shadow:1px 1px 2px #000000;
            }
            
            .ibanner_subtitle {
                font-size: 1.4rem;color: #fff;text-shadow:1px 1px 2px #000000;
            }
            
            .ibanner_content {
                padding: 20px;
            }
            
            .ibanner_dots {
                bottom: 20px;
            } }
			
        @media (max-width: 320px) {
			
					   .ibanner_slides {
            position: relative;
            width: 100%;
       height: 300px;
            overflow-: hidden;
        }  
			
            .ibanner_title {
                font-size: 1.8rem;color: #fff;
			font-weight: 500;text-shadow:1px 1px 5px #000000;
            margin-bottom: 10px;
            }
            
            .ibanner_subtitle {
                font-size: 1.2rem;color: #fff;text-shadow:1px 1px 5px #000000;
            }
            
            .ibanner_content {
                padding: 20px;
            }
            
            .ibanner_dots {
                bottom: 20px;
            }
        }

/* ————————————————————————————首页产品分类和滚动——————————————————————————— */
        .ipro-container {
            margin: 0 auto;
            padding: 0px 0;
        }
        
        .ipro-header {
            text-align: center;
			padding-top:50px;
            margin-bottom: 30px;
        }
        
        .ipro-header h1 {text-transform: uppercase;
            font-size: 30px;
            color: #222222;
            margin-bottom: 10px;
        }
        
        .ipro-header p {text-transform: uppercase;
            color: #999999;
            font-size: 14px;
        }
        
        /* 分类标签样式 */
        .ipro-tabs {
            display: flex;
            justify-content: space-between;     
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 30px;
            overflow-x: auto;
            scrollbar-width: none;
			width: 80%; margin: 0 auto;
        }
        
        .ipro-tabs::-webkit-scrollbar {
            display: none;
        }
        
        .ipro-tab {
            flex: 1;
            text-align: center;

            padding: 12px 0;
            cursor: pointer;
            font-weight: 500;
			font-size:18px;
            color: #000000;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }
        
        .ipro-tab:not(:last-child):after {
            content: '|';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #e0e0e0;
            font-weight: normal;
        }
        
        .ipro-tab:hover {
            color: #1b5c32;
        }
        
        .ipro-tab.active {
            color: #1b5c32; font-weight: 600;
        }
        
        /* 轮播区域样式 */
        .ipro-carousel-container {
            position: relative;
            background-: white;
            border-radius: 0px;
            box-shadow-: 0 6px 16px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .ipro-carousel-wrapper {
            overflow: hidden;
            position: relative;
        }
        
        .ipro-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .ipro-carousel-item {
            flex: 0 0 33.333%;
            padding: 20px;
        }
        
        .ipro-product-card {
            border: 1px dashed #d0d0d0;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;background-color: #ffffff;
            flex-direction: column;
        }
        
        .ipro-product-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: #ffffff;
        }
        
        .ipro-product-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .ipro-product-img {
            width: 100%;
            height-: 200px;
            object-fit: cover;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bbb;
            font-size: 3rem;
        }
        
        .ipro-product-title {
            padding: 15px;
            text-align: center;
            font-weight: 600;
            color: #333333;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 导航箭头 */
        .ipro-carousel-nav {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .ipro-carousel-nav:hover {
            background: #1b5c32;
            color: white;
        }
        
        .ipro-carousel-prev {
            left: 15px;
        }
        
        .ipro-carousel-next {
            right: 15px;
        }
        
        /* 圆点指示器 */
        .ipro-dots {
            display: flex;
            justify-content: center;
            padding: 20px 0;
        }
        
        .ipro-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d0d0d0;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ipro-dot.active {
            background: #1b5c32;
            transform: scale(1.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .ipro-carousel-item {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 768px) {
            .ipro-tabs {
                padding: 0px;
            }
            
            .ipro-tab {
                font-size: 0.9rem;
                padding: 10px 5px;
            }
            
            .ipro-carousel-item {
                flex: 0 0 100%;
            }
            
            .ipro-carousel-nav {
                width: 35px;
                height: 35px;
            }
            
            .ipro-product-img {
                height-: 180px;
            }
        }
        
        @media (max-width: 576px) {
            .ipro-container {
                padding: 5px;
            }
            
            .ipro-header h1 {
                font-size: 1.8rem;
            }
            
            .ipro-tab {
                font-size: 0.85rem;
                padding: 8px 3px;
            }
            
            .ipro-carousel-item {
                padding: 15px;
            }
            
            .ipro-product-img {
                height---: 160px;
            }
        }
        
        /* 隐藏非活动内容 */
        .ipro-tab-content {
            display: none;
        }
        
        .ipro-tab-content.active {
            display: block;
        }   
	 
/* ————————————————————————————首页产品案例切换——————————————————————————— */ 
        /* 重置样式 */
        .iicase_* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
			background: #ffffff;
        }
        
        /* 轮播容器 */
        .iicase_carousel-container {
            margin: 0 auto;
            padding: 0px 0px 50px 0px;
            position: relative;
        }
        
        /* 轮播主体 */
        .iicase_carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
            margin: 30px 0;
        }
        
        /* 轮播轨道 */
        .iicase_track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height:450px;
            will-change: transform;
        }
        
        /* 轮播项 */
        .iicase_slide {
            padding: 0 10px;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
        }
        
        /* 左侧项 - 更窄 */
        .iicase_slide.iicase_left {
            flex: 0 0 23%;
        }
        
        /* 中间项占50% */
        .iicase_slide.iicase_center {
            flex: 0 0 50%;
        }
        
        /* 右侧项 - 更宽 */
        .iicase_slide.iicase_right {
            flex: 0 0 27%;
        }
        
        /* 内容链接 */
        .iicase_slide-link {
            display: block;
            height: 100%;
            text-decoration: none;
            color: inherit;
            position: relative;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 图片容器 */
        .iicase_image-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 0px;
        }
        
        /* 图片样式 */
        .iicase_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        /* 非中心项透明度 */
        .iicase_slide:not(.iicase_center) .iicase_image {
            opacity: 0.5;
        }
        
        /* 信息方块 - 默认隐藏 */
        .iicase_info-box {
            position: absolute;
            bottom: 40px;
            left: 80px;
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 0px;
            max-width: 350px;
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateY(5px);
        }
        
        /* 中心项显示信息方块 */
        .iicase_center .iicase_info-box {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 标题样式 */
        .iicase_title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #000;
            transition: color 0.3s ease;
        }
        
        /* 描述样式 */
        .iicase_description {
            font-size: 14px;
			line-height:28px;
            color: #333333;
            transition: color 0.3s ease;
        }
        
        /* 悬停效果 */
        .iicase_slide-link:hover .iicase_image {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .iicase_slide-link:hover .iicase_info-box {
            background: #1b5c32;
        }
        
        .iicase_slide-link:hover .iicase_title,
        .iicase_slide-link:hover .iicase_description {
            color: #fff;
        }
        
        /* 导航箭头 - 放置在中间部分的两侧 */
        .iicase_arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            border: none;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }
        
        .iicase_arrow:hover {
            background: #1b5c32;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .iicase_arrow-left {
            left: calc(21% + 15px);
        }
        
        .iicase_arrow-right {
            right: calc(25% + 15px);
        }
        
        /* 指示器容器 */
        .iicase_indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }
        
        /* 指示器圆点 */
        .iicase_indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .iicase_indicator.iicase_active {
            background: #1b5c32;
            transform: scale(1.2);
        }
        
        /* 响应式设计 - 移动端和平板 */
        @media (max-width: 1024px) {
            .iicase_slide {
                flex: 0 0 100% !important;
                padding: 0 5px;
            }
            
            .iicase_slide.iicase_center {
                flex: 0 0 100% !important;
            }
            
            .iicase_track {
                height: auto;
                min-height: 250px;
            }
            
            .iicase_arrow {
                width: 35px;
                height: 35px;
            }
            
            .iicase_arrow-left {
                left: 10px;
            }
            
            .iicase_arrow-right {
                right: 10px;
            }
            
            .iicase_info-box {
                bottom: 50px;
                left: 50px;
                padding: 12px;
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
            
            .iicase_title {
                font-size: 18px;
            }
            
            .iicase_description {
                font-size: 14px;
            }
            
            /* 移动端所有图片正常显示 */
            .iicase_image {
                opacity: 1 !important;
            }
            
            /* 移动端悬停效果调整 */
            .iicase_slide-link:active .iicase_image {
                transform: scale(1.03);
                filter: brightness(0.9);
            }
            
            .iicase_slide-link:active .iicase_info-box {
                background: rgba(255, 0, 0, 0.7);
            }
            
            .iicase_slide-link:active .iicase_title,
            .iicase_slide-link:active .iicase_description {
                color: #fff;
            }
        }
        
        /* 平板特定样式 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .iicase_track {
                height: 300px;
            }
            
            .iicase_arrow-left {
                left: 20px;
            }
            
            .iicase_arrow-right {
                right: 20px;
            }
        }
/* ————————————————————————————首页4大优势——————————————————————————— */ 
        .iyoushi-container {
            margin: 0 auto;
            width: 100%;
            padding: 20px;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
        }        
        .iyoushi-header {
            padding: 50px 0px 30px 0px;
            text-align: center;
            margin-bottom: 0px;
        }        
        .iyoushi-header h1 {
            font-size: 2.5rem;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: 2px;
        }        
        .iyoushi-header p {
            font-size: 1.2rem;
             color: #ffffff;
            margin-top: 10px;
        }        
        .iyoushi-strengths {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 20px;
        }        
        .iyoushi-strength-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .iyoushi-strength-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 80px;
            width: 1px;
            background: rgba(255, 255, 255, 0.3);
            background-image: repeating-linear-gradient(to bottom, transparent, transparent 5px, rgba(255,255,255,0.3) 5px, rgba(255,255,255,0.3) 10px);
        }
        
        .iyoushi-number-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .iyoushi-number {
            font-size: 3.5rem;
            font-weight: 700;
             color: #ffffff;
            line-height: 1;
        }
        
        .iyoushi-unit {
            position: absolute;
            bottom: 5px;
            right: -50px;
            font-size: 2rem;
             color: #ffffff;
        }
        
        .iyoushi-desc {
            font-size: 1.2rem;
             color: #ffffff;
            margin-top: 10px;
        }
        
        .iyoushi-icon {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 15px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .iyoushi-strength-item {
                flex: 0 0 50%;
                min-width: 50%;
            }
            
            .iyoushi-strength-item:nth-child(2)::after {
                display: none;
            }
            
            .iyoushi-strength-item:nth-child(even)::after {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .iyoushi-header h1 {
                font-size: 2rem;
            }
            
            .iyoushi-strength-item {
                flex: 0 0 100%;
                min-width: 100%;
            }
            
            .iyoushi-strength-item::after {
                display: none !important;
            }
            
            .iyoushi-strength-item:not(:last-child) {
                border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
                padding-bottom: 30px;
                margin-bottom: 20px;
            }
            
            .iyoushi-number {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 480px) {
            .iyoushi-container {
                padding: 10px;
            }
            
            .iyoushi-header {
                padding: 30px 15px;
            }
            
            .iyoushi-header h1 {
                font-size: 1.8rem;
            }
            
            .iyoushi-strengths {
                padding: 30px 15px;
            }
            
            .iyoushi-number {
                font-size: 2.5rem;
            }
            
            .iyoushi-desc {
                font-size: 1rem;
            }
        }	 
 /* ————————————————————————————首页简介——————————————————————————— */ 
         .iabout-container {
            display: flex;
            margin: 0px auto;
            padding: 50px 0px 50px 0px;
            flex-wrap: wrap;
            overflow: hidden;
        }
        
        .iabout-left {
            flex: 0 0 55%;
         
        }
        
        .iabout-right {
            flex: 0 0 45%;
			padding-left:50px;
            position: relative;
            overflow: hidden;
        }
        
        .iabout-company-name {
            font-size: 30px;
            font-weight: 600;
            color: #222222;
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
        
        .iabout-company-name::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #1b5c32, #1b5c32);
            border-radius: 2px;
        }
        
        .iabout-company-desc {
            font-size: 1rem;
            line-height: 1.8;
            color: #666666;
			margin-top: 20px;
            margin-bottom: 35px;
            text-align: justify;
        }
        
        .iabout-btn {
            display: inline-block;
            padding: 11px 38px;
            background-color: #1b5c32;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.4s ease;
            border: 1px solid #1b5c32;
            box-shadow: 0 2px 5px #999999;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .iabout-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: white;
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .iabout-btn:hover::before {
            width: 100%;
        }
        
        .iabout-btn:hover {
            color: #1b5c32;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        
        .iabout-image-container {
            width: 100%;
            height: 0;
            padding-top: 80%; /* 5:4 比例 */
            position: relative;
            overflow: hidden;
        }
        
        .iabout-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height-: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .iabout-right:hover .iabout-image {
            transform: scale(1.05);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .iabout-left, .iabout-right {
                flex: 0 0 100%;
            }
            
            .iabout-left {
                padding: 40px 30px;
            }
            
			.iabout-right {
            flex: 0 0 100%;
			padding:0px;
            position: relative;
            overflow: hidden;
        }
            .iabout-company-name {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .iabout-container {
                margin: 20px auto;
                border-radius: 8px;
            }
            
            .iabout-left {
                padding: 30px 20px;
            }
            
            .iabout-company-name {
                font-size: 1.8rem;
            }
           .iabout-right {
            flex: 0 0 100%;
			padding:0px;
            position: relative;
            overflow: hidden;
        }
        
            .iabout-company-desc {
                font-size: 1rem;
            }
            
            .iabout-btn {
                padding: 12px 28px;
                font-size: 0.95rem;
            }
        }
 
/* ————————————————————————————首页新闻——————————————————————————— */  
         /* 页面背景样式 */
        .inews-page-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80vh;
            background-image: url('../img/bg_news.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            filter: brightness(0.8);
            z-index: -1;
        }
        
        .inews-content-bg {
            background-color: #fff;
			 margin: 0 auto;
			  max-width: 1400px;
            min-height-: 100vh;
            margin-top: 10vh;
            position: relative;
            z-index: 1;
        }
        
        /* 主要内容容器 */
        .inews-container { 
            margin: 0 auto;
            padding: 40px 0px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        /* 通用栏目样式 */
        .inews-column {
            flex: 1;
            min-width: 300px;
            margin: 0 15px;
        }
        
        .inews-section-title {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #000;
        }
        
        /* 左右栏目样式 */
        .inews-news-card {
            background: #fff;
            border: 1px solid #eeeeee;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .inews-news-image {
            width: 100%;
            height: 210px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .inews-news-content {
            padding: 15px;
        }
        
        .inews-news-title {
            font-size: 18px;
            font-weight: 500;
            margin: 10px 0;
        }
        
        .inews-news-desc {
            color: #999999;
            font-size: 14px;
            margin-bottom: 15px;
			line-height:24px;
        }
        
        .inews-more-btn {
            display: inline-block;
            padding: 8px 25px;
            background: #fff;
            color: #666666;
            border: 1px solid #e0e0e0;
            border-radius: 50px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        /* 中间栏目样式 */
        .inews-middle-section {
            padding: 15px 0px 15px 0px;
            border-bottom: 1px solid #ededed;
        }
        
        .inews-middle-section:last-child {
            border-bottom: none;
        }
        
        .inews-middle-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .inews-middle-desc {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
			line-height:24px;
        }
        
        .inews-middle-meta {
            display: flex;
            align-items: center;
            color: #999;
            font-size: 12px;
        }
        
        .inews-middle-icon {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }
        
        /* 链接样式 */
        .inews-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        /* 鼠标悬停效果 */
        .inews-link:hover .inews-news-image {
            transform: scale(1.05);
        }
        
        .inews-link:hover .inews-news-title,
        .inews-link:hover .inews-middle-title {
            color: #1b5c32;
        }
        
        .inews-more-btn:hover {
            background: #1b5c32;
            color: #fff;
            border-color: #1b5c32;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .inews-column {
                flex: 100%;
                margin-bottom: 30px;
            }
        }
 
 /* ————————————————————————————首页伙伴——————————————————————————— */ 
   .ilogo-container {          
            margin: 0 auto;
            padding: 50px 0px;
            background-color-: #fff;
        }
        
        .ilogo-header {text-transform: uppercase;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .ilogo-title {text-transform: uppercase;
            font-size: 30px;
            color: #222222;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .ilogo-subtitle {
            font-size: 14px;
            color: #999999;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .ilogo-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 1px;
            border-radius: 8px;
            overflow: hidden;
    
        }
        
        .ilogo-item {
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 15px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .ilogo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid #efefef;
            pointer-events: none;
        }
        
        .ilogo-link {
            display: block;
            width: 100%;
            height: 100%;
            text-align: center;
            text-decoration: none;
            color: inherit;
        }
        
        .ilogo-img {
            max-width: 100%;
            height: auto;
            max-height: 60px;
            transition: all 0.3s ease;
            filter: grayscale(1%);
            opacity: 0.85;
        }
        
        .ilogo-item:hover {
            background-color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
            z-index: 1;
        }
        
        .ilogo-item:hover .ilogo-img {
            transform: scale(1.1);
            filter: grayscale(0%);
            opacity: 1;
        }

        
        /* 平板端适配 */
        @media (max-width: 1024px) {
            .ilogo-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .ilogo-title {
                font-size: 1.9rem;
            }
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .ilogo-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .ilogo-title {
                font-size: 1.7rem;
            }
            
            .ilogo-subtitle {
                font-size: 1rem;
            }
            
            .ilogo-item {
                padding: 20px 10px;
            }
            
            .ilogo-img {
                max-height: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .ilogo-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .ilogo-title {
                font-size: 1.5rem;
            }
            
            .ilogo-item {
                padding: 15px 8px;
            }
            
            .ilogo-img {
                max-height: 40px;
            }
        }
 
 /* ————————————————————————————底部版权——————————————————————————— */  
         /* 页脚容器 */
        .ifoot-container {
            background-color: #333;
            width: 100%;
            padding: 50px 0px 30px 0px;
        }

        /* 页脚内容区域 */
        .ifoot-content {
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        /* 分隔线 */
        .ifoot-divider {
            width: 100%;
            height: 1px;
            background-color: #999999;
            margin: 0px 0;
        }

        /* 页脚底部区域 */
        .ifoot-bottom {
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* 页脚部分通用样式 */
        .ifoot-section {
            margin-bottom: 20px;
        }

        .ifoot-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
            font-weight: 600;
        }

        .ifoot-section p, .ifoot-section a {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 10px;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }

        .ifoot-section a:hover {
            color: #fff;
        }

        /* 第1部分 - 公司信息 */
        .ifoot-company {
            flex: 0 0 25%;
        }

        .ifoot-company h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #fff;
        }

        .ifoot-contact {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .ifoot-contact i {
            margin-right: 10px;
            color: #dddddd;
            width: 20px;
            text-align: center;
        }

        /* 第2-4部分 - 链接分类 */
        .ifoot-links {
            flex: 0 0 13%;
        }
		


        /* 第5部分 - 关注我们 */
        .ifoot-social {
            flex: 0 0 0%;
        }

        .ifoot-qr {
            width: 140px;
            height: 140px;
            background-color: #333;
            margin: 15px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 14px;
        }

        .ifoot-share {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .ifoot-share a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            transition: transform 0.3s;
        }

        .ifoot-share a:hover {
            transform: translateY(-3px);
        }

        .ifoot-whatsapp { background-color: #25D366; }
        .ifoot-facebook { background-color: #3b5998; }
        .ifoot-linkedin { background-color: #0077b5; }
        .ifoot-email { background-color: #EA4335; }
        .ifoot-youtube { background-color: #FF0000; }

        /* 版权信息 */
        .ifoot-copyright {
            font-size: 14px;
            color: #cccccc;
            margin-top: 20px;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .ifoot-content {
                flex-direction: column;
            }

            .ifoot-company, .ifoot-links, .ifoot-social {
                flex: 0 0 100%;
                margin-bottom: 30px;
            }

            .ifoot-links:nth-child(2),
            .ifoot-links:nth-child(3),
            .ifoot-links:nth-child(4),
			.ifoot-links:nth-child(5) {
                display: none;
            }

            .ifoot-bottom {
                flex-direction: column;
                text-align: center;
            }

            .ifoot-share {
                justify-content: center;
            }
        }

        /* 平板端适配 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .ifoot-company {
                flex: 0 0 40%;
            }

            .ifoot-links {
                flex: 0 0 25%;
            }

            .ifoot-social {
                flex: 0 0 25%;
            }
        }
 /*--------------------- 底部接受隐私 */	
 
         
        /* 页面内容样式 */
        .cook-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .cook-content h1 {
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .cook-content p {
            margin-bottom: 15px;
        }
        
        /* Cookie弹窗样式 */
        .cook-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
            padding: 20px;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cook-container.active {
            transform: translateY(0);
        }
        
        .cook-content-wrapper {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .cook-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .cook-text {
            font-size: 14px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .cook-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .cook-btn {
            padding: 10px 24px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 120px;
        }
        
        .cook-btn-reject {
            background-color: #f8f9fa;
            color: #6c757d;
            border: 1px solid #dee2e6;
        }
        
        .cook-btn-reject:hover {
            background-color: #e9ecef;
        }
        
        .cook-btn-accept {
            background-color: #1b5c32;
            color: white;
        }
        
        .cook-btn-accept:hover {
            background-color: #000000;
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .cook-container {
                padding: 15px;
            }
            
            .cook-title {
                font-size: 16px;
            }
            
            .cook-text {
                font-size: 13px;
            }
            
            .cook-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .cook-btn {
                width: 100%;
            }
        }
        
        /* 平板端样式 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .cook-container {
                padding: 18px;
            }
        }
 	
 /*--------------------- 客服系统样式 - 添加kefu前缀 */
        .kefu-sidebar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            background-color: #1b5c32; /* 绿色背景 */
            border-radius: 8px 0 0 8px;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 0;
        }

        .kefu-item {
            width: 100%;
            text-align: center;
            padding: 12px 0;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .kefu-item:not(:last-child)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .kefu-item:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .kefu-icon {
            color: white;
            font-size: 20px;
            display: block;
        }

        .kefu-tooltip {
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            background-color: #333;
            color: white;
            padding: 15px 15px;
            border-radius: 4px;
            font-size: 16px;
            white-space: nowrap;
            margin-right: 5px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .kefu-item:hover .kefu-tooltip {
            opacity: 1;
            visibility: visible;
        }

        .kefu-qrcode {
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            padding: 5px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-right: 10px;
            width: 160px;
            text-align: center;
        }

        .kefu-item:hover .kefu-qrcode {
            opacity: 1;
            visibility: visible;
        }

        .kefu-qrcode img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        .kefu-qrcode p {
            margin: 8px 0 0;
            font-size: 14px;
            color: #333;
        }

        /* 移动端隐藏 */
        @media (max-width: 768px) {
            .kefu-sidebar {
                display: none;
            }
        }