-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1215 lines (1174 loc) · 51.5 KB
/
Copy pathindex.html
File metadata and controls
1215 lines (1174 loc) · 51.5 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
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clinical Agent | 开源临床智能代理</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 88C25 68 5 50 5 32 5 16 18 5 32 5c9 0 14 5 18 10 4-5 9-10 18-10 14 0 27 11 27 27 0 18-20 36-45 56z' fill='%2327ae60'/%3E%3Cpolyline points='10,50 25,50 32,30 40,70 48,50 55,50 62,35 70,50 90,50' fill='none' stroke='white' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* =============== 全局样式 - 修复对比度 =============== */
:root {
--primary: #1a3a5f; /* 深蓝 - 专业 */
--primary-dark: #0d2a47; /* 深蓝悬停 */
--secondary: #27ae60; /* 医疗绿 - 改为更暗的绿色,提高对比度 */
--accent: #2980b9; /* 科技蓝 - 改为更暗的蓝色 */
--light: #f8f9fa; /* 浅灰背景 */
--dark: #212529; /* 深灰文字 - 改为接近纯黑 */
--gray-900: #212529; /* 正文文字 - 高对比度 */
--gray-700: #495057; /* 次要文字 */
--gray-600: #6c757d; /* 辅助文字 */
--gray-500: #adb5bd; /* 弱化文字 */
--shadow: 0 4px 12px rgba(0,0,0,0.08);
--radius: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
line-height: 1.6;
color: var(--gray-900); /* 改为深色,提高可读性 */
background-color: #fff;
background-image: linear-gradient(135deg, rgba(26,58,95,0.03) 0%, rgba(39,174,96,0.02) 100%);
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
display: inline-block; padding: 12px 28px; border-radius: 50px;
font-weight: 600; text-decoration: none; transition: all 0.3s;
border: 2px solid var(--primary); cursor: pointer;
color: var(--gray-900); /* 确保按钮文字清晰 */
}
.btn-primary {
background: var(--primary);
color: white;
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-outline {
background: transparent;
color: var(--primary);
}
.btn-outline:hover {
background: var(--light);
transform: translateY(-2px);
}
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 15px;
}
.section-title p {
color: var(--gray-700); /* 改为深灰,提高对比度 */
max-width: 700px;
margin: 0 auto;
}
/* =============== 导航栏 =============== */
.navbar {
background: white;
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
transition: all 0.3s;
}
.navbar.scrolled {
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 12px 0; /* 滚动时稍微缩小 */
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
/* Logo 字号 */
.logo {
display: flex;
align-items: center;
font-size: 1.6rem; /* 从 1.8rem 调整为 1.6rem,更协调 */
font-weight: 800;
color: var(--primary);
line-height: 1;
}
.logo i {
margin-right: 10px;
color: var(--secondary);
font-size: 1.8rem; /* 从 2rem 调整为 1.8rem */
line-height: 1;
}
/* 导航链接 - 明确设置字号 */
.nav-links {
display: flex;
list-style: none;
align-items: center; /* 垂直居中对齐 */
}
.nav-links li {
margin-left: 25px;
}
.nav-links a {
text-decoration: none;
color: var(--gray-900);
font-weight: 500;
font-size: 1.05rem; /* 明确设置字号,与logo协调 */
line-height: 1;
transition: color 0.3s;
padding: 8px 0; /* 增加点击区域 */
}
.nav-links a:hover {
color: var(--secondary);
}
/* 移动端菜单按钮 */
.mobile-menu-btn {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--primary);
cursor: pointer;
padding: 8px;
}
/* GitHub 按钮在导航栏中微调 */
.nav-links .btn {
padding: 8px 20px; /* 稍微缩小,与导航栏协调 */
font-size: 0.95rem; /* 稍小一点 */
line-height: 1.4;
}
/* =============== 英雄区 =============== */
.hero {
text-align: center;
padding: 120px 0 80px;
background: linear-gradient(135deg, rgba(26,58,95,0.05) 0%, rgba(39,174,96,0.03) 100%);
}
.hero h1 {
font-size: 3.8rem;
margin: 20px 0;
color: var(--primary);
line-height: 1.2;
}
.hero p.subtitle {
font-size: 1.5rem;
color: var(--gray-700); /* 改为深灰,提高对比度 */
max-width: 800px;
margin: 25px auto 40px;
}
.hero-buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
flex-wrap: wrap;
}
.badge {
display: inline-block;
background: var(--secondary);
color: white;
padding: 5px 15px;
border-radius: 30px;
font-weight: 600;
margin-top: 15px;
}
.new-release {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 20px;
padding: 10px 24px;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: white;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 15px rgba(26,58,95,0.25);
}
.new-release:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(26,58,95,0.35);
}
.new-dot {
width: 8px; height: 8px;
background: #ff6b6b;
border-radius: 50%;
animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.4); }
}
/* =============== 使命区 =============== */
.mission { background-color: white; }
.mission-content {
display: flex;
align-items: center;
gap: 60px;
}
.mission-text { flex: 1; }
.mission-text h3 {
font-size: 2.2rem;
color: var(--primary);
margin: 25px 0 20px;
}
.mission-text p {
margin: 15px 0;
color: var(--gray-700); /* 改为深灰,提高对比度 */
}
.mission-icon {
flex: 1;
display: flex;
justify-content: center;
}
.mission-icon i {
font-size: 8rem;
color: var(--secondary);
opacity: 0.15;
}
/* =============== 项目展示 =============== */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.project-card {
background: white;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.3s;
border: 1px solid #eee;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.project-header {
padding: 25px;
background: var(--light);
border-bottom: 1px solid #eee;
}
.project-header h3 {
font-size: 1.6rem;
color: var(--primary);
margin-bottom: 10px;
}
.project-header a {
color: var(--accent);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
}
.project-header a i { margin-left: 5px; }
.project-body { padding: 25px; }
.project-body p {
color: var(--gray-700); /* 改为深灰,提高对比度 */
margin-bottom: 20px;
}
.tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: 15px 0;
}
.tag {
background: #e8f5e9; /* 改为更浅的绿色背景 */
color: var(--secondary);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600; /* 增加字重提高可读性 */
}
.project-footer {
padding: 0 25px 25px;
display: flex;
justify-content: space-between;
align-items: center;
}
.stats {
color: var(--gray-600); /* 改为深灰,提高对比度 */
font-size: 0.9rem;
display: flex;
gap: 15px;
}
.stats span {
display: flex;
align-items: center;
}
.stats i {
margin-right: 5px;
color: var(--primary);
}
/* =============== 伦理承诺 =============== */
.ethics {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
text-align: center;
}
.ethics .section-title h2 { color: white; }
.ethics .section-title p {
color: rgba(255,255,255,0.9); /* 提高透明度,增强对比度 */
}
.ethics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.ethics-item {
padding: 30px;
background: rgba(255,255,255,0.1); /* 降低透明度,增强对比度 */
border-radius: var(--radius);
transition: all 0.3s;
}
.ethics-item:hover {
background: rgba(255,255,255,0.15); /* 降低透明度,增强对比度 */
transform: translateY(-5px);
}
.ethics-item i {
font-size: 3.5rem;
margin-bottom: 20px;
color: var(--secondary);
}
.ethics-item h3 {
font-size: 1.8rem;
margin: 15px 0;
}
.ethics-item p {
color: rgba(255,255,255,0.95); /* 提高透明度,增强对比度 */
margin-top: 10px;
}
/* =============== 贡献号召 =============== */
.contribute {
background-color: var(--light);
text-align: center;
}
.contribute h2 { color: var(--primary); }
.contribute p {
max-width: 700px;
margin: 25px auto 40px;
font-size: 1.2rem;
color: var(--gray-700); /* 改为深灰,提高对比度 */
}
.roles-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
margin: 40px 0;
}
.role-card {
background: white;
padding: 30px;
border-radius: var(--radius);
width: 220px;
box-shadow: var(--shadow);
}
.role-card i {
font-size: 3.5rem;
color: var(--accent);
margin-bottom: 20px;
}
.role-card h3 {
margin: 15px 0;
color: var(--primary);
}
.role-card p {
color: var(--gray-700); /* 改为深灰,提高对比度 */
}
/* =============== 页脚 =============== */
footer {
background: var(--dark);
color: rgba(255,255,255,0.85);
padding: 70px 0 30px;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}
.footer-col h3 {
color: white;
font-size: 1.6rem;
margin: 25px 0 20px;
position: relative;
padding-bottom: 10px;
}
.footer-col h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background: var(--secondary);
}
.footer-col p,
.footer-col a {
display: block;
margin: 12px 0;
color: rgba(255,255,255,0.85); /* 提高透明度,增强对比度 */
text-decoration: none;
transition: color 0.3s;
}
.footer-col a:hover {
color: var(--secondary);
}
.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255,255,255,0.15); /* 降低透明度,增强对比度 */
color: white;
transition: all 0.3s;
}
.social-links a:hover {
background: var(--secondary);
transform: translateY(-3px);
}
.copyright {
text-align: center;
padding-top: 40px;
margin-top: 30px;
border-top: 1px solid rgba(255,255,255,0.15); /* 降低透明度,增强对比度 */
color: rgba(255,255,255,0.8); /* 提高透明度,增强对比度 */
font-size: 0.95rem;
}
/* =============== 响应式 =============== */
@media (max-width: 900px) {
.mission-content {
flex-direction: column;
text-align: center;
}
.mission-icon { order: -1; }
.hero h1 { font-size: 3.2rem; }
.hero p.subtitle { font-size: 1.3rem; }
}
@media (max-width: 768px) {
.mobile-menu-btn { display: block; }
.nav-links {
display: none;
width: 100%;
margin-top: 20px;
flex-direction: column;
align-items: center;
}
.nav-links.show { display: flex; }
.nav-links li { margin: 10px 0; }
.hero-buttons {
flex-direction: column;
align-items: center;
}
.hero h1 { font-size: 2.8rem; }
section { padding: 60px 0; }
.terminal { font-size: 0.78rem; min-height: 350px; padding: 14px; }
.case-btn { max-width: 100%; }
}
/* =============== Demo 终端 =============== */
.demo-section { background-color: var(--light); }
.case-selector { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.case-btn {
padding: 12px 24px; border-radius: 10px; border: 2px solid #ddd;
background: white; cursor: pointer; font-size: 0.95rem; font-weight: 500;
color: var(--gray-700); transition: all 0.3s; text-align: left; max-width: 280px;
}
.case-btn:hover { border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow); }
.case-btn.active { border-color: var(--secondary); background: rgba(39,174,96,0.05); }
.case-btn .case-title { font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.case-btn .case-desc { font-size: 0.85rem; color: var(--gray-600); }
.terminal-wrapper {
max-width: 900px; margin: 0 auto; border-radius: var(--radius);
overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.terminal-bar {
background: #2d2e3f; padding: 10px 16px;
display: flex; align-items: center; gap: 8px;
}
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-bar-title { margin-left: 12px; color: #565f89; font-size: 0.85rem; font-family: monospace; }
.terminal {
background: #1a1b26; padding: 20px 24px;
font-family: 'Cascadia Code', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
font-size: 0.88rem; line-height: 1.7; min-height: 420px;
max-height: 600px; overflow-y: auto; color: #c0caf5;
}
.terminal::-webkit-scrollbar { width: 6px; }
.terminal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.term-line { opacity: 0; transform: translateY(5px); transition: opacity 0.3s, transform 0.3s; margin: 2px 0; white-space: pre-wrap; word-break: break-all; }
.term-line.visible { opacity: 1; transform: translateY(0); }
.term-line .green { color: #9ece6a; }
.term-line .cyan { color: #7dcfff; }
.term-line .yellow { color: #e0af68; }
.term-line .red { color: #f7768e; }
.term-line .magenta { color: #bb9af7; }
.term-line .dim { color: #565f89; }
.term-line .bold { font-weight: 700; }
.demo-hint { text-align: center; color: var(--gray-600); margin-top: 15px; font-size: 0.9rem; }
.demo-more { text-align: center; margin-top: 20px; }
</style>
</head>
<body>
<!-- 导航栏 -->
<nav class="navbar">
<div class="container nav-container">
<div class="logo">
<i class="fas fa-heartbeat"></i>
<span>Agentic-CliniAI</span>
</div>
<button class="mobile-menu-btn" id="menuToggle">
<i class="fas fa-bars"></i>
</button>
<ul class="nav-links" id="navLinks">
<li><a href="#mission">使命</a></li>
<li><a href="#projects">项目</a></li>
<li><a href="#ethics">伦理</a></li>
<li><a href="#contribute">贡献</a></li>
<li><a href="https://github.com/agentic-cliniai" target="_blank" class="btn btn-outline">
<i class="fab fa-github"></i> GitHub
</a></li>
</ul>
</div>
</nav>
<!-- 英雄区 -->
<section class="hero">
<div class="container">
<div class="badge"><i class="fas fa-shield-alt"></i> 开源 · 透明可溯 · 安全防护</div>
<h1>赋能临床决策的<br>开源智能代理</h1>
<p class="subtitle">构建安全、透明、可溯源的AI工具,辅助医疗专业人员提升诊疗效率与准确性,推动医疗公平</p>
<a href="#demo" class="new-release">
<span class="new-dot"></span> 全新发布 · DermAgent 皮肤科诊断智能体 — 468疾病知识库 · 迭代追问 · 多模态感知 <i class="fas fa-arrow-right"></i>
</a>
<div class="hero-buttons">
<a href="#projects" class="btn btn-primary">探索项目 <i class="fas fa-arrow-right"></i></a>
<a href="#contribute" class="btn btn-outline">如何贡献</a>
</div>
</div>
</section>
<!-- DermAgent Demo -->
<section class="demo-section" id="demo">
<div class="container">
<div class="section-title">
<h2><span class="new-dot" style="display:inline-block;width:10px;height:10px;background:#ff6b6b;border-radius:50;margin-right:8px;vertical-align:middle;"></span> 皮肤科诊断智能体 DEMO 展示</h2>
<p>选择一个预设病例,观看 DermAgent 的完整诊断流程动画</p>
</div>
<div class="case-selector">
<button class="case-btn active" data-case="sle" onclick="selectCase('sle')">
<div class="case-title">面部红斑3周</div>
<div class="case-desc">SLE(系统性红斑狼疮)— 自身免疫性疾病</div>
</button>
<button class="case-btn" data-case="psoriasis" onclick="selectCase('psoriasis')">
<div class="case-title">全身银白色鳞屑斑块2月</div>
<div class="case-desc">银屑病 — 慢性炎症性皮肤病</div>
</button>
<button class="case-btn" data-case="pemphigus" onclick="selectCase('pemphigus')">
<div class="case-title">反复松弛性水疱伴黏膜糜烂</div>
<div class="case-desc">天疱疮 — 自身免疫性水疱病</div>
</button>
</div>
<div class="terminal-wrapper">
<div class="terminal-bar">
<div class="terminal-dot red"></div>
<div class="terminal-dot yellow"></div>
<div class="terminal-dot green"></div>
<span class="terminal-bar-title">DermAgent — python main.py</span>
</div>
<div class="terminal" id="terminal"></div>
</div>
<p class="demo-hint"><i class="fas fa-info-circle"></i> 此为预录 Demo 动画,展示真实诊断流程。点击不同病例切换。</p>
<div class="demo-more">
<a href="dermagent.html" class="btn btn-outline"><i class="fas fa-arrow-right"></i> 查看完整 Demo 页面</a>
</div>
</div>
</section>
<!-- 使命区 -->
<section class="mission" id="mission">
<div class="container">
<div class="mission-content">
<div class="mission-text">
<h2>我们的使命</h2>
<p>在医疗AI快速发展的今天,我们坚信:<strong>技术必须服务于人,而非替代人</strong>。Agentic-CliniAI 致力于创建</p>
<ul style="padding-left:25px; margin:20px 0; color:var(--gray-700);">
<li style="margin:12px 0">✅ <strong>临床医生主导设计</strong>:所有工具由一线医疗专家参与开发</li>
<li style="margin:12px 0">✅ <strong>透明可解释</strong>:拒绝"黑箱",提供决策依据溯源</li>
<li style="margin:12px 0">✅ <strong>安全优先</strong>:内置隐私保护、偏差检测、错误反馈校准机制</li>
<!-- <li style="margin:12px 0">✅ <strong>开源协作</strong>:全球开发者共建可信医疗AI生态</li> -->
</ul>
<p>我们与医院、研究机构紧密合作,确保每个工具符合临床工作流与伦理规范。</p>
</div>
<div class="mission-icon">
<i class="fas fa-brain"></i>
</div>
</div>
</div>
</section>
<!-- 项目展示 -->
<section class="projects" id="projects">
<div class="container">
<div class="section-title">
<h2><i class="fas fa-cubes"></i> 核心项目</h2>
<p>模块化设计 · 临床验证 · 易于集成</p>
</div>
<div class="projects-grid">
<!-- DermAgent (Featured) -->
<div class="project-card" style="border: 2px solid var(--secondary);">
<div class="project-header" style="background: linear-gradient(135deg, rgba(39,174,96,0.08) 0%, rgba(41,128,185,0.08) 100%);">
<div style="display:flex; justify-content:space-between; align-items:center;">
<h3>DermAgent</h3>
<span style="background:var(--secondary); color:white; padding:3px 10px; border-radius:12px; font-size:0.75rem; font-weight:600;">NEW</span>
</div>
<div style="display:flex; gap:15px; margin-top:8px;">
<a href="dermagent.html">
<i class="fas fa-play-circle"></i> 在线 Demo
</a>
<a href="https://github.com/agentic-cliniai/dermagent" target="_blank">
GitHub <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div style="display:flex; gap:20px; margin-top:15px; padding-top:12px; border-top:1px solid rgba(0,0,0,0.06);">
<div style="text-align:center;">
<div style="font-size:1.6rem;font-weight:800;color:var(--primary);line-height:1;">468</div>
<div style="font-size:0.75rem;color:var(--gray-600);margin-top:2px;">皮肤病种</div>
</div>
<div style="text-align:center;">
<div style="font-size:1.6rem;font-weight:800;color:var(--primary);line-height:1;">35+</div>
<div style="font-size:0.75rem;color:var(--gray-600);margin-top:2px;">ICD-10 类别</div>
</div>
<div style="text-align:center;">
<div style="font-size:1.6rem;font-weight:800;color:var(--primary);line-height:1;">11</div>
<div style="font-size:0.75rem;color:var(--gray-600);margin-top:2px;">检索工具</div>
</div>
<div style="text-align:center;">
<div style="font-size:1.6rem;font-weight:800;color:var(--primary);line-height:1;">4</div>
<div style="font-size:0.75rem;color:var(--gray-600);margin-top:2px;">感知模态</div>
</div>
</div>
</div>
<div class="project-body">
<p>皮肤科多Agent诊断系统:迭代追问、多模态感知、468疾病知识库</p>
<div class="tags">
<span class="tag">LangGraph</span>
<span class="tag">Multi-Agent</span>
<span class="tag">468疾病知识库</span>
<span class="tag">多模态感知</span>
</div>
</div>
<div class="project-footer">
<div class="stats">
<span data-repo="agentic-cliniai/dermagent" data-type="stars"><i class="fas fa-star"></i> 0</span>
<span data-repo="agentic-cliniai/dermagent" data-type="forks"><i class="fas fa-code-branch"></i> 0</span>
</div>
</div>
</div>
<!-- 项目2 -->
<div class="project-card">
<div class="project-header">
<h3>Möbius</h3>
<a href="https://github.com/agentic-cliniai/mobius" target="_blank">
GitHub <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="project-body">
<p>双向互监督框架:充分发挥 SAM 的视觉理解能力与 LVLM 的语义推理能力。两者双向互补,构建可信赖的医学视觉语言系统</p>
<div class="tags">
<span class="tag">LVLM</span>
<span class="tag">SAM</span>
<span class="tag">Medical VQA</span>
<span class="tag">Visual Grounding</span>
</div>
</div>
<div class="project-footer">
<div class="stats">
<span data-repo="agentic-cliniai/mobius" data-type="stars"><i class="fas fa-star"></i> 0</span>
<span data-repo="agentic-cliniai/mobius" data-type="forks"><i class="fas fa-code-branch"></i> 0</span>
</div>
</div>
</div>
<!-- 项目3 -->
<div class="project-card">
<div class="project-header">
<h3>Counterfactual Hallucination Detection</h3>
<a href="https://github.com/Agentic-CliniAI/Counterfactual-Hallucination-Detect" target="_blank">
GitHub <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="project-body">
<p>基于反事实视觉定位不确定性,检测 LVLM 的临床幻觉 (MICCAI 2026)</p>
<div class="tags">
<span class="tag">LVLM</span>
<span class="tag">Hallucination Detection</span>
<span class="tag">Counterfactual</span>
<span class="tag">MICCAI 2026</span>
</div>
</div>
<div class="project-footer">
<div class="stats">
<span data-repo="Agentic-CliniAI/Counterfactual-Hallucination-Detect" data-type="stars"><i class="fas fa-star"></i> 0</span>
<span data-repo="Agentic-CliniAI/Counterfactual-Hallucination-Detect" data-type="forks"><i class="fas fa-code-branch"></i> 0</span>
</div>
</div>
</div>
<!-- 项目4 -->
<div class="project-card">
<div class="project-header">
<h3>SafeGuard Toolkit</h3>
<a href="https://github.com/Agentic-CliniAI/Safeguard-Toolkit" target="_blank">
GitHub <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="project-body">
<p>医疗AI安全框架:偏差检测、对抗测试、不确定性量化、审计日志,确保模型可靠部署</p>
<div class="tags">
<span class="tag">Security</span>
<span class="tag">ML Ops</span>
<span class="tag">合规</span>
</div>
</div>
<div class="project-footer">
<div class="stats">
<span data-repo="agentic-cliniai/safeguard" data-type="stars"><i class="fas fa-star"></i> 0</span>
<span data-repo="agentic-cliniai/safeguard" data-type="forks"><i class="fas fa-code-branch"></i> 0</span>
</div>
</div>
</div>
</div>
<div style="text-align:center; margin-top:40px">
<a href="https://github.com/agentic-cliniai" target="_blank" class="btn btn-outline">
<i class="fab fa-github"></i> 查看所有仓库
</a>
</div>
</div>
</section>
<!-- 伦理承诺 -->
<section class="ethics" id="ethics">
<div class="container">
<div class="section-title">
<h2><i class="fas fa-balance-scale"></i> 伦理与责任</h2>
<p>技术向善是Agentic-CliniAI的基石。我们承诺:</p>
</div>
<div class="ethics-grid">
<div class="ethics-item">
<i class="fas fa-user-md"></i>
<h3>临床主导</h3>
<p>所有工具由执业医师参与设计、测试与验证,确保符合真实临床场景</p>
</div>
<div class="ethics-item">
<i class="fas fa-lock"></i>
<h3>隐私至上</h3>
<p>默认匿名化处理,支持本地部署,严格遵循HIPAA/GDPR等法规</p>
</div>
<div class="ethics-item">
<i class="fas fa-project-diagram"></i>
<h3>透明可溯</h3>
<p>提供完整决策链路解释,拒绝不可验证的"黑箱"输出</p>
</div>
<div class="ethics-item">
<i class="fas fa-hand-holding-heart"></i>
<h3>公平包容</h3>
<p>主动检测并缓解数据偏差,确保工具对不同人群公平有效</p>
</div>
</div>
</div>
</section>
<!-- 贡献号召 -->
<section class="contribute" id="contribute">
<div class="container">
<div class="section-title">
<h2><i class="fas fa-hand-holding-medical"></i> 加入我们,改善医疗未来</h2>
<p>无论您的专长是什么,您的贡献都能推动医疗AI向更安全、更公平的方向发展</p>
</div>
<div class="roles-grid">
<div class="role-card">
<i class="fas fa-code"></i>
<h3>开发者</h3>
<p>贡献代码、修复Bug、优化性能</p>
</div>
<div class="role-card">
<i class="fas fa-user-md"></i>
<h3>临床专家</h3>
<p>提供场景反馈、验证工具、撰写指南</p>
</div>
<div class="role-card">
<i class="fas fa-language"></i>
<h3>文档/翻译</h3>
<p>完善文档、多语言支持、案例编写</p>
</div>
<div class="role-card">
<i class="fas fa-bug"></i>
<h3>测试者</h3>
<p>报告问题、参与Beta测试、提供用例</p>
</div>
</div>
<a href="https://github.com/agentic-cliniai/.github/blob/main/CONTRIBUTING.md" target="_blank" class="btn btn-primary">
<i class="fas fa-book-open"></i> 贡献指南
</a>
<!-- <p style="margin-top:25px; color:var(--gray-700);">
查看 <a href="https://github.com/agentic-cliniai/governance" style="color:var(--accent); text-decoration:underline">治理模型</a> 与
<a href="https://github.com/agentic-cliniai/code-of-conduct" style="color:var(--accent); text-decoration:underline">行为准则</a>
</p> -->
</div>
</section>
<!-- 页脚 -->
<footer>
<div class="container">
<div class="footer-grid">
<div class="footer-col">
<div class="logo" style="color:white; font-size:1.8rem; margin-bottom:20px">
<i class="fas fa-heartbeat"></i> Agentic-CliniAI
</div>
<p>构建可信、安全、开源的临床智能工具,赋能全球医疗工作者</p>
<div class="social-links">
<a href="https://github.com/agentic-cliniai" aria-label="GitHub"><i class="fab fa-github"></i></a>
<!-- <a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="#" aria-label="Discord"><i class="fab fa-discord"></i></a> -->
</div>
</div>
<div class="footer-col">
<h3>资源</h3>
<a href="https://github.com/agentic-cliniai/roadmap">路线图</a>
<a href="https://github.com/agentic-cliniai/papers">研究论文</a>
<a href="https://github.com/agentic-cliniai/case-studies">案例研究</a>
<a href="https://github.com/agentic-cliniai/benchmarks">基准测试</a>
</div>
<!-- <div class="footer-col">
<h3>社区</h3>
<a href="https://github.com/agentic-cliniai/discussions">讨论区</a>
<a href="https://github.com/agentic-cliniai/events">线上活动</a>
<a href="https://github.com/agentic-cliniai/ambassadors">大使计划</a>
<a href="mailto:community@agentic-cliniai.org">联系社区</a>
</div> -->
<!-- <div class="footer-col">
<h3>合规</h3>
<a href="https://github.com/agentic-cliniai/ethics">伦理委员会</a>
<a href="https://github.com/agentic-cliniai/security">安全政策</a>
<a href="https://github.com/agentic-cliniai/privacy">隐私声明</a>
<a href="https://github.com/agentic-cliniai/compliance">合规文档</a>
</div> -->
</div>
<div class="copyright">
<p>© 2026 Agentic-CliniAI. 保留所有权利。本组织项目遵循 Apache 2.0 许可证。临床工具需经专业验证后使用。</p>
<p style="margin-top:8px; font-size:0.9rem; opacity:0.9">
Disclaimer: 本工具为辅助决策支持,不替代专业医疗判断。使用前请咨询医疗机构。
</p>
</div>
</div>
</footer>
<script>
// 移动端菜单切换
document.getElementById('menuToggle').addEventListener('click', function() {
document.getElementById('navLinks').classList.toggle('show');
});
// 导航栏滚动效果
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
// 平滑滚动
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if(targetId === '#') return;
const targetElement = document.querySelector(targetId);
if(targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// 关闭移动端菜单
document.getElementById('navLinks').classList.remove('show');
}
});
});
</script>
<script>
// Terminal Demo
const CASES = {
sle: {
stages: [
{ type: 'header', text: 'DermAgent — 皮肤科诊断Agent系统\nMulti-agent diagnostic system for dermatology' },
{ type: 'input', label: '主诉', text: '面部红斑3周' },
{ type: 'input', label: '年龄', text: '20' },
{ type: 'input', label: '性别', text: '女' },
{ type: 'stage', name: '主诉分析', detail: '初始印象: 接触性皮炎, 脂溢性皮炎, 玫瑰痤疮, SLE' },
{ type: 'sub', items: [
{ text: '▪ 接触性皮炎', color: 'cyan' },
{ text: '▪ 脂溢性皮炎', color: 'cyan' },
{ text: '▪ 玫瑰痤疮', color: 'cyan' },
{ text: '▪ 系统性红斑狼疮', color: 'cyan' },
{ text: '? 需确认分布区域、光敏感、接触史、全身症状', color: 'dim' },
]},
{ type: 'stage', name: '追问与检查规划 迭代#1', detail: '4 个追问 · 4 项检查' },
{ type: 'sub', items: [
{ text: 'Q1: 红斑分布在面部哪些区域? → 两边脸颊和鼻梁,对称,边界不清', color: 'default' },
{ text: 'Q2: 有无瘙痒灼热?是否日晒后加重? → 发烫发痒,晒太阳后明显加重', color: 'default' },
{ text: 'Q3: 发病前是否换过护肤品? → 最近换了新防晒霜和洗面奶', color: 'default' },
{ text: 'Q4: 有无口腔溃疡、脱发、关节痛、发热? → 没有溃疡和关节痛,但感觉累,有时低烧', color: 'default' },
{ text: '检查: 皮肤镜, ANA+dsDNA抗体, 皮肤病理, 斑贴试验', color: 'yellow' },
]},
{ type: 'stage', name: '多模态证据采集', detail: '体格检查完成' },
{ type: 'sub', items: [
{ text: '[physical] 皮肤散在皮疹; 未见特征性分布模式 (置信度: 0.4)', color: 'magenta' },
]},
{ type: 'stage', name: '知识检索', detail: '本地知识库 + Web Search + DermNet' },
{ type: 'sub', items: [
{ text: 'LLM诊断: 系统性红斑狼疮, 光变应性接触性皮炎, 玫瑰痤疮', color: 'cyan' },
]},
{ type: 'stage', name: 'Memory 1 · 知识融合', detail: '融合完成' },
{ type: 'stage', name: 'Check_Agent · 疾病验证', detail: '验证 5 个诊断' },
{ type: 'sub', items: [
{ text: '✘ 光变应性接触性皮炎 核心皮损停用后仍持续', color: 'red' },
{ text: '✘ 系统性红斑狼疮 毛细血管扩张更符合玫瑰痤疮,缺少血清学证据', color: 'red' },
]},
{ type: 'stage', name: '信息充分性评估', detail: '路由: → 追加追问' },
{ type: 'stage', name: '追问与检查规划 迭代#2', detail: '5 个追问 · 3 项检查' },
{ type: 'sub', items: [
{ text: 'Q5: 停用新护肤品后有无减轻? → 灼热稍减轻,红斑没完全消', color: 'default' },
{ text: 'Q6: 头皮眉毛鼻唇沟是否油腻发红? → 没有', color: 'default' },
{ text: 'Q7: 能否看到扩张的红血丝? → 能看到,一热就更明显', color: 'default' },
{ text: '检查: 皮肤镜, ANA+dsDNA+ENA抗体谱, 补体C3/C4+血常规+尿常规', color: 'yellow' },
]},
{ type: 'stage', name: '知识检索 搜索深度:2', detail: '+ DermNet + Orphanet + OMIM' },
{ type: 'stage', name: 'Memory 1 · 知识融合', detail: '融合完成 (迭代#2)' },
{ type: 'stage', name: 'Check_Agent · 疾病验证', detail: '验证 5 个诊断' },
{ type: 'sub', items: [
{ text: '✘ 光变应性接触性皮炎 持续皮损+系统症状无法解释', color: 'red' },
{ text: '✘ 系统性红斑狼疮 毛细血管扩张+丘疹更似玫瑰痤疮,缺少血清学证据', color: 'red' },
]},
{ type: 'stage', name: '信息充分性评估', detail: '路由: → 生成最终诊断' },
{ type: 'stage', name: 'Memory 2 · 最终诊断', detail: '生成 5 个鉴别诊断' },
{ type: 'sub', items: [
{ text: '#1 系统性红斑狼疮 (SLE) █████████░ 90%', color: 'default', bold: true },
{ text: ' 青年女性+蝶形红斑+光敏感+乏力低热 → 符合ACR标准', color: 'dim' },
{ text: '#2 SLE ███████░░░ 75%', color: 'default' },
{ text: '#3 玫瑰痤疮 ██████░░░░ 60%', color: 'default' },
{ text: '#4 亚急性皮肤型红斑狼疮 ████░░░░░░ 45%', color: 'default' },
{ text: '#5 SCLE ███░░░░░░░ 30%', color: 'default' },
]},
{ type: 'stage', name: '报告生成', detail: '报告已生成' },