-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathantide.html
More file actions
682 lines (600 loc) · 21.4 KB
/
antide.html
File metadata and controls
682 lines (600 loc) · 21.4 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AntiDE - CAR-T、BiTE靶向杀伤效能定向进化的AI驱动解决方案 | ImmunoAI</title>
<link rel="stylesheet" href="style.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', 'Microsoft YaHei', sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
color: white;
text-align: center;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.3;
}
.hero-content {
max-width: 800px;
padding: 0 20px;
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1rem;
animation: fadeInUp 1s ease-out;
}
.hero .subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
animation: fadeInUp 1s ease-out 0.3s both;
}
.hero .description {
font-size: 1.1rem;
margin-bottom: 3rem;
opacity: 0.8;
animation: fadeInUp 1s ease-out 0.6s both;
}
.main-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
background: linear-gradient(135deg, #63b3ed 0%, #90cdf4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
font-size: 1.3rem;
color: #e2e8f0;
font-weight: 300;
max-width: 800px;
margin: 0 auto;
}
.model-image-container {
width: 40%;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
transition: all 0.3s ease;
margin: 0 auto;
}
.model-image-container:hover {
transform: scale(1.02);
box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}
.model-image {
width: 100%;
height: auto;
display: block;
transition: all 0.3s ease;
}
.image-placeholder {
width: 100%;
height: 1000px;
background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: #4a5568;
font-size: 1.1rem;
border: 2px dashed #a0aec0;
transition: all 0.3s ease;
}
.image-placeholder:hover {
background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
}
/* 主要内容区域 */
main {
padding: 80px 0;
}
.section {
background: white;
margin-bottom: 40px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.section-header {
background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
color: white;
padding: 30px 40px;
text-align: center;
}
.section-title {
font-size: 2rem;
font-weight: 600;
margin-bottom: 10px;
}
.section-description {
font-size: 1.1rem;
opacity: 0.9;
}
.section-content {
padding: 50px 40px;
}
/* 模型概述部分 */
.overview-content {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
align-items: center;
}
.overview-text {
font-size: 1.1rem;
line-height: 1.8;
color: #4a5568;
}
.highlight-text {
color: #2c5282;
font-weight: 600;
}
/* 性能说明部分 */
.performance-intro {
font-size: 1.2rem;
color: #2d3748;
margin-bottom: 30px;
padding: 25px;
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
border-radius: 15px;
border-left: 5px solid #3182ce;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 40px;
}
.feature-card {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
padding: 30px;
border-radius: 15px;
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(135deg, #3182ce 0%, #63b3ed 100%);
}
.feature-card:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}
.feature-title {
font-size: 1.3rem;
font-weight: 600;
color: #2c5282;
margin-bottom: 15px;
}
.feature-description {
color: #4a5568;
line-height: 1.7;
}
/* 开始设计按钮 */
.action-section {
text-align: center;
padding: 60px 0;
background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
margin-top: 60px;
border-radius: 20px;
position: relative;
overflow: hidden;
}
.action-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(99, 179, 237, 0.1) 0%, transparent 70%);
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(0.8); opacity: 0.3; }
50% { transform: scale(1.2); opacity: 0.1; }
}
.action-content {
position: relative;
z-index: 2;
}
.action-title {
font-size: 2.2rem;
color: white;
margin-bottom: 20px;
font-weight: 600;
}
.action-subtitle {
font-size: 1.1rem;
color: #e2e8f0;
margin-bottom: 40px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.start-design-btn {
display: inline-block;
padding: 18px 40px;
background: linear-gradient(135deg, #3182ce 0%, #63b3ed 100%);
color: white;
text-decoration: none;
border-radius: 50px;
font-size: 1.2rem;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
cursor: pointer;
border: none;
}
.start-design-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(49, 130, 206, 0.4);
background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
}
/* 联系我们弹窗 */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(5px);
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.modal-content {
background: white;
margin: 5% auto;
padding: 0;
border-radius: 20px;
width: 90%;
max-width: 500px;
box-shadow: 0 25px 60px rgba(0,0,0,0.3);
animation: slideIn 0.3s ease;
overflow: hidden;
}
@keyframes slideIn {
from { transform: translateY(-50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.modal-header {
background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
color: white;
padding: 25px 30px;
text-align: center;
position: relative;
}
.modal-title {
font-size: 1.5rem;
font-weight: 600;
margin: 0;
}
.close {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
color: white;
font-size: 24px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.close:hover {
background: rgba(255, 255, 255, 0.2);
}
.modal-body {
padding: 30px;
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 20px;
padding: 15px;
background: #f8fafc;
border-radius: 10px;
border-left: 4px solid #3182ce;
transition: all 0.3s ease;
}
.contact-item:hover {
background: #f1f5f9;
transform: translateX(5px);
}
.contact-icon {
font-size: 1.5rem;
margin-right: 15px;
color: #3182ce;
width: 30px;
text-align: center;
}
.contact-info h4 {
margin: 0 0 5px 0;
color: #2d3748;
font-size: 1.1rem;
}
.contact-info p {
margin: 0;
color: #4a5568;
font-size: 0.95rem;
}
/* 响应式设计 */
@media (max-width: 768px) {
.main-title {
font-size: 2.2rem;
}
.subtitle {
font-size: 1.1rem;
}
.overview-content {
grid-template-columns: 12fr;
gap: 30px;
}
.features-grid {
grid-template-columns: 1fr;
}
.section-content, .section-header {
padding: 30px 25px;
}
.action-title {
font-size: 1.8rem;
}
.modal-content {
margin: 10% auto;
width: 95%;
}
}
</style>
</head>
<body>
<header>
<nav class="container">
<a href="#" class="logo">ImmunoAI</a>
<ul class="nav-links">
<li><a href="index.html">首页</a></li>
<li><a href="index.html#features">核心优势</a></li>
<li class="dropdown">
<a href="#services">数据资源</a>
<div class="dropdown-content">
<a href="tsmpdb.html">肿瘤膜蛋白数据库</a>
<a href="neodb_page.html">肿瘤新抗原数据库</a>
</div>
</li>
<li class="dropdown">
<a href="#tools">AI设计工具</a>
<div class="dropdown-content">
<a href="antibody_design.html">抗体设计</a>
<a href="tcr_design.html">TCR设计</a>
<a href="antide.html">定向进化</a>
</div>
</li>
<li><a href="contact_page.html">联系我们</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>AntiDE</h1>
<p class="subtitle">CAR-T、BiTE靶向杀伤效能定向进化的AI驱动解决方案</p>
</div>
</section>
<section id="features" class="features">
<div class="container">
<h2 class="section-title">核心优势</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🧬</div>
<h3>实现从计算预测到实验验证的完整闭环,显著提高优化效率</h3>
</div>
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3>行业内首个CAR-T和BiTE效能定向进化AI模型</h3>
</div>
<div class="feature-card">
<div class="feature-icon">🚀</div>
<h3>动态药效反馈迭代,兼顾肿瘤杀伤的有效性和特异性</h3>
</div>
</div>
</div>
</section>
<main>
<div class="container">
<!-- 模型概述 -->
<section class="section">
<div class="section-header">
<h2 class="section-title">模型概述</h2>
<p class="section-description">行业首创的基于动态药效反馈的CAR-T和BiTE靶向杀伤效能定向进化AI系统</p>
</div>
<div class="section-content">
<div class="model-image-container">
<img src="picture/AntiDE.png" alt="AntiDE介绍图" class="model-image">
</div>
<br>
<div class="overview-content">
<div class="overview-text">
<span class="highlight-text">AntiDE</span>是一款<span class="highlight-text">创新型 AI 驱动 </span>的蛋白定向进化模型,首次将<span class="highlight-text">AI与CAR-T和BiTE抗体相关药物的肿瘤靶向杀伤效能优化紧密结合</span>,构建了基于<span class="highlight-text">抗体序列与抗原结构双输入的预测-实验验证-迭代闭环体系</span>。AntiDE实现了<span class="highlight-text">高效精准的突变位点推荐和多目标协同优化,显著提升了药物的抗肿瘤效能、特异性及安全性</span>,开创了抗体药物定向进化在肿瘤免疫治疗领域的全新应用范式。
</div>
</div>
</div>
</section>
<!-- 模型性能说明 -->
<section class="section">
<div class="section-header">
<h2 class="section-title">模型性能说明</h2>
<p class="section-description">行业领先的综合解决方案</p>
</div>
<div class="section-content">
<div class="performance-intro">
<strong>AntiDE</strong>为蛋白定向进化提供了高效可靠的综合解决方案
</div>
<div class="model-image-container">
<img src="picture/AntiDE_perf.png" alt="AntiDE性能图" class="model-image">
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🧬</div>
<h3 class="feature-title">双输入流架构</h3>
<p class="feature-description">深度融合抗体序列与抗原结构特征。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔬</div>
<h3 class="feature-title">多目标优化决策系统</h3>
<p class="feature-description">指导精准突变位点和类型,预测突变后的肿瘤靶向杀伤效能变化。</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3 class="feature-title">闭环迭代优化范式</h3>
<p class="feature-description">整合肿瘤杀伤实验数据反馈至AI模型形成持续优化闭环,同时进行靶向杀伤效能与特异性的定向进化。</p>
</div>
</div>
</div>
</section>
<!-- 开始设计部分 -->
<div class="action-section">
<div class="action-content">
<h2 class="action-title">开启 AntiDE 定向进化之旅</h2>
<p class="action-subtitle">立即体验 AntiDE 的强大功能,让 AI 助力您的药物效能提升</p>
<button class="start-design-btn" onclick="openModal()">开始设计</button>
</div>
</div>
</div>
</main>
<!-- 联系我们弹窗 -->
<div id="contactModal" class="modal">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">联系我们</h3>
<span class="close" onclick="closeModal()">×</span>
</div>
<div class="modal-body">
<div class="contact-item">
<div class="contact-icon">👤</div>
<div class="contact-info">
<h4>联系人</h4>
<p>Dr. 刘雪松 研究员</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📧</div>
<div class="contact-info">
<h4>联系邮箱</h4>
<p>liuxs@shanghaitech.edu.cn</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📍</div>
<div class="contact-info">
<h4>地址</h4>
<p>上海市浦东新区华夏中路393号<br/>上海科技大学生命学院</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📞</div>
<div class="contact-info">
<h4>联系电话</h4>
<p>+86-21-20685430</p>
</div>
</div>
</div>
</div>
</div>
<script>
function openModal() {
document.getElementById('contactModal').style.display = 'block';
document.body.style.overflow = 'hidden';
}
function closeModal() {
document.getElementById('contactModal').style.display = 'none';
document.body.style.overflow = 'auto';
}
// 点击弹窗外部区域关闭弹窗
window.onclick = function(event) {
const modal = document.getElementById('contactModal');
if (event.target === modal) {
closeModal();
}
}
// ESC键关闭弹窗
document.addEventListener('keydown', function(event) {
if (event.key === 'Escape') {
closeModal();
}
});
// 添加页面加载动画
window.addEventListener('load', function() {
const sections = document.querySelectorAll('.section');
sections.forEach((section, index) => {
section.style.opacity = '0';
section.style.transform = 'translateY(30px)';
setTimeout(() => {
section.style.transition = 'all 0.6s ease';
section.style.opacity = '1';
section.style.transform = 'translateY(0)';
}, index * 200);
});
});
</script>
</body>
</html>