/*banner*/
.none {
    display: none;
}

/* 修改1：去掉 min-width，改用 100% 宽度 + 最大宽度限制 */
.banner {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}

/* 关键修正：padding-bottom改为 538÷1903≈28.27% */
.banner_show {
    width: 100%;
    height: 0;
    padding-bottom: 28.27%; /* 新比例计算 */
    overflow: hidden;
    position: relative;
}

.banner_show  img{ max-width:100%;}
.banner_inbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 确保图片填满容器且不变形 */
.banner_inbox img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 或 contain（按需选择） */
}
/*翻页*/
.banner_pre_next{position:relative;z-index:105;top:306px;width: 1500px;left:0%;height:37px;margin-left: 195px;}
.banner_pre_next a{width:37px;height:37px;background:url(../image/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;}


