/* 无缝图片跑马灯 */
.marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
          /*   background-color: #f8f9fa; */
        }
        
        .marquee-track {
            display: flex;
            position: relative;
            left: 0;
            will-change: transform;
        }
        
        .marquee-item {
            flex: 0 0 auto;
            width: 200px;
            height: 120px;
            margin: 0 10px;
            transition: transform 0.2s;
        }
        
        .marquee-item:hover {
            transform: scale(1.05);
        }
        
        .marquee-item a {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .marquee-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }