/* 服务价格页面专属样式 */

/* Hero区域 */
.price-hero {
    position: relative;
    width: 100%;
    background-color: rgba(43, 140, 238, 0.05);
    padding: 64px 16px;
    overflow: hidden;
}

.price-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(#2b8cee 1px, transparent 1px);
    background-size: 30px 30px;
}

.price-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.price-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    background-color: rgba(43, 140, 238, 0.1);
    color: #2b8cee;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
}

.price-hero h1 {
    font-size: 32px;
    font-weight: bold;
    color: #111418;
    margin-bottom: 24px;
}

.price-hero p {
    font-size: 18px;
    color: #64748b;
    max-width: 768px;
    margin: 0 auto;
}

/* 会员充值区域 */
.membership-section {
    padding: 64px 0;
    background-color: white;
}

.membership-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.membership-header {
    text-align: center;
    margin-bottom: 48px;
}

.membership-header h2 {
    font-size: 30px;
    font-weight: bold;
    color: #111418;
    margin-bottom: 16px;
}

.membership-header p {
    color: #64748b;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.membership-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.membership-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.membership-card.featured {
    border: 2px solid #2b8cee;
    box-shadow: 0 8px 20px rgba(43, 140, 238, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2b8cee;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 0 14px 0 8px;
}

.membership-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.membership-card.basic h3 {
    color: #111418;
}

.membership-card.featured h3 {
    color: #2b8cee;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 16px 0;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: #111418;
}

.price-unit {
    color: #64748b;
}

.price-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.price-description .highlight {
    color: #f97316;
    font-weight: bold;
}

.membership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.membership-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #111418;
    margin-bottom: 12px;
}

.membership-features .material-symbols-outlined {
    font-size: 18px;
    flex-shrink: 0;
}

.membership-features .material-symbols-outlined.check {
    color: #22c55e;
}

.membership-features .material-symbols-outlined.primary {
    color: #2b8cee;
}

.membership-button {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.membership-button.basic {
    background-color: #f1f5f9;
    color: #111418;
}

.membership-button.basic:hover {
    background-color: #e2e8f0;
}

.membership-button.featured {
    background-color: #2b8cee;
    color: white;
    box-shadow: 0 4px 12px rgba(43, 140, 238, 0.3);
}

.membership-button.featured:hover {
    background-color: #2580d3;
}

/* 详细计费区域 */
.pricing-details-section {
    padding: 64px 0;
    background-color: #f6f7f8;
}

.pricing-details-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.pricing-details-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.pricing-details-header h2 {
    font-size: 30px;
    font-weight: bold;
    color: #111418;
    margin-bottom: 8px;
}

.pricing-details-header p {
    color: #64748b;
}

.pricing-info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.pricing-info-box .material-symbols-outlined {
    color: #2b8cee;
    font-size: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.pricing-category {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.pricing-category-header {
    padding: 16px;
    background-color: rgba(43, 140, 238, 0.05);
    border-bottom: 1px solid rgba(43, 140, 238, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-category-header.green {
    background-color: rgba(34, 197, 94, 0.05);
    border-bottom-color: rgba(34, 197, 94, 0.1);
}

.pricing-category-header .material-symbols-outlined {
    color: #2b8cee;
}

.pricing-category-header.green .material-symbols-outlined {
    color: #22c55e;
}

.pricing-category-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #111418;
}

.pricing-items {
    display: flex;
    flex-direction: column;
}

.pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.3s;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item:hover {
    background-color: #f8fafc;
}

.pricing-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-item-icon.blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: #2b8cee;
}

.pricing-item-icon.pink {
    background-color: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.pricing-item-icon.yellow {
    background-color: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.pricing-item-icon.green {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.pricing-item-icon.indigo {
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.pricing-item-icon.orange {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.pricing-item-text {
    display: flex;
    flex-direction: column;
}

.pricing-item-text .name {
    font-weight: 500;
    color: #111418;
}

.pricing-item-text .description {
    font-size: 12px;
    color: #94a3b8;
}

.pricing-item-price {
    text-align: right;
}

.pricing-item-price .amount {
    font-weight: bold;
    color: #111418;
}

.pricing-item-price .unit {
    font-size: 12px;
    color: #94a3b8;
}

/* 消费估算区域 */
.price-examples {
    margin-top: 48px;
    padding: 24px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.price-examples h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-examples h3 .material-symbols-outlined {
    color: #2b8cee;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.example-card {
    padding: 16px;
    background-color: #f6f7f8;
    border-radius: 8px;
}

.example-card.featured {
    border: 1px solid rgba(43, 140, 238, 0.2);
}

.example-label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.example-label.standard {
    color: #64748b;
}

.example-label.popular {
    color: #2b8cee;
}

.example-price {
    font-size: 24px;
    font-weight: bold;
    color: #111418;
    margin-bottom: 8px;
}

.example-description {
    font-size: 14px;
    color: #64748b;
}

/* FAQ区域 */
.faq-section {
    padding: 64px 0;
    background-color: white;
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

.faq-header {
    text-align: center;
    margin-bottom: 32px;
}

.faq-header h2 {
    font-size: 24px;
    font-weight: bold;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #f6f7f8;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    list-style: none;
}

.faq-question .material-symbols-outlined {
    transition: transform 0.3s;
}

.faq-item[open] .faq-question .material-symbols-outlined {
    transform: rotate(180deg);
}

.faq-answer {
    color: #64748b;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
}

/* 响应式设计 - 价格页面 */
@media (min-width: 768px) {
    .price-hero {
        padding: 80px 16px;
    }

    .price-hero h1 {
        font-size: 48px;
    }

    .price-hero p {
        font-size: 20px;
    }

    .membership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .examples-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-details-header {
        flex-direction: row;
        align-items: flex-end;
    }
}
