@charset "utf-8";
/* ————————————————————————————首页标题样式1———————————————————————————— */
.title_b{text-align:center; font-size:16px;}
.title_b p{ margin-top:12px; margin-bottom:10px; font-size:46px; font-weight:bold;color: #222222;  font-family: 'fontb', sans-serif;}
.title_b span{color:#666666; font-size:18px;font-weight:400;}
.title_b span b{ color:#999999}
.title_b span:before{ content: ''; vertical-align: middle; margin-right:15px; display:inline-block; height:1px; width:80px;background-color: none;background-:url(../images/xian.jpg) no-repeat center}
.title_b span:after{ content: '';vertical-align: middle; margin-left: 15px; display:inline-block; height:1px; width:80px;background-color: none;}
@media (max-width:768px){.title_b p{ margin-top:12px; margin-bottom:5px; font-size:26px; font-weight:600;}}
/* ————————————————————————————首页圆形按钮———————————————————————————— */
        .button-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }        
        /* 圆形按钮样式 */
        .circle-button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #00234a;
            text-decoration: none;
            color: white;
            font-size: 1rem;     
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }        
        /* 悬停效果 - 放大 */
        .circle-button:hover {
            transform: scale(1.05);
			color: white;
            background: #015bac;
            box-shadow0: 0 8px 25px rgba(0, 0, 0, 0.4);
        }        
@media (max-width:768px){
      .button-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }
}
/* ————————————————————————————首页大图轮播———————————————————————————— */   
	   
	      
        /* 轮播图容器 */
        .ibanner_container {
            position: relative;
            width: 100%;
            
            margin: 0 auto;
            overflow: hidden;
            border-radius: 0px;
            box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            aspect-ratio: 16/4;
        }
        
        .ibanner_container:hover {
            transform: translateY(-0px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }
        
        /* 轮播轨道 */
        .ibanner_slides {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        /* 单个轮播项 */
        .ibanner_slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            transform: scale(1);
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }
        
        .ibanner_slide.ibanner_active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }
        
        /* 轮播图片 */
        .ibanner_slide-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit-: cover;
            transition: transform 8s ease;
        }
        
        .ibanner_slide:hover .ibanner_slide-img {
            transform: scale(1.05);
        }
        
        /* 标题区域 */
        .ibanner_caption {
			 align-items: center;
            position: relative;
            width: 100%;
            padding: 30px; 
            z-index: 3;
            max-width: 50%;
            z-index: 3;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .ibanner_active .ibanner_caption {
            transform: translateY(0);
            opacity: 1;
        }
        
        .ibanner_caption h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.5s ease 0.2s;
        }
        
        .ibanner_active .ibanner_caption h2 {
            opacity: 1;
            transform: translateX(0);
        }
        
        .ibanner_caption .ibanner_line {
            width: 80px;
            height: 0px;
            background: #ff6b6b;
            margin-bottom: 15px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease 0.5s;
        }
        
        .ibanner_active .ibanner_caption .ibanner_line {
            transform: scaleX(1);
        }
        
        .ibanner_caption p {
            font-size: 1.2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.7s;
        }
        
        .ibanner_active .ibanner_caption p {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 控制按钮 */
        .ibanner_controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 4;
        }
        
        .ibanner_btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            opacity: 0.7;
        }
        
        .ibanner_btn:hover {
            background: rgba(255, 255, 255, 0.3);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .ibanner_btn i {
            font-size: 28px;
            color: white;
        }
        
        /* 指示点 */
        .ibanner_dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            z-index: 4;
            padding: 10px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 30px;
        }
        
        .ibanner_dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ibanner_dot.ibanner_active {
            background: #ff6b6b;
            transform: scale(1.3);
        }
        
        .ibanner_dot:hover {
            background: white;
            transform: scale(1.2);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .ibanner_controls {
                display: none;
            }
            
            .ibanner_caption h2 {
                font-size: 1.8rem;
            }
            
            .ibanner_caption p {
                font-size: 1rem;
            }

        }
        
        @media (max-width: 480px) {
            .ibanner_caption {
                padding: 20px;
            }
            
            .ibanner_caption h2 {
                font-size: 1.5rem;
            }
            
            .ibanner_dots {
                bottom: 10px;
            }
            
            .ibanner_dot {
                width: 10px;
                height: 10px;
                margin: 0 5px;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }   
	   
/* ————————————————————————————首页产品分类大图切换有二级产品———————————————————————————— */
        .ipro-container {
          
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 上部分 - TAB导航 */
        .ipro-tabs {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            border-bottom: 0px solid #e9ecef;
            padding-bottom: 0px;
        }
        
        .ipro-tab {
            width: 18%;
            text-align: center;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .ipro-tab-img-container {
            position: relative;
            height: 0;
            padding-bottom: 65%; /* 5:5尺寸 */
            overflow: hidden;
            background: #015bac;
            border-radius: 8px 8px 0 0;
        }
        
        .ipro-tab-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        
        .ipro-tab-title {
            background-color: #e9ecef;
            padding: 12px 5px;
			height: 80px;
            font-weight: 600;
            color: #222222;
            border-radius: 0 0 8px 8px;
            transition: all 0.3s ease;
        }
        
        .ipro-tab:hover .ipro-tab-img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .ipro-tab:hover .ipro-tab-img-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(41, 128, 185, 0.3);
            z-index: 1;
        }
        
        .ipro-tab:hover .ipro-tab-img-container::after {
            content: "\f061";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 24px;
            border: 2px solid white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        
        .ipro-tab:hover .ipro-tab-title {
            background-color: #015bac;
            color: white;
        }
        
        .ipro-tab.active {
            margin-bottom: 0px;
        }
        
        .ipro-tab.active .ipro-tab-img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .ipro-tab.active .ipro-tab-img-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(41, 128, 185, 0.3);
            z-index: 1;
        }
        
        .ipro-tab.active .ipro-tab-img-container::after {
            content: "\f061";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 20px;
            border: 2px solid white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        
        .ipro-tab.active .ipro-tab-title {
            background-color: #015bac;
            color: white;
        }
        
        .ipro-tab.active::after {
            content: "\f107";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            color: #015bac;
            font-size: 28px;
            border: 3px solid #015bac;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            z-index: 10;
        }
        
        /* 下部分 - 内容区域 */
        .ipro-content {
            display: flex;
            gap: 30px;
            margin-bottom: 10px;
        }
        
        .ipro-left {
            width: 65%;
            background: linear-gradient(135deg, #015bac, #2c3e50);
            padding: 30px;
            border-radius: 10px;
            color: white;
        }
        
        .ipro-right {
            width: 35%;
        }
        
        .ipro-category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .ipro-main-title {
            font-size: 24px;
            font-weight: 700;
        }
        
        .ipro-more-btn {
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 400;
            transition: all 0.3s ease;
        }
        
        .ipro-more-btn:hover {
            background-color: #e74c3c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .ipro-divider {
            height: 1px;
            background: linear-gradient(to right, #e74c3c 20%, white 20%);
            margin-bottom: 25px;
        }
        
        .ipro-description {
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .ipro-subcategories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .ipro-subcategory {
            background: transparent;
            border: 1px solid white;
            color: white;
            padding: 15px 10px;
            text-align: center;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }
        
        .ipro-subcategory:hover {
			color: white;
            background-color: #e74c3c;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: #e74c3c;
        }
        
        /* 右侧内容 */
        .ipro-featured {
            position: relative;
            background: #015bac;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .ipro-featured-img-container {
            position: relative;
            height: 0;
            padding-bottom: 100%; /* 1:1尺寸 */
            overflow: hidden;
			border: #eeeeee 2px solid
        }
        
        .ipro-featured-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        
        .ipro-featured-title {
            padding: 15px 10px;
            text-align: center;
            font-weight: 600;
            color: #ffffff;
			background-color: #bcc3cc;
            transition: all 0.3s ease;
        }
        
        .ipro-featured:hover .ipro-featured-img {
            transform: scale(1.05);
            filter: brightness(0.8);
        }
        
        .ipro-featured:hover .ipro-featured-title {
            background-color: #015bac;
            color: white;
        }
        
        /* 移动端样式 */
        .ipro-mobile-categories {
            display: none;
        }
        
        .ipro-mobile-category {
            margin-bottom: 30px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .ipro-mobile-img-container {
            position: relative;
            height: 0;
            padding-bottom: 100%; /* 1:1尺寸 */
            overflow: hidden;
        }
        
        .ipro-mobile-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ipro-mobile-title {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 20px;
            font-weight: 600;
        }
        
        .ipro-mobile-subcategories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px;
        }
        
        .ipro-mobile-subcategory {
            background: #015bac;
            color: white;
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .ipro-mobile-subcategory:hover {
            background-color: #015bac;
			color: white;
            transform: translateY(-3px);
        }
        
        .ipro-mobile-more {
            display: block;
            text-align: center;
            background: #e74c3c;
            color: white;
            padding: 12px;
            text-decoration: none;
            font-weight: 600;
            margin: 0 20px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .ipro-mobile-more:hover {
            background-color: #015bac;
            transform: translateY(-3px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .ipro-tabs,
            .ipro-content {
                display: none;
            }
            
            .ipro-mobile-categories {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .ipro-container {
                padding: 10px;
            }
            
            .ipro-mobile-subcategories {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .ipro-mobile-subcategories {
                grid-template-columns: 1fr;
            }
        }
 /*=========================首页新闻================== */
 
.news_index {
  padding: 2vw 0 1vw 0vw;
}
.news_index .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 1.82vw 0 2.08vw;
}
.news_index .items a.item:hover .info {
  color: #195699;
}
.news_index .items a.item:hover .more {
  color: #195699;
}
.news_index .items .item {
  width: calc(33.33% - 1.04vw);
  border-radius: 1.56vw;
  overflow: hidden;
  position: relative;
  background: #f2f2f2;
}
.news_index .items .item.item2 {
  padding: 2.86vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news_index .items .item.item2 .item_a {
  overflow-y: auto;
  max-height: 340px;
  padding: 0 1.56vw;
}
@media (max-width:1440px) {
  .news_index .items .item.item2 .item_a {
    max-height: 310px;
  }
}
@media (max-width:1024px) {
  .news_index .items .item.item2 .item_a {
    max-height: 290px;
  }
}
@media (max-width:768px) {
  .news_index .items .item.item2 .item_a {
    max-height: 240px;
  }
}
.news_index .items .item.item2 .item_a a {
  margin-bottom: 1.04vw;
  display: block;
}
.news_index .items .item.item2 .item_a a:last-child {
  margin-bottom: 0;
}
.news_index .items .item.item2 .tip {
  background: #195699;
}
.news_index .items .item.item2 a:hover .info {
  color: #195699;
}
.news_index .items .item:hover .imgbox img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.news_index .items .item .tip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  font-size: 16px;
  color: #fff;
  padding: 0.52vw 1.3vw;
  border-bottom-right-radius: 1.56vw;
}
@media (max-width: 1680px) {
  .news_index .items .item .tip {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .news_index .items .item .tip {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .news_index .items .item .tip {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .news_index .items .item .tip {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .news_index .items .item .tip {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .news_index .items .item .tip {
    font-size: 14px;
  }
}
.news_index .items .item .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 56.5%;
  position: relative;
  overflow: hidden;
}
.news_index .items .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.news_index .items .item .art {
  padding: 1.3vw 1.56vw 2.08vw;
}
.news_index .items .item .art .info {
  height: 48px;
}
.news_index .items .item .art .time {
  margin: 0.78vw 0;
}
.news_index .items .item .info {
  font-size: 18px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #282828;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 600;
}
@media (max-width: 1680px) {
  .news_index .items .item .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .news_index .items .item .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .news_index .items .item .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .news_index .items .item .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1680px) {
  .news_index .items .item .info {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .news_index .items .item .info {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .news_index .items .item .info {
    font-size: 14px;
  }
}
.news_index .items .item .time {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: rgba(40, 40, 40, 0.6);
  margin-top: 0.78vw;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.news_index .items .item .time p {
  margin-right: 1.04vw;
}
.news_index .items .item .time p:last-child {
  margin-right: 0;
}
.news_index .items .item .time p i {
  margin-right: 5px;
  font-size: 13px;
}
.news_index .items .item .more {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 300;
  color: #181818;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.news_index .items .item .more i {
  font-size: 16px;
  color: #195699;
  margin-left: 10px;
}
.news_index .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.news_index .btn_a {
  border-color: #b5b5b5;
  color: #181818;
  margin: 0 auto;
}
.news_index .btn_a:hover {
  color: #fff;
  border-color: #195699;
}
@media (max-width:990px) {
  .news_index .items .item.item2 {
    padding-top: 30px;
  }
  .news_index .items .item .art .info {
    height: 44px;
  }
  .news_index .items .item .info {
    line-height: 22px;
  }
  .news_index .items .item .time {
    font-size: 12px;
  }
}
@media (max-width:768px) {
  .news_index {
    padding: 40px 0;
  }
  .news_index .items {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 20px 0 5px;
  }
  .news_index .items .item {
    width: 100%;
    margin-bottom: 15px;
  }
  .news_index .items .item:nth-child(2) {
    display: none;
  }
  .news_index .items .item.item2 {
    padding: 35px 15px 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .news_index .items .item.item2 a {
    margin-bottom: 10px;
  }
  .news_index .items .item .tip {
    padding: 5px 10px;
  }
  .news_index .items .item .art {
    padding: 15px;
  }
  .news_index .items .item .art .time {
    margin: 10px 0;
  }
  .news_index .items .item .time {
    margin-top: 5px;
  }
}
  /*=========================首页底部================== */
 
         .ifoot-container {
            background-color: #222;
            color: #fff;
            width: 100%;
            padding-top: 60px;
            position: relative;
        }
		
		   .ifoot-containe_n {
            background-color: #002558;
            color: #fff;
            width: 100%;
            padding-top: 60px;
            position: relative;
        }
        
        .ifoot-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 5%;
            margin-bottom: 40px;
        }
        
        .ifoot-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            width: 90%;
            margin: 0 auto;
        }
        
        .ifoot-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 30px 5% 40px;
            align-items: center;
        }
        
        .ifoot-section {
            flex: 1;
            min-width--: 180px;
            margin: 0 15px 30px;
        }
        
        .ifoot-section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #f0f0f0;
            letter-spacing: 0.5px;
        }
        
        .ifoot-section-divider {
            border-top: 1px solid #fff;
            width: 50px;
            margin-bottom: 25px;
            height: 1px;
        }
        
        .ifoot-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            font-size: 14px;
            line-height: 1.6;
        }
           .ifoot-contact-item a{
			color: #f0f0f0;        
        }
	     .ifoot-contact-item a:hover{
			color: #cccccc;        
        }
        .ifoot-contact-icon {
            margin-right: 12px;
            min-width: 16px;
            color: #ccc;
            font-size: 16px;
            margin-top: 4px;
        }
        
        .ifoot-link-item {
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .ifoot-link-item a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .ifoot-link-item a:hover {
            color: #cccccc;
        }
        
        .ifoot-qrcode {
            width: 150px;
            height: 150px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 10px;
        }
        
        .ifoot-qrcode img {
            width: 90%;
            height: 90%;
            object-fit: contain;
        }
        
        .ifoot-form input {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 4px;
            font-size: 14px;
            transition: border-color 0.3s;
        }
        
        .ifoot-form input:focus {
            outline: none;
            border-color: #fff;
        }
        
        .ifoot-form input::placeholder {
            color: #aaa;
        }
        
        .ifoot-form button {
            background: #fff;
            color: #000;
            border: none;
			font-size: 16px;
            padding: 12px 25px;
            cursor: pointer;
            transition: all 0.4s;
            font-weight: 600;
            border-radius: 4px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .ifoot-form button:hover {
            background: #dd0000;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }
        
        .ifoot-form button:active {
            transform: translateY(0);
        }
        
        .ifoot-copyright {
            font-size: 16px;
            color: #aaa;
        }
        
        .ifoot-social-icons {
            display: flex;
            flex-wrap: wrap;
        }
        
        .ifoot-social-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            background-color: #333;
            transition: all 0.3s;
            font-size: 16px;
            color: white;
        }
        
        .ifoot-social-icon:hover {
            transform: translateY(-5px);
        }
        
        /* Responsive styles */
        @media (max-width: 1024px) {
            .ifoot-section:nth-child(4),
            .ifoot-section:nth-child(5),
            .ifoot-section:nth-child(6) {
                display: none;
            }
            
            .ifoot-top {
                justify-content: flex-start;
            }
            
            .ifoot-section {
                min-width: 200px;
                flex: 0 0 calc(33.333% - 30px);
            }
            
            .ifoot-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .ifoot-social-icons {
                justify-content: center;
                margin-top: 25px;
            }
            
            .ifoot-social-icon {
                margin: 0 6px 10px;
            }
        }
        
        @media (max-width: 768px) {
            .ifoot-top {
                flex-direction: column;
            }
            
            .ifoot-section {
                min-width: 100%;
                margin-bottom: 40px;
            }
            
            .ifoot-section:last-child {
                margin-bottom: 20px;
            }
            
            .ifoot-social-icon {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }
        }
		
/* =================分享小图标======================= */
          .social-icons {
            display: flex;
            justify-content: left;
            flex-wrap: wrap;
            gap: 25px;
            padding: 0px;
        }
        
        .icon-container {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .icon-container:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
        }
        
        .icon-container i {
            font-size: 16px;
            color: white;
        }
        
        /* 各平台背景色 */
        .facebook { background: #3b5998; }
        .youtube { background: #cd201f; }
        .whatsapp { background: #25D366; }
        .linkedin { background: #0077B5; }
        .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .telegram { background: #0088cc; }
        .email { background: #D44638; }
        .skype { background: #00AFF0; }
        .twitter { background: #1DA1F2; }
        
        .icon-label {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            min-width: max-content;
        }
        
        .icon-container:hover .icon-label {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .social-icons {
                gap: 15px;
            }
            
            .icon-container {
                width: 36px;
                height: 36px;
            }
            
            .icon-container i {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .social-icons {
                gap: 10px;
            }
            
            .icon-container {
                width: 36px;
                height: 36px;
            }
            
            .icon-container i {
                font-size: 16px;
            }
           
        }
        