/* 详情页样式 */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5276 100%);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* 服务特点 */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--light-bg);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 价格详情 */
.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.model-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.model-header {
    background: linear-gradient(135deg, var(--primary-blue), #1a5276);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.model-badge {
    background: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-table {
    padding: 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid #e0e0e0;
}

.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: #f8f9fa;
}

/* 完整表格样式 */
.pricing-table-full {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-table-full table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table-full th {
    background: linear-gradient(135deg, var(--primary-blue), #1a5276);
    color: var(--white);
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
}

.pricing-table-full td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

.pricing-table-full tr:last-child td {
    border-bottom: none;
}

.pricing-table-full tr:hover {
    background: #f8f9fa;
}

.pricing-table-full .model-name {
    font-weight: 600;
    color: var(--text-dark);
    border-right: 2px solid #f0f0f0;
    vertical-align: middle;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 联系咨询 */
.consult-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.consult-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.consult-section > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.consult-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.consult-item {
    font-size: 1.1rem;
}

.consult-label {
    color: var(--text-light);
}

.consult-value {
    color: var(--text-dark);
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .model-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .consult-info {
        flex-direction: column;
        gap: 20px;
    }
}
