/* ————————————————————————————首页标题通用———————————————————————————— */
		        .ititleb-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-family: system-ui, -apple-system, sans-serif;
            border-bottom: 1px solid #eee;
        }

        .ititleb-left-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .ititleb-product-center {
            font-size: 22px;
            font-weight: 700;
			z-index:2;
            color: #333333;
            white-space: nowrap;
        }

        .ititleb-product-list {
            font-size: 60px;
			z-index:1;
            font-weight: 500;
			margin-left:-110px;
            color: #eeeeee;
            letter-spacing: 0px;
            white-space: nowrap;
        }

        .ititleb-right-section {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: opacity 0.2s;
            flex-shrink: 0;
        }

        .ititleb-right-section:hover {
            opacity: 0.8;
        }

        .ititleb-more {
            font-size: 16px;
            color: #333;
            white-space: nowrap;
        }

        .ititleb-vertical-line {
            width: 4px;
            height: 50px;
            background-color: #eb6622;
            border-radius: 2px;
            flex-shrink: 0;
        }

        /* 平板端适配 - 仅调整字体大小 */
        @media (max-width: 992px) {
            .ititleb-product-center {
                font-size: 20px;
            }
            .ititleb-product-list {
                font-size: 23px;
            }
        }

        /* 移动端适配 - 只调整字体大小，保持同一水平显示 */
        @media (max-width: 768px) {
            .ititleb-container {
                padding: 15px 0;
            }
            
            .ititleb-product-center {
                font-size: 18px;
            }
            
            .ititleb-product-list {
                font-size: 20px;
            }
            
            .ititleb-left-section {
                gap: 15px;
            }
            
            .ititleb-more {
                font-size: 14px;
            }
            
            .ititleb-vertical-line {
                height: 20px;
            }
        }

        /* 小屏幕手机适配 - 保持布局不变 */
        @media (max-width: 480px) {
            .ititleb-product-center {
                font-size: 16px;
            }
            
            .ititleb-product-list {
                font-size: 18px;
            }
            
            .ititleb-left-section {
                gap: 12px;
            }
            
            .ititleb-more {
                font-size: 13px;
            }
            
            .ititleb-vertical-line {
                height: 18px;
                width: 3px;
            }
        }

        /* 超小屏幕适配 - 保持水平布局 */
        @media (max-width: 320px) {
            .ititleb-container {
                padding: 12px 0;
            }
            
            .ititleb-product-center {
                font-size: 14px;
            }
            
            .ititleb-product-list {
                font-size: 16px;
            }
            
            .ititleb-left-section {
                gap: 8px;
            }
            
            .ititleb-more {
                font-size: 12px;
            }
        }
/* ————————————————————————————首页banner轮播———————————————————————————— */
        .ibanner_container {
            width: 100%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }        
        .ibanner_slides {
            position: relative;
            width: 100%;
            height: 600px;
            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: #eb6622;
            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, #f3000, #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: 250px;
            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-: 200px;
            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;
            }
        }
/* ————————————————————————————首页产品分类导航———————————————————————————— */		 

        .iptype-container {
            margin: 0 auto;
        }
        
        .iptype-section-title {
            text-align: center;
            margin-bottom: 10px;
            color: #333333;
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .iptype-section-subtitle {
            text-align: center;
            margin-bottom: 30px;
            color: #eb6622;
            font-size: 1.1rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 产品网格布局 */
        .iptype-products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        /* 产品卡片样式 */
        .iptype-product-card {
            display: block;
            text-decoration: none;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .iptype-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        /* 产品内部布局 */
        .iptype-product-inner {
            display: flex;
            padding:20px;
            height: 100%;border:#ededed 1px solid;
            min-height: 200px;
        }
        
        /* 图片容器 */
        .iptype-image-container {
            width: 50%;
            position: relative;
            overflow: hidden;
            background-color: #fff;
        }
        
        .iptype-product-image {
            width: 100%;
			
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
        }
        
        .iptype-product-card:hover .iptype-product-image {
            transform: scale(1.08);
            filter: brightness(0.85);
        }
        
        /* 内容容器 */
        .iptype-content-container {
            width: 50%;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* 不同产品部分的背景颜色 */
        .iptype-product-1 .iptype-content-container {
            background: linear-gradient(135deg, #ee732d, #ee732d);
        }
        
        .iptype-product-2 .iptype-content-container {
            background: linear-gradient(135deg, #ffb001, #ffb001);
        }
        
        .iptype-product-3 .iptype-content-container {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }
        
        .iptype-product-4 .iptype-content-container {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }
        
        /* 标题样式 */
        .iptype-product-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .iptype-product-subtitle {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 0px;
            font-style: normal;
        }
        
        /* 悬停提示 */
        .iptype-hover-hint {
            position: absolute;
            bottom:40px;
            right: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .iptype-product-card:hover .iptype-hover-hint {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .iptype-products-grid {
                gap: 20px;
            }
            
            .iptype-product-title {
                font-size: 1.6rem;
            }
            
            .iptype-product-subtitle {
                font-size: 1.1rem;
            }
            
            .iptype-content-container {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .iptype-products-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .iptype-section-title {
                font-size: 1.5rem;
            }
			    .iptype-product-title {
                font-size: 1.8rem;text-align:center
            }
            
            .iptype-product-inner {
                min-height: 240px;
            }
        }
        
        @media (max-width: 576px) {
            .iptype-product-inner {
                flex-direction: column;
                min-height: auto;
            }
            
            .iptype-image-container,
            .iptype-content-container {
                width: 100%;
            }
            
            .iptype-image-container {
                height: auto;
            }
            
            .iptype-content-container {
                padding: 5px 10px;
            }
            
            .iptype-section-title {
                font-size: 1.5rem; 
            }
            
            .iptype-product-title {
                font-size: 1.4rem;
				font-weight: 400;
				line-height:50px;
				text-align:center
            }
        }
       

/* ————————————————————————————首页产品8个——————————————————————————— */


        .ipro-container {
            margin: 0 auto;
            padding: 20px 0;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }

        .ipro-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            color: #333;
            position: relative;
        }

        .ipro-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #eb6622;
            margin: 10px auto 0;
        }

        .ipro-products {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        /* 产品项样式 */
        .ipro-product {
            border-radius:0px;
            overflow: hidden;
            background-color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: block;
            color: inherit;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .ipro-product:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* 图片容器 */
        .ipro-image-container {
            width: 100%;
            height-: 200px;
            overflow: hidden;
            position: relative;
            background-color: #f8f8f8;
        }

        .ipro-product-image {
            width: 100%;
            height-: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .ipro-product:hover .ipro-product-image {
            transform: scale(1.08);
        }

        /* 标题样式 */
        .ipro-product-title {
            padding: 20px 15px 15px;
            font-size: 1.1rem;
            font-weight: 500;
            color: #333333;
            text-align: center;
            line-height: 1.4;
            transition: color 0.3s ease;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ipro-product:hover .ipro-product-title {
            color: #eb6622;
        }

        /* 查看详情样式 */
        .ipro-details {
            padding: 0 15px 25px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
        }

        .ipro-details-text {
            color: #999999;
            transition: color 0.3s ease;
            position: relative;
            padding-bottom: 3px;
        }

        .ipro-details-text:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background-color: #999;
            transition: background-color 0.3s ease;
        }

        .ipro-details-plus {
            margin-left: 5px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .ipro-product:hover .ipro-details-text,
        .ipro-product:hover .ipro-details-plus {
            color: #eb6622;
        }

        .ipro-product:hover .ipro-details-text:after {
            background-color: #eb6622;
        }

        /* 平板端适配 */
        @media (max-width: 1024px) {
            .ipro-products {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            
            .ipro-title {
                font-size: 2.2rem;
            }
            
            .ipro-image-container {
                height: 180px;
            }
        }

        /* 移动端适配 - 强制2列显示 */
        @media (max-width: 768px) {
            .ipro-products {
                grid-template-columns: repeat(2, 1fr); /* 强制2列显示 */
                gap: 20px;
            }
            
            .ipro-title {
                font-size: 1.9rem;
                margin-bottom: 2rem;
            }
            
            .ipro-container {
                padding: 15px;
            }
            
            .ipro-image-container {
                height: auto;
            }
            
            .ipro-product-title {
                font-size: 1.1rem;
                padding: 15px 10px 10px;
                min-height: 50px;
            }
            
            .ipro-details {
                padding: 0 10px 20px;
            }
        }

        /* 小屏移动端适配 - 仍然保持2列显示 */
        @media (max-width: 480px) {
            .ipro-products {
                grid-template-columns: repeat(2, 1fr); /* 强制2列显示，而不是1列 */
                gap: 15px; /* 减小间距以适应小屏幕 */
            }
            
            .ipro-title {
                font-size: 1.7rem;
            }
            
            .ipro-image-container {
                height: auto; /* 调整图片高度以适应两列布局 */
            }
            
            .ipro-product-title {
                font-size: 1rem;
                padding: 12px 8px 8px;
                min-height: 45px;
            }
            
            .ipro-details {
                padding: 0 8px 15px;
                font-size: 0.9rem;
            }
            
            .ipro-container {
                padding: 12px;
            }
        }

        /* 超小屏移动端适配 - 仍然保持2列显示 */
        @media (max-width: 360px) {
            .ipro-products {
                grid-template-columns: repeat(2, 1fr); /* 强制2列显示 */
                gap: 12px; /* 进一步减小间距 */
            }
            
            .ipro-title {
                font-size: 1.5rem;
            }
            
            .ipro-image-container {
                height: 120px;
            }
            
            .ipro-product-title {
                font-size: 0.9rem;
                padding: 10px 6px 6px;
                min-height: 40px;
            }
            
            .ipro-details {
                font-size: 0.85rem;
            }
        }


 /* ————————————————————————————首页新闻——————————————————————————— */     
        .inews-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .inews-container {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;

            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 清除浮动 */
        .inews-clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        /* 链接样式 */
        .inews-link {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: color 0.3s ease;
        }
        
        /* 主布局 */
        .inews-layout {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        /* 左侧新闻部分 */
        .inews-left {
            width: 48%;
            padding: 0 15px;
        }
        
        .inews-featured {
            position: relative;
            height: 96%;
            overflow: hidden;
            border-radius: 0px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .inews-featured-link {
            height: 100%;
            display: block;
        }
        
        .inews-featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
        }
        
        .inews-featured-link:hover .inews-featured-img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .inews-featured-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 20px;
        }
        
        .inews-featured-date {
            display: flex;
            align-items: center;
            font-size: 14px;
            margin-bottom: 8px;
            opacity: 0.9;
        }
        
        .inews-featured-date i {
            margin-right: 8px;
        }
        
        .inews-featured-title {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.3;
        }
        
        /* 右侧新闻部分 */
        .inews-right {
            width: 52%;
            padding: 0 15px;
        }
        
        .inews-news-item {
            display: flex;
            margin-bottom: 20px;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            height: 140px;
        }
        
        .inews-news-link {
            display: flex;
            width: 100%;
        }
        
        .inews-news-img-container {
            width: 30%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .inews-news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
        }
        
        .inews-news-link:hover .inews-news-img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .inews-news-content {
            width: 70%;
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .inews-news-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
            color: #333;
            transition: color 0.3s ease;
        }
        
        .inews-news-link:hover .inews-news-title {
            color: #eb6622;
        }
        
        .inews-news-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        
        .inews-news-link:hover .inews-news-desc {
            color: #777;
        }
        
        .inews-news-footer {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #888;
            transition: color 0.3s ease;
        }
        
        .inews-news-link:hover .inews-news-footer {
            color: #eb6622;
        }
        
        .inews-news-footer i {
            margin-right: 6px;
        }
        
        /* 平板端响应式 */
        @media (max-width: 992px) {
            .inews-left,
            .inews-right {
                width: 100%;
            }
            
            .inews-left {
                margin-bottom: 30px;
            }
            
            .inews-featured {
                height: 400px;
            }
            
            .inews-news-item {
                height: 130px;
            }
        }
        
        /* 移动端响应式 */
        @media (max-width: 768px) {
            .inews-container {
                padding: 15px;
            }
            
            .inews-featured {
                height: 350px;
            }
            
            .inews-featured-title {
                font-size: 20px;
            }
            
            .inews-news-item {
                height: auto;
                flex-direction: row;
            }
            
            .inews-news-img-container {
                width: 40%;
            }
            
            .inews-news-content {
                width: 60%;
                padding: 12px 15px;
            }
            
            .inews-news-title {
                font-size: 16px;
            }
            
            .inews-news-desc {
                -webkit-line-clamp: 2;
                font-size: 13px;
            }
        }
        
        /* 小屏幕移动端 */
        @media (max-width: 480px) {
            .inews-featured {
                height: 300px;
            }
            
            .inews-featured-title {
                font-size: 18px;
            }
            
            .inews-featured-content {
                padding: 15px;
            }
            
            .inews-news-item {
                margin-bottom: 15px;
            }
            
            .inews-news-img-container {
                width: 45%;
            }
            
            .inews-news-content {
                width: 55%;
                padding: 10px 12px;
            }
            
            .inews-news-title {
                font-size: 15px;
                margin-bottom: 6px;
            }
            
            .inews-news-desc {
                margin-bottom: 8px;
                font-size: 12px;
            }
            
            .inews-news-footer {
                font-size: 12px;
            }
        }	  
	  
/* ————————————————————————————首页底部版权——————————————————————————— */	  
	  
        /* ifoot 前缀样式开始 */
        .ifoot-container {
            width: 100%;
        }
        
        /* 第1行 - 友情链接 */
        .ifoot-top-bar {
            background-color: #000000;
            padding:20px 0;
            border-bottom: 1px solid #222222;
        }
        
        .ifoot-top-content {
            margin: 0 auto;
            padding: 0px 0;
        }
        
        .ifoot-links {
            font-size: 14px;
        }
        
        .ifoot-links-label {
            color: #aaa;
            margin-right: 10px;
        }
        
        .ifoot-links a {
            color: #eb6622;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .ifoot-links a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        
        /* 第2行 - 主要内容 */
        .ifoot-main-content {
            background-color: #000;
            padding: 20px 0;
        }
        
        .ifoot-main-wrapper {
            max-width-:1360px;
            margin: 0 auto;
            padding: 20px 0 ;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        /* 第2行各部分基础样式 */
        .ifoot-logo-section, 
        .ifoot-menu-section, 
        .ifoot-contact-section, 
        .ifoot-qrcode-section {
            padding: 0px;
        }
        
        /* LOGO部分 */
        .ifoot-logo-section {
            flex: 1;
            min-width: 15%;
        }
        
        .ifoot-logo {
            max-width: 180px;
            height: auto;
        }
        
        /* 菜单部分 */
        .ifoot-menu-section {
            flex: 2;
            min-width: 20%;
        }
        
        .ifoot-menu-title {
            color: #fff;
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        
        .ifoot-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(4, auto);
            gap: 15px;
        }
        
        .ifoot-menu-item {
            list-style: none;
        }
        
        .ifoot-menu-item a {
            color: #ddd;
            text-decoration: none;
            font-size: 15px;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }
        
        .ifoot-menu-item a:hover {
            color: #eb6622;
        }
        
        .ifoot-menu-item i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }
        
        /* 联系方式部分 */
        .ifoot-contact-section {
            flex: 2;
            min-width:20%;
        }
        
        .ifoot-contact-title {
            color: #fff;
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        
        .ifoot-contact-item {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
        }
        
        .ifoot-contact-item i {
            color: #eb6622;
            margin-right: 12px;
            margin-top: 4px;
            width: 20px;
            text-align: center;
        }
        
        .ifoot-contact-text {
            color: #ddd;
            font-size: 15px;
            line-height: 1.5;
        }
        
        /* 二维码部分 */
        .ifoot-qrcode-section {
            flex: 1;
            min-width: 15%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .ifoot-qrcode-title {
            color: #fff;
            font-size: 16px;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .ifoot-qrcode {
            width: 130px;
            height: 130px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .ifoot-qrcode img {
            width: 120px;
            height: 120px;
        }
        
        .ifoot-qrcode-desc {
            color: #aaa;
            font-size: 13px;
            text-align: center;
            max-width: 150px;
        }
        
        /* 第3行 - 版权信息 */
        .ifoot-footer {
            background-color: #111;
            padding: 25px 0;
        }
        
        .ifoot-footer-content {
  
            margin: 0 auto;
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .ifoot-copyright {
            color: #aaa;
            font-size: 14px;
        }
        
        .ifoot-icp {
            color: #aaa;
            font-size: 14px;
        }
        
        .ifoot-icp a {
            color: #ffffff;
            text-decoration: none;
        }
        
        .ifoot-icp a:hover {
            text-decoration: underline;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            /* 移动端隐藏第1行、第2行的第1部分和第4部分 */
            .ifoot-top-bar,
            .ifoot-logo-section,
            .ifoot-qrcode-section {
                display: none;
            }
            
            .ifoot-main-wrapper {
                gap: 30px;
            }
            
            .ifoot-menu-section,
            .ifoot-contact-section {
                flex: 1 1 100%;
                min-width: 100%;
            }
            
            .ifoot-footer-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            /* 平板端调整 */
            .ifoot-main-wrapper {
                gap: 30px;
            }
            
            .ifoot-logo-section {
                flex: 1 1 100%;
                text-align: center;
                order: 1;
            }
            
            .ifoot-menu-section {
                flex: 1 1 calc(50% - 20px);
                order: 2;
            }
            
            .ifoot-contact-section {
                flex: 1 1 calc(50% - 20px);
                order: 3;
            }
            
            .ifoot-qrcode-section {
                flex: 1 1 100%;
                order: 4;
                margin-top: 20px;
            }
        }