#merchant{
    /* ===== Swiper 主容器（横向部分预览） ===== */
    .swiper-build {
        width: 100%;
        height: 460px;               /* 根据设计微调高度 */
        margin: 0 auto;
        position: relative;
        overflow: visible;           /* 允许侧边预览溢出显示 */
    }

    /* 当前激活的那张图 */
    .swiper-build .swiper-slide-active {
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .swiper-build .swiper-wrapper {
        align-items: center;
        width: 920px !important;     /* 中间主图宽度（桌面） */
        height: 380px;
    }

    /* 自定义导航箭头（圆形） */
    /* 注：&::after选择器需要LESS/SASS编译支持，如果项目未使用预处理器可能不生效 */
    .swiper-button-prev, .swiper-button-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        /*display:flex;*/
        align-items:center;
        justify-content:center;
        z-index: 20;

        /* 隐藏Swiper默认的按钮图标 */
        &::after {
            display: none;
        }
    }
    .swiper-button-prev { left: 150px!important; }
    .swiper-button-next { right: 150px!important; }
}