/* 主容器 */
.zb-show-01-container {
    width: 1300px;
    height: 700px;
    position: relative;
}

/* 图片滚动区域 */
.zb-show-01-scroll-area {
    width: 1300px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

/* 图片列表容器 - 参考jCarouselLite */
.zb-show-01-carousel {
    width: 1300px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    box-sizing: content-box;
}

/* 图片列表 - 无限循环 */
.zb-show-01-image-list {
    width: 99999px;
    height: 600px;
    position: relative;
    transition: left 0.5s ease;
    left: 0px;
}

/* 单个图片项 */
.zb-show-01-image-item {
    width: 425px;
    height: 600px;
    float: left;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.zb-show-01-image-item:hover {
    z-index: 100;
}

.zb-show-01-image-item img {
    width: 425px;
    height: 600px;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
}

/* hover效果 - 角度改为3度 */
.zb-show-01-left-twist:hover {
    transform: translateY(-1px) translateX(-1px) rotateZ(-1deg) scale(0.95);
}

.zb-show-01-center-twist:hover {
    transform: translateY(1px) rotateZ(1deg) scale(0.95);
}

.zb-show-01-right-twist:hover {
    transform: translateY(-1px) translateX(1px) rotateZ(1deg) scale(0.95);
}

.zb-show-01-image-item:hover img {
    filter: brightness(1.1);
}

/* 左右按钮 - 使用图片版本 */
.zb-show-01-move-left,
.zb-show-01-move-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    z-index: 500;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.zb-show-01-move-left {
    left: 25px;
    background-image: url('../images/left-arrow.png'); /* 替换为你的左箭头图片路径 */
}

.zb-show-01-move-right {
    right: 25px;
    background-image: url('../images/right-arrow.png'); /* 替换为你的右箭头图片路径 */
}

.zb-show-01-move-left:hover {
    transform: translateY(-50%) scale(1.1);
}

.zb-show-01-move-right:hover {
    transform: translateY(-50%) scale(1.1);
}

.zb-show-01-clear {
    clear: both;
}


/* --------------------------- */

.zb-show-02-container {
            width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px 0; /* 行间距20px，列间距0 */
        }
        
.zb-show-02-item {
            width: 1300px;
            height: 700px;
            cursor: pointer;
        }
        
.zb-show-02-item img {
            width: 1300px;
            height: 700px;
            display: block;
            transition: transform 0.3s ease;
        }