/* 定价页面样式 */
.pricing-page {
    padding: var(--section-padding);
    color: var(--secondary-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-image {
    max-width: 120px;
    margin: 0 auto 24px;
}

.pricing-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-align: center;
}

.pricing-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
}

.pricing-card {
    flex: 1;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-header {
    padding: 32px 24px;
    background-color: var(--section-bg-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    font-size: 16px;
    color: var(--light-text-color);
    margin-left: 4px;
}

.original-price {
    font-size: 16px;
    color: var(--light-text-color);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.discount {
    font-size: 14px;
    color: var(--danger-color);
}

.card-body {
    padding: 32px 24px;
    background-color: white;
}

.card-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-fast);
}

.pricing-button:hover {
    background-color: var(--secondary-color);
    color: white;
}

.payment-note {
    font-size: 14px;
    color: var(--light-text-color);
    line-height: 1.5;
    padding: 16px;
    background-color: var(--section-bg-color);
    border-radius: 6px;
}

/* 功能比较表样式 */
.features-comparison {
    margin-bottom: 80px;
}

.features-comparison h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 32px;
    text-align: center;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.feature-name {
    justify-content: flex-start;
    color: var(--secondary-color);
}

.comparison-cell i {
    color: var(--success-color);
    font-size: 20px;
}

/* 用户评价部分样式 */
.testimonials {
    padding: var(--section-padding);
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-text-color);
}

.testimonials .section-description {
    margin-bottom: 36px;
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--muted-text-color);
    font-size: 0.95rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 88px;
}

.testimonial-card {
    background-color: var(--card-bg-color);
    padding: var(--card-padding);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s ease;
}

.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-top: -68px;
}

.testimonial-card .star {
    color: var(--highlight-color);
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 20px;
}

.testimonial-card .star i {
    margin-right: 10px;
}

.testimonial-text {
    font-style: italic;
    color: var(--muted-text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text-color);
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

