40 lines
2.0 KiB
Plaintext
40 lines
2.0 KiB
Plaintext
<Slide style={{ width: '1280px', height: '720px', background: '#FFFFFF', padding: '0px', flexDirection: 'row' }}>
|
|
|
|
{/* 左 50% 内容 */}
|
|
<Box style={{ flex: 1, paddingLeft: 70, paddingTop: 90, paddingBottom: 60, flexDirection: 'column', justifyContent: 'center' }}>
|
|
<Text style={{ fontSize: 20, color: '#C42819', fontFamily: '微软雅黑', letterSpacing: 6, fontWeight: 'bold' }}>PART 01</Text>
|
|
|
|
<Text style={{ fontSize: 150, fontWeight: 'bold', color: '#F26B40', fontFamily: '宋体', lineHeight: 1, marginTop: 6, opacity: 0.9 }}>01</Text>
|
|
|
|
<Box style={{ flexDirection: 'row', alignItems: 'center', marginTop: 24 }}>
|
|
<Box style={{ width: 8, height: 44, background: '#C42819', marginRight: 18 }} />
|
|
<Text style={{ fontSize: 52, fontWeight: 'bold', color: '#171616', fontFamily: '宋体' }}>个人基本情况</Text>
|
|
</Box>
|
|
|
|
<Text style={{ fontSize: 20, color: '#6B7280', fontFamily: '微软雅黑', marginTop: 22, lineHeight: 1.6 }}>
|
|
十七年工业自动化研发经验<br />深耕激光控制系统领域
|
|
</Text>
|
|
|
|
<Box style={{ flexDirection: 'row', gap: 14, marginTop: 30 }}>
|
|
{['全栈研发', '激光控制', 'EtherCAT'].map((k, i) => (
|
|
<Box key={i} style={{ background: '#FBF7F2', border: '1px solid #E5E7EB', borderRadius: 18, paddingTop: 10, paddingBottom: 10, paddingLeft: 20, paddingRight: 20 }}>
|
|
<Text style={{ fontSize: 16, color: '#C42819', fontFamily: '微软雅黑' }}>{k}</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
</Box>
|
|
|
|
{/* 右 50% 主题摄影出血 */}
|
|
<Box style={{ width: 640, height: 720, position: 'relative' }}>
|
|
<Image src="assets/sec_personal.png" style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
|
|
</Box>
|
|
|
|
{/* 底部红橙装饰条 */}
|
|
<Box style={{ position: 'absolute', bottom: 0, left: 0, width: 640, flexDirection: 'row' }}>
|
|
<Box style={{ width: 339, height: 9, background: '#C42819' }} />
|
|
<Box style={{ width: 166, height: 9, background: '#EE5530' }} />
|
|
<Box style={{ width: 135, height: 9, background: '#F26B40' }} />
|
|
</Box>
|
|
|
|
</Slide>
|