Files
2026-09-10 23:13:11 +08:00

57 lines
3.4 KiB
Plaintext

<Slide style={{ width: '1280px', height: '720px', background: '#FFFFFF', padding: '0px' }}>
{/* A 区留白 */}
<Box style={{ height: 40 }} />
{/* B 区标题块 */}
<Box style={{ height: 60, paddingLeft: 70, paddingRight: 70, flexDirection: 'row', alignItems: 'center' }}>
<Box style={{ width: 8, height: 32, background: '#C42819', marginRight: 16 }} />
<Text style={{ fontSize: 32, fontWeight: 'bold', color: '#171616', fontFamily: '宋体' }}>引进以来主要业绩贡献</Text>
</Box>
{/* C 区内容 */}
<Box style={{ flex: 1, paddingLeft: 70, paddingRight: 70, paddingTop: 20, paddingBottom: 24, flexDirection: 'column' }}>
{/* 总述大卡 */}
<Box style={{ background: 'linear-gradient(180deg, #C42819 0%, #A81810 100%)', borderRadius: 14, paddingTop: 26, paddingBottom: 26, paddingLeft: 30, paddingRight: 30 }}>
<Box style={{ flexDirection: 'row', alignItems: 'baseline' }}>
<Text style={{ fontSize: 60, fontWeight: 'bold', color: '#FFE79B', fontFamily: '微软雅黑', lineHeight: 1 }}>2 项</Text>
<Text style={{ fontSize: 24, color: '#FFFFFF', fontFamily: '宋体', marginLeft: 12 }}>省级重点科研项目 · 技术总负责人</Text>
</Box>
<Text style={{ fontSize: 16, color: '#FFE7D6', fontFamily: '微软雅黑', marginTop: 14, lineHeight: 1.7 }}>
2023 年 3 月入职长沙八思量信息技术有限公司,作为技术总负责人主持 2 项省级重点科研项目,突破多项"卡脖子"核心算法与控制系统,引入 EtherCAT 总线先进技术,完善产品测试体系,助力省内激光控制产业国产化突破。
</Text>
</Box>
{/* 四个关键要点 */}
<Box style={{ flex: 1, flexDirection: 'row', gap: 20, marginTop: 20 }}>
{[
['省级重点项目', '主持激光增材制造、多振镜 PCB 除阻焊两项省级攻关项目'],
['卡脖子突破', '攻克高端激光增材、PCB 去油墨核心算法与控制系统'],
['先进技术引进', '引入 EtherCAT 总线技术,夯实新一代控制硬件基础'],
['体系完善', '建立知识库与量化测试基准,实现产品 24h 稳定运行'],
].map((it, i) => (
<Box key={i} style={{ flex: 1, border: '1px solid #E5E7EB', borderRadius: 12, background: '#FBF7F2', paddingTop: 20, paddingBottom: 20, paddingLeft: 20, paddingRight: 20, flexDirection: 'column' }}>
<Box style={{ width: 44, height: 44, borderRadius: 10, background: i === 0 ? '#C42819' : '#EE5530', justifyContent: 'center', alignItems: 'center', marginBottom: 12 }}>
<Text style={{ fontSize: 20, fontWeight: 'bold', color: '#FFFFFF', fontFamily: '微软雅黑' }}>{i + 1}</Text>
</Box>
<Text style={{ fontSize: 18, fontWeight: 'bold', color: '#171616', fontFamily: '宋体' }}>{it[0]}</Text>
<Text style={{ fontSize: 14, color: '#6B7280', fontFamily: '微软雅黑', marginTop: 8, lineHeight: 1.55 }}>{it[1]}</Text>
</Box>
))}
</Box>
</Box>
{/* D 区页脚装饰条 */}
<Box style={{ height: 16, 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: 30, right: 70 }}>
<Text style={{ fontSize: 14, color: '#9CA3AF', fontFamily: '微软雅黑' }}>06 / 13</Text>
</Box>
</Slide>