   .scroll-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 20px 0;
        }
        
        .scroll-wrapper {
            display: flex;
            width: max-content;
            animation: scroll 20s linear infinite;
        }
        
        .scroll-wrapper:hover {
            animation-play-state: paused;
        }
        
        .scroll-item {
            flex: 0 0 auto;
            width: 300px;
            height: 200px;
            margin: 0 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .scroll-item:hover {
            transform: scale(1.05);
        }
        
        .scroll-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .scroll-item {
                width: 200px;
                height: 150px;
            }
            
            .scroll-wrapper {
                animation-duration: 15s;
            }
        }
        
        @media (max-width: 480px) {
            .scroll-item {
                width: 150px;
                height: 100px;
                margin: 0 5px;
            }
            
            .scroll-wrapper {
                animation-duration: 10s;
            }
        }