.ftl-112 .item-body {
    background-color: #CAB683;
    padding: 10px 12px;
}

.ftl-112 .item-title a {
    color: #fff;
}

.ftl-112 .img-box{
    overflow: hidden; /* 隐藏超出部分 */
}
.ftl-112 .img-box img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 1s ease;
}

.ftl-112 .img-box:hover img {
    transform: scale(1.1);
}

.ftl-112 .price-box {
    display: flex;
    gap: 4px;
    margin-top: 10px;
}

.ftl-112 .price-labe {
    font-size: 12px;
    font-style: italic;
    color: #fff;
}

.ftl-112 .price {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.ftl-112 .btn-box {
    background-color: #3C3C3C;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.ftl-112 .btn {
    font-size: 16px;
    font-weight: 500;
    background-color: #3C3C3C;
    height: 40px;
    line-height: 40px;
    padding: 0;
}

.ftl-112 .item-box {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .ftl-112 .main-body {
        display: flex;
    }

    .ftl-112 .title-box h2 {
        text-align: left;
    }

    .ftl-112 .title-box .content {
        text-align: left;
        color: #000;
    }

    .ftl-112 .title-box .content p {
        width: 100%;
    }

    .ftl-112 .item-body {
        height: 123px;
    }

    .ftl-112 .main-body .title-box {
        width: 30%;
    }

    .ftl-112 .main-body .body-box {
        width: 70%;
    }

    .ftl-112 .body-box ul {
        display: flex;
        gap: 6px;

        overflow-x: auto;

    }

    .ftl-112 .body-box ul li {
        min-width: 300px;
        max-width: 300px;
    }
}


/**=====================代码AI生成===================*/
.ftl-112 .left-arrow {
    display: none;
}

.ftl-112 .right-arrow {
    display: none;
}

/* 新增样式 - 不修改原有HTML */
@media (min-width: 768px) {
    .ftl-112 .body-box {
        position: relative;
    }

    .ftl-112 .scroll-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 1px solid #ddd;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #333;
    }

    .ftl-112 .scroll-arrow:hover {
        background: #f5f5f5;
    }

    .ftl-112 .left-arrow {
        display: block;
        left: -20px;
    }

    .ftl-112 .right-arrow {
        display: block;
        right: -20px;
    }

    .ftl-112 .body-box ul {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    .ftl-112 .body-box ul::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .ftl-112 .body-box ul li {
        flex: 0 0 auto;
        margin-right: 15px;
    }
}