/* 价格页面样式 */

.pricing-page .hero {
    background-color: #f8f9fa;
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-page .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-page .hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 价格卡片样式 */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #4e73df;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-label {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #4e73df;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4e73df;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
}

.pricing-features li:before {
    content: '✓';
    color: #4e73df;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-pricing {
    display: inline-block;
    background-color: #4e73df;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-pricing:hover {
    background-color: #3a5ccc;
    color: white;
}

/* 价格信息部分 */
.pricing-info {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 2rem;
    color: #4e73df;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

/* FAQ部分 */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.faq-item h3:before {
    content: 'Q:';
    position: absolute;
    left: 0;
    color: #4e73df;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.faq-item p:before {
    content: 'A:';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* CTA部分 */
.cta {
    background-color: #4e73df;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact {
    display: inline-block;
    background-color: white;
    color: #4e73df;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #3a5ccc;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-page .hero {
        padding: 100px 0 60px;
    }
    
    .pricing-page .hero h1 {
        font-size: 2.5rem;
    }
}