/* ————————————————————————————首页标题通用———————————————————————————— */
        .ititle {
            /* Flex布局替代Grid */
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            text-align: center;
            padding: 30px 20px;
            width: 100%;
        }
        
        .ititle-main {
            font-size: 32px;
            font-weight: 600;
            color: #009b4c;
            text-transform: uppercase;
            letter-spacing: 0px;
            line-height: 1.2;
            
            /* 替代gap属性，使用margin控制间距 */
            margin-bottom: 10px;
        }
        
        .ititle-sub {
            font-size: 16px;
            font-weight:500;
            color: #999999;
            text-transform: uppercase;
            letter-spacing: 0px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .ititle-main {
                font-size: 28px;
                letter-spacing: 0px;
            }
            
            .ititle-sub {
                font-size: 20px;
                letter-spacing: 1px;
            }
        }
        
        @media (max-width: 480px) {
            .ititle-main {
                font-size: 24px;
                letter-spacing: 1px;
                margin-bottom: 12px;
            }
            
            .ititle-sub {
                font-size: 16px;
            }

        }

/* ————————————————————————————首页banner轮播———————————————————————————— */
        .ibanner {
            width: 100%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
            background: #fff;
        }
        
        /* 轮播主体 */
        .ibanner-carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        /* 轮播项 */
        .ibanner-item {
            flex: 0 0 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            background-color: #f5f5f5;
        }
        
        /* 轮播图片 - 优化响应式 */
        .ibanner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* 图片描述 */
        .ibanner-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            padding: 25px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        }
        
        .ibanner-caption h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .ibanner-caption p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }
        
        /* 导航按钮 */
        .ibanner-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.85);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            color: #333;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .ibanner-btn:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .ibanner-btn-prev {
            left: 20px;
        }
        
        .ibanner-btn-next {
            right: 20px;
        }
        
        /* 指示器容器 */
        .ibanner-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            z-index: 10;
            padding: 10px;
        }
        
        .ibanner-indicator {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.6);
            margin: 0 8px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ibanner-indicator:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.2);
        }
        
        .ibanner-indicator.active {
            background: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .ibanner {
                border-radius: 0px;
            }
            
            .ibanner-item {
                min-height-: 350px;
 min-height: auto;
            }
            
            .ibanner-caption {
                padding: 15px;
            }
            
            .ibanner-caption h3 {
                font-size: 1.5rem;
            }
            
            .ibanner-caption p {
                font-size: 1rem;
            }
            
            .ibanner-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .ibanner-indicator {
                width: 10px;
                height: 10px;
                margin: 0 6px;
            }
        }
        
        @media (max-width: 480px) {
            .ibanner-item {
                min-height-: 200px;
 min-height: auto;
            }
            
            .ibanner-caption h3 {
                font-size: 1.3rem;
            }
            
            .ibanner-caption p {
                font-size: 0.9rem;
            }
            
            .ibanner-btn {
                width: 35px;
                height: 35px;
            }
            
            .ibanner-btn-prev {
                left: 10px;
            }
            
            .ibanner-btn-next {
                right: 10px;
            }
        }

/* ————————————————————————————首页产品8个———————————————————————————— */		
        .ipro * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 容器样式 */
        .ipro-container {
            margin: 0 auto;
            padding: 20px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .ipro-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            color: #333;
        }
        
        /* 使用Flex布局替代Grid */
        .ipro-products {
            display: flex;
            flex-wrap: wrap;
            /* 通过负边距抵消容器内边距，实现间距效果 */
            margin: 0 -12.5px;
        }
        
        /* 产品项样式 */
        .ipro-product {
            display: block;
            text-decoration: none;
            color: #333;
            background-color: #fff;
			border:#ddd 1px solid;
            border-radius: 0px;
            overflow: hidden;
            box-shadow-: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            /* 使用百分比宽度，配合内边距实现间距 */
            width: calc(25% - 25px);
            margin: 0 12.5px 25px;
        }
        
        .ipro-product:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }
        
        /* 图片容器 */
        .ipro-image-container {
            width: 100%;
            height: 0;
            padding-bottom: 100%; /* 保持1:1宽高比 */
            position: relative;
            overflow: hidden;
        }
        
        .ipro-product-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ipro-product:hover .ipro-product-img {
            transform: scale(1.08);
        }
        
        /* 产品标题 */
        .ipro-product-title {
            padding: 20px 15px 10px;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            transition: color 0.3s ease;
        }
        
        .ipro-product:hover .ipro-product-title {
            color: #009b4c;
        }
        
        /* 查看详情部分 */
        .ipro-view-more {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 15px 20px;
        }
        
        .ipro-view-icon {
            width: 32px;
            height: 32px;
            background-color: #009b4c;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .ipro-view-icon i {
            color: white;
            font-size: 14px;
        }
        
        .ipro-view-text {
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .ipro-product:hover .ipro-view-text {
            color: #009b4c;
        }
        
        .ipro-product:hover .ipro-view-icon {
            background-color: #009b4c;
            transform: translateX(5px);
        }
        
        /* 平板设备适配 */
        @media (max-width: 1024px) {
            .ipro-product {
                width: calc(33.333% - 20px);
                margin: 0 10px 20px;
            }
            
            .ipro-products {
                margin: 0 -10px;
            }
            
            .ipro-product-title {
                font-size: 1.15rem;
            }
        }
        
        /* 移动设备适配 */
        @media (max-width: 768px) {
            .ipro-product {
                width: calc(50% - 15px);
                margin: 0 7.5px 15px;
            }
            
            .ipro-products {
                margin: 0 -7.5px;
            }
            
            .ipro-product-title {
                font-size: 1.1rem;
                padding: 15px 10px 8px;
            }
            
            .ipro-view-more {
                padding: 8px 10px 15px;
            }
            
            .ipro-title {
                font-size: 1.6rem;
            }
        }
        
        /* 小屏幕移动设备适配 */
        @media (max-width: 480px) {
            .ipro-product {
                width: calc(50% - 12px);
                margin: 0 6px 12px;
            }
            
            .ipro-products {
                margin: 0 -6px;
            }
            
            .ipro-container {
                padding: 15px;
            }
            
            .ipro-product-title {
                font-size: 1rem;
            }
            
            .ipro-view-text {
                font-size: 0.9rem;
            }
            
            .ipro-view-icon {
                width: 32px;
                height: 32px;
            }
        }
        
        /* 超小屏幕设备适配 */
        @media (max-width: 360px) {
            .ipro-product {
                width: calc(100% - 20px);
                margin: 0 10px 15px;
            }
            
            .ipro-products {
                margin: 0 -10px;
            }
        }

/* ————————————————————————————首页4个优势———————————————————————————————— */	

        .iyoushi-container {
            margin: 0 auto;
        }
        
        .iyoushi-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
            font-size: 2.2rem;
        }
        
        .iyoushi-title span {
            color: #009b4c;
        }
        
        /* 主服务区块样式 */
        .iyoushi-services {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: wrap;
            -moz-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin-left: -15px;
            margin-right: -15px;
        }
        
        .iyoushi-service-item {
            -webkit-box-flex: 0;
            -moz-box-flex: 0;
            -webkit-flex: 0 0 25%;
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            max-width: 25%;
            padding-left: 15px;
            padding-right: 15px;
            margin-bottom: 20px;
        }
        
        .iyoushi-service-inner {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            height: 100%;
            padding: 15px 15px;
            border-bottom: 4px solid #009b4c;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }
        
        .iyoushi-service-inner:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .iyoushi-service-content {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
        }
        
        /* 图标容器样式 */
        .iyoushi-icon-container {
            -webkit-box-flex: 0;
            -moz-box-flex: 0;
            -webkit-flex: 0 0 70px;
            -ms-flex: 0 0 70px;
            flex: 0 0 70px;
            max-width: 70px;
            margin-right: 20px;
        }
        
        .iyoushi-icon-wrapper {
            width: 70px;
            height: 70px;
            background-color: #f1f2f6;
            border-radius: 50%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
        
        .iyoushi-service-item:hover .iyoushi-icon-wrapper {
            background-color: #009b4c;
            -webkit-transform: rotateY(180deg);
            -moz-transform: rotateY(180deg);
            transform: rotateY(180deg);
        }
        
        .iyoushi-icon {
            font-size: 28px;
            color: #009b4c;
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
        
        .iyoushi-service-item:hover .iyoushi-icon {
            color: white;
        }
        
        /* 文本内容样式 */
        .iyoushi-text-content {
            -webkit-box-flex: 1;
            -moz-box-flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
            overflow: hidden;
        }
        
        .iyoushi-service-title {
            font-size: 1.4rem;text-transform: Capitalize;
            font-weight: 500;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .iyoushi-service-description {
            font-size: 0.85rem;text-transform: Capitalize;
            color: #666;
            line-height: 1.5;
        }
        
        /* 平板端响应式样式 */
        @media (max-width: 992px) {
            .iyoushi-service-item {
                -webkit-flex: 0 0 50%;
                -ms-flex: 0 0 50%;
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .iyoushi-title {
                font-size: 1.9rem;
            }
        }
        
        /* 移动端响应式样式 */
        @media (max-width: 768px) {
            .iyoushi-service-item {
                -webkit-flex: 0 0 100%;
                -ms-flex: 0 0 100%;
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .iyoushi-title {
                font-size: 1.7rem;
            }
            
            .iyoushi-service-content {
                -webkit-box-orient: horizontal;
                -webkit-box-direction: normal;
                -webkit-flex-direction: row;
                -moz-flex-direction: row;
                -ms-flex-direction: row;
                flex-direction: row;
            }
            
            .iyoushi-icon-container {
                -webkit-flex: 0 0 60px;
                -ms-flex: 0 0 60px;
                flex: 0 0 60px;
                max-width: 60px;
            }
            
            .iyoushi-icon-wrapper {
                width: 60px;
                height: 60px;
            }
            
            .iyoushi-icon {
                font-size: 24px;
            }
        }
        
        /* 小屏幕移动端响应式 */
        @media (max-width: 480px) {
            .iyoushi-service-content {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -webkit-flex-direction: column;
                -moz-flex-direction: column;
                -ms-flex-direction: column;
                flex-direction: column;
            }
            
            .iyoushi-icon-container {
                margin-right: 0;
                margin-bottom: 15px;
                -webkit-flex: 0 0 auto;
                -moz-flex: 0 0 auto;
                -ms-flex: 0 0 auto;
                flex: 0 0 auto;
                max-width: 100%;
                width: 100%;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -moz-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
            }
            
            .iyoushi-text-content {
                text-align: center;
            }
        }

/* ————————————————————————————首页关于我们———————————————————————————— */	
      .iabout-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        .iabout-container {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            margin: 0 auto;
            padding: 50px 0;
        }
        
        /* 主内容区域样式 */
        .iabout-content {
            display: flex;
            flex-wrap: wrap;
            background-color-: #fff;
            border-radius: 0px;
            overflow: hidden;
            box-shadow---: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        /* 左侧图片区域 */
        .iabout-left {
            flex: 0 0 45%;
            max-width: 45%;
            position: relative;
            overflow: hidden;
        }
        
        .iabout-image {
            width: 100%;
            height: 100%;  
            height0: auto;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .iabout-left:hover .iabout-image {
            transform: scale(1.03);
        }
        
        /* 右侧内容区域 */
        .iabout-right {
            flex: 0 0 55%;
            max-width: 55%;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            justify-content: top;
        }
        
        /* 标题样式 */
        .iabout-title {
            font-size: 32px;
            font-weight: 600;
			text-transform: Uppercase;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .iabout-title i {
            color: #4CAF50;
            margin-right: 10px;
        }
        
        /* 分隔线样式 */
        .iabout-divider {
            height: 1px;
            background-color: #eee;
            margin-bottom: 25px;
            width: 100%;
        }
        
        /* 描述文本样式 */
        .iabout-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .iabout-description i {
            color: #4CAF50;
            margin-right: 8px;
        }
        
        /* 查看详情按钮样式 */
        .iabout-more {
            display: inline-block;
            background-color: #f07119;
            color: white;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            align-self: flex-start;
        }
        
        .iabout-more:hover {
            background-color: #009b4c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .iabout-more i {
            margin-left: 8px;
        }
        
        /* 平板设备适配 */
        @media (max-width: 992px) {
            .iabout-left, .iabout-right {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .iabout-left {
                height: 300px;
            }
            
            .iabout-right {
                padding: 30px;
            }
            
            .iabout-title {
                font-size: 28px;
            }
        }
        
        /* 移动设备适配 */
        @media (max-width: 768px) {
            .iabout-container {
                padding: 15px;
            }
            
            .iabout-content {
                border-radius: 6px;
            }
            
            .iabout-left {
                height-: 250px;
            }
            
            .iabout-right {
                padding: 25px 20px;
            }
            
            .iabout-title {
                font-size: 24px;
                margin-bottom: 15px;
            }
            
            .iabout-description {
                font-size: 15px;
                margin-bottom: 25px;
            }
            
            .iabout-more {
                padding: 10px 24px;
                font-size: 15px;
                width: 100%;
                text-align: center;
            }
        }
        
        /* 超小屏幕适配 */
        @media (max-width: 480px) {
            .iabout-left {
                height-: 200px;
            }
            
            .iabout-title {
                font-size: 22px;
            }
            
            .iabout-title i {
                font-size: 20px;
            }
        }
        
        /* 打印样式 */
        @media print {
            .iabout-content {
                box-shadow: none;
            }
            
            .iabout-more {
                border: 1px solid #333;
                color: #333;
                background-color: transparent;
            }
        }

/* ————————————————————————————首页左右新闻———————————————————————————— */

.index_news {
  padding: 30px 0px 30px 0px;
  background: #fafafa;
}

.index_news_tit {
  position: relative;
  height: 49px;
  border-bottom: 1px solid #eaeaea;
}
.index_news_tit h2 {
  float: left;
  height: 48px;
  border-bottom: 2px solid #0998e0;
  font-family: "Montserrat-Regular";
  font-size: 24px;
  color: #333;
}
.index_news_tit h3 {
  float: left;
  padding: 10px 0 0 16px;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
.index_news_tit a.more-btn {
  position: absolute;
  top: 11px;
  right: 0;
  padding-right: 16px;
  background: url("../img/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #bbb;
}
.index_news_tit a:hover.more-btn {
  color: #888;
}

.index_news_con {
  padding-top: 0px;
  overflow: hidden;
}

.index_news_pic {
  float: left;
  position: relative;
  width: 48.5%;
  height: 360px;
  overflow: hidden;
}
.index_news_pic img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.index_news_pic a:hover img {
  transform: scale(1.05);
}
.index_news_pic .mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
  padding: 32px 40px;
  color: #fff;
}
.index_news_pic .date {
  float: left;
  font-family: "Montserrat-Regular";
}
.index_news_pic .day {
  display: block;
  font-size: 22px;
}
.index_news_pic .year {
  display: block;
  padding-top: 4px;
  font-size: 14px;
}
.index_news_pic .con {
  float: right;
  position: relative;
  padding-left: 24px;
  width: calc(100% - 88px);
  box-sizing: border-box;
}
.index_news_pic .con:before {
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 3px;
  width: 1px;
  background: rgba(255,255,255,0.4);
  content: "";
}
.index_news_pic .con h4 {
  font-size: 18px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index_news_pic .con p {
  padding-top: 12px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index_news_list {
  float: right;
  width: 48.5%;
}
.index_news_list li {
  margin-bottom: 15px;
  padding: 27px 40px;
  height: 110px;
  background: #fff;
  overflow: hidden;
}
.index_news_list li:last-child {
  margin-bottom: 0;
}
.index_news_list li .date {
	
  border: 0px solid #eaeaea;
  padding: 0px;
  float: left;
  font-family: "Montserrat-Regular";
}
.index_news_list li .day {
  display: block;
  font-size: 22px;
  color: #009b4c;
}
.index_news_list li .year {
  display: block;
  padding-top: 4px;
  font-size: 16px;
  color: #999;font-weight:bold
}
.index_news_list li .con {
  float: right;
  position: relative;
  padding-left: 24px;
  width: calc(100% - 88px);
  box-sizing: border-box;
}
.index_news_list li .con:before {
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 3px;
  width: 1px;
  background: #eaeaea;
  content: "";
}
.index_news_list li .con h4 {
  font-size: 18px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index_news_list li .con p {
  padding-top: 12px;
  font-size: 14px;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .index_news {
    padding: 20px 0;
  }

  .index_news_tit {
    height: 39px;
  }
  .index_news_tit h2 {
    height: 38px;
    font-size: 20px;
  }
  .index_news_tit h3 {
    padding: 8px 0 0 8px;
    font-size: 14px;
  }
  .index_news_tit a.more-btn {
    top: 7px;
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .index_news_con {
    padding-top: 1px;
  }

  .index_news_pic {
    float: none;
    margin-bottom: 20px;
    width: auto;
    height: auto;
  }
  .index_news_pic .mask {
    padding: 16px 20px;
  }
  .index_news_pic .date {
    padding-top: 2px;
  }
  .index_news_pic .day {
    font-size: 18px;
  }
  .index_news_pic .year {
    padding-top: 2px;
  }
  .index_news_pic .con {
    padding-left: 16px;
    width: calc(100% - 68px);
  }
  .index_news_pic .con h4 {
    font-size: 16px;
  }
  .index_news_pic .con p {
    padding-top: 8px;
  }

  .index_news_list {
    float: none;
    width: auto;
  }
  .index_news_list li {
    margin-bottom: 10px;
    padding: 16px 20px;
    height: auto;
  }
  .index_news_list li .date {
    padding-top: 2px;
  }
  .index_news_list li .day {
    font-size: 18px;
  }
  .index_news_list li .year {
    padding-top: 2px;
  }
  .index_news_list li .con {
    padding-left: 16px;
    width: calc(100% - 68px);
  }
  .index_news_list li .con h4 {
    font-size: 16px;
  }
  .index_news_list li .con p {
    padding-top: 8px;
  }
}


/* ————————————————————————————首页底部版权———————————————————————————— */	


         .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: 20px;
        }
        
        .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;
            }
           
        }
        