${renderSectionHead({
eyebrow: `${c.num}.${subIdx} · ACTION PLAN`,
title: sub,
subtitle: '从 6000 万到 10 亿的三年路径:P0 立即执行 / P1 一个月内 / P2 远期储备',
color: c.color,
})}
${renderStatStrip([
{ num: p0.length, label: 'P0 · 立即', color: BRAND.CORAL },
{ num: p1.length, label: 'P1 · 1月内', color: BRAND.WARM_ORANGE },
{ num: p2.length, label: 'P2 · 远期', color: 'var(--text-3)' },
{ num: actions.length, label: '总行动项', color: c.color },
])}
${renderCompareTable({
title: 'P0 · 立即执行(本周-2周)',
headers: ['行动', '负责方', '时间线', '状态'],
rows: p0.map(a => [
{ html: `
${esc(a.action)}`, bold: true },
a.owner,
a.timeline,
{ html: `
${esc(a.status)}`, color: BRAND.CORAL },
]),
accent: BRAND.CORAL,
})}
${renderCompareTable({
title: 'P1 · 1 月内启动',
headers: ['行动', '负责方', '时间线', '状态'],
rows: p1.map(a => [
a.action,
a.owner,
a.timeline,
{ html: `${esc(a.status)}`, color: BRAND.WARM_ORANGE },
]),
accent: BRAND.WARM_ORANGE,
})}
${renderCompareTable({
title: 'P2 · 远期储备',
headers: ['行动', '负责方', '时间线', '状态'],
rows: p2.map(a => [
a.action,
a.owner,
a.timeline,
a.status,
]),
accent: 'var(--text-3)',
})}
${renderInsightHero({
eyebrow: 'CLOSING',
title: '从 6000 万到 10 亿:品类重定位是第一步',
subtitle: `
本报告严格遵循王总 5 步分析路径,从品类全景出发,经过成人机会分析、儿童迁移、交叉验证,最终收敛到
"嚼着吃的儿童肠道调理药"这个品类定位。
下一步:
对齐定位方向 → 包装设计 → 话术培训 → 渠道铺货,启动从 6000 万到 10 亿的三年路径。
`,
color: c.color,
})}