.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    background: none;
    line-height: 1.6;
}
        
        .scroll-container {
            width: 100%;
            max-width: 1680px !important;
            overflow: hidden;
            position: relative;
            margin: 18px 0;
            border-radius: 12px;
           
        }
        

        
        .scroll-row {
            display: flex;
            width: max-content;
            padding: 10px 0;
        }
        
        .scroll-item {
            flex: 0 0 auto;
            width: 140px;
            height: 100px;
            margin: 0 12px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow:none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .scroll-item h1{color:#000;}
        .scroll-item:hover {
            transform: scale(1.2);
            box-shadow: none;
            z-index: 3;
        }
        
        .scroll-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* 第一行：向左滚动 */
        .row-1 .scroll-row {
            animation: scrollLeft 60s linear infinite;
        }
        
        /* 第二行：向右滚动 */
        .row-2 .scroll-row {
            animation: scrollRight 55s linear infinite;
        }
        
        /* 第三行：向左滚动 */
        .row-3 .scroll-row {
            animation: scrollLeft 60s linear infinite;
        }
        
        /* 第四行：向右滚动 */
        .row-4 .scroll-row {
            animation: scrollRight 55s linear infinite;
        }
        
        /* 第五行：向左滚动 */
        .row-5 .scroll-row {
            animation: scrollLeft 60s linear infinite;
        }
        
         /* 第四行：向右滚动 */
        .row-6 .scroll-row {
            animation: scrollRight 55s linear infinite;
        }
        
         
        /* 第五行：向左滚动 */
        .row-7 .scroll-row {
            animation: scrollLeft 42s linear infinite;
        }
        
        
        /* 悬停时暂停动画 */
        .scroll-row:hover {
            animation-play-state: paused !important;
        }
.gundong{
    padding-top: 50px;
    max-width:1500px;margin:0 auto;
    margin-bottom: 10px
} 
.gundongdiv{
        width: 100%;
}
.gundong h1{
   text-align: center;
}        
.gundong p{
   text-align: center !important;
}               
.instructions{
    position: relative;
    width: 100%;
  
    overflow: hidden;
    margin: 0 auto;
    font-size: 0;
  }
.instructions  .left_mask {
    left: 0;
  }
.instructions  .mask {
    position: absolute;
    z-index: 10;
  }
.instructions  .right_mask {
    right: -1px;
    -webkit-transform: rotate(
  180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(
  180deg);
  }
       
        
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        @keyframes scrollRight {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }
        
        .instructions {
            max-width: 800px;
            margin: 40px auto 20px;
            padding: 0px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-align: center;
        }
        
        footer {
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .scroll-item {
                width: 180px;
                height: 120px;
            }
            
          
        }
        
        @media (max-width: 480px) {
            .scroll-item {
                width: 150px;
                height: 100px;
            }
            
           
        }