/* 评价文案增强样式 */

/* 增大评价文案字体 */
.testimonial-text {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #1f2937 !important;
    margin-bottom: 20px !important;
    font-weight: 400;
}

/* 重点关键词高亮 - 时间相关 */
.testimonial-text strong {
    color: #2563eb;
    font-weight: 600;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 1px 4px;
    border-radius: 3px;
}

/* 痛点描述样式 */
.pain-point {
    color: #dc2626;
    font-weight: 500;
    border-bottom: 1px dashed #fca5a5;
}

/* 成功文本样式 */
.success-text {
    color: #059669;
    font-weight: 600;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    padding: 2px 6px;
    border-radius: 4px;
}

/* 功能亮点样式 */
.highlight, .feature-highlight {
    color: #7c3aed;
    font-weight: 600;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    padding: 2px 6px;
    border-radius: 4px;
}

/* 服务亮点样式 */
.service-highlight {
    color: #0891b2;
    font-weight: 600;
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    padding: 2px 6px;
    border-radius: 4px;
}

/* 推荐语样式 */
.recommend {
    color: #dc2626;
    font-weight: 600;
    font-style: italic;
    margin-left: 4px;
}

/* 项目类型标注 */
.project-type {
    color: #ea580c;
    font-weight: 600;
    border-left: 3px solid #fb923c;
    padding-left: 8px;
}

/* 规模描述 */
.scale-text {
    color: #0f766e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 前后对比 */
.before-after {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 3px 8px;
    border-radius: 4px;
    margin: 0 2px;
    font-weight: 500;
}

/* 数字强调 */
.testimonial-text b {
    color: #dc2626;
    font-size: 18px;
    font-weight: 700;
}

/* 引号样式增强 */
.testimonial-text::before {
    content: '"';
    font-size: 28px;
    color: #e5e7eb;
    font-weight: 700;
    margin-right: 2px;
    vertical-align: -4px;
}

.testimonial-text::after {
    content: '"';
    font-size: 28px;
    color: #e5e7eb;
    font-weight: 700;
    margin-left: 2px;
    vertical-align: -4px;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 24px;
    }
}

/* 特殊强调效果 */
.testimonial-text .emphasis {
    position: relative;
    color: #1e40af;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-text .emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* 动画效果 - 评价卡片进入视野时 */
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 鼠标悬停时的文字效果 */
.testimonial:hover .testimonial-text {
    color: #111827;
    transition: color 0.3s ease;
}

/* 关键数字的脉冲效果 */
@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.testimonial-text .number-highlight {
    display: inline-block;
    color: #dc2626;
    font-weight: 700;
    font-size: 18px;
    animation: numberPulse 2s ease-in-out infinite;
}