-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
620 lines (579 loc) · 19.3 KB
/
Copy pathindex.html
File metadata and controls
620 lines (579 loc) · 19.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Xinan Xu — Personal Homepage</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:wght@300;400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<style>
/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #f9f7f4;
--surface: #ffffff;
--border: #e4e0d8;
--text: #1c1a17;
--muted: #6b6560;
--accent: #3a6ea8;
--accent-lt: #edf2f9;
--accent-dk: #2a5088;
--red: #c0392b;
--font-sans: 'Source Sans 3', system-ui, sans-serif;
--font-serif:'Lora', Georgia, serif;
--radius: 6px;
--shadow: 0 2px 12px rgba(0,0,0,.07);
--shadow-lg: 0 6px 24px rgba(0,0,0,.11);
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
font-family: var(--font-sans);
background: var(--bg);
color: var(--text);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
position: relative;
}
body::before {
content: '';
position: fixed;
inset: 0;
background: url('bg.png') center / cover no-repeat;
opacity: 0.2;
z-index: -1;
pointer-events: none;
}
a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-dk); text-decoration: underline; }
/* ─── Layout ────────────────────────────────────────── */
.page {
max-width: 900px;
margin: 0 auto;
padding: 0 24px 80px;
}
/* ─── Top bar ───────────────────────────────────────── */
.topbar {
border-bottom: 1px solid var(--border);
padding: 14px 0;
margin-bottom: 52px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.topbar-name {
font-family: var(--font-serif);
font-size: 1rem;
letter-spacing: .01em;
color: var(--text);
}
.topbar-nav { display: flex; gap: 20px; font-size: .875rem; color: var(--muted); }
.topbar-nav a { color: var(--muted); }
.topbar-nav a:hover { color: var(--accent); text-decoration: none; }
/* ─── Hero / Header ─────────────────────────────────── */
.hero {
display: grid;
grid-template-columns: 1fr 180px;
gap: 40px;
align-items: start;
margin-bottom: 36px;
}
.hero-name {
font-family: var(--font-serif);
font-size: 2.2rem;
font-weight: 600;
line-height: 1.2;
letter-spacing: -.01em;
margin-bottom: 4px;
}
.hero-name-cn {
font-size: 1.1rem;
color: var(--muted);
font-weight: 300;
margin-bottom: 14px;
font-family: var(--font-sans);
}
.hero-title {
font-size: .95rem;
font-weight: 600;
color: var(--accent);
text-transform: uppercase;
letter-spacing: .06em;
margin-bottom: 2px;
}
.hero-affil {
font-size: .95rem;
color: var(--muted);
margin-bottom: 18px;
}
.hero-bio {
font-size: 1rem;
line-height: 1.8;
color: var(--text);
max-width: 560px;
}
.hero-bio strong { color: var(--accent); font-weight: 600; }
/* Avatar */
.avatar-wrap { display: flex; justify-content: center; }
.avatar {
width: 156px;
height: 156px;
border-radius: 50%;
background: linear-gradient(135deg, #3a6ea8 0%, #6fa3d4 50%, #a8c8e8 100%);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-serif);
font-size: 2.6rem;
color: #fff;
letter-spacing: .04em;
box-shadow: 0 4px 20px rgba(58,110,168,.25);
flex-shrink: 0;
position: relative;
overflow: hidden;
}
.avatar::after {
content: '';
position: absolute;
inset: 0;
border-radius: 50%;
box-shadow: inset 0 -4px 12px rgba(0,0,0,.12);
}
/* ─── Contact badges ────────────────────────────────── */
.contact-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 56px;
}
.badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 14px;
border-radius: 99px;
font-size: .82rem;
font-weight: 600;
border: 1.5px solid var(--border);
background: var(--surface);
color: var(--muted);
transition: all .18s;
cursor: pointer;
letter-spacing: .02em;
}
.badge i { font-size: .85em; }
.badge:hover {
border-color: var(--accent);
background: var(--accent-lt);
color: var(--accent);
text-decoration: none;
transform: translateY(-1px);
box-shadow: 0 3px 10px rgba(58,110,168,.15);
}
.badge-email:hover { border-color: #c0392b; background: #fdf0ee; color: #c0392b; }
.badge-github:hover { border-color: #24292e; background: #f0f0f0; color: #24292e; }
.badge-cv:hover { border-color: #27ae60; background: #edfaf3; color: #27ae60; }
/* ─── Section label ─────────────────────────────────── */
.section { margin-bottom: 52px; }
.section-head {
display: flex;
align-items: baseline;
gap: 10px;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--border);
}
.section-head h2 {
font-family: var(--font-sans);
font-size: .72rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .12em;
color: var(--muted);
}
.section-head .cn {
font-size: .82rem;
color: var(--border);
font-weight: 400;
}
.section-head .accent-dot {
width: 6px; height: 6px;
border-radius: 50%;
background: var(--accent);
flex-shrink: 0;
margin-bottom: 2px;
}
/* ─── News ──────────────────────────────────────────── */
.news-list {
max-height: 240px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 12px;
padding-right: 6px;
}
.news-list::-webkit-scrollbar { width: 4px; }
.news-list::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.news-list::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.news-item {
display: flex;
gap: 14px;
align-items: baseline;
font-size: .92rem;
}
.news-date {
font-family: 'Source Sans 3', monospace;
font-size: .78rem;
font-weight: 600;
color: var(--accent);
white-space: nowrap;
background: var(--accent-lt);
padding: 1px 7px;
border-radius: 4px;
letter-spacing: .03em;
}
.news-text { color: var(--text); line-height: 1.6; }
.news-text a { font-weight: 600; }
/* ─── Publications ──────────────────────────────────── */
.pub-list { display: flex; flex-direction: column; gap: 0; }
.pub-card {
display: grid;
grid-template-columns: 76px 1fr;
gap: 20px;
padding: 20px 16px;
border-radius: var(--radius);
transition: all .2s;
border: 1px solid transparent;
}
.pub-card:hover {
background: var(--surface);
border-color: var(--border);
box-shadow: var(--shadow);
transform: translateY(-1px);
}
.pub-card + .pub-card { border-top: 1px solid var(--border); }
.pub-card:hover + .pub-card { border-top-color: transparent; }
.pub-thumb {
width: 76px;
height: 100px;
background: linear-gradient(160deg, #dde6f0 0%, #c8d8e8 100%);
border-radius: 4px;
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
color: var(--accent);
font-size: 1.3rem;
flex-shrink: 0;
}
.pub-info {}
.pub-title {
font-family: var(--font-serif);
font-size: 1.01rem;
font-weight: 600;
line-height: 1.4;
margin-bottom: 5px;
color: var(--text);
}
.pub-authors {
font-size: .88rem;
color: var(--muted);
margin-bottom: 4px;
line-height: 1.5;
}
.pub-authors strong { color: var(--text); font-weight: 600; }
.pub-venue {
font-size: .84rem;
font-weight: 600;
color: var(--accent);
margin-bottom: 10px;
letter-spacing: .01em;
}
.pub-venue .conf-badge {
display: inline-block;
background: var(--accent-lt);
border: 1px solid rgba(58,110,168,.2);
padding: 1px 8px;
border-radius: 4px;
font-size: .78rem;
}
.pub-links { display: flex; flex-wrap: wrap; gap: 6px; }
.pub-link {
font-size: .78rem;
font-weight: 600;
padding: 2px 9px;
border-radius: 4px;
border: 1px solid var(--border);
color: var(--muted);
transition: all .15s;
letter-spacing: .01em;
}
.pub-link:hover {
border-color: var(--accent);
color: var(--accent);
background: var(--accent-lt);
text-decoration: none;
}
/* ─── Experience / Timeline ─────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
display: grid;
grid-template-columns: 110px 1fr;
gap: 20px;
padding: 18px 0;
border-bottom: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: none; }
.tl-period {
font-size: .8rem;
font-weight: 600;
color: var(--muted);
letter-spacing: .02em;
padding-top: 2px;
}
.tl-body {}
.tl-role {
font-weight: 600;
font-size: .98rem;
color: var(--text);
margin-bottom: 1px;
}
.tl-place {
font-size: .88rem;
color: var(--muted);
margin-bottom: 4px;
}
.tl-desc {
font-size: .88rem;
color: var(--muted);
line-height: 1.6;
}
.tl-icon {
display: inline-block;
width: 8px; height: 8px;
border-radius: 50%;
background: var(--accent);
margin-right: 4px;
vertical-align: middle;
}
/* ─── Services ──────────────────────────────────────── */
.services-text {
font-size: .95rem;
color: var(--text);
line-height: 1.9;
}
.conf-tag {
display: inline-block;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1px 8px;
font-size: .8rem;
font-weight: 600;
margin: 2px 3px 2px 0;
color: var(--muted);
letter-spacing: .03em;
}
/* ─── Footer ────────────────────────────────────────── */
footer {
border-top: 1px solid var(--border);
padding-top: 24px;
margin-top: 60px;
font-size: .82rem;
color: var(--muted);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--accent); }
/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 640px) {
.hero {
grid-template-columns: 1fr;
gap: 24px;
}
.hero-order-swap { order: -1; display: flex; justify-content: center; }
.avatar { width: 120px; height: 120px; font-size: 2rem; }
.hero-name { font-size: 1.75rem; }
.topbar-nav { display: none; }
.pub-card { grid-template-columns: 60px 1fr; gap: 14px; }
.pub-thumb { width: 60px; height: 80px; }
.tl-item { grid-template-columns: 1fr; gap: 4px; }
.tl-period { font-size: .78rem; }
}
/* ─── Scroll fade animation ──────────────────────────── */
.fade-in {
opacity: 0;
transform: translateY(18px);
transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
opacity: 1;
transform: none;
}
</style>
</head>
<body>
<div class="page">
<!-- Top bar -->
<div class="topbar">
<span class="topbar-name">Xinan Xu · 许锡楠</span>
<nav class="topbar-nav">
<a href="#news">News</a>
<a href="#publications">Publications</a>
<a href="#experience">Experience</a>
</nav>
</div>
<!-- Hero -->
<header class="hero fade-in">
<div class="hero-left">
<div class="hero-name">Xinan Xu</div>
<div class="hero-name-cn">许锡楠</div>
<div class="hero-title">Master Student · 硕士研究生</div>
<div class="hero-affil">USTC · School of Artificial Intelligence and Data Science</div>
<p class="hero-bio">
I am a Master Student at <strong>USTC</strong>, advised by Prof. Hu.
My research focuses on <strong>machine learning</strong>, <strong>embodied AI</strong>,
and <strong>robot manipulation</strong> — with the goal of building robots that can
perceive and interact with the physical world in open-ended environments.
Previously, I received my B.Eng. from Shenzhen Technology University in 2025.
</p>
</div>
<div class="hero-right avatar-wrap hero-order-swap">
<img src="deng.jpeg" class="avatar" style="object-fit:cover; font-size:0;" alt="Xinan Xu" />
</div>
</header>
<!-- Contact -->
<div class="contact-row fade-in">
<a class="badge badge-email" href="mailto:1269505366@qq.com">
<i class="fas fa-envelope"></i> Email
</a>
<a class="badge" href="https://scholar.google.com" target="_blank">
<i class="fas fa-graduation-cap"></i> Google Scholar
</a>
<a class="badge badge-github" href="https://github.com/UMR-R" target="_blank">
<i class="fab fa-github"></i> GitHub
</a>
<a class="badge badge-cv" href="cv.pdf" target="_blank">
<i class="fas fa-file-alt"></i> CV
</a>
<a class="badge" href="https://x.com/yourusername" target="_blank">
<i class="fab fa-x-twitter"></i> Twitter / X
</a>
<a class="badge" href="https://linkedin.com/in/yourusername" target="_blank">
<i class="fab fa-linkedin"></i> LinkedIn
</a>
</div>
<!-- News -->
<section id="news" class="section fade-in">
<div class="section-head">
<div class="accent-dot"></div>
<h2>News</h2>
<span class="cn">新闻动态</span>
</div>
<div class="news-list">
<div class="news-item">
<span class="news-date">2025.05</span>
<span class="news-text">
One paper accepted to <a href="#">XXX</a>. See you in Nashville!
</span>
</div>
</div>
</section>
<!-- Publications -->
<section id="publications" class="section fade-in">
<div class="section-head">
<div class="accent-dot"></div>
<h2>Selected Publications</h2>
<span class="cn">代表性论文</span>
</div>
<div class="pub-list">
<!-- Paper 1 -->
<div class="pub-card">
<div class="pub-thumb">
<i class="fas fa-cube"></i>
</div>
<div class="pub-info">
<div class="pub-title">An efficient network for bacterial colony counting based on tail-MLP</div>
<div class="pub-authors">Meng Li, <strong>Xinan Xu</strong>, Yu Lu</div>
<div class="pub-venue"><span class="conf-badge">ISPP 2024</span></div>
<div class="pub-links">
<a class="pub-link" href="https://www.spiedigitallibrary.org/conference-proceedings-of-spie/13180/131805L/An-efficient-network-for-bacterial-colony-counting-based-on-tail/10.1117/12.3034148.short#_=_" target="_blank">Paper</a>
</div>
</div>
</div>
</div>
<p style="font-size:.85rem; color:var(--muted); margin-top:16px; padding-left:16px;">
* denotes equal contribution. See <a href="https://scholar.google.com">Google Scholar</a> for full list.
</p>
</section>
<!-- Experience -->
<section id="experience" class="section fade-in">
<div class="section-head">
<div class="accent-dot"></div>
<h2>Experience</h2>
<span class="cn">教育 / 工作经历</span>
</div>
<div class="timeline">
<div class="tl-item">
<div class="tl-period">2026.09 — Now</div>
<div class="tl-body">
<div class="tl-role"><span class="tl-icon"></span>M.Eng. in Artificial Intelligence</div>
<div class="tl-place">University of Science and Technology of China (USTC), Hefei</div>
<div class="tl-desc">Advised by Prof. Hu. Research focus: embodied AI, robot learning.</div>
</div>
</div>
<div class="tl-item">
<div class="tl-period">2026.05 — 09</div>
<div class="tl-body">
<div class="tl-role"><span class="tl-icon"></span>Founding Algorithm Engineer</div>
<div class="tl-place">Heygo, Shenzhen</div>
<div class="tl-desc">Early-stage algorithm team member at a robotics startup. Focused on imu algorithm.</div>
</div>
</div>
<div class="tl-item">
<div class="tl-period">2025.03 — 2026.05</div>
<div class="tl-body">
<div class="tl-role"><span class="tl-icon"></span>Robotics Engineer</div>
<div class="tl-place">BridgeDP, Shenzhen</div>
<div class="tl-desc">Focused on deploying control algorithms for robotic systems.</div>
</div>
</div>
<div class="tl-item">
<div class="tl-period">2021 — 2025</div>
<div class="tl-body">
<div class="tl-role"><span class="tl-icon"></span>B.Eng. in Computer Science and Technology</div>
<div class="tl-place">Shenzhen Technology University (SZTU), Shenzhen</div>
<div class="tl-desc">Advised by Prof. Meng Li · FsrLab</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<span>Last updated: May 2026</span>
<span>Template inspired by <a href="https://jonbarron.info" target="_blank">Jon Barron</a></span>
</footer>
</div>
<script>
// Scroll-triggered fade-in
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) {
e.target.classList.add('visible');
observer.unobserve(e.target);
}
});
}, { threshold: 0.08 });
document.querySelectorAll('.fade-in').forEach((el, i) => {
el.style.transitionDelay = `${i * 60}ms`;
observer.observe(el);
});
</script>
</body>
</html>