-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
711 lines (622 loc) · 24.6 KB
/
Copy pathindex.html
File metadata and controls
711 lines (622 loc) · 24.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>秦颖欣</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* 打印样式 */
@media print {
@page {
/* margin-top: 10mm;
margin-bottom: 10mm;
margin-left: 10mm;
margin-right: 10mm; */
size: A4;
margin: 0;
/* margin: 0; 去掉浏览器默认的页眉页脚 */
}
body {
font-size: 12px;
/* 从10.5px改为11.5px */
line-height: 1.6;
margin: 0;
padding: 0;
width: 100%;
}
.container {
max-width: 100%;
padding: 10mm 10mm;
/* 上下20mm,左右15mm */
margin: 0;
}
.section {
page-break-inside: avoid;
padding-top: 10mm;
/* 每个可能在新页开始的元素都加上顶部内边距 */
margin-top: -10mm;
/* 用负margin抵消,避免正常流中的额外间距 */
}
.project-item {
page-break-inside: avoid;
}
.project-link {
font-size: 10px;
}
.project-link a {
color: #333;
border-bottom: 1px solid #333;
}
/* 在链接后显示完整URL(可选) */
/* .project-link a[href]:after {
content: " (" attr(href) ")";
font-size: 9px;
color: #666;
} */
/* 如果不想在打印时显示完整URL,使用下面的样式 */
.project-link a[href]:after {
content: none;
}
}
body {
font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
font-size: 13px;
line-height: 1.7;
letter-spacing: 0.3px;
/* 增加轻微的字间距,提高可读性 */
color: #333;
background: #fff;
}
.container {
max-width: 210mm;
/* A4 宽度 */
margin: 0 auto;
padding: 15px 20px;
}
/* 头部信息 */
.header {
display: flex;
align-items: center;
gap: 20px;
border-bottom: 2px solid #333;
padding-bottom: 12px;
margin-bottom: 15px;
}
.header .info a {
color: #333;
text-decoration: none;
}
.header .info a:hover {
color: #0066cc;
text-decoration: underline;
}
.avatar-container {
flex-shrink: 0;
}
.avatar {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: contain;
border: 2px solid #f0f0f0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-info {
flex-grow: 1;
}
.header h1 {
font-size: 24px;
margin-bottom: 5px;
font-weight: 600;
letter-spacing: 1px;
}
.header .info {
font-size: 11px;
color: #666;
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 5px;
}
.header .info span {
white-space: nowrap;
}
.job-intention {
font-size: 11px;
color: #555;
}
/* 区块标题 */
.section {
margin-bottom: 15px;
}
.section-title {
font-size: 15px;
font-weight: 600;
color: #333;
border-bottom: 1.5px solid #333;
padding-bottom: 3px;
margin-bottom: 10px;
letter-spacing: 0.5px;
}
/* 个人优势 - 两列布局 */
.advantages-list {
list-style: none;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px 15px;
}
.advantages-list li {
position: relative;
padding-left: 15px;
font-size: 11px;
line-height: 1.4;
}
.advantages-list li:before {
content: "•";
position: absolute;
left: 0;
color: #666;
}
.advantages-list strong {
color: #333;
font-weight: 600;
}
/* 专业技能 */
.skills-list {
list-style: none;
}
.skills-list li {
margin-bottom: 5px;
display: flex;
font-size: 11px;
line-height: 1.4;
}
.skills-list .skill-label {
font-weight: 600;
min-width: 85px;
flex-shrink: 0;
}
/* 实习样式 - 优化版 */
.compact-project {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
font-size: 10px;
margin-top: 8px;
}
.project-box {
font-size: 10.5px;
border: 1px solid #e0e0e0;
padding: 8px;
background: #fafafa;
border-radius: 3px;
}
.project-box h4 {
margin: 0 0 5px 0;
font-size: 11px;
color: #333;
font-weight: 600;
}
.project-box p {
margin: 3px 0;
line-height: 1.35;
}
.project-box .label {
font-weight: 600;
color: #555;
font-size: 10px;
}
/* 经历条目 */
.experience-item {
margin-bottom: 15px;
}
.experience-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 8px;
}
.experience-title {
font-size: 13px;
font-weight: 600;
color: #333;
}
.experience-company {
color: #666;
margin-left: 8px;
font-size: 12px;
}
.experience-date {
color: #999;
font-size: 11px;
white-space: nowrap;
}
.experience-content h4 {
font-size: 11px;
font-weight: 600;
margin: 8px 0 4px 0;
color: #555;
}
.experience-list {
list-style: none;
padding-left: 0;
}
.experience-list li {
margin-bottom: 3px;
padding-left: 15px;
position: relative;
font-size: 10.5px;
line-height: 1.4;
}
.experience-list li:before {
content: "•";
position: absolute;
left: 0;
color: #666;
}
/* 项目经历 - 紧凑版 */
.project-item {
margin-bottom: 15px;
padding: 10px;
background: #f9f9f9;
border-radius: 3px;
border: 1px solid #e5e5e5;
}
.project-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 6px;
}
.project-title {
font-size: 13px;
font-weight: 600;
color: #333;
}
.project-type {
color: #666;
font-size: 11px;
}
.project-item p {
font-size: 10.5px;
margin-bottom: 4px;
}
.project-item h4 {
font-size: 11px;
font-weight: 600;
margin: 6px 0 3px 0;
color: #555;
}
/* 项目链接样式 */
.project-link {
margin-top: 8px;
font-size: 11px;
}
.project-link a {
color: #0066cc;
text-decoration: none;
border-bottom: 1px dotted #0066cc;
}
.project-link a:hover {
color: #0052a3;
border-bottom-style: solid;
}
/* 多个链接之间的分隔 */
.project-link a+a:before {
content: " | ";
color: #666;
margin: 0 5px;
}
/* 教育经历 */
.education-item {
margin-bottom: 8px;
font-size: 11px;
}
.education-header {
display: flex;
justify-content: space-between;
align-items: baseline;
}
/* 其他部分 */
.other-info {
font-size: 11px;
line-height: 1.5;
}
/* 响应式调整 */
@media (max-width: 600px) {
.advantages-list {
grid-template-columns: 1fr;
}
.compact-project {
grid-template-columns: 1fr;
}
.header {
flex-direction: column;
align-items: center;
text-align: center;
}
.experience-header,
.project-header,
.education-header {
flex-direction: column;
align-items: flex-start;
}
.course-info {
font-size: 11px;
color: #444;
margin-top: 5px;
line-height: 1.5;
}
.course-info strong {
color: #333;
}
}
/* 字体优化 */
h1,
h2,
h3,
h4 {
font-weight: 600;
}
strong {
font-weight: 600;
}
/* 紧凑的列表样式 */
.compact-list {
display: flex;
flex-wrap: wrap;
gap: 8px;
font-size: 10.5px;
}
.compact-list span {
background: #f0f0f0;
padding: 2px 8px;
border-radius: 3px;
}
</style>
</head>
<body>
<div class="container">
<!-- 头部信息 -->
<header class="header">
<div class="avatar-container">
<!-- 如果没有头像图片,可以用首字母代替 -->
<img src="头像.png" alt="个人头像" class="avatar">
</div>
<div class="header-info">
<h1>秦颖欣</h1>
<div class="info">
<span>女 | 23岁</span>
<span>📱 18803731374</span>
<span>✉️ 2609260594@qq.com</span>
<!-- 在后面添加 -->
<span class="info-item">🌐 <a href="https://kristenqin.github.io/" target="_blank">博客</a></span>
</div>
<div class="job-intention">
<strong>求职意向:</strong>前端开发工程师/软件工程师 | <strong>期望薪资:</strong>不给你看问你哥🐶 | <strong>期望城市:</strong>东莞/深圳
</div>
</div>
</header>
<!-- 个人优势 -->
<section class="section">
<h2 class="section-title">个人优势</h2>
<ul class="advantages-list">
<li><strong>问题分解能力:</strong>可识别基础模式、拆解构成并跨场景复用</li>
<li><strong>工具学习能力:</strong>可理解功能设计意图,匹配工具与需求场景</li>
<li><strong>团队协作经验:</strong>两次跨专业合作参赛;两段实习多方协作交付</li>
<li><strong>情绪管理方式:</strong>可识别情绪波动,借助外部资源调节状态</li>
</ul>
</section>
<!-- 教育经历 -->
<section class="section">
<h2 class="section-title">教育经历</h2>
<div class="education-item">
<div class="education-header">
<div>
<strong>广东外语外贸大学</strong> 本科 计算机科学与技术
</div>
<span>2021-2025</span>
</div>
<p class="course-info">
<strong>核心课程:</strong>软件工程、计算机网络、数据库原理、数据结构与算法、操作系统等
</p>
</div>
<div class="education-item">
<div class="education-header">
<div>
<strong>广东外语外贸大学</strong> 本科 应用心理学
</div>
<span>2019-2021</span>
</div>
<p style="color: #666; font-size: 10px; margin-top: 2px;">修完核心课程后达转专业标准转至计算机科学与技术专业</p>
<p class="course-info">
<strong>核心课程:</strong>统计学(R | SPSS)、普通心理学、社会心理学、发展心理学、管理心理学等
</p>
</div>
</section>
<!-- 资格证书 -->
<section class="section">
<h2 class="section-title">资格证书</h2>
<p class="other-info">六级530 | 四级579 | 广东省"攀登计划"立项(党建主题) | 挑战杯比赛二等奖(小微企业主题)</p>
</section>
<!-- 专业技能 -->
<section class="section">
<h2 class="section-title">专业技能</h2>
<ul class="skills-list">
<li>
<span class="skill-label">数据分析:</span>
<span>可较熟练使用Tableau进行数据驱动的需求分析和决策支持</span>
</li>
<li>
<span class="skill-label">需求分析:</span>
<span>可较熟练使用Xmind、Axure、Cursor等完成功能点梳理以及原型分析绘制</span>
</li>
<li>
<span class="skill-label">前端开发:</span>
<span>可较熟练使用HTML5、CSS3、Javascript、Vue等完成基础B端产品功能开发需求</span>
</li>
<li>
<span class="skill-label">后端开发:</span>
<span>可使用Java、SpringBoot、MybatisPlus、Python、MySQL完成demo级项目开发需求</span>
</li>
<li>
<span class="skill-label">版本管理:</span>
<span>可较熟练使用Git完成基础开发协作流程</span>
</li>
</ul>
</section>
<!-- 实习经历 -->
<section class="section">
<h2 class="section-title">实习经历</h2>
<div class="experience-item">
<div class="experience-header">
<div>
<span class="experience-title">前端开发工程师</span>
<span class="experience-company">广州软件应用技术研究院</span>
</div>
<span class="experience-date">2024.07-2025.01</span>
</div>
<div class="compact-project">
<div class="project-box">
<h4>西藏化妆品监测与风险管控平台</h4>
<p><span class="label">负责:</span>监管端统计页面、不良事件填报、数据质量评估</p>
<p><span class="label">实现:</span>区划数据三级下钻、大表单前后端数据同步</p>
<p><span class="label">技术:</span>Vue.js 2.x、Element UI、ECharts</p>
</div>
<div class="project-box">
<h4>藏药资源库平台开发</h4>
<p><span class="label">负责:</span>药企动态管理、方剂信息展示模块</p>
<p><span class="label">实现:</span>跨模块数据联动、知识图谱渲染、藏文双语</p>
<p><span class="label">技术:</span>Vue.js 2.x、G6、ECharts</p>
</div>
<div class="project-box">
<h4>化妆品企业质量安全风险监管</h4>
<p><span class="label">负责:</span>协同任务、问卷填写、题库、模板维护</p>
<p><span class="label">实现:</span>旧代码重构、遗留问题修复</p>
<p><span class="label">技术:</span>jQuery、Layui、Diaowen</p>
</div>
<div class="project-box">
<h4>政务业务系统低代码平台迁移</h4>
<p><span class="label">负责:</span>基础组件配置</p>
<p><span class="label">实现:</span>列表、表单、详情页JSON配置</p>
<p><span class="label">技术:</span>amis、Cursor辅助</p>
</div>
</div>
<p style="margin-top: 6px;"><strong>实习成果:</strong>独立使用Vue完成模块开发 | Git版本控制、前后端联调 |
新功能页面10+、Bug修复50+、绩效80+</p>
</div>
<div class="experience-item">
<div class="experience-header">
<div>
<span class="experience-title">软件测试</span>
<span class="experience-company">广州快决测信息科技有限公司</span>
</div>
<span class="experience-date">2023.07-2023.09</span>
</div>
<div class="experience-content">
<h4>ezTest 智能在线问卷系统</h4>
<ul class="experience-list">
<li>测试范围:一键绘制热区、系统语言适配、多类型表单、多层题组、选项分组、文案批量替换</li>
<li>需求评审:与开发沟通需求,输出理解文档辅助验收</li>
<li>测试文档:基于需求和UI文档编写测试用例</li>
<li>问题跟踪:定位问题,与开发沟通解决方案和预期效果</li>
<li>功能验收:跟进验收,与产品确认功能符合需求</li>
</ul>
<p style="margin-top: 6px;"><strong>实习成果:</strong>Bug提单30+,有效率90%(拒绝率10%)</p>
</div>
</div>
</section>
<!-- 项目经历 -->
<section class="section">
<h2 class="section-title">项目经历</h2>
<div class="project-item">
<div class="project-header">
<span class="project-title">仿豆瓣电影交流平台(MovieHub)</span>
<span class="project-type">毕业设计 2025.02-2025.04</span>
</div>
<p><strong>产品定位:</strong>面向电影爱好者的垂直社交平台</p>
<p><strong>核心功能:</strong>用户端(电影检索、在线观看、观影记录、多层评论、片单、推荐)| 管理端(数据管理、用户管理、评论审核)</p>
<p><strong>项目流程:</strong>需求分析→产品设计→技术选型及实现→项目管理(三个月独立完成全流程)</p>
<p><strong>技术栈:</strong>Claude辅助、Xmind、Axure原型设计、Vue 3前端开发、SpringBoot3后端开发、Git管理</p>
<p><strong>核心产出:</strong>完成度90% | 输出需求/设计/技术文档 | 成绩评定85分</p>
<p class="project-link"><strong>项目链接:</strong><a
href="https://gitee.com/bigdoublexing/movie-hub-inspired-by-douban.git"
target="_blank">MovieHub</a></p>
</div>
<div class="project-item">
<div class="project-header">
<span class="project-title">桌面立式倒抽纸巾盒(TissueFall)</span>
<span class="project-type">产品设计 2024.11-2025.01</span>
</div>
<p><strong>问题识别:</strong>纸巾使用末期抽取困难,效率降低80%</p>
<p><strong>解决方案:</strong>借鉴壁挂式设计原理,实现使用过程无阻力抽取</p>
<p><strong>执行步骤:</strong>需求定义→GPT辅助概念设计(3小时)→小红书用户验证→社区协作设计3D模型→授权设计专业同学参考</p>
<p><strong>投入成本:</strong>材料成本忽略不计 | GPT+小红书+MakerWorld社区 | 碎片沟通时间累计10小时</p>
<p><strong>核心产出:</strong>3D模型文件 | 流程文档 | 博客浏览9万+、点赞收藏1千+ | 扩展方案3+个</p>
<p class="project-link"><strong>项目链接:</strong><a
href="https://www.xiaohongshu.com/discovery/item/673787e7000000003c0151d8?source=webshare&xhsshare=pc_web&xsec_token=ABIgT9g11flch2cpfOus_RPYqx4c0r6uYtkgnr8iGZ_u4=&xsec_source=pc_share"
target="_blank">TissueFall - Gravity-Fed Tissue Dispenser</a></p>
</div>
<div class="project-item">
<div class="project-header">
<span class="project-title">AI 文书助手(QuickDraft)</span>
<span class="project-type">课程项目 2024.03-2024.04</span>
</div>
<p><strong>需求背景:</strong>办公室文书工作人工撰写平均耗时1小时/份、容易产生倦怠情绪</p>
<p><strong>技术架构:</strong>Flask + Spark LLM API | 原生JavaScript + marked.js | Flask-Login认证 + Flask-CORS跨域
</p>
<p><strong>关键实现:</strong>异步处理降低响应时间60% | SessionStorage缓存减少50%重复请求 | Markdown渲染所见即所得</p>
<p><strong>量化成果:</strong>文档生成效率提升100%(1小时→30分钟)| 支持5类文书模板</p>
<p class="project-link"><strong>项目链接:</strong><a
href="https://gitee.com/bigdoublexing/ai-document-assistant.git" target="_blank">QuickDraft</a>
</p>
</div>
</section>
<!-- 志愿者经历 -->
<section class="section">
<h2 class="section-title">志愿者经历</h2>
<div class="experience-item" style="margin-bottom: 0;">
<div class="experience-header">
<div>
<strong>广交会参展商翻译志愿者</strong> <span style="color: #666;">80+小时</span>
</div>
<span class="experience-date">2022.05-2023.05</span>
</div>
<p style="font-size: 10.5px;">131届、133届广交会参展商翻译:熟悉参展商业务、商务沟通话术,为参展商提供信息传达服务。</p>
</div>
</section>
<!-- LeetCode笔记 -->
<section class="section">
<!-- 把对应的链接加入到这里 -->
<h2 class="section-title">抽象训练</h2>
<div class="experience-item" style="margin-bottom: 0;">
<div class="experience-header">
<div>
<strong>LeetCode笔记</strong>
</div>
<span class="experience-date">2024.01-2024.12</span>
</div>
<p style="font-size: 10.5px;">LeetCode笔记:<a href="./leetcode/dist/index.html">LeetCode笔记</a></p>
</div>
</section>
<!-- figma -->
<section class="section">
<!-- 把对应的链接加入到这里 -->
<h2 class="section-title">设计训练</h2>
<div class="experience-item" style="margin-bottom: 0;">
<div class="experience-header">
<div>
<strong>figma稿件</strong>
</div>
<span class="experience-date">2024.01-2024.12</span>
</div>
<p style="font-size: 10.5px;">figma稿件:<a href="./figma/index.html">figma稿件</a></p>
</div>
</section>
</div>
</body>