
.ftl-105 .container-105{
    padding: 0 16px;
}
.ftl-105 .body-left h2 {
    display: block;
}

.ftl-105 .body-right {
    display: none;
}

.ftl-105 .body-left ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ftl-105 .body-left li {
    width: calc(50% - (6px * 2 / 2));
    aspect-ratio: 1 / 1;
}

.ftl-105 .body-left li .img-box {
    height: 100%;
}

.ftl-105 .body-left li img {
    min-height: 100%;
    object-fit: cover;
    max-height: 100%;
    min-width: 100%;
}

.ftl-105 .body-left .img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ftl-105 .body-left .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* 半透明黑色遮罩 */
    z-index: 1;
    /* 确保遮罩在图片上方、文字下方 */
}

.ftl-105 .body-left .img-title {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 5px 10px;
    text-align: center;
    z-index: 2;
}


@media (min-width: 768px) {

    .ftl-105{
        background-color: #f7f5f1;
    }

    .ftl-105 .container-105{
        background-color: #fff;
    }

    .ftl-105 .body-left h2 {
        display: none;
    }

    .ftl-105 .body-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .ftl-105 .right-box {
        max-width: 85%;
    }

    .ftl-105 .body-right h2 {
        font-size: 24px;
        color: #644222;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .ftl-105 .body-box {
        display: flex;
        gap: 20px;
    }

    .ftl-105 .body-left,
    .ftl-105 .body-right {
        flex: 1;
    }

    .ftl-105 .body-left .img-box::before {
        display: none;
    }

    .ftl-105 .body-left .img-title {
        display: none;
    }

    .ftl-105 .body-left .slider-container {
        position: relative;
        height: 638px;
        overflow: hidden;
        min-height: 100%;
    }

    .ftl-105 .body-left .image-slider {
        position: relative;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .ftl-105 .body-left .image-slider li {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* opacity: 0; */
        transition: opacity 0.5s ease;
    }

    .ftl-105 .body-left .image-slider li.active {
        opacity: 1;
    }

    .ftl-105 .body-left .img-box {
        position: relative;
        height: 100%;
    }

    .ftl-105 .body-left .img-box img {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .ftl-105 .body-left .img-title {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 10px;
        text-align: center;
    }

    .ftl-105 .body-right{
        margin-top: 30px;
    }

    .ftl-105 .body-right .name-list ul {
        list-style: none;
        padding: 0;
        margin: 30px 0 60px 0;
    }

    .ftl-105 .body-right .name-list li {
        padding: 0 10px;
        line-height: 1;
        margin-bottom: .56rem;

    }

    .ftl-105 .body-right .name-list li.active {
        background-color: #f5f5f5;
        font-weight: bold;
        opacity: 1;

    }

    .ftl-105 .body-right .name-list li.active .name-link {
        color: #000;

    }

    .ftl-105 .body-right .name-link {
        text-decoration: none;
        color: #000;
        display: block;
        font-size: 3rem;
        opacity: .5;
    }


    /* 初始状态：左侧只显示第一张图 */
    .body-left img {
        display: none;
    }

    .body-left img:first-child {
        display: block;
    }

    /* 右侧悬停效果 */
    .body-right li {
        cursor: pointer;
        transition: color 0.3s;
    }

    .body-right li:first-child a:first-child {
        opacity: 1;
    }
}