.container1 {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}
.container1 .image-section {
    width: 640px;
    height: 362px;
    background-color: #eee; /* 仅为示例，实际使用时替换为图片 */
    margin-right: 20px;
    overflow: hidden;
}
.container1 .news-section {
    width: 540px; /* 1200 - 640 - 20 = 540 */
}
.container1 .news-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #969696;
}
.container1 .news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.container1 .news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.container1 .news-title a {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}
.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px; /* 2行文本的高度，根据实际字体大小调整 */
}
/* 新闻网格布局 */
.container1 .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    grid-column-gap: 40px;  /* 列间距40px */
    grid-row-gap: 20px;     /* 行间距20px */
}
/* 新闻项样式 */
.container1 .news-item2 {
    padding: 0px 0px;
    height: 60px; /* 统一高度 */
    display: flex;
    align-items: center;
    transition: all 0.3s;
    border-bottom: 1px solid #969696;
}
/* 新闻标题样式 */
.container1 .news-title2 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    line-height: 28px;
}
.container1 .swiper {
    width: 100%;
    height: auto;
    position: relative;
}
.container1 .image-container1 {
    position: relative;
    display: inline-block;
    width: 640px;
    height: 362px;
}
.container1 .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
}
.container1 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container1 .swiper-button-next, .container1 .swiper-button-prev {
    position: absolute;
    bottom: 40%;
    transform: translateY(-10%);
    width: 40px;
    height: 60px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
}
.container1 .swiper-button-next:hover, .container1 .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}
/* 移除默认的箭头图标 */
.container1 .swiper-button-next:after, .container1 .swiper-button-prev:after {
    display: none;
}
  /* 更多按钮样式 */
        .more-container { width: 1200px;
             margin: 20px auto;
  text-align: right
        }
        
        .more {
            background: #fff;
            padding: 5px 10px;
            color: #044ef0;
            display: inline-block;
            width: 110px;
            text-align: center;
            text-decoration: none;
            font-weight: normal;
        }
        
        .more:hover {
            text-decoration: underline;
        }




/* 行业洞察  开始*/

.container2{ width:1300px; margin: 0 auto; overflow: hidden}
.pic-box {
    margin: 60px auto 140px;
    width: 1200px;
    position: relative;
    padding: 0 60px; /* 为导航按钮留出空间 */
	overflow: hidden;
}
	.pic-box img {
    width: 100%;
    height: 500px; /* 固定高度 */
    object-fit: cover;
}
.pic-box .swiper-container2 {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.pic-box .swiper-wrapper {
    align-items: flex-end; /* 图片底部对齐 */
}
.pic-box .swiper-slide {
    width: 70% !important;
    height: 500px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  
    z-index: 1;border: solid 10px #1e90ff;
}
.pic-box img {
    width: 100%;
    height: 85%;
    object-fit: cover;
}
/* 图说样式 */
.caption2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: #1e90ff;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
/* 当前幻灯片样式 */
.pic-box .swiper-slide-active {
    z-index: 1000;
   
    
}
/* 前一张和后一张幻灯片样式 */
.pic-box .swiper-slide-next,
.pic-box .swiper-slide-prev {
    opacity: 0.8;
    z-index: 2;
}
.pic-box .swiper-slide-next {
    transform: translateX(35%) scale(0.9);
}
.pic-box .swiper-slide-prev {
    transform: translateX(-35%) scale(0.9);
}
/* 其他幻灯片完全隐藏 */
.pic-box .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-prev) {
    opacity: 0;
    transform: translateX(0) scale(0.8);
}
/* 导航按钮样式 */
.nav-btn {
    position: absolute;
    bottom: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.nav-btn:hover {
    background: rgba(0,0,0,0.8);
}
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}
/* 行业洞察  结束*/

/*企业面对面 开始*/
  .container3 {
            width: 1200px;
            margin: 30px auto 0px;
            padding: 10px 0;
        }
        
        /* 2栏布局 */
        .news-grid3 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        /* 新闻块样式 */
        .news-block3 {
            background: #3ba3ff;           
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .news-block3:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* 图片样式 */
        .news-image3 {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }
        
        /* 标题容器 */
        .news-caption3 {
            padding: 15px;
        }
        
        /* 主标题样式 */
        .news-title3 {
            font-size: 16px;
            color: #fff;
            font-weight: normal;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
/*企业面对面 结束*/

/*山城样本  开始*/





 .container6 {
            width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        /* 5栏布局 */
        .brand-grid6 {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }
        
        /* 品牌卡片样式 */
        .brand-card6 {
            position: relative; /* 为绝对定位子元素提供参照 */
            overflow: hidden; /* 隐藏超出部分 */
           
            height: 140px; /* 固定高度 */
        }
        
        .brand-card6:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* logo图片样式 */
        .brand-logo {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持图片比例填充容器 */
            display: block;
        }
        
        /* 品牌标题样式 - 固定在图片底部 */
        .brand-title {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 30px;
            line-height: 30px;
            font-size: 14px;
            color: #fff;
            background: rgba(0, 0, 0, 0.5);
            padding-left: 10px;
            box-sizing: border-box;
        }



/*精彩图集 开始*/
 .container7 {
            
            max-width: 1920px !important;
            margin: 0 auto;
            padding: 30px 20px; 
	        overflow: hidden;
        }
        
        /* 3栏布局 */
        .three-column7s7 {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        /* 每栏样式 */
        .column7 {
            flex: 1;
            min-width: 300px;
           
            
            overflow: hidden;
           
        }
        
        .column7:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* 图片样式 */
        .column7-image {
            width: 100%;
            
            object-fit: cover;
        }
        
        /* 标签样式 */
        .column7-label {
            padding: 15px;
            font-size: 16px;
            line-height: 30px;
            color: #333;
            text-align: left;
           
        }
/*山城样本  结束*/

/*精彩图集 结束*/

    /*惠企政策 开始*/    
        .container8 {
            width: 1200px;
            margin: 0 auto;
            padding: 30px 30px 300px;
           
        }
        
        /* 主标题样式 */
         .container8 .main-title8 {
            font-size: 24px;
            color: #333;
            font-weight: bold;
            padding-bottom: 15px;
            margin-bottom: 25px;
            border-bottom: 2px solid #e74c3c;
        }
        
        /* 新闻网格布局 */
          .container8 .news-grid8 {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2列 */
            grid-column-gap: 40px; /* 列间距 */
            grid-row-gap: 20px; /* 行间距 */
        }
        
        /* 新闻项样式 */
          .container8 .news-item8 {
            display: flex;
            align-items: flex-start;
            padding: 15px 0;
            border-bottom: 1px solid #969696;
        }
        
        /* 列表点样式 */
          .container8 .news-item8::before {
            content: "•";
            color: #044ef0;
            font-size: 30px;
            margin-right: 10px;
            line-height: 1;
        }
        
        /* 新闻标题样式 */
          .container8 .news-title8 {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
        }
        
         .container8  .news-title8 a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .news-title8 a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }

     /*惠企政策 结束*/    

/*滚动  开始*/
#div1, #div2 {
    position: relative;
    margin: 10px auto;
    width: 100%;
    height: 95px;
    overflow: hidden;
}
#div1 ul, #div2 ul {
    position: absolute;
    left: 0;
}
#div1 ul li, #div2 ul li {
    float: left;
    list-style: none;
}
#div1 ul li img, #div2 ul li img {
    width: 100%;
}
/*滚动  结束*/