@charset "utf-8";
/* ————————————————————————————首页标题样式1———————————————————————————— */
.title_c strong {
  font-size: 36px;
  color: #333;
  display: block;
  font-weight: normal;
  text-align: center;
}
.title_c i {
  width: 50px;
  height: 2px;
  background: #0066cc;
  display: block;
  margin: 12px auto;
  transition: 1s;
}
.title_c span {
  font-size: 16px;
  color: #b3b3b3;
  display: block;
  text-align: center;
}
.title_c:hover i {width: 68px;transition: 1s;}
        @media (max-width: 768px) {
.title_c strong {

  padding-top:30px;
  color: #333;
  display: block;
  font-weight: normal;
  text-align: center;
}
        }
/* ————————————————————————————首页查看更多按钮通用———————————————————————————— */
        .index_more_w {
            margin: 0;
            display: flex;
			text-align:center;
            justify-content: center;
            align-items: center;
			
    
        }
            .index_more {
            text-align:center;
            padding: 10px 30px;
            border-radius: 50px;
			margin: 20px 0px 40px 0px;  
            border: 1px solid #015bac;
            background: transparent;
            color: #015bac;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            
            /* 移动端适配 */
            font-size: clamp(17px, 3vw, 16px);
            white-space: nowrap;
        }

        /* 悬停动画效果 */
        .index_more:hover {
            background: #015bac;
            border-color: #015bac;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
        }


        /* 移动端优化 */
        @media (max-width: 480px) {
            .index_more {
                padding: 8px 24px;
                border-radius: 24px;
            }
        }

        /* 点击效果 */
        .index_more:active {
            transform: translateY(1px);
            transition-duration: 0.1s;
        }
/* 首页头部轮播主图开始———————————————————————————— */

        .index_banner-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }

        /* 轮播图片列表样式 */
        .index_banner-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: auto;
        }

        /* 轮播图片项样式 */
        .index_banner-slide {
            min-width: 100%;
            position: relative;
        }

        /* 强制统一大图尺寸 */
        .index_banner-slide img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 700px; /* 可根据需要调整 */
        }

        /* 文字容器样式 */
        .index_banner-caption {
            position: absolute;
            top: 38%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            width: 100%;
            max-width: 1000px;
        }

        /* 第一行文字样式 */
        .index_banner-caption h2 {
            font-size: 3.2em;
            margin-bottom: 0.5em;
			font-weight:bold;
			text-shadow:1px 1px 5px #000000; 
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* 第二行文字样式 */
        .index_banner-caption p {
            font-size: 2.25em;
			font-weight:bold;
			text-shadow:1px 1px 5px #000000; 
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
        }

        /* 激活状态的文字 */
        .index_banner-slide.active .index_banner-caption h2,
        .index_banner-slide.active .index_banner-caption p {
            opacity: 1;
            transform: translateY(0);
        }

        /* 导航按钮样式 */
        .index_banner-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        /* 方向按钮样式 */
        .index_banner-prev,
        .index_banner-next {
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 50%;
            margin: 0 15px;
        }

        .index_banner-prev:hover,
        .index_banner-next:hover {
            background-color: rgba(0, 0, 0, 0.8);
            transform: scale(1.01);
        }

        /* 指示器样式 */
        .index_banner-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            z-index: 10;
        }

        .index_banner-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
			border: 0px solid rgba(0, 0, 0, 0.3);;
			transform: scale(1.2);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .index_banner-indicator.active {
            background-color: rgba(255, 255, 255, 0.9);
		    width: 10px;
            height: 10px;
			border-radius: 50%;
			margin: 0 5px;
            transform: scale(1.3);
			border: 0px solid #c3272b;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
			
        .index_banner-slide {
            min-width: 100%;
            aspect-ratio-: 16/9;
            position: relative;
        }

        .index_banner-slide img {
            width: 100%;
            height: 100%;			
            object-fit: cover;
            vertical-align: middle;
        }
			
			
        .index_banner-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            width: 80%;
            max-width: 800px;
        }
            .index_banner-caption h2 {
                font-size: 1.2em;
            }
            
            .index_banner-caption p {
                font-size: 0.8em;
            }
            
            .index_banner-prev,
            .index_banner-next {
                width: 30px;
                height: 30px;
                font-size: 15px;
                margin: 0 10px;
            }
        }

/* ————————————————————————————首页左右产品列表———————————————————————————— */

        .con_main * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        
        .con_main a {
            text-decoration: none;
            color: inherit;
        }
        
        .con_main ul {
            list-style: none;
        }
        
        /* 主容器 */
        .con_main {

            margin: 0 auto;
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        /* 左侧部分 - 占30% */
        .con_main .left-side {
            flex: 0 0 calc(23% - 10px);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 右侧部分 - 占70% */
        .con_main .right-side {
            flex: 0 0 calc(77% - 10px);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 左上部分 - 蓝色渐变 */
        .con_main .left-top {
            background: linear-gradient(135deg, #015bac, #0066cc);
            color: white;
            padding:20px;
            position: relative;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 8px 8px 0 0;
        }
        
        .con_main .left-top::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 30px;
            bottom: 30px;
            width: 3px;
            background: rgba(255,255,255,0.8);
        }
        
        .con_main .left-top-content {
            padding-left: 30px;
        }
        
        .con_main .left-top h1 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.3;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        
        .con_main .left-top .en-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.9;
            font-weight: 300;
        }
        
        /* 左中部分 - 灰色分类 */
        .con_main .left-middle {
            background: #f8f9fa;
            padding: 0;
        }
        
        .con_main .category-list {
            display: flex;
            flex-direction: column;
        }
        
        .con_main .category-item {
            padding: 16px 20px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: #495057;
            font-size: 15px;
        }
        
        .con_main .category-item:last-child {
            border-bottom: none;
        }
        
        .con_main .category-item:hover {
            color: #015bac;
            background-color: rgba(30, 136, 229, 0.05);
        }
        
        .con_main .category-item:hover .arrow {
            border-color: #015bac;
            transform: translateX(3px) rotate(45deg);
        }
        
        .con_main .category-item.active {
            color: #015bac;
            background-color: rgba(30, 136, 229, 0.08);
        }
        
        .con_main .category-item.active .arrow {
            border-color: #015bac;
        }
        
        .con_main .arrow {
            width: 10px;
            height: 10px;
            border: 2px solid #adb5bd;
            border-left: none;
            border-bottom: none;
            transform: rotate(45deg);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* 左下部分 - 联系方式 */
        .con_main .left-bottom {
            background: #015bac;
            padding: 20px;
            border-radius: 0 0 8px 8px;
        }
        
        .con_main .contact-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .con_main .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .con_main .contact-icon {
            width: 10px;
            height: 30px;
            color: #ffffff;
            margin-top: 2px;
        }
        
        .con_main .contact-text {
            color: #ffffff;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .con_main .contact-text strong {
            color: #ffffff;
            font-weight: 600;
        }
        
        /* 右上部分 - 产品展示 */
        .con_main .right-top {
            background: #f8f9fa;
            padding:10px  20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 8px;
        }
        
        .con_main .product-display {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .con_main .product-icon {
            width: 28px;
            height: 28px;
            background: #015bac;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            
        }
        
        .con_main .product-text {
            font-size: 20px;
            color: #015bac;
            font-weight: 500;
        }
        
        .con_main .view-more {
            padding: 8px 16px;
            background:none;
            color: #666666;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .con_main .view-more:hover {
            background:#015bac;
			color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(21, 101, 192, 0.2);
        }
        
        .con_main .view-more::after {
            content: "→";
            font-size: 16px;
        }
        
        /* 右下部分 - 内容区域 */
        .con_main .right-bottom {
            padding: 10px 20px;
            background: white;
            border-radius: 8px;
            box-shadow--: 0 2px 12px rgba(0,0,0,0.05);
        }
        
        .con_main .content-title {
            font-size: 20px;
            color: #212529;
            margin-bottom: 16px;
            font-weight: 600;
        }
        
        .con_main .content-text {
            color: #495057;
            line-height: 2;
            margin-bottom: 15px;
            font-size: 15px;
        }
		
		   .con_main .content-text p{
        
            line-height:30px;

        }
				   .con_main .content-text.img{
        
           width: 100%;

        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .con_main .left-side,
            .con_main .right-side {
                flex: 0 0 100%;
            }
            
            .con_main .left-top {
                min-height: 100px;
                border-radius: 8px 8px 0 0;
            }
            
            .con_main .left-bottom {
				display:none;
                border-radius: 0 0 8px 8px;
            }
            
            .con_main .right-top {
				display:none;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
			.con_main .right-bottom {
				
            padding: 10px 0px;
            background: white;
            border-radius: 8px;
            box-shadow--: 0 2px 12px rgba(0,0,0,0.05);
        }

        }

/* ————————————————————————————首页滚动产品———————————————————————————— */
        /* 容器样式 */
        .index_pro_roll-container {   
            margin: 0 auto;
            padding: 0px 0px;
            position: relative;
        }

        /* 轮播主体 */
        .index_pro_roll-slider {
            overflow: hidden;
            position: relative;
            border-radius: 0px;
        }

        /* 箭头样式 */
        .index_pro_roll-arrow {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .index_pro_roll-arrow:hover {
            background: rgba(255,255,255,1);
            transform: translateY(-50%) scale(1.1);
        }

        .index_pro_roll-prev {
            left: 25px;
        }

        .index_pro_roll-next {
            right: 25px;
        }

        .index_pro_roll-arrow::after {
            content: '';
            width: 12px;
            height: 12px;
            border: 2px solid #333;
            border-width: 2px 2px 0 0;
        }

        .index_pro_roll-prev::after {
            transform: rotate(-135deg);
            margin-left: 3px;
        }

        .index_pro_roll-next::after {
            transform: rotate(45deg);
            margin-right: 3px;
        }

        /* 轮播内容 */
        .index_pro_roll-slide-list {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .index_pro_roll-slide-item {
            flex: 0 0 25%;
            padding: 0px;
            box-sizing: border-box;
            position: relative;

        }

        /* 图片容器 */
        .index_pro_roll-image-box {
            position: relative;
            overflow: hidden;
            border-radius: 0px;
            aspect-ratio: 1/1;
            background: #fff;border: 1px solid #e9ecef;
        }

        .index_pro_roll-image-link {
            display: block;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .index_pro_roll-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        /* 悬停效果 */
        .index_pro_roll-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.2);
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            pointer-events: none;
        }

        .index_pro_roll-image-box:hover .index_pro_roll-hover {
            display: flex;
            animation: index_pro_roll_shine 0.8s;
        }

        .index_pro_roll-image-box:hover .index_pro_roll-image {
            transform: scale(1.08);
        }

        @keyframes index_pro_roll_shine {
            0% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* 标题样式 */
        .index_pro_roll-title {
            background: #f8f8f8;
            padding: 15px 10px;
            text-align: center;
            margin-top: -4px;
            transition: all 0.3s ease;
            border-radius: 0 0 5px 5px;
        }

        .index_pro_roll-title a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            line-height: 1.4;
        }

        .index_pro_roll-slide-item:hover .index_pro_roll-title {
            background: #015bac;
        }

        .index_pro_roll-slide-item:hover .index_pro_roll-title a {
            color: white;
        }

        /* 导航圆点 */
        .index_pro_roll-dots {
            display: flex;
            justify-content: center;
            padding: 15px 0 15px;
            gap: 10px;
        }

        .index_pro_roll-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .index_pro_roll-dot.active {
            background: #015bac;
            transform: scale(1.2);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .index_pro_roll-slide-item {
                flex: 0 0 100%;
            }
            
            .index_pro_roll-arrow {
                display: none;
            }
            
            .index_pro_roll-container {
                padding: 10px 0px;
            }
        }
/* ————————————————————————————首页视频+关于我们蓝色背景———————————————————————————— *

        /* 重置样式 */
        .iaboutvod_ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 主体样式 */
        .iaboutvod_body {
            font-family: Arial, sans-serif;
            overflow-x: hidden;
        }
        
        /* 容器样式 */
        .iaboutvod_container {
            display: flex;
            flex-wrap: wrap;
            min-height: 60vh;
            position: relative;
        }
        
        /* 左侧图片部分 */
        .iaboutvod_left {
            width: 45%;
            position: relative;
            overflow: hidden;
            background-color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .iaboutvod_left-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
            opacity: 0.8;
        }
        
        .iaboutvod_left:hover .iaboutvod_left-image {
            transform: scale(1.05);
            opacity: 0.6;
        }
        
        /* 播放按钮 */
        .iaboutvod_play-button {
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }
        
        .iaboutvod_play-button::after {
            content: "";
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 25px solid white;
            margin-left: 5px;
        }
        
        .iaboutvod_left:hover .iaboutvod_play-button {
            background-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        /* 右侧内容部分 */
        .iaboutvod_right {
            width: 55%;
            padding: 0px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #1e88e5, #0d47a1);
            color: white;
        }
		    .iaboutvod_right_con {
            padding: 50px;
        }
        
        /* 标题样式 */
        .iaboutvod_title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        /* 横线样式 */
        .iaboutvod_divider {
            width: 100px;
            height: 2px;
            background-color: white;
            margin-bottom: 30px;
        }
        
        /* 描述样式 */
        .iaboutvod_description {
            font-size: 14px;
            line-height: 28px;
            margin-bottom: 40px;
            max-width: 750px;
        }
        
        /* 按钮样式 */
        .iaboutvod_button {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid white;
            color: #FFF;
            text-decoration: none;
            font-size: 16px;
            font-weight-: bold;
            transition: all 0.3s ease;
            background-color: transparent;
            cursor: pointer;
            max-width: 150px;
			border-radius: 50px;
            text-align: center;
        }
        
        .iaboutvod_button:hover {
            background-color: #333333;
            color: #333;
        }
        
        /* 视频弹窗样式 */
        .iaboutvod_video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        
        .iaboutvod_video-container {
            position: relative;
            width: 80%;
            max-width: 1000px;
        }
        
        .iaboutvod_video {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
        }
        
        .iaboutvod_close-button {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 36px;
            cursor: pointer;
            background: none;
            border: none;
            outline: none;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .iaboutvod_left, .iaboutvod_right {
                width: 100%;
                height: auto;
            }
            
            .iaboutvod_left {
                height: 300px;
            }
            
            .iaboutvod_right {
                padding: 40px 20px;
            }
			.iaboutvod_right_con {
            padding: 0px;
        }
            
            .iaboutvod_title {
                font-size: 26px;
            }
            
            .iaboutvod_description {
                font-size: 14px;
            }
        }
		
		
/* ————————————————————————————首页公司介 左图右白字蓝色背景———————————————————————————— */
.about-info{overflow:hidden;width:100%;display:flex}
.about-info div{width:50%}
.about-info .about-img img{width:100%;display:block;}
.about-info .about-content{padding:40px 0px;background:#0066cc;display:flex;flex-direction:column;justify-content:space-evenly}
.about-info .about-content .content-title{padding-left:80px;font-size:36px;font-weight:bold;color:#FFFFFF}
.about-info .about-content article{padding-left:80px;padding-right:200px}
.about-info .about-content article p{font-size:16px;color:#FFFFFF;line-height:32px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:10;-webkit-box-orient:vertical}
.about-info .about-content .about-btn{width:180px;height:50px;border:1px solid #FFFFFF;font-size:20px;display:flex;justify-content:center;align-items:center;margin-left:80px;transition:all .5s ease}
.about-info .about-content .about-btn:hover{background:#FFFFFF;border:2px solid var(--color);cursor:pointer}
.about-info .about-content .about-btn:hover a{color:var(--color)}
.about-info .about-content .about-btn a{color:#FFFFFF}
@media(min-width:1441px)and (max-width:1680px){
.about-info .about-content .content-title{font-size:30px}
.about-info .about-content article{padding-right:100px}
.about-info .about-content article p{font-size:16px}
.about-info .about-content .about-btn{width:140px;height:40px;font-size:16px}}
@media(min-width:1281px)and (max-width:1440px){
.about-info .about-content .content-title{font-size:26px}
.about-info .about-content article{padding-right:100px}
.about-info .about-content article p{font-size:14px}
.about-info .about-content .about-btn{width:120px;height:30px;font-size:14px}}
@media(max-width:1440px){
.about-info .about-content .content-title{padding-left:20px;font-size:18px}
.about-info .about-content article{padding:0px 20px}
.about-info .about-content article p{font-size:16px;line-height:28px}
.about-info .about-content .about-btn{width:120px;height:30px;font-size:14px;margin-left:20px}}
@media(min-width:769px)and (max-width:1081px){
.about-info .about-content article{padding:0px 20px}
.about-info .about-content article p{font-size:14px;line-height:28px}}
@media screen and (max-width:768px){
.about-info{position:relative}
.about-info .about-img{width:100%;background:var(--color)}
.about-info .about-img img{opacity:.1}
.about-info .about-content{padding:6vw 0vw;width:100%;background:0 0;z-index:9}
.about-info .about-content .content-title{padding-left:4vw;font-size:4.8vw;font-weight:bold;color:#FFFFFF}
.about-info .about-content article{padding-left:4vw;padding-right:4vw;margin:15px 0px}
.about-info .about-content article p{font-size:16px}
.about-info .about-img{position:absolute;height:100%;height:100%}
.about-info .about-content .about-btn{width:30vw;height:10vw;font-size:16px}
.about-info .about-content .about-btn:hover{background:#FFFFFF;border:2px solid var(--color);cursor:pointer}
.about-info .about-content .about-btn:hover a{color:var(--color)}
.about-info .about-content .about-btn a{color:#FFFFFF}}
@media screen and (min-width:751px)and (max-width:768px){
.about-info .about-content .content-title{font-size:28px}
.about-info .about-content article p,.hot-product ul li .pro-name,.lastest-news ul li .news-content .news-title{font-size:24px}
}



/* ————————————————————————————首页新闻中心———————————————————————————— */

        .inews_container {
            font-family: 'Arial', sans-serif;
            margin: 0 auto;
            padding: 20px 0;
            box-sizing: border-box;
        }

        .inews_row {
            display: flex;
            flex-wrap: wrap;
            margin: -10px;
        }

        .inews_col {
            flex: 0 0 calc(50% - 20px);
            margin: 10px;
            box-sizing: border-box;
        }

        .inews_news_item {
            display: flex;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .inews_news_item:hover {
            border-color: #015bac;
        }

        .inews_news_item:hover .inews_news_right {
            color: #015bac;
        }

        .inews_news_left {
            flex: 0 0 100px;
            background-color: #015bac;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px;
            box-sizing: border-box;
        }

        .inews_date_day {
            font-size: 32px;
            font-weight: bold;
            line-height: 1;
        }

        .inews_date_month {
            font-size: 14px;
            margin-top: 5px;
        }

        .inews_news_right {
            flex: 1;
            padding: 15px;
            color: #333;
            transition: color 0.3s ease;
        }

        .inews_news_title {
            font-size: 16px;
            font-weight-: bold;
            margin-bottom: 8px;
        }

        .inews_news_desc {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .inews_news_item:hover .inews_news_desc {
            color: #015bac;
        }

        @media (max-width: 768px) {
            .inews_col {
                flex: 0 0 calc(100% - 20px);
            }
            
            .inews_news_item {
                flex-direction: column;
            }
            
            .inews_news_left {
                flex: 0 0 auto;
                flex-direction: row;
                justify-content: flex-start;
                padding: 10px 15px;
            }
            
            .inews_date_day {
                font-size: 24px;
                margin-right: 10px;
            }
            
            .inews_date_month {
                margin-top: 0;
                font-size: 16px;
            }
        }


/* ————————————————————————————首页底部联系———————————————————————————— */

.foot_box .footCon{width:100%;background:#231f20;overflow:hidden}
.foot_top{border-bottom:1px solid #393637;overflow:hidden;padding:20px 0}
.foot_top .foot_logo{float:left}
.foot_top .foot_logo img{ height:50px}
.foot_top .foot_nav{float:right;width:70%;margin-top:15px; text-align: right;}
.foot_top .foot_nav ul li{ display: inline-block; padding-left:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;text-align:center}
.foot_top .foot_nav ul li a{font-size:16px;color:#fff;display:block;position:relative}
.foot_top .foot_nav ul li a:before{content:'';display:block;background:#393637;width:1px;height:16px;position:absolute;top:5px}
.foot_top .foot_nav ul li:first-child>a:before{display:none}
.foot_top .foot_nav ul li a:hover{color:#2b3aa1}
.footmain{width:100%;margin:30px auto;background:url(../img/map.png) no-repeat 100px center;overflow:hidden}
.footmain .foot_tel{float:left;background:url(../img/foot_tel.png) no-repeat left center;padding-left:70px;width:35%;margin-top:40px}
.footmain .foot_tel p{font-size:18px;color:#ffffff;margin-bottom:0px}
.footmain .foot_tel b{font-size:24px;color:#d5231b}
.footmain .foot_ea{float:left;margin-top:20px;width:40%}
.footmain .foot_ea p{font-size:16px;color:#989797;margin:20px 0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;box-sizing:border-box}
.footmain .foot_ea p img{display:inline-block;margin-right:5px}
.footmain .foot_ea p a{color:#989797}
.footmain .foot_ea p a:hover{color:#2b3aa1}
.footmain .foot_ewm{float:right;color:#989797;text-align:center}
.footmain .foot_ewm img{height:110px}
.footmain .foot_ewm p{margin-top:10px;font-size:16px}
.foot_box .foot_b{width:100%;background:#1b1919;text-align:center;color:#4f4c4d;padding:20px 0;font-size:15px}
.foot_box .foot_b a{color:#4f4c4d}
.foot_box .foot_b a:hover{color:#2b3aa1}
@media screen and (max-width:1023px) and (min-width:768px){.foot_top{text-align:center}
.foot_top .foot_nav{display:none}
.footmain .foot_ea{margin-top:0;text-align:center;float:none;width:100%}
.footmain .foot_ea p{overflow:auto;white-space:inherit}
.foot_top .foot_logo{float:none}
.foot_top .foot_logo img{max-height:100%;max-width:100%}
.footmain .foot_ewm{float:none;margin-top:10px}
.footmain .foot_tel{display:none}
.footmain{margin:10px auto 20px}
}@media (max-width:767px){.foot_top{text-align:center}
.foot_top .foot_nav{display:none}
.footmain .foot_ea{margin-top:0;text-align:center;float:none;width:100%}
.footmain .foot_ea p{overflow:auto;white-space:inherit}
.foot_top .foot_logo{float:none}
.foot_top .foot_logo img{max-height:100%;max-width:100%}
.footmain .foot_ewm{float:none;margin-top:10px}
.footmain .foot_tel{display:none}
.footmain{margin:10px auto 20px}
.foot_box .foot_b{padding:20px 0 65px}
}