/* =============================================
   Banner 样式：通屏背景色 + 图片最大2000px居中
   ============================================= */

/* 通屏背景色 */
.banner {
    background: linear-gradient(to right, #f7fcff, #102e51) !important;
}

/* 图片最大2000px，居中，去掉width:100%约束 */
.banner .banner-img {
    max-width: 2000px !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* 移动端也约束最大宽度 */
@media (max-width: 2000px) {
    .banner .banner-img {
        width: 100% !important;
    }
}
