-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact_page.html
More file actions
400 lines (346 loc) · 11.2 KB
/
contact_page.html
File metadata and controls
400 lines (346 loc) · 11.2 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>联系我们</title>
<link rel="stylesheet" href="style.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #2c3e50;
background: #f8f9fa;
padding: 40px 20px;
}
.container {
max-width: 80%;
margin: auto auto;
background: white;
border-radius: 16px;
box-shadow: 0 4px 24px rgba(0,0,0,0.06);
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #3498db, #2980b9);
color: white;
padding: 50px 40px;
text-align: center;
}
.header h1 {
font-size: 2.2rem;
font-weight: 600;
margin-bottom: 8px;
}
.header p {
font-size: 1.1rem;
opacity: 0.9;
}
.content {
padding: 50px 40px;
}
.section {
margin-bottom: 40px;
}
.section:last-child {
margin-bottom: 0;
}
.section-title {
font-size: 1.4rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.section-title::before {
content: '';
width: 4px;
height: 20px;
background: linear-gradient(135deg, #3498db, #2980b9);
border-radius: 2px;
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.contact-item {
padding: 24px;
background: #f8f9fa;
border-radius: 12px;
border: 1px solid #e9ecef;
transition: all 0.3s ease;
}
.contact-item:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
border-color: #3498db;
}
.contact-icon {
font-size: 1.8rem;
margin-bottom: 12px;
display: block;
}
.contact-label {
font-size: 0.9rem;
color: #7f8c8d;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.contact-value {
font-size: 1.1rem;
color: #2c3e50;
font-weight: 500;
flex: 1;
min-width: 0;
}
.contact-value a {
color: inherit;
text-decoration: none;
word-break: break-all;
word-wrap: break-word;
}
.contact-value a:hover {
color: #3498db;
}
.team-section {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 30px;
border-radius: 12px;
text-align: center;
margin-bottom: 40px;
}
.team-intro {
font-size: 1.1rem;
color: #34495e;
margin-bottom: 25px;
line-height: 1.7;
}
.team-link {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, #3498db, #2980b9);
color: white;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}
.team-link:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, #e9ecef, transparent);
margin: 40px 0;
}
.contact-person {
background: #fff;
border: 2px solid #e9ecef;
border-radius: 12px;
padding: 30px;
text-align: center;
margin-bottom: 30px;
}
.person-name {
font-size: 1.3rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
}
.person-title {
color: #7f8c8d;
font-size: 1rem;
margin-bottom: 20px;
}
.person-contact {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.person-contact-item {
display: flex;
align-items: center;
gap: 8px;
color: #34495e;
}
.person-contact-item a {
color: #3498db;
text-decoration: none;
}
.person-contact-item a:hover {
text-decoration: underline;
}
.location-section {
background: #fff;
border: 2px solid #e9ecef;
border-radius: 12px;
padding: 30px;
text-align: center;
}
.address-text {
font-size: 1.1rem;
color: #34495e;
margin-bottom: 20px;
line-height: 1.6;
}
.map-note {
color: #7f8c8d;
font-size: 0.9rem;
font-style: italic;
}
@media (max-width: 768px) {
body {
padding: 20px 10px;
}
.header {
padding: 40px 30px;
}
.content {
padding: 40px 30px;
}
.contact-grid {
grid-template-columns: 1fr;
}
.person-contact {
flex-direction: column;
gap: 15px;
}
.header h1 {
font-size: 1.8rem;
}
}
/* 淡入动画 */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.section {
animation: fadeInUp 0.6s ease-out;
}
</style>
</head>
<body>
<header>
<nav class="container">
<a href="#" class="logo">ImmunoAI</a>
<ul class="nav-links">
<li><a href="index.html">返回首页</a></li>
</ul>
</nav>
</header>
<div class="container">
<!-- 页面头部 -->
<div class="header">
<h1>联系我们</h1>
</div>
<!-- 主要内容 -->
<div class="content">
<!-- 主要联系人 -->
<div class="section">
<h2 class="section-title">主要联系人</h2>
<div class="contact-person">
<div class="person-name">刘雪松 研究员</div>
<div class="person-title">项目负责人 · 癌症生物学与人工智能</div>
<div class="person-contact">
<div class="person-contact-item">
📧 <a href="liuxs@shanghaitech.edu.cn">liuxs@shanghaitech.edu.cn</a>
</div>
<div class="person-contact-item">
📞 <a href="tel: 86-21-206854308"> 86-21-20685430</a>
</div>
</div>
</div>
</div>
<!-- 我们的团队 -->
<div class="section">
<h2 class="section-title">我们的团队</h2>
<div class="team-section">
<p class="team-intro">
我们是一支经验丰富的专业团队,致力于为客户提供高质量的服务和解决方案。
核心团队由肿瘤免疫学与 AI 大模型领域的背景的博士成员组成,结合前沿 AI 技术与丰富实验经验,致力于高效推动肿瘤精准免疫治疗研发。
</p>
<a href="https://slst.shanghaitech.edu.cn/lxs/main.htm" class="team-link" target="_blank">
👥 查看团队详细介绍
</a>
</div>
</div>
<div class="divider"></div>
<!-- 联系方式 -->
<div class="section">
<h2 class="section-title">联系方式</h2>
<div class="contact-grid">
<div class="contact-item">
<div class="contact-icon">📞</div>
<div class="contact-label">电话</div>
<div class="contact-value">
<a href="86-21-20685430"> 86-21-20685430</a>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📧</div>
<div class="contact-label">邮箱</div>
<div class="contact-value">
<a href="liuxs@shanghaitech.edu.cn">liuxs@shanghaitech.edu.cn</a>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">🌐</div>
<div class="contact-label">网站</div>
<div class="contact-value">
<a href="http://liuxslab.slst.shanghaitech.edu.cn/" target="_blank">http://liuxslab.slst.shanghaitech.edu.cn/</a>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<!-- 地址信息 -->
<div class="section">
<h2 class="section-title">地址信息</h2>
<div class="location-section">
<div class="address-text">
<strong>办公地址:</strong><br>
上海市浦东新区华夏中路393号<br>
上海科技大学<br>
生命科学与技术学院<br>
邮编:201210
</div>
<div class="map-note">
* 如需来访,请提前预约
</div>
</div>
</div>
</div>
</div>
<script>
// 平滑滚动效果
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
});
</script>
</body>
</html>