/* 基础样式 */
.ftl-109 .ftl-109 {
    position: relative;
}

.ftl-109 .body-box {
    position: relative;
    overflow: hidden;
}

.ftl-109 .scroll-container {
    display: flex;
    gap: 20px;
    padding: 0 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.ftl-109 .scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.ftl-109 .scroll-container li {
    flex: 0 0 auto;
    /* width: 300px; */
    width: calc(25% - (20px * 3 / 4));
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.ftl-109 .scroll-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 1s ease;

}
.ftl-109 .scroll-container li:hover img {
    transform: scale(1.1);
}

/* 箭头样式 */
.ftl-109 .scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftl-109 .left-arrow {
    left: 10px;
}

.ftl-109 .right-arrow {
    right: 10px;
}

.ftl-109 .body-box:hover .scroll-arrow {
    opacity: 0.8;
}

.ftl-109 .scroll-arrow:hover {
    opacity: 1 !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ftl-109 .scroll-container li {
        width: 200px;
        height: 200px;
        /* 保持300:190的比例 */
    }

    .ftl-109 .scroll-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .ftl-109 .scroll-container {
        display: flex;
        gap: 20px;
        padding: 0 0;
        margin: 0;
        list-style: none;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }
    
}