
/* ========================================
产品深度介绍样式
======================================== */

/* 通用标题样式 */
.section-title-with-icon {
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.section-title-with-icon i {
    color: var(--primary-color);
    margin-right: var(--space-sm);
    font-size: var(--font-size-xl);
}

/* 文本强调样式 */
.text-emphasis {
    color: var(--text-primary);
    font-weight: 600;
}

.text-primary-emphasis {
    color: var(--primary-color);
    font-weight: 600;
}

/* 产品概述卡片 */
.product-overview-card {
    background-color: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.overview-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.overview-content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
}

.overview-content p:last-child {
    margin-bottom: 0;
}

/* 深度介绍卡片 */
.depth-introduction-card {
    background-color: var(--bg-section);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

/* 特性块样式 */
.feature-block {
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-lg);
    transition: var(--transition-normal);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* 特性标题 */
.feature-title {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.feature-number {
    background: var(--primary-alpha-20);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}


/* 核心优势部分 */
.advantages-section {
    background: var(--gradient-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* 优势卡片 */
.advantage-card {
    height: 100%;
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-number {
    background: var(--primary-color);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.advantage-title {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.advantage-desc {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.6;
}

.advantage-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .product-overview-card,
    .depth-introduction-card,
    .advantages-section {
        padding: var(--space-lg);
    }

    .feature-block {
        padding: var(--space-md);
    }

    .section-title-with-icon {
        font-size: var(--font-size-xl);
    }

}
