        .reviews-container-111 {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
            background: rgba(248, 250, 252, 0.95);
            margin: 0px 0;
        }
        
        .reviews-track-111 {
            display: flex;
            width: max-content;
            animation: scroll-111 linear infinite;
        }
        
        .review-card-111 {
            width: 300px;
            margin: 0 15px;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }
        
        .review-header-111 {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-avatar-111 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .review-user-111 h4 {
            margin: 0;
            font-size: 16px;
            color: #333;
        }
        
        .review-user-111 p {
            margin: 5px 0 0;
            font-size: 14px;
            color: #666;
        }
        
        .review-content-111 {
            font-size: 14px;
            line-height: 1.6;
            color: #444;
        }
        
        .review-stars-111 {
            color: #ffc107;
            margin-top: 10px;
            font-size: 20px;
        }
        
        @keyframes scroll-111 {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* 多行样式 */
        .multi-row-111 {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .reviews-track-row-111 {
            display: flex;
            width: max-content;
            animation: scroll-111 linear infinite;
        }
        
        /* 不同速度控制 */
        .speed-slow-111 {
            animation-duration: 105s;
        }
        
        .speed-medium-111 {
            animation-duration: 95s;
        }
        
        .speed-fast-111 {
            animation-duration: 20s;
        }