﻿/*以下为修正bootstrp carousel插件轮播图片不是100%宽度的显示问题*/

/* 轮播本身全屏 */
#carousel-example-generic {
    width: 100% !important;
}

    /* 图片强制100%宽，高度自适应，不变形、不留白边 */
    #carousel-example-generic .item img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover; /* 保持比例，撑满容器 */
    }

/* 修复 Bootstrap3 自带左右控制不影响宽度 */
.carousel-control {
    width: 5%;
}

/* 消除内部默认间距 */
.carousel-inner {
    width: 100%;
    overflow: hidden;
}
