@charset "utf-8";
/* CSS Document */
.scroll-container {
            width: 878px;       /* 固定容器宽度878px */
            height: 300px;      /* 容器高度300px */
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);

        }

        /* 滚动内容容器：flex布局，绝对定位实现移动 */
        .scroll-content {
            display: flex;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
        }

        /* 图片项样式：固定宽度300px，优化间距 */
        .scroll-item {
            flex: 0 0 auto;
            width: 200px;       /* 单张图片宽度300px */
            height: 200px;
            padding: 0 9px;     /* 调整间距（总间距18px，适配878px容器） */
				padding-top: 20px;
        }

        .scroll-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持图片比例，填充容器 */
            border-radius: 8px;
            transition: transform 0.2s ease;
        }

        .scroll-item img:hover {
            transform: scale(1.02); /* 鼠标悬停轻微放大 */
