82 lines
4.3 KiB
Plaintext
82 lines
4.3 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: 18, paddingBottom: 24, flexDirection: 'row', gap: 36 }}>
|
|
|
|
{/* 左:项目名称 + 意义 */}
|
|
<Box style={{ flex: 12, flexDirection: 'column', justifyContent: 'center' }}>
|
|
<Box style={{ flexDirection: 'row', alignItems: 'center', gap: 12 }}>
|
|
<Box style={{ background: '#C42819', borderRadius: 6, paddingTop: 5, paddingBottom: 5, paddingLeft: 12, paddingRight: 12 }}>
|
|
<Text style={{ fontSize: 14, color: '#FFFFFF', fontFamily: '微软雅黑' }}>省工信厅重点领域关键软件技术攻关项目</Text>
|
|
</Box>
|
|
</Box>
|
|
|
|
<Text style={{ fontSize: 34, fontWeight: 'bold', color: '#C42819', fontFamily: '宋体', lineHeight: 1.35, marginTop: 16 }}>
|
|
基于激光增材制造的{'\n'}多模态融合智能控制系统
|
|
</Text>
|
|
|
|
<Text style={{ fontSize: 17, color: '#6B7280', fontFamily: '微软雅黑', marginTop: 14 }}>
|
|
金属 3D 打印核心控制系统 · 性能对标德国 ScanLab
|
|
</Text>
|
|
|
|
<Box style={{ width: 56, height: 3, background: '#E19825', marginTop: 18, marginBottom: 18 }} />
|
|
|
|
<Box style={{ flexDirection: 'column', gap: 12 }}>
|
|
{[
|
|
['突破海外垄断', '实现高端激光与增材板卡 100% 核心技术国产化,达国际一流水平'],
|
|
['填补高端空白', '一体化架构创新,面向航空航天、医疗健康、高端装备刚性需求'],
|
|
['带动产业发展', '按 2030 年国内 3D 打印市场 630 亿元测算,对应市场空间超 15 亿元'],
|
|
].map((it, i) => (
|
|
<Box key={i} style={{ flexDirection: 'row', alignItems: 'flex-start' }}>
|
|
<Box style={{ width: 8, height: 8, borderRadius: 4, background: '#C42819', marginTop: 7, marginRight: 12 }} />
|
|
<Box style={{ flex: 1 }}>
|
|
<Text style={{ fontSize: 18, fontWeight: 'bold', color: '#171616', fontFamily: '微软雅黑' }}>{it[0]}</Text>
|
|
<Text style={{ fontSize: 15, color: '#6B7280', fontFamily: '微软雅黑', marginTop: 3, lineHeight: 1.5 }}>{it[1]}</Text>
|
|
</Box>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
</Box>
|
|
|
|
{/* 右:关键指标 */}
|
|
<Box style={{ flex: 8, background: 'linear-gradient(180deg, #C42819 0%, #A81810 100%)', borderRadius: 14, paddingTop: 22, paddingBottom: 22, paddingLeft: 24, paddingRight: 24, flexDirection: 'column', justifyContent: 'center' }}>
|
|
<Text style={{ fontSize: 18, fontWeight: 'bold', color: '#FFE79B', fontFamily: '宋体', marginBottom: 14 }}>关键攻关指标</Text>
|
|
<Box style={{ flexDirection: 'column', gap: 10 }}>
|
|
{[
|
|
['+60%', '系统集成度提升'],
|
|
['+60%', '多轴融合精度提升'],
|
|
['+45%', '运行稳定性提升'],
|
|
['+25%', '打印效率提升'],
|
|
['>95%', '成品一致性'],
|
|
].map((it, i) => (
|
|
<Box key={i} style={{ flexDirection: 'row', alignItems: 'center', borderBottom: '1px solid rgba(255,255,255,0.18)', paddingBottom: 8 }}>
|
|
<Text style={{ width: 90, fontSize: 22, fontWeight: 'bold', color: '#FFE79B', fontFamily: '微软雅黑' }}>{it[0]}</Text>
|
|
<Text style={{ fontSize: 14, color: '#FFFFFF', fontFamily: '微软雅黑' }}>{it[1]}</Text>
|
|
</Box>
|
|
))}
|
|
</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 / 12</Text>
|
|
</Box>
|
|
|
|
</Slide>
|