58 lines
3.3 KiB
Plaintext
58 lines
3.3 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: 28, paddingBottom: 30, flexDirection: 'row', alignItems: 'center', gap: 60 }}>
|
|
{/* 左:大标题 */}
|
|
<Box style={{ width: 300, justifyContent: 'center' }}>
|
|
<Text style={{ fontSize: 26, color: '#C42819', fontFamily: '微软雅黑', letterSpacing: 4 }}>CONTENTS</Text>
|
|
<Text style={{ fontSize: 64, fontWeight: 'bold', color: '#C42819', fontFamily: '宋体', marginTop: 8 }}>目录</Text>
|
|
<Box style={{ width: 64, height: 4, background: '#E19825', marginTop: 20 }} />
|
|
<Text style={{ fontSize: 18, color: '#9CA3AF', fontFamily: '微软雅黑', marginTop: 18, lineHeight: 1.6 }}>
|
|
汇报三个部分<br />全面介绍人才情况
|
|
</Text>
|
|
</Box>
|
|
|
|
{/* 右:3 个章节条目 */}
|
|
<Box style={{ flex: 1, flexDirection: 'column', gap: 22 }}>
|
|
{[
|
|
{ n: '01', t: '个人基本情况', d: '十七年工业自动化研发,深耕激光控制系统' },
|
|
{ n: '02', t: '主要业绩贡献', d: '填补省内空白,突破海外垄断,成果转化落地' },
|
|
{ n: '03', t: '未来三年工作目标', d: '标准平台 · 消费级落地 · 核心板产品化' },
|
|
].map((item, idx) => (
|
|
<Box key={idx} style={{ flexDirection: 'row', alignItems: 'center', background: '#FBF7F2', border: '1px solid #E5E7EB', borderRadius: 14, paddingTop: 26, paddingBottom: 26, paddingLeft: 28, paddingRight: 28 }}>
|
|
<Box style={{ width: 68, height: 68, borderRadius: 34, background: '#C42819', justifyContent: 'center', alignItems: 'center', marginRight: 28 }}>
|
|
<Text style={{ fontSize: 28, fontWeight: 'bold', color: '#FFFFFF', fontFamily: '微软雅黑' }}>{item.n}</Text>
|
|
</Box>
|
|
<Box style={{ flex: 1 }}>
|
|
<Text style={{ fontSize: 28, fontWeight: 'bold', color: '#171616', fontFamily: '宋体' }}>{item.t}</Text>
|
|
<Text style={{ fontSize: 17, color: '#6B7280', fontFamily: '微软雅黑', marginTop: 8 }}>{item.d}</Text>
|
|
</Box>
|
|
<Box style={{ width: 40, height: 40, borderRadius: 20, background: '#F26B40', justifyContent: 'center', alignItems: 'center' }}>
|
|
<Text style={{ fontSize: 20, color: '#FFFFFF', fontFamily: '微软雅黑' }}>→</Text>
|
|
</Box>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
</Box>
|
|
|
|
{/* D 区页脚装饰条 */}
|
|
<Box style={{ height: 20, paddingLeft: 0, paddingRight: 0, 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 / 12</Text>
|
|
</Box>
|
|
|
|
</Slide>
|