/* ————————————————————————————首页标题样式1———————————————————————————— */
        .title-container { text-align: center;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out;
        }        
        .main-title {text-transform: uppercase;
            font-size: 28px;
            font-weight: 700;
            color: #ff3000;
            margin-bottom: 5px;
            letter-spacing: 1px;
            text-shadow-: 2px 2px 4px rgba(0,0,0,0.1);
        }        
        .subtitle {text-transform: uppercase;
            font-size: 15px;
            color: #333333;
            font-weight: 600;
            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 #f3000;
            color: #f3000;
            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: #f3000;
            color: #f3000;
            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: 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: #ff3000;
            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;
            }
        }
/* ————————————————————————————首页产品分类导航———————————————————————————— */		 
.nav_a{ margin-top:50px;padding: 0 10%;}
.nav_a .typelist{ text-align:center;}
.nav_a .typelist li{ display:inline-block;margin-bottom:5px;}
.nav_a .typelist li .box{ margin:0 1px; padding:10px 5px; font-size:14px; color:#666666; width:160px; text-align:center; border: solid #d9d9d9 1px; display:inline-block; border-radius:50px;background:#ffffff;}
.nav_a .typelist li .box:hover{ background:#ff3000; color:#fff;  border: solid #ff3000 0px; transition: ease .3s;}
.nav_a .typelist li .on{ background:#ff3000; color:#fff;  border: solid #ff3000 0px; transition: ease .3s;}
 @media (max-width: 768px) {
 .nav_a .typelist li .box{ margin:0 1px; padding:8px 5px; font-size:12px; color:#000; width:150px; text-align:center; border: solid #6f6f6f 0px; display:inline-block; border-radius:50px;background:#efefef;}  
}
/* ————————————————————————————首页产品6个——————————————————————————— */

        
        .iproduct-container {
            margin: 30px 0px 30px 0px;
            padding: 0px;
        }
        
        
        .iproduct-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .iproduct-item {
            background: white;
            border-radius: 5px;
			border:#ededed 1px solid;
            overflow: hidden;
            box-shadow0: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .iproduct-item:hover {
            transform: translateY(-2px);
            box-shadow-: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .iproduct-img-container {
            position: relative;
            overflow: hidden;
            padding-top: 100%; /* 1:1宽高比 */
        }
        
        .iproduct-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
			padding:20px;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .iproduct-item:hover .iproduct-img {
            transform: scale(1.01);
        }
        
        .iproduct-title-container {
            background: #eaeaea;
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .iproduct-title {
            font-size: 16px;
            font-weight: 600;
            color: #666666;
            margin: 0;
            transition: color 0.3s ease;
        }
        
        .iproduct-item:hover .iproduct-title {
            color: #ff3000;
        }
        
        .iproduct-price {
            font-size: 1.2rem;
            color: #e74c3c;
            font-weight: bold;
            margin-top: 8px;
        }
        
        .iproduct-link {
            text-decoration: none;
            display: block;
            height: 100%;
        }
        
        .iproduct-footer {
            text-align: center;
            margin-top: 60px;
            padding: 30px;
            color: #7f8c8d;
            border-top: 1px solid #eee;
        }
        
        /* 平板设备样式 */
        @media (max-width: 1024px) {
            .iproduct-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .iproduct-header h1 {
                font-size: 2.4rem;
            }
        }
        
        /* 移动设备样式 */
        @media (max-width: 768px) {
            .iproduct-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .iproduct-header h1 {
                font-size: 2rem;
            }
            
            .iproduct-header p {
                font-size: 1rem;
            }
            
            .iproduct-title {
                font-size: 1.3rem;
            }
        }
        

        @media (max-width: 480px) {
            .iproduct-container {
                padding: 10px;
            }
            
            .iproduct-header {
                margin-bottom: 30px;
            }
            
            .iproduct-title-container {
                padding: 15px;
            }
        }
/* -------------------------------首页公司图片 */        
        .icase-container {
            margin: 0 auto;
            padding: 10px 0;
        }        
        .icase-gallery {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }
        
        .icase-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 0px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            aspect-ratio: 5/4;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .icase-gallery-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
            z-index: 10;
        }
        
        .icase-gallery-link {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .icase-gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter 0.3s ease;
        }
        
        .icase-gallery-item:hover .icase-gallery-img {
            filter: brightness(0.8);
        }
        
        .icase-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0,0,0,0.4);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .icase-gallery-item:hover .icase-overlay {
            opacity: 1;
        }
        
        .icase-overlay-text {
            color: white;
            font-size: 1rem;
            font-weight: 500;
            text-align: center;
            padding: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        /* 平板设备适配 */
        @media (max-width: 1024px) {
            .icase-gallery {
                grid-template-columns: repeat(5, 1fr);
            }
            
            .icase-header h1 {
                font-size: 2.4rem;
            }
        }
        
        /* 移动设备适配 */
        @media (max-width: 768px) {
            .icase-gallery {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .icase-header h1 {
                font-size: 2rem;
            }
            
            .icase-header p {
                font-size: 1rem;
            }
        }
        
        /* 小屏幕移动设备适配 */
        @media (max-width: 480px) {
            .icase-gallery {
				display:none;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .icase-header h1 {
                font-size: 1.8rem;
            }
        }
        
        .icase-footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        
        .icase-device-info {
            background: rgba(0,0,0,0.2);
            padding: 15px;
            border-radius: 10px;
            margin-top: 30px;
            display: inline-block;
            font-size: 1rem;
        }
        
        .icase-highlight {
            background: rgba(255,255,255,0.2);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
        }
/* -------------------------------首页6大优势 */

        .iiyoushi-container {
            width: 100%;
            margin: 0 auto;
            padding: 40px 0px;
        }

        
        .iiyoushi-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
			padding: 40px 0px;
            margin-top: 0px;
        }
        
        .iiyoushi-feature {
            background-: rgba(255, 255, 255, 0.12);
            border-radius: 15px;
            padding: 40px 25px;
            text-align: center;
            width: calc(16.666% - 30px);
            min-width: 180px;
            transition: all 0.4s ease;
            box-shadow---: 0 8px 25px rgba(0,0,0,0.15);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
        }
        
        .iiyoushi-feature:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }
        
        .iiyoushi-icon-wrapper {
            width: 80px;
            height:80px;
            border: 1px solid white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
        }
        
        .iiyoushi-feature:hover .iiyoushi-icon-wrapper {
            background: white;
        }
        
        .iiyoushi-icon {
            font-size: 40px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .iiyoushi-feature:hover .iiyoushi-icon {
            color: #ff6a00;
        }
        
        .iiyoushi-feature h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            font-weight: 600;color: rgba(255,255,255,0.9);
            letter-spacing: 1px;
        }
        
        .iiyoushi-feature p {
            font-size: 12px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0px;
            font-weight: 300;
        }
        
        .iiyoushi-divider {
            height: 0px;
            width: 60px;
            background: rgba(255,255,255,0.3);
            margin: 20px auto;
            transition: all 0.3s ease;
        }
        
        .iiyoushi-feature:hover .iiyoushi-divider {
            width: 100px;
            background: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .iiyoushi-feature {
                width: calc(33.333% - 30px);
            }
        }
        
        @media (max-width: 768px) {
            .iiyoushi-feature {
                width: calc(50% - 30px);
            }
            
            .iiyoushi-header h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .iiyoushi-feature {
                width: 100%;
                max-width: 350px;
            }
            
            .iiyoushi-header h1 {
                font-size: 2rem;
            }
            
            .iiyoushi-header p {
                font-size: 1rem;
            }
        }
        

        
        .iiyoushi-highlight {
            color: white;
            font-weight: bold;
        }
		
		
/* -------------------------------首页关于我们 */		
        
        /* 首页标题样式 */
        .ititle-container {
            text-align: center;
            padding: 50px 0px;
            margin-bottom: 40px;
        }
        
        .ititle-main {
            font-size: 2.8rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .ititle-sub {
            font-size: 1.5rem;
            color: #6c757d;
            font-weight: 300;
            margin-bottom: 25px;
            letter-spacing: 2px;
        }
        
        .ititle-line {
            width: 80px;
            height: 4px;
            background-color: #e74c3c;
            margin: 0 auto;
            border-radius: 2px;
        }
        
        /* 内容区域样式 */
        .iiabout-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0px;
            margin-top: 30px;
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .iiabout-left {
            flex: 0 0 60%;
            padding: 30px;
        }
        
        .iiabout-right {
            flex: 0 0 40%;
            background-color-: #f1f3f5;
            padding: 40px 0px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .iiabout-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .iiabout-desc {
            font-size: 16px;
            color: #666666;
            margin-bottom: 10px;
            line-height: 1.8;
            padding: 20px;
            background--: #f8f9fa;
            border-radius: 8px;
            border-left--: 4px solid #495057;
        }
        
        .iiabout-button {
            display: inline-block;
            background-color: #ff3000;
            color: white;
            text-decoration: none;
            padding: 12px 40px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1rem;
			margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .iiabout-button:hover {
            background-color: #ff3000;color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 7px 20px rgba(230, 126, 34, 0.4);
        }
        
        .iiabout-button:active {
            transform: translateY(-1px);
        }
        
        .iiabout-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(25deg);
            transition: all 0.6s;
        }
        
        .iiabout-button:hover::after {
            left: 120%;
        }
        
        /* 轮播图样式 */
        .carousel {
            position: relative;
            max-width: 100%;
            overflow: hidden; background: #f9f9f9;
            border-radius: 0px;
            box-shadow-: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            min-width: 100%;
            padding: 30px;
            text-align: center;
        }
        
        .certificate-img {
            width: 100%;
            max-height: 400px;
            object-fit: contain;
            border-radius: 6px;
            margin-bottom: 00px;
           
            padding: 0px;
            box-shadow-: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .certificate-title {
            font-size: 1rem;
            font-weight: 500;
            color: #666666;
            margin-top: 15px;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            color: #333;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        
        .carousel-control:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control.prev {
            left: 15px;
        }
        
        .carousel-control.next {
            right: 15px;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background: #eeeeee;
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: #ff3000;
            transform: scale(1.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .iiabout-left,
            .iiabout-right {
                flex: 0 0 100%;
            }
            
            .iiabout-img {
                height: 300px;
            }
            
            .ititle-main {
                font-size: 2.2rem;
            }
            
            .ititle-sub {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .iiabout-left {
                padding: 25px;
            }
            
            .iiabout-img {
                height: 250px;
            }
            
            .ititle-container {
                padding: 30px 10px;
            }
            
            .ititle-main {
                font-size: 1.8rem;
            }
            
            .ititle-sub {
                font-size: 1rem;
            }
            
            .carousel-control {
                width: 35px;
                height: 35px;
            }
        }
        
        @media (max-width: 480px) {
            .iiabout-img {
                height: 200px;
            }
            
            .iiabout-button {
                padding: 12px 28px;
                font-size: 1rem;
            }
            
            .certificate-img {
                max-height: 220px;
            }
        }
/* -------------------------------首页新闻中心 */	
      .inews-container {
            margin: 0 auto;
            padding: 0px 0px 50px 0px;
        }
        /* 轮播容器样式 */
        .inews-carousel {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
            border-radius: 0px;
            box-shadow==: 0 10px 30px rgba(0, 0, 0, 0.1);
            background-color=: white;
        }
        
        .inews-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .inews-slide {
            flex: 0 0 100%;
            padding: 0px;
        }
        
        /* 新闻项样式 */
        .inews-item {
            display: flex;
            flex-direction: column;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color=: white;
        }
        
        .inews-item:hover {
            transform: translateY(-5px);
            box-shadow-: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .inews-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px 8px 0 0;
        }
        
        .inews-content {
            padding: 0px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .inews-title {
			height:80px;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: #666666;
            line-height: 1.6;
        }
        
        .inews-date {
            color: #999999;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .inews-date i {
            margin-right: 8px;
            color: #999999;
			
        }
        
        .inews-description a{
			margin-top: 15px;
            color: #999999;
			font-size: 0.9rem;
            line-height: 1.8;
            flex-grow: 1;
        }
        
        .inews-read-more {
            display: inline-block;
            margin-top: 15px;
			font-size: 16px;
            color: #666666;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .inews-read-more:hover {
            color: #666666;
        }
        
        .inews-read-more i {
            margin-left: 5px;
            font-size: 14px;
        }
        
        /* 控制按钮样式 */
        .inews-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        
        .inews-prev, .inews-next {
            background-color: #eeeeee;
            color: #999999;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1.2rem;
        }
        
        .inews-prev:hover, .inews-next:hover {
            background-color: #333333;
        }
        
        .inews-indicators {
            display: flex;
            margin: 0 20px;
        }
        
        .inews-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #bdc3c7;
            margin: 0 8px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .inews-indicator.active {
            background-color: #ff3300;
        }
        
        /* 平板端样式 */
        @media (min-width: 768px) {
            .inews-slide {
                flex: 0 0 33.333%;
            }
            
            .inews-item {
                margin: 0 10px;
            }
        }
        
        /* 桌面端样式 */
        @media (min-width: 1024px) {
            .inews-slide {
                flex: 0 0 33.333%;
            }
            
            .inews-item {
                margin: 0 15px;
            }
        }
/* -------------------------------首页底部版权 */	
		 .index_foot {
            background: #333;
            color: #fff;
        }

        .index_foot a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s;
        }
		
        .index_foot a:hover {
            opacity: 0.8;
        }

        /* 上半部分 */
        .index_foot__top {
            display: flex;
            padding: 50px 0%;
            gap: 30px;
        }

        /* 左侧样式 */
        .index_foot__left {
            flex: 3;
        } 
.index_foot__left ul{word-break: break-word;}
.index_foot__left li {line-height:33px}
.index_foot__left li a {line-height:33px}
.index_foot__left li a:hover{color: #fff;}
 
		 .index_foot_name{
          color: #fff;
          font-size: 20px;
		  padding-bottom:20px;
        }
        .index_foot__phone {
            font-size: 16px;
            font-weight: 500;
        }
        .index_foot__address {
            margin-top: 5px;
            word-break: break-word;
        }

        /* 中间部分 */
		 .index_foot_title{
          color: #fff;
          font-size: 18px;
		  padding-bottom:10px;
        }
        .index_foot__middle {
            flex: 3;
            display: flex;
            gap: 30px;
        }
        .index_foot__category,
        .index_foot__links {
            flex: 1;
        }
        .index_foot__category a,
        .index_foot__links a {
            display: block;
            margin: 8px 0;
            word-break: break-word;
        }
		 .index_foot__category a:hover{
			color: #fff;
            word-break: break-word;
        }
        .index_foot__links a:hover{
			color: #fff;
            word-break: break-word;
        }
        /* 右侧样式 */
        .index_foot__right {
            flex: 1;
        }
        .index_foot__qrcode-box {
            display: flex;
            gap: 20px;
            margin: 15px 0;
        }
        .index_foot__qrcode {
            text-align: center;
        }
        .index_foot__qrcode img {
            width: 150px;       
        }
		 .index_foot__qrcode_title{
          color: #fff;
          font-size: 14px;
		  padding-top:8px;
        }
        .index_foot__share {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        .index_foot__share a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #666666;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }
        .index_foot__share a:hover {
			color: #fff;
            transform: scale(1.1);
			background: #015bac;
        }
        /* 下半部分 */
        .index_foot__bottom {
            border-top: 1px solid #666666;
            padding: 20px 0%;
            display: flex;
            justify-content: space-between;
        }
       .index_foot__bottom a:hover{
          color: #fff;
        }
        /* 移动端样式 */
        @media (max-width: 768px) {
            .index_foot__top {
                flex-direction: column;
                text-align: center;
            }
            .index_foot__middle {
                display: none;
            }
            .index_foot__qrcode-box {
                justify-content: center;
            }
            .index_foot__share {
                justify-content: center;
            }
            .index_foot__bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
		/*--------------------- 客服系统样式 - 添加kefu前缀 */
        .kefu-sidebar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            background-color: #ff3300; /* 绿色背景 */
            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;
            }
        }