.banner {
    width: 100%;
    min-width: 1200px; /* 保留最小宽度，但建议后续加媒体查询 */
    height: 535px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}

.banner_show {
    width: 100%;
    height: 535px;
    position: relative;
    overflow: hidden;
}

.bannger_inbox {
    position: absolute;
    left: 0;           /* 改为从左侧开始 */
    top: 0;
    width: 100%;       /* 保持100%宽度 */
    height: 100%;
    display: block;
    z-index: 1;        /* 确保图片在文字下方 */
}

.bannger_inbox img {
    width: 100%;
    height: 535px;
    object-fit: cover; /* 保持图片比例填充，不拉伸 */
    display: block;
}

/* 新增：文字层样式，确保居中且不被遮挡 */
.banner_text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;       /* 确保文字在图片上方 */
    text-align: center;
    width: 90%;        /* 防止文字溢出 */
}

.banner_text h1 {
    color: #019fe9;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .banner {
        min-width: 100%; /* 小屏下取消最小宽度限制 */
        height: auto;    /* 高度自适应 */
    }

    .banner_show,
    .bannger_inbox img {
        height: auto;    /* 图片高度随容器自适应 */
    }

    .banner_text h1 {
        font-size: 28px; /* 小屏下缩小字号 */
    }
}
/*翻页*/
.banner_pre_next{position:relative;z-index:105;top:250px;width: 1200px;height:37px; margin:0 auto}
.banner_pre_next a{width:37px;height:37px;background:url(../images/btn.png) no-repeat;text-indent:-999em;}
.banner_pre_next .banner_btn_left{position:absolute;left:-37px;background-position:0px 0px;}
.banner_pre_next .banner_btn_right{position:absolute;right:-37px;background-position:-37px 0px;}
