
.horizontalGallery-hScrollGallery-u1I {
    /* position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    top: calc(100vh - 164px); */
    overflow: hidden;
    opacity: 1; /* 直接设置为可见，移除过渡效果避免不必要的重排 */
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .horizontalGallery-hScrollGallery-u1I {
        top: calc(100vh - 164px - env(safe-area-inset-bottom));
    }
}

.horizontalGallery-hScrollContainer--zQ {
    display: flex; 
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    opacity: 1; /* 直接设置为可见 */
    padding: 0 40px 0 12px;
    /* 优化滚动性能 */
    will-change: scroll-position;
}

.horizontalGallery-hScrollContainer--zQ::-webkit-scrollbar {
    display: none;
}

.horizontalGallery-hScrollItem-IGh {
    flex: 0 0 200px;
    height: 200px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.60);
    /* background: linear-gradient(180deg, rgba(250, 250, 252, 0.50) 0%, rgba(224, 224, 224, 0.50) 100%); */
    /* box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10), 0px 0px 30px 0px rgba(0, 0, 0, 0.10); */
    -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.horizontalGallery-imageBackground-9hm {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 960px) {
    .horizontalGallery-hScrollContainer--zQ {
        gap: 8px;
    }

    .horizontalGallery-hScrollItem-IGh {
        flex: 0 0 80px;
        height: 80px;
    }
}

