 
        /* 用户好评模块样式 */
        .testimonials-section {
             
            padding: 160px 0;
            overflow: hidden;
        }
        
        /* 突破 container 宽度限制 */
        .testimonials-section .container {
            max-width: 100%;
            padding: 0;
        }
        
        .testimonials-section .section-header {
            padding: 0 20px;
        }
        
        .testimonials-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .testimonial-card {
            flex: 0 0 380px;
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.1);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            background: rgba(30, 41, 59, 0.8);
            border-color: rgba(148, 163, 184, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: white;
        }
        
        .testimonial-name {
            font-size: 16px;
            font-weight: 600;
            color: #f1f5f9;
            margin: 0;
        }
        
        .testimonial-content {
            font-size: 15px;
            line-height: 1.7;
            color: #cbd5e1;
            margin: 0;
        }
        
        .testimonial-content::before {
            content: '"';
            font-size: 24px;
            color: #3b82f6;
            margin-right: 4px;
        }
        
        .testimonial-content::after {
            content: '"';
            font-size: 24px;
            color: #3b82f6;
            margin-left: 4px;
        }
        
        /* 响应式适配 */
        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 300px;
                padding: 20px;
            }
            
            .testimonial-content {
                font-size: 14px;
            }
        }
        
        /* 滚动轨道 */
        .testimonials-track {
            display: flex;
            width: max-content;
            animation: scroll-left 90s linear infinite;
        }
        
        .testimonials-track:hover {
            animation-play-state: paused;
        }
        
        /* 内容组 */
        .testimonials-group {
            display: flex;
            gap: 24px;
            flex-shrink: 0;
            padding: 0 10px;
        }
        
        /* 无缝滚动动画 */
        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* 确保卡片不会压缩 */
        .testimonial-card {
            flex: 0 0 380px;
            min-width: 380px;
        }
        
        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 300px;
                min-width: 300px;
            }
        }
     