.carousel {
    position: relative;
    width: 100%;
    /* ✅ 你自定义的宽度 */
    height: 250px;
    /* ✅ 你自定义的高度 */
    overflow: hidden;
    background-color: #FFFFFF;
    /* 背景黑色，防止空白时突兀 */
}

.carousel-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    display: none;
}



.carousel-img.active {
    display: block;
}