/* ————————————————————————————首页标题样式1———————————————————————————— */
        
        .ititle-header {
            text-align: center;
            padding: 30px 0px 0px 0px;
            position: relative;
        }
        
        .ititle-main {
            font-size: 1.8rem;
            font-weight0: bold;
            color: #e60013;
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .ititle-sub {
            font-size: 1.8rem;
            color: #333333;
            font-weight-: 600;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }
        
        .ititle-sub::before,
        .ititle-sub::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 1px;
            background: #666666;
        }
        
        .ititle-sub::before {
            right: 100%;
        }
        
        .ititle-sub::after {
            left: 100%;
        }
        
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .ititle-main {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .ititle-sub {
                font-size: 1.5rem;
            }
            
            .ititle-sub::before,
            .ititle-sub::after {
                width: 40px;
            }
            
            .ititle-content {
                padding: 25px 30px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .ititle-main {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }
            
            .ititle-sub {
                font-size: 1.3rem;
            }
            
            .ititle-sub::before,
            .ititle-sub::after {
                width: 30px;
            }
            
            .ititle-content {
                padding: 20px 15px;
                font-size: 0.95rem;
            }
            
            .ititle-header {
                padding: 40px 15px;
            }
        }
/* ————————————————————————————首页查看更多按钮通用———————————————————————————— */
        .imore-button {
            display: inline-block;
            padding: 10px 30px;
            background-color: transparent;
            border: 1px solid #ccc;
            color: #666666;
            text-decoration: none;
            font-family: sans-serif;
            font-size: 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        
        .imore-button:hover {
            background-color: #115773;
            color: #fff;
            border-color: #115773;
        }
		
/* ————————————————————————————首页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: #e60013;
            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:#e60013; color:#fff;  border: solid #e60013 0px; transition: ease .3s;}
.nav_a .typelist li .on{ background:#e60013; color:#fff;  border: solid #e60013 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(4, 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: #333333;
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .iproduct-title {
            font-size: 14px;
            font-weight: 500;
            color: #ffffff; 
            margin: 0;
            transition: color 0.3s ease;
        }
        
        .iproduct-item:hover .iproduct-title {
            color: #e60013;
        }
        
        .iproduct-price {
            font-size: 1.2rem;
            color: #115773;
            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;
            }
        }
/* -------------------------------首页公司简介 ------------------------------------------------------------- */       
        
        /* 主容器 */
        .iabout-container {
            margin: 0 auto;
            padding: 70px 0px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        /* 左侧内容区域 */
        .iabout-left {
            flex: 1;
            min-width: 300px;   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);background-color: #ffffff;
        }
        
        /* 右侧图片区域 */
        .iabout-right {
            flex: 1;
            min-width: 300px;
				padding-top:50px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 标题样式 */
        .iabout-title {
            text-align: center;
            margin-top: 30px;
			margin-bottom: 10px;
            position: relative;
        }
        
        .iabout-title h1 {
            font-size: 1.8rem;
            font-weight: 500;
            color: #e60013;
            letter-spacing: 0px;
            margin-bottom: 5px;
        }
        
        .iabout-title h2 {
            font-size: 1.6rem;
            font-weight: 500;
            color: #333333;
            position: relative;
            display: inline-block;
            padding: 0 30px;
        }
        
        /* 标题两侧的短横线 */
        .iabout-title h2::before,
        .iabout-title h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 1px;
            background-color: #aaa;
        }
        
        .iabout-title h2::before {
            left: -50px;
        }
        
        .iabout-title h2::after {
            right: -50px;
        }
        
        /* 公司简介内容 */
        .iabout-content {
            margin-bottom: 10px;
            font-size: 1rem;
            line-height: 1.8; 
            color: #444;
			padding:0px 50px 20px 50px;
            text-align: justify;
        }
        
        /* 查看更多按钮 */
        .iabout-btn {
            display: inline-block;
            padding: 11px 28px;
            background-color: #115773;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
			 margin-bottom: 20px;
            letter-spacing: 0px;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .iabout-btn:hover {
            background-color: #115773;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
        
        .iabout-btn i {
            margin-left: 8px;
        }
        
        /* 图片容器 */
        .iabout-image-container {
		
            position: relative;
            overflow: hidden;
            border-radius: 0px;
            box-shadow-: 0 5px 15px rgba(0, 0, 0, 0.1);
            aspect-ratio: 5/2.6;
        }
        
        .iabout-image {
            width:100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .iabout-image-container:hover .iabout-image {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            .iabout-left {
                flex: 0 0 65%;
            }
            
            .iabout-right {
                flex: 0 0 calc(35% - 30px);
            }
        }
        
        @media (max-width: 767px) {
            .iabout-container {
                flex-direction: column;
            }
            
            .iabout-title h1 {
                font-size: 2rem;
            }
            
            .iabout-title h2 {
                font-size: 1.3rem;
            }
            
            .iabout-title h2::before,
            .iabout-title h2::after {
                width: 20px;
            }
            
            .iabout-title h2::before {
                left: -30px;
            }
            
            .iabout-title h2::after {
                right: -30px;
            }
        }

/* -------------------------------首页公司新闻 ------------------------------------------------------------- */     
        /* 轮播容器样式 */
        .inews-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            padding: 30px 0 50px 0;
        }
        
        .inews-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .inews-title {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .inews-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #115773;
        }
        
        .inews-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* 轮播主体样式 */
        .inews-carousel {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }
        
        .inews-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .inews-slide {
            flex: 0 0 33.333%;
            padding: 5px;
            transition: all 0.3s ease;
        }
        
        /* 新闻卡片样式 */
        .inews-news-card {
            background-color0: #fff;
            border-radius: 0px;
            overflow: hidden;
            box-shadow-: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        
        .inews-news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background-color: #115773;
            transition: height 0.3s ease;
            z-index: 1;
        }
        
        .inews-news-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .inews-news-card:hover::before {
            height: 10px;
        }
        
        .inews-news-content {
            padding: 20px;
        }
        
        .inews-news-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .inews-news-desc {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .inews-news-image {
            width: 100%;
            height: 0;
            padding-bottom: 60%; /* 5:3 比例 */
            background-color: #ecf0f1;
            border-radius: 0px;
            overflow: hidden;
            margin-bottom: 15px;
            position: relative;
        }
        
        .inews-news-image img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .inews-news-card:hover .inews-news-image img {
            transform: scale(1.05);
        }
        
        .inews-news-date {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .inews-news-date i {
            margin-right: 8px;
            color: #115773;
        }
        
        /* 轮播控制按钮样式 */
        .inews-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }
        
        .inews-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: transparent;
            border: 2px solid #bdc3c7;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #7f8c8d;
            font-size: 1.2rem;
            margin: 0 10px;
        }
        
        .inews-btn:hover {
            background-color: #115773;
            border-color: #115773;
            color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .inews-slide {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 768px) {
            .inews-slide {
                flex: 0 0 100%;
            }
            
            .inews-title {
                font-size: 1.8rem;
            }
            
            .inews-subtitle {
                font-size: 1rem;
            }
            
            .inews-news-title {
                font-size: 1.1rem;
            }
        }
        
        /* 指示器样式 */
        .inews-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .inews-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .inews-indicator.active {
            background-color: #115773;
        }

/* -------------------------------首页客服底部 ------------------------------------------------------------- */     
        .iservice-container {
            width: 100%;
			margin-bottom: 10px;
			border-bottom:12px #115773 solid;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);background-color: #ffffff;
        }
        
        .iservice-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .iservice-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .iservice-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .iservice-features {
            display: flex;
            gap: 30px;
            justify-content: center;
        }
        
        .iservice-feature {
            background-: white;
            border-radius: 0px;
            box-shadow0: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 10px 30px;
            text-align: center;
            flex: 1;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .iservice-feature:hover {
            transform: translateY(-3px);
            box-shadow-: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .iservice-icon {
            width: 100px;
            height: 100px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 5px;
            color: #666666;
            font-size: 2.6rem;
        }
        
        .iservice-feature-title {
            font-size: 1.4rem;
            font-weight: 500;
            color: #333;
            margin-bottom: 10px;
        }
        
        .iservice-feature-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        .iservice-phone {
            color: #115773;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .iservice-features {
                flex-wrap: wrap;
            }
            
            .iservice-feature {
                flex: 0 0 calc(50% - 15px);
                max-width: none;
            }
        }
        
        @media (max-width: 768px) {
            .iservice-feature {
                flex: 0 0 100%;
            }
            
            .iservice-title {
                font-size: 2rem;
            }
            
            .iservice-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 20px 15px;
            }
            
            .iservice-header {
                margin-bottom: 30px;
            }
            
            .iservice-title {
                font-size: 1.8rem;
            }
            
            .iservice-feature {
                padding: 30px 20px;
            }
            
            .iservice-icon {
                width:100px;
                height:100px;
                font-size: 1.8rem;
                margin-bottom: 0px;
            }
            
            .iservice-feature-title {
                font-size: 1.3rem;
            }
            
            .iservice-feature-desc {
                font-size: 0.95rem;
            }
        }

/* -------------------------------首页底部版权 ------------------------------------------------------------- */     
	
		 .index_foot {
            background: #000322;
            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: 26px;
		  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: 2;
        }
        .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;  font-size: 14px;
            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;
            }
        }
		