Files
people/长沙市紧缺急需人才答辩/slides/11.slide
T
2026-09-10 14:26:55 +08:00

65 lines
3.7 KiB
Plaintext

<Slide style={{ width: '1280px', height: '720px', background: '#FFFFFF', padding: '0px' }}>
{/* A 区留白 */}
<Box style={{ height: 48 }} />
{/* B 区标题块 */}
<Box style={{ height: 62, paddingLeft: 70, paddingRight: 70, flexDirection: 'row', alignItems: 'center' }}>
<Box style={{ width: 8, height: 34, background: '#C42819', marginRight: 18 }} />
<Text style={{ fontSize: 34, fontWeight: 'bold', color: '#171616', fontFamily: '宋体' }}>未来三年工作目标</Text>
</Box>
{/* C 区内容 */}
<Box style={{ flex: 1, paddingLeft: 70, paddingRight: 70, paddingTop: 24, paddingBottom: 30, flexDirection: 'row', gap: 40 }}>
{/* 左:目标总纲 */}
<Box style={{ width: 300, flexDirection: 'column', justifyContent: 'center' }}>
<Text style={{ fontSize: 30, fontWeight: 'bold', color: '#C42819', fontFamily: '宋体', lineHeight: 1.4 }}>目标清晰<br />逐年递进</Text>
<Box style={{ width: 56, height: 4, background: '#E19825', marginTop: 18, marginBottom: 18 }} />
<Text style={{ fontSize: 16, color: '#6B7280', fontFamily: '微软雅黑', lineHeight: 1.7 }}>
以标准化控制卡筑基,向消费级与核心板产品化延伸,最终走向多芯片合封 / SoC 化集成,构建自主技术壁垒,作为绩效评估依据。
</Text>
</Box>
{/* 右:三年阶段 */}
<Box style={{ flex: 1, flexDirection: 'column', justifyContent: 'center', gap: 14 }}>
{[
{ y: '2026', t: '标准平台筑基', color: '#C42819', items: ['EtherCAT 标准化激光控制卡', '攻克多轴插补 / PSO / 纳秒级触发', '样机试产 + 2 个案例,降本 15%'] },
{ y: '2027', t: '消费级落地', color: '#EE5530', items: ['ESP32 消费级打标控制模组', '成本≤工业方案 20%,量产 3000 套', '一键式操作全流程打通'] },
{ y: '2028', t: '核心板产品化', color: '#F26B40', items: ['MCU+FPGA 核心板产品化', '3 家厂商参考设计,成本降 25%', 'SoC 化验证 + 可行性报告'] },
].map((g, i) => (
<Box key={i} style={{ flexDirection: 'row', alignItems: 'stretch' }}>
<Box style={{ width: 120, alignItems: 'flex-start', paddingTop: 16 }}>
<Box style={{ background: g.color, borderRadius: 12, paddingTop: 10, paddingBottom: 10, paddingLeft: 16, paddingRight: 16 }}>
<Text style={{ fontSize: 22, fontWeight: 'bold', color: '#FFFFFF', fontFamily: '微软雅黑' }}>{g.y}</Text>
</Box>
</Box>
<Box style={{ width: 2, background: '#E5E7EB', marginTop: 6, marginBottom: 6 }} />
<Box style={{ flex: 1, paddingLeft: 20, paddingTop: 14, paddingBottom: 14 }}>
<Text style={{ fontSize: 19, fontWeight: 'bold', color: g.color, fontFamily: '宋体' }}>{g.t}</Text>
<Box style={{ flexDirection: 'row', flexWrap: 'wrap', gap: 8, marginTop: 8 }}>
{g.items.map((it, j) => (
<Box key={j} style={{ background: '#FBF7F2', borderRadius: 8, paddingTop: 6, paddingBottom: 6, paddingLeft: 12, paddingRight: 12 }}>
<Text style={{ fontSize: 13, color: '#171616', fontFamily: '微软雅黑' }}>{it}</Text>
</Box>
))}
</Box>
</Box>
</Box>
))}
</Box>
</Box>
{/* D 区页脚装饰条 */}
<Box style={{ height: 20, flexDirection: 'row' }}>
<Box style={{ flex: 53, height: 9, background: '#C42819' }} />
<Box style={{ flex: 26, height: 9, background: '#EE5530' }} />
<Box style={{ flex: 21, height: 9, background: '#F26B40' }} />
</Box>
<Box style={{ position: 'absolute', bottom: 34, right: 70 }}>
<Text style={{ fontSize: 14, color: '#9CA3AF', fontFamily: '微软雅黑' }}>11 / 12</Text>
</Box>
</Slide>