/* 移除默认body边距 */
body {
    margin: 0;
    padding: 0;
}

/* 轮播图容器铺满屏幕宽度 */
.carousel-container {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* 轮播图项高度控制 */
.carousel-item {
    height: 500px; /* 可根据需要调整高度 */
}

/* 图片适配 */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播文字位置调整 */
.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-item {
        height: 350px;
    }
}