
    /* 1. 基础容器 */
    .uee-testimonial-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #0f172a;
        position: relative;
    }

    /* 2. 顶部标题与导航按钮排版 */
    .uee-testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .uee-testimonial-header h2 {
        font-size: 32px;
        font-weight: 800;
        margin: 0;
    }

    .uee-nav-btns {
        display: flex;
        gap: 12px;
    }

    .uee-nav-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #e2e8f0;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: #0f172a;
    }

    .uee-nav-btn:hover {
        border-color: #56B8B8;
        color: #56B8B8;
        box-shadow: 0 4px 12px rgba(86, 184, 184, 0.15);
    }

    /* 3. 滚动轨道 */
    .uee-carousel-track {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 25px;
        padding: 10px 5px 40px 5px;
        scrollbar-width: none; /* 隐藏火狐滚动条 */
    }

    .uee-carousel-track::-webkit-scrollbar {
        display: none; /* 隐藏 Chrome 滚动条 */
    }

    /* 4. 单个卡片样式 */
    .uee-testimonial-card {
        flex: 0 0 calc(33.333% - 17px); /* PC端一行3个 */
        scroll-snap-align: start;
        background: #ffffff;
        border-radius: 24px;
        padding: 40px;
        box-sizing: border-box;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        border: 1px solid #f1f5f9;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 400px; /* 统一高度 */
    }

    /* 装饰用大引号 */
    .uee-testimonial-card::after {
        content: "”";
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 80px;
        font-family: serif;
        color: #f0fafa; /* 使用淡色主色调 */
        line-height: 1;
        pointer-events: none;
    }

    .uee-testimonial-content {
        font-size: 16px;
        line-height: 1.7;
        color: #475569;
        font-style: italic;
        margin-bottom: 30px;
        z-index: 1;
    }

    .uee-testimonial-author {
        font-size: 17px;
        font-weight: 800;
        color: #0f172a;
        border-top: 1px solid #f1f5f9;
        padding-top: 20px;
    }

    /* 5. 响应式适配 */
    @media (max-width: 1024px) {
        .uee-testimonial-card { flex: 0 0 calc(50% - 13px); } /* 平板2个 */
    }

    @media (max-width: 768px) {
        .uee-testimonial-card { flex: 0 0 85%; } /* 手机端显示一个半 */
        .uee-testimonial-header h2 { font-size: 26px; }
        .uee-nav-btns { display: none; } /* 手机端通过手划，隐藏按钮 */
    }
