.swiper {
    width: 100%;
    margin-top: 20px;
    position: relative; /* 設定為定位容器 */
    overflow: visible;
    z-index: 2;
}

    .swiper .swiper-slide {
        padding: 0;
        margin: 0;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

        .swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px; /* 圓角 */
        }

/* 當滑到正中間的 slide，放大並輕微上移 */
    .swiper .swiper-slide-active {
        transform: scale(1.3) translateY(5px) !important;
        transition: transform 0.3s ease-in-out 1s !important;
        z-index: 2;
        border: 2px solid #fff; /* 白色邊框 */
        border-radius: 20px; /* 圓角與圖片一致 */
        box-sizing: border-box; /* 邊框不會影響縮放 */
    }

    .swiper .img-container {
        position: relative;
        display: inline-block;
    }

        .swiper .img-container img {
            display: block;
        }

        .swiper .img-container p img {
            height: 20px;
            width: 20px;
            vertical-align: middle;
            margin-right: 5px;
        }

        .swiper .img-container p {
            position: absolute;
            bottom: 0px;
            right: 30px;
            background-color: rgba(47, 41, 41, 0.4);
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            text-align: center;
            /* min-width: 130px; */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

    .swiper .swiper-pagination {
        position: relative !important;
        bottom: auto !important;
        margin-top: 10px;
        text-align: center;
    }

    .swiper .swiper-wrapper {
        position: relative; /* 設定為定位容器 */
    }

.main_area_switch {
    position: absolute;
    top: 20px;
    left: -10px;
    z-index: 100;
}

    .main_area_switch ul li.selected {
        background: #c7252d;
        border: 1px solid #c7252d;
    }

    .main_area_switch ul li {
        margin: 0 10px;
        width: 80px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #fff;
        border-radius: 5px;
        border: 1px solid #fff;
        cursor: pointer;
        list-style-type: none;
    }

    .main_area_switch ul {
        display: flex;
    }

/*.testimonials.section,
.testimonials.section .container,
.testimonials.section .swiper {
    height: 120px;*/ /* 原本 360px，減少 1/3 */
    /*min-height: 120px;
    max-height: 120px;
    box-sizing: border-box;
}

.swiper-wrapper, .swiper-slide {
    height: 100%;
}*/
