.sectionCon {
    margin: 30px auto;
}

/* 地图信息样式 */

.map-info-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background-color: #f4f4f4;
    padding: 35px 0;
}

.map-info-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.map-info-title {
    font-size: 18px;
    font-weight: bold;
    color: #01409F;
    margin-bottom: 10px;
}

.map-info-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.map-content {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.map-content img {
    max-width: 1500px;
    width: 100%;
    height: auto;
}

.innovation-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* 每一项之间的间距 */
    margin-bottom: 100px;
}

.innov-item {
    width: calc(100% - 40px);
    background: #F7F8FA;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.innov-header {
    position: relative;
    color: #fff;
    height: 100px;
    line-height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 38px;
    box-sizing: border-box;
    overflow: hidden;
}

.innov-item:nth-child(even) .innov-header {
    justify-content: flex-end;
}

.innov-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/home/redline.png') no-repeat;
    background-size: 100% 100%;
    z-index: 0;
}

.innov-item:nth-child(even) .innov-header::before {
    transform: scaleX(-1);
}

.innov-header>* {
    position: relative;
    z-index: 1;
}

.innov-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* --- 内容区域 (左右布局) --- */
.innov-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

/* 左侧文字 */
.innov-text {
    flex: 1;
    /* 占据剩余空间 */
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* 覆盖接口返回的富文本样式 */
.innov-text p {
    margin-bottom: 15px;
    font-size: 14px !important;
    font-family: "Alibaba PuHuiTi 3.0", sans-serif !important;
}

.innov-text span {
    color: #666 !important;
    /* 强制灰色 */
    font-size: 14px !important;
    background: transparent !important;
}


/* --- 修改后的 Swiper 图片区域样式 --- */

/* 新的外层容器，用于控制 Swiper 在右侧的宽度 */
.innov-images-swiper {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    /* 防止 Swiper 溢出 */
}

/* Swiper 容器本身 */
.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    /* 留出一点阴影空间 */
}

/* 覆盖之前的 .img-box-border 样式，确保它在 Slide 中居中 */
.img-box-border {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.img-box-border img {
    max-width: 100%;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .map-info-content {
        flex-direction: column;
        gap: 20px;
    }

    .map-info-item {
        padding: 0;
    }

    .map-info {
        padding: 20px 0;
    }

    .innov-header::before {
        background: url('../images/home/redline_s.png') no-repeat;
        background-size: 100% 100%;
    }

    .innov-header {
        height: 50px;
        line-height: 50px;
        padding: 0 12px;
    }

    .innov-header h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}