57 lines
3.1 KiB
Plaintext
57 lines
3.1 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: 22, paddingBottom: 30, flexDirection: 'row', alignItems: 'center', gap: 50 }}>
|
||
{/* 左:大标题 */}
|
||
<Box style={{ width: 280, justifyContent: 'center' }}>
|
||
<Text style={{ fontSize: 24, color: '#C42819', fontFamily: '微软雅黑', letterSpacing: 4 }}>CONTENTS</Text>
|
||
<Text style={{ fontSize: 60, fontWeight: 'bold', color: '#C42819', fontFamily: '宋体', marginTop: 8 }}>目录</Text>
|
||
<Box style={{ width: 64, height: 4, background: '#E19825', marginTop: 18 }} />
|
||
<Text style={{ fontSize: 17, color: '#9CA3AF', fontFamily: '微软雅黑', marginTop: 16, lineHeight: 1.6 }}>
|
||
五个部分<br />完整呈现申报情况
|
||
</Text>
|
||
</Box>
|
||
|
||
{/* 右:5 个章节条目 */}
|
||
<Box style={{ flex: 1, flexDirection: 'column', gap: 14 }}>
|
||
{[
|
||
{ n: '01', t: '个人基本情况', d: '基本信息 · 教育及工作履历' },
|
||
{ n: '02', t: '主要履历与前期创新成果', d: '引进前八项核心技术成果' },
|
||
{ n: '03', t: '引进以来主要业绩贡献', d: '两项省级重点项目 · 关键技术突破' },
|
||
{ n: '04', t: '未来三年工作目标', d: '2026–2028 逐年递进规划' },
|
||
{ n: '05', t: '总结展望', d: '全链条能力 · 产业化愿景' },
|
||
].map((item, idx) => (
|
||
<Box key={idx} style={{ flexDirection: 'row', alignItems: 'center', background: '#FBF7F2', border: '1px solid #E5E7EB', borderRadius: 12, paddingTop: 18, paddingBottom: 18, paddingLeft: 24, paddingRight: 24 }}>
|
||
<Box style={{ width: 56, height: 56, borderRadius: 28, background: '#C42819', justifyContent: 'center', alignItems: 'center', marginRight: 24 }}>
|
||
<Text style={{ fontSize: 24, fontWeight: 'bold', color: '#FFFFFF', fontFamily: '微软雅黑' }}>{item.n}</Text>
|
||
</Box>
|
||
<Box style={{ flex: 1 }}>
|
||
<Text style={{ fontSize: 24, fontWeight: 'bold', color: '#171616', fontFamily: '宋体' }}>{item.t}</Text>
|
||
<Text style={{ fontSize: 15, color: '#6B7280', fontFamily: '微软雅黑', marginTop: 4 }}>{item.d}</Text>
|
||
</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: '微软雅黑' }}>02 / 13</Text>
|
||
</Box>
|
||
|
||
</Slide>
|