/* 价格页面样式 */

/* 涟漪效果样式 */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* FAQ产品标签样式 */
.faq-product-tag {
    display: inline-block;
    background: var(--lemon-primary);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 500;
    vertical-align: middle;
}

.faq-answer {
    margin-top: 8px;
    line-height: 1.6;
    color: var(--lemon-text-secondary);
}

.faq-answer p {
    margin: 0 0 8px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--lemon-border-light);
}

.faq-more {
    margin: 0;
}

.faq-more .lemon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-more .lemon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* 价格卡片动画效果 */
.lemon-pricing-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lemon-pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.lemon-pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.08);
}

/* 动画延迟 */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* 初始状态 */
.lemon-pricing-card,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 显示状态 */
.lemon-pricing-card.show,
.faq-item.show {
    opacity: 1;
    transform: translateY(0);
}