85 lines
4.9 KiB
Plaintext
85 lines
4.9 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: 400, flexDirection: 'column', gap: 14 }}>
|
|
<Box style={{ background: '#C42819', paddingTop: 16, paddingBottom: 16, paddingLeft: 24, paddingRight: 24, borderRadius: 12 }}>
|
|
<Text style={{ fontSize: 26, fontWeight: 'bold', color: '#FFFFFF', fontFamily: '宋体' }}>陈越</Text>
|
|
<Text style={{ fontSize: 15, color: '#FFE79B', fontFamily: '微软雅黑', marginTop: 6 }}>男 · 1987年1月 · 湖南湘潭</Text>
|
|
</Box>
|
|
|
|
<Box style={{ border: '1px solid #E5E7EB', borderRadius: 12, paddingTop: 18, paddingBottom: 18, paddingLeft: 24, paddingRight: 24, flexDirection: 'column', gap: 12 }}>
|
|
{[
|
|
['学历学位', '本科 · 应用物理学'],
|
|
['毕业院校', '湖南大学'],
|
|
['现任职务', '总工程师'],
|
|
['兼任职务', '省激光控制系统工程中心副主任'],
|
|
['研发年限', '17 年工业自动化'],
|
|
].map((row, i) => (
|
|
<Box key={i} style={{ flexDirection: 'row' }}>
|
|
<Text style={{ width: 92, fontSize: 16, color: '#9CA3AF', fontFamily: '微软雅黑' }}>{row[0]}</Text>
|
|
<Text style={{ flex: 1, fontSize: 16, color: '#171616', fontFamily: '微软雅黑', fontWeight: 'bold' }}>{row[1]}</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
|
|
<Box style={{ background: '#FBF7F2', border: '1px solid #E19825', borderRadius: 12, paddingTop: 14, paddingBottom: 14, paddingLeft: 20, paddingRight: 20 }}>
|
|
<Text style={{ fontSize: 14, color: '#C42819', fontFamily: '微软雅黑', lineHeight: 1.6 }}>
|
|
申报类别:新兴产业和未来产业专题<br />紧缺急需人才
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
|
|
{/* 右:工作经历时间轴 */}
|
|
<Box style={{ flex: 1, flexDirection: 'column', justifyContent: 'center' }}>
|
|
<Text style={{ fontSize: 18, fontWeight: 'bold', color: '#C42819', fontFamily: '微软雅黑', marginBottom: 22 }}>工作与学习经历</Text>
|
|
<Box style={{ flexDirection: 'column' }}>
|
|
{[
|
|
{ y: '2023.03 — 至今', c: '长沙八思量信息技术有限公司', p: '总工程师(激光控制系统)', hot: true },
|
|
{ y: '2015.03 — 2023.02', c: '株洲嘉成科技发展有限公司', p: '系统工程师(工程机械控制器)', hot: false },
|
|
{ y: '2012.10 — 2014.08', c: '东莞凯格精密机械有限公司', p: '电气工程师(EtherCAT 总线)', hot: false },
|
|
{ y: '2009.11 — 2012.09', c: '光韵达光电科技股份有限公司', p: '研发工程师(激光工艺)', hot: false },
|
|
{ y: '2005.09 — 2009.07', c: '湖南大学', p: '应用物理学 · 本科', hot: false },
|
|
].map((it, i) => (
|
|
<Box key={i} style={{ flexDirection: 'row', alignItems: 'stretch' }}>
|
|
<Box style={{ width: 150, paddingTop: 4, paddingBottom: 14, paddingRight: 16, alignItems: 'flex-end' }}>
|
|
<Text style={{ fontSize: 15, color: '#6B7280', fontFamily: '微软雅黑', textAlign: 'right' }}>{it.y}</Text>
|
|
</Box>
|
|
<Box style={{ width: 30, alignItems: 'center', position: 'relative' }}>
|
|
<Box style={{ width: 14, height: 14, borderRadius: 7, background: it.hot ? '#C42819' : '#F26B40', marginTop: 5, zIndex: 2 }} />
|
|
{i < 4 && <Box style={{ position: 'absolute', top: 19, width: 2, height: 52, background: '#E5E7EB' }} />}
|
|
</Box>
|
|
<Box style={{ flex: 1, paddingTop: 0, paddingBottom: 14, paddingLeft: 14 }}>
|
|
<Text style={{ fontSize: 17, fontWeight: 'bold', color: it.hot ? '#C42819' : '#171616', fontFamily: '微软雅黑' }}>{it.c}</Text>
|
|
<Text style={{ fontSize: 14, color: '#6B7280', fontFamily: '微软雅黑', marginTop: 2 }}>{it.p}</Text>
|
|
</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: '微软雅黑' }}>04 / 12</Text>
|
|
</Box>
|
|
|
|
</Slide>
|