diff --git a/index.html b/index.html new file mode 100644 index 0000000..36f60d5 --- /dev/null +++ b/index.html @@ -0,0 +1,189 @@ + + + + + + 个人简历 - zjin73 + + + + +
+ +
+
+
+ +
+
+

zjin73

+

AI & Robotics Researcher

+

南京航空航天大学 (NUAA)

+
+
+ +
+ + +
+

+ + 关于我 +

+
+

我是一名热爱AI理论与应用技术的研究者,专注于数字孪生(Digital Twin)和机器人技术领域。目前在南京航空航天大学学习计算机视觉/机器学习以及机械臂相关技术,致力于将前沿的AI技术应用到实际场景中。

+
+
+ + +
+

+ + 研究兴趣 +

+
+
+
+ +

AI理论

+

人工智能理论研究与创新

+
+
+ +

数字孪生

+

Digital Twin技术与应用

+
+
+ +

机器人技术

+

机械臂控制与智能机器人

+
+
+ +

计算机视觉

+

CV/ML技术研究与实践

+
+
+
+
+ + +
+

+ + 教育背景 +

+
+
+
+
+

南京航空航天大学 (NUAA)

+

2020 - 至今

+

主修方向:计算机视觉/机器学习、机械臂技术

+
    +
  • 深入学习AI理论与应用
  • +
  • 参与数字孪生项目研究
  • +
  • 机器人技术实践与开发
  • +
+
+
+
+
+ + +
+

+ + 技能专长 +

+
+
+
+

编程语言

+
+ Python + C++ + MATLAB + Java +
+
+
+

AI/ML框架

+
+ PyTorch + TensorFlow + OpenCV + scikit-learn +
+
+
+

机器人技术

+
+ ROS + 机械臂控制 + 运动规划 + 传感器融合 +
+
+
+

开发工具

+
+ Git + Docker + Linux + VS Code +
+
+
+
+
+ + +
+

+ + 项目经验 +

+
+
+

数字孪生系统开发

+

Python, Digital Twin, IoT

+

开发基于数字孪生技术的智能系统,实现物理世界与数字世界的实时映射与交互。

+
+
+

机械臂视觉抓取系统

+

ROS, OpenCV, Deep Learning

+

结合计算机视觉与机器人控制技术,实现机械臂的智能目标识别与精准抓取。

+
+
+

AI算法研究与实现

+

PyTorch, Machine Learning

+

研究并实现前沿的机器学习算法,应用于计算机视觉和智能控制领域。

+
+
+
+ + + +
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..8396490 --- /dev/null +++ b/style.css @@ -0,0 +1,449 @@ +/* 全局样式 */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +:root { + --primary-color: #2c3e50; + --secondary-color: #3498db; + --accent-color: #e74c3c; + --text-color: #333; + --text-light: #666; + --bg-light: #f8f9fa; + --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + --card-shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2); +} + +body { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; + line-height: 1.6; + color: var(--text-color); + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); + min-height: 100vh; + padding: 20px; +} + +.container { + max-width: 1200px; + margin: 0 auto; + background: white; + border-radius: 20px; + box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); + overflow: hidden; +} + +/* 头部样式 */ +.header { + background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); + color: white; + padding: 60px 40px; + display: flex; + justify-content: space-between; + align-items: flex-start; + flex-wrap: wrap; + gap: 30px; +} + +.profile-section { + display: flex; + align-items: center; + gap: 30px; +} + +.avatar { + font-size: 120px; + color: rgba(255, 255, 255, 0.9); + line-height: 1; +} + +.profile-info { + flex: 1; +} + +.name { + font-size: 3em; + font-weight: 700; + margin-bottom: 10px; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); +} + +.title { + font-size: 1.5em; + opacity: 0.95; + margin-bottom: 10px; +} + +.location { + font-size: 1.1em; + opacity: 0.9; +} + +.location i { + margin-right: 8px; +} + +.contact-info { + display: flex; + flex-direction: column; + gap: 15px; + align-self: center; +} + +.contact-item { + display: flex; + align-items: center; + gap: 12px; + color: white; + text-decoration: none; + font-size: 1.05em; + transition: transform 0.3s ease; +} + +.contact-item:hover { + transform: translateX(5px); +} + +.contact-item i { + font-size: 1.3em; + width: 25px; + text-align: center; +} + +/* 区块样式 */ +.section { + padding: 50px 40px; + border-bottom: 1px solid #e9ecef; +} + +.section:last-of-type { + border-bottom: none; +} + +.section-title { + font-size: 2em; + color: var(--primary-color); + margin-bottom: 30px; + display: flex; + align-items: center; + gap: 15px; + padding-bottom: 15px; + border-bottom: 3px solid var(--secondary-color); +} + +.section-title i { + color: var(--secondary-color); +} + +.section-content { + font-size: 1.1em; + color: var(--text-light); + line-height: 1.8; +} + +/* 关于我 */ +.about .section-content p { + text-align: justify; + font-size: 1.15em; +} + +/* 研究兴趣网格 */ +.interest-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 25px; + margin-top: 20px; +} + +.interest-item { + background: var(--bg-light); + padding: 30px; + border-radius: 15px; + text-align: center; + transition: all 0.3s ease; + border: 2px solid transparent; +} + +.interest-item:hover { + transform: translateY(-5px); + box-shadow: var(--card-shadow-hover); + border-color: var(--secondary-color); +} + +.interest-item i { + font-size: 3em; + color: var(--secondary-color); + margin-bottom: 15px; + display: block; +} + +.interest-item h3 { + color: var(--primary-color); + font-size: 1.3em; + margin-bottom: 10px; +} + +.interest-item p { + font-size: 1em; + color: var(--text-light); +} + +/* 时间线样式 */ +.timeline-item { + position: relative; + padding-left: 40px; + padding-bottom: 30px; +} + +.timeline-marker { + position: absolute; + left: 0; + top: 5px; + width: 16px; + height: 16px; + background: var(--secondary-color); + border-radius: 50%; + border: 4px solid white; + box-shadow: 0 0 0 4px var(--secondary-color); +} + +.timeline-item::before { + content: ''; + position: absolute; + left: 7px; + top: 21px; + bottom: 0; + width: 2px; + background: #e9ecef; +} + +.timeline-item:last-child::before { + display: none; +} + +.timeline-content h3 { + color: var(--primary-color); + font-size: 1.4em; + margin-bottom: 8px; +} + +.period { + color: var(--secondary-color); + font-weight: 600; + margin-bottom: 10px; + font-size: 1.05em; +} + +.description { + margin-bottom: 15px; + font-style: italic; +} + +.details { + list-style: none; + margin-top: 15px; +} + +.details li { + padding: 8px 0; + padding-left: 25px; + position: relative; +} + +.details li::before { + content: '▹'; + position: absolute; + left: 0; + color: var(--secondary-color); + font-weight: bold; + font-size: 1.2em; +} + +/* 技能网格 */ +.skills-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 25px; + margin-top: 20px; +} + +.skill-category { + background: var(--bg-light); + padding: 25px; + border-radius: 12px; + transition: all 0.3s ease; +} + +.skill-category:hover { + box-shadow: var(--card-shadow); + transform: translateY(-3px); +} + +.skill-category h3 { + color: var(--primary-color); + margin-bottom: 15px; + font-size: 1.2em; + display: flex; + align-items: center; + gap: 10px; +} + +.skill-category h3 i { + color: var(--secondary-color); +} + +.skill-tags { + display: flex; + flex-wrap: wrap; + gap: 10px; +} + +.skill-tag { + background: white; + color: var(--secondary-color); + padding: 8px 16px; + border-radius: 20px; + font-size: 0.95em; + border: 2px solid var(--secondary-color); + font-weight: 500; + transition: all 0.3s ease; +} + +.skill-tag:hover { + background: var(--secondary-color); + color: white; + transform: scale(1.05); +} + +/* 项目样式 */ +.project-item { + background: var(--bg-light); + padding: 25px; + border-radius: 12px; + margin-bottom: 20px; + border-left: 4px solid var(--secondary-color); + transition: all 0.3s ease; +} + +.project-item:hover { + box-shadow: var(--card-shadow-hover); + transform: translateX(5px); +} + +.project-item h3 { + color: var(--primary-color); + font-size: 1.4em; + margin-bottom: 12px; +} + +.project-tech { + color: var(--secondary-color); + font-weight: 600; + margin-bottom: 12px; + display: flex; + align-items: center; + gap: 8px; +} + +.project-description { + color: var(--text-light); + line-height: 1.7; +} + +/* 页脚 */ +.footer { + background: var(--primary-color); + color: white; + text-align: center; + padding: 30px; +} + +.footer p { + margin: 8px 0; + opacity: 0.9; +} + +.footer-note { + display: flex; + align-items: center; + justify-content: center; + gap: 8px; + font-style: italic; +} + +.footer-note i { + color: var(--accent-color); + animation: heartbeat 1.5s ease-in-out infinite; +} + +@keyframes heartbeat { + 0%, 100% { transform: scale(1); } + 50% { transform: scale(1.2); } +} + +/* 响应式设计 */ +@media (max-width: 768px) { + body { + padding: 10px; + } + + .container { + border-radius: 10px; + } + + .header { + padding: 40px 20px; + flex-direction: column; + } + + .profile-section { + flex-direction: column; + text-align: center; + } + + .name { + font-size: 2em; + } + + .title { + font-size: 1.2em; + } + + .contact-info { + align-self: stretch; + } + + .section { + padding: 30px 20px; + } + + .section-title { + font-size: 1.5em; + } + + .interest-grid, + .skills-grid { + grid-template-columns: 1fr; + } + + .avatar { + font-size: 80px; + } +} + +@media print { + body { + background: white; + padding: 0; + } + + .container { + box-shadow: none; + border-radius: 0; + } + + .section { + page-break-inside: avoid; + } +}