/* ========== 解决方案富文本排版 ========== */
.solution-content-text {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
}

/* 段落 */
.solution-content-text p {
    margin-bottom: 1rem;
}

/* 标题层级 */
.solution-content-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.75rem 0 0.75rem;
}
.solution-content-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.6rem;
}
.solution-content-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    margin: 1.25rem 0 0.5rem;
}

/* 列表 */
.solution-content-text ul,
.solution-content-text ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}
.solution-content-text ul li {
    list-style: disc;
    margin-bottom: 0.4rem;
    padding-left: 0.25rem;
}
.solution-content-text ol li {
    list-style: decimal;
    margin-bottom: 0.4rem;
    padding-left: 0.25rem;
}
.solution-content-text li::marker {
    color: #0d6efd;
}

/* 表格（你方案里可能会贴参数对比表） */
.solution-content-text table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e5e7eb;
}
.solution-content-text thead {
    background: #f8f9fa;
}
.solution-content-text th {
    padding: 10px 14px;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}
.solution-content-text td {
    padding: 9px 14px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}
.solution-content-text tr:last-child td {
    border-bottom: none;
}
.solution-content-text tbody tr:hover {
    background: #f8f9fa;
}

/* 图片 */
.solution-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* 链接 */
.solution-content-text a {
    color: #0d6efd;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.solution-content-text a:hover {
    color: #0b5ed7;
}

/* 引用块（应用场景、客户评价等） */
.solution-content-text blockquote {
    margin: 1.5rem 0;
    padding: 12px 16px;
    border-left: 4px solid #0d6efd;
    background: #f0f4ff;
    border-radius: 0 8px 8px 0;
    color: #374151;
    font-style: italic;
}
.solution-content-text blockquote p:last-child {
    margin-bottom: 0;
}

/* 分割线 */
.solution-content-text hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

/* 代码/参数（偶尔会贴型号代码） */
.solution-content-text code {
    background: #f1f3f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #d63384;
    font-family: 'SFMono-Regular', Consolas, monospace;
}