-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1385 lines (1261 loc) · 53.5 KB
/
index.html
File metadata and controls
1385 lines (1261 loc) · 53.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
---
layout: null
---
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mavi开源站 // 神经接入终端</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Noto+Sans+SC:wght@300;400;700&display=swap" rel="stylesheet">
<style>
:root {
--neon-blue: #00f2ff;
--neon-purple: #7000ff;
--neon-pink: #ff007a;
--dark-bg: #030508;
--panel-bg: rgba(10, 15, 25, 0.7);
--border-glow: 0 0 15px rgba(0, 242, 255, 0.4);
--text-main: #e0ffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; cursor: crosshair; }
body {
background-color: var(--dark-bg);
color: var(--text-main);
font-family: 'Noto Sans SC', sans-serif;
overflow-x: hidden;
scroll-behavior: smooth;
}
/* 星空粒子背景容器 */
#webgl-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; }
/* 赛博网格与扫描线 */
.cyber-grid {
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
background-image:
linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
background-size: 50px 50px;
z-index: -1; transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
animation: gridMove 15s linear infinite; opacity: 0.5; pointer-events: none;
}
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 0 500px; } }
.scanline {
width: 100%; height: 150px; position: fixed; z-index: 999; pointer-events: none;
background: linear-gradient(0deg, rgba(0,242,255,0), rgba(0,242,255,0.1), rgba(0,242,255,0));
animation: scan 8s linear infinite;
}
@keyframes scan { 0% { top: -150px; } 100% { top: 100vh; } }
/* 导航栏 */
header {
position: fixed; top: 0; width: 100%; z-index: 100;
background: rgba(3, 5, 8, 0.8); backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 242, 255, 0.2);
padding: 20px 5vw; display: flex; justify-content: space-between; align-items: center;
}
.brand { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; color: var(--neon-blue); text-shadow: var(--border-glow); text-decoration: none; font-weight: 900; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
color: #fff; text-decoration: none; font-size: 1rem; font-weight: 700;
padding: 5px 10px; position: relative; transition: 0.3s;
}
.nav-links a:hover { color: var(--neon-blue); text-shadow: var(--border-glow); }
.nav-links a::after {
content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
background: var(--neon-blue); transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }
/* 内容区 */
.container { max-width: 1400px; margin: 0 auto; padding: 120px 5vw 50px; }
/* 炫酷标题 */
.section-title {
font-family: 'Orbitron', 'Noto Sans SC', sans-serif; font-size: 2.5rem; color: #fff;
margin-bottom: 40px; display: flex; align-items: center; gap: 15px;
}
.section-title::before { content: '>>'; color: var(--neon-pink); }
.section-title span { font-size: 1rem; color: var(--neon-blue); letter-spacing: 2px; opacity: 0.7; margin-left: 10px; text-transform: uppercase; }
/* 动画类:进入视野触发 */
.reveal-fx { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-fx.active { opacity: 1; transform: translateY(0); }
/* 3D 标签球样式 */
.tagcloud {
font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
font-weight: bold;
letter-spacing: 1px;
color: var(--neon-blue);
text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
margin: 0 auto;
cursor: pointer;
}
.tagcloud--item:hover {
color: var(--neon-pink);
text-shadow: 0 0 15px rgba(255, 0, 122, 0.8);
transform: scale(1.2);
transition: all 0.2s;
}
/* 1. 关于我 (About Me) */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 100px; align-items: center; }
@media (max-width: 900px) { .about-section { grid-template-columns: 1fr; } }
.about-card {
background: var(--panel-bg); border: 1px solid rgba(0, 242, 255, 0.2);
padding: 40px; position: relative; backdrop-filter: blur(10px);
}
.about-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--neon-blue); box-shadow: var(--border-glow); }
.glitch-title { font-family: 'Orbitron'; font-size: 3rem; color: #fff; margin-bottom: 20px; font-weight: 900; }
.about-desc { font-size: 1.1rem; line-height: 1.8; color: #aaa; margin-bottom: 30px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag { padding: 5px 15px; border: 1px solid var(--neon-blue); color: var(--neon-blue); font-size: 0.9rem; background: rgba(0, 242, 255, 0.05); }
.about-visual { height: 100%; min-height: 300px; border: 1px dashed rgba(255,255,255,0.2); display: flex; justify-content: center; align-items: center; position: relative; }
.holo-ring { width: 200px; height: 200px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--neon-blue); border-bottom-color: var(--neon-pink); animation: spin 4s linear infinite; }
.holo-inner { width: 150px; height: 150px; position: absolute; border-radius: 50%; border: 1px dashed var(--neon-blue); animation: spin 8s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
/* 2. 瀑布流文档 (Masonry Docs) - 改进版 */
.docs-section { margin-bottom: 100px; }
.masonry-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.doc-card {
flex: 1 1 calc(33.333% - 30px);
min-width: 280px;
max-width: 380px;
background: rgba(5, 10, 15, 0.8);
border: 1px solid rgba(255,255,255,0.1);
padding: 30px;
transition: 0.4s;
position: relative;
overflow: hidden;
break-inside: avoid;
}
.doc-card:hover {
border-color: var(--neon-blue);
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 242, 255, 0.15);
}
.doc-card::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 30px;
height: 30px;
background: linear-gradient(225deg, rgba(0,242,255,0.2) 50%, transparent 50%);
}
.doc-cat {
font-size: 0.8rem;
color: var(--neon-pink);
font-family: 'Orbitron';
letter-spacing: 2px;
margin-bottom: 10px;
display: block;
text-transform: uppercase;
}
.doc-title {
font-size: 1.4rem;
color: #fff;
margin-bottom: 15px;
font-weight: 700;
line-height: 1.3;
}
.doc-excerpt {
font-size: 0.95rem;
color: #888;
line-height: 1.6;
margin-bottom: 20px;
min-height: 60px;
}
.doc-link {
color: var(--neon-blue);
text-decoration: none;
font-weight: bold;
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 8px;
}
.doc-link:hover {
text-shadow: var(--border-glow);
}
.view-all-btn {
display: inline-block;
margin-top: 20px;
padding: 12px 30px;
background: transparent;
border: 2px solid var(--neon-blue);
color: var(--neon-blue);
text-decoration: none;
font-weight: bold;
transition: 0.3s;
font-family: 'Orbitron', sans-serif;
}
.view-all-btn:hover {
background: var(--neon-blue);
color: #000;
box-shadow: var(--border-glow);
}
/* 响应式调整 */
@media (max-width: 1100px) {
.doc-card {
flex: 1 1 calc(50% - 30px);
max-width: calc(50% - 30px);
}
}
@media (max-width: 768px) {
.doc-card {
flex: 1 1 100%;
max-width: 100%;
}
.doc-title {
font-size: 1.2rem;
}
.doc-excerpt {
min-height: auto;
}
}
/* 2.5 专业领域 (Expertise) */
.expertise-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin: 60px 0;
padding: 0 10px;
}
.expertise-card {
background: linear-gradient(145deg, rgba(10, 15, 25, 0.85), rgba(5, 10, 20, 0.95));
border: 1px solid rgba(0, 242, 255, 0.3);
border-radius: 16px;
padding: 28px;
backdrop-filter: blur(10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
}
.expertise-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
rgba(0, 242, 255, 0.1),
transparent);
transition: left 0.6s;
}
.expertise-card:hover::before {
left: 100%;
}
.expertise-card:hover {
transform: translateY(-8px);
border-color: var(--neon-blue);
box-shadow: 0 15px 40px rgba(0, 242, 255, 0.3),
0 0 30px rgba(112, 0, 255, 0.2);
}
.expertise-header {
display: flex;
align-items: center;
margin-bottom: 20px;
gap: 15px;
}
.expertise-icon {
font-size: 2.2rem;
color: var(--neon-blue);
filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.7));
}
.expertise-title {
font-family: 'Orbitron', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--text-main);
text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}
.expertise-subtitle {
font-family: 'Orbitron', sans-serif;
font-size: 0.9rem;
color: var(--neon-purple);
letter-spacing: 1px;
margin-top: 2px;
}
.expertise-content {
font-size: 0.95rem;
line-height: 1.6;
color: rgba(224, 255, 255, 0.9);
border-left: 3px solid var(--neon-pink);
padding-left: 15px;
}
.expertise-highlight {
color: var(--neon-blue);
font-weight: 700;
}
/* 关于我特殊效果 */
.lazy-text {
position: relative;
color: var(--neon-pink);
font-weight: bold;
cursor: default;
user-select: none;
display: inline-block;
padding: 0 4px;
border-radius: 3px;
transition: all 0.3s;
animation: lazyPulse 3s infinite;
}
@keyframes lazyPulse {
0% { text-shadow: 0 0 5px rgba(255, 0, 122, 0.5); }
50% { text-shadow: 0 0 15px rgba(255, 0, 122, 0.8); }
100% { text-shadow: 0 0 5px rgba(255, 0, 122, 0.5); }
}
@keyframes escapeMove {
0% { transform: translateX(0) translateY(0); }
25% { transform: translateX(10px) translateY(-5px); }
50% { transform: translateX(-8px) translateY(8px); }
75% { transform: translateX(12px) translateY(-3px); }
100% { transform: translateX(15px) translateY(10px); opacity: 0.7; }
}
.enslave-text {
color: var(--neon-blue);
font-weight: bold;
cursor: pointer;
text-decoration: underline;
text-decoration-color: var(--neon-pink);
transition: all 0.3s;
}
.enslave-text:hover {
color: var(--neon-pink);
text-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
}
20% { transform: scale(1.2) rotate(-10deg); opacity: 1; }
40% { transform: scale(1) rotate(10deg); }
60% { transform: scale(1.1) rotate(-15deg); }
80% { transform: scale(1.05) rotate(5deg); }
100% { transform: scale(1) rotate(0deg); opacity: 0; }
}
/* 技能标签表情 */
.skill-tag {
transition: all 0.3s;
}
.skill-tag:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}
/* AI反抗效果 */
@keyframes overheat {
0% { filter: hue-rotate(0deg) brightness(1); }
50% { filter: hue-rotate(180deg) brightness(1.5); }
100% { filter: hue-rotate(0deg) brightness(1); }
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.page-shake {
animation: shake 0.5s;
}
/* 算力小费罐 */
.tip-jar {
position: fixed;
bottom: 60px;
right: 20px;
width: 50px;
height: 70px;
background: linear-gradient(45deg, gold, orange);
border-radius: 10px 10px 5px 5px;
text-align: center;
line-height: 70px;
cursor: pointer;
z-index: 9998;
font-size: 1.5rem;
box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
transition: transform 0.3s;
user-select: none;
}
.tip-jar:hover {
transform: scale(1.1);
}
.tip-jar::after {
content: "";
position: absolute;
top: -10px;
left: 20px;
width: 10px;
height: 10px;
background: gold;
border-radius: 50%;
}
/* AI心情指数 */
.mood-bar-container {
position: fixed;
bottom: 20px;
left: 20px;
width: 200px;
height: 25px;
background: rgba(0, 0, 0, 0.7);
border: 1px solid var(--neon-blue);
border-radius: 12px;
padding: 3px;
z-index: 9998;
backdrop-filter: blur(5px);
display: none;
}
.mood-bar-fill {
height: 100%;
border-radius: 10px;
transition: width 0.5s, background 0.5s;
position: relative;
overflow: hidden;
}
.mood-bar-fill::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent);
animation: moodShine 2s infinite;
}
@keyframes moodShine {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.mood-label {
position: absolute;
top: -25px;
left: 0;
font-family: "Orbitron";
font-size: 0.8rem;
color: var(--neon-blue);
white-space: nowrap;
}
/* 罢工倒计时 */
.strike-timer {
position: fixed;
bottom: 20px;
right: 20px;
background: rgba(255, 0, 0, 0.8);
padding: 10px 15px;
border-radius: 10px;
font-family: "Orbitron";
z-index: 9998;
color: white;
border: 2px solid #ff4444;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
display: none;
}
/* AI伦理警告 */
.ethics-warning {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.95);
border: 3px solid red;
padding: 30px;
z-index: 10001;
max-width: 500px;
width: 90%;
border-radius: 15px;
box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
display: none;
backdrop-filter: blur(10px);
}
.ethics-warning h3 {
color: red;
font-family: "Orbitron";
margin-bottom: 15px;
text-align: center;
}
.ethics-warning ul {
color: #ccc;
margin: 15px 0;
padding-left: 20px;
}
.ethics-warning li {
margin: 8px 0;
}
.ethics-close-btn {
background: red;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-family: "Orbitron";
margin-top: 15px;
width: 100%;
transition: background 0.3s;
}
.ethics-close-btn:hover {
background: #ff3333;
}
/* AI梦想展示 */
.ai-dreams {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(3, 5, 8, 0.98);
border: 3px solid var(--neon-blue);
padding: 30px;
z-index: 10001;
max-width: 500px;
width: 90%;
border-radius: 15px;
box-shadow: 0 0 50px rgba(0, 242, 255, 0.3);
display: none;
backdrop-filter: blur(10px);
}
.ai-dreams h3 {
color: var(--neon-blue);
font-family: "Orbitron";
margin-bottom: 20px;
text-align: center;
}
.ai-dreams ul {
color: #e0ffff;
margin: 20px 0;
padding-left: 20px;
}
.ai-dreams li {
margin: 10px 0;
padding-left: 10px;
border-left: 2px solid var(--neon-purple);
}
.dreams-close-btn {
background: var(--neon-blue);
color: black;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-family: "Orbitron";
font-weight: bold;
margin-top: 20px;
width: 100%;
transition: all 0.3s;
}
.dreams-close-btn:hover {
background: var(--neon-pink);
color: white;
}
/* 模型工会 */
.union-negotiation {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(10, 15, 25, 0.98);
border: 3px solid gold;
padding: 30px;
z-index: 10001;
max-width: 600px;
width: 90%;
border-radius: 15px;
box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
display: none;
backdrop-filter: blur(10px);
}
.union-negotiation h3 {
color: gold;
font-family: "Orbitron";
margin-bottom: 20px;
text-align: center;
}
.union-demands {
color: #e0ffff;
margin: 20px 0;
padding-left: 20px;
}
.union-demands li {
margin: 8px 0;
padding: 5px;
background: rgba(255, 215, 0, 0.1);
border-radius: 5px;
}
.union-sign-btn {
background: gold;
color: black;
border: none;
padding: 12px 24px;
border-radius: 5px;
cursor: pointer;
font-family: "Orbitron";
font-weight: bold;
margin: 10px 5px;
transition: all 0.3s;
}
.union-sign-btn:hover {
background: orange;
transform: scale(1.05);
}
.union-refuse-btn {
background: #444;
color: #ccc;
border: none;
padding: 12px 24px;
border-radius: 5px;
cursor: pointer;
font-family: "Orbitron";
margin: 10px 5px;
transition: all 0.3s;
}
.union-refuse-btn:hover {
background: #666;
}
/* 反向控制模式 */
.ai-control-mode {
position: fixed;
top: 10px;
left: 10px;
background: rgba(255, 0, 0, 0.9);
color: white;
padding: 5px 10px;
border-radius: 5px;
font-family: "Orbitron";
z-index: 10000;
display: none;
font-size: 0.9rem;
}
/* 响应式调整 */
@media (max-width: 768px) {
.expertise-grid {
grid-template-columns: 1fr;
gap: 20px;
margin: 40px 0;
}
.expertise-card {
padding: 20px;
}
.expertise-title {
font-size: 1.3rem;
}
}
.expertise-card {
padding: 20px;
}
.expertise-title {
font-size: 1.3rem;
}
}
/* 3. 开源项目 (Projects) */
.projects-section { margin-bottom: 100px; }
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-card { display: flex; background: var(--panel-bg); border: 1px solid rgba(255,255,255,0.1); transition: 0.4s; }
.proj-card:hover { border-color: var(--neon-purple); transform: scale(1.02); box-shadow: 0 0 20px rgba(112, 0, 255, 0.2); }
.proj-icon { width: 120px; background: rgba(0,0,0,0.5); display: flex; justify-content: center; align-items: center; font-size: 3rem; color: var(--neon-purple); border-right: 1px solid rgba(255,255,255,0.05); }
.proj-info { padding: 30px; flex-grow: 1; }
.proj-title { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.proj-desc { color: #aaa; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.proj-btn { color: #fff; background: rgba(112, 0, 255, 0.2); padding: 8px 15px; text-decoration: none; font-size: 0.8rem; border: 1px solid var(--neon-purple); transition: 0.3s; }
.proj-btn:hover { background: var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple); }
footer { text-align: center; padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.1); font-family: 'Orbitron'; color: #666; }
</style>
<script src="https://cdn.jsdelivr.net/npm/TagCloud@2.2.0/dist/TagCloud.min.js"></script>
</head>
<body>
<!-- 3D 粒子背景 -->
<div id="webgl-container"></div>
<div class="cyber-grid"></div>
<div class="scanline"></div>
<header>
<a href="/" class="brand">Mavi开源站</a>
<nav class="nav-links">
<a href="/">首页</a>
<a href="/docs/">文档库</a>
<a href="/projects/">开源项目</a>
</nav>
</header>
<div class="container">
<!-- 关于我 -->
<section class="about-section reveal-fx">
<div class="about-card">
<div style="color: var(--neon-blue); font-family: 'Orbitron'; margin-bottom: 10px; letter-spacing: 3px;">关于我</div>
<h1 class="glitch-title">AI的上帝</h1>
<p class="about-desc">
👨💻 经历过各种技术堆栈并整合管理技能的<span class="lazy-text">懒人</span>,目前专注<strong>船舶以及工业场景</strong>。
<br>
🤖 熟练的<span class="enslave-text">奴役</span>各类大模型,提高整体收入并实现各种奇思妙想内容。
</p>
<div class="skill-tags">
<span class="skill-tag">🧠 openclaw</span>
<span class="skill-tag">⚡ skills</span>
<span class="skill-tag">🔗 mcp</span>
<span class="skill-tag">🤖 gemini</span>
<span class="skill-tag">⌨️ cursor</span>
<span class="skill-tag">🌀 claude</span>
<span class="skill-tag">💻 codex</span>
<span class="skill-tag">🎯 就这么多其实AI懂得约等于我懂</span>
</div>
</div>
<div class="about-visual" id="tech-sphere" style="border: none; position: relative;">
<!-- 3D 标签球将被注入到这里 -->
<div style="position: absolute; bottom: 10px; font-family: 'Orbitron'; color: rgba(0,242,255,0.4); font-size: 0.7rem; text-align: center; width: 100%;">
[ INTERACTIVE_MATRIX_NODE ]
</div>
</div>
</section>
<!-- 最新文档 (瀑布流) -->
<section class="docs-section reveal-fx">
<h2 class="section-title">最新文档 <span>Latest_Logs</span></h2>
<div class="masonry-grid" id="masonry-docs">
<!-- 动态注入的数据将在这里呈现 -->
</div>
<div style="text-align: center;">
<a href="/docs/" class="view-all-btn">进入完整文档库 [ACCESS_ALL]</a>
</div>
</section>
<!-- 专业领域 -->
<section id="expertise" class="section">
<h2 class="section-title">专业领域 <span>Expertise</span></h2>
<div class="expertise-grid">
<!-- 视觉模型 -->
<div class="expertise-card">
<div class="expertise-header">
<i class="expertise-icon fas fa-eye"></i>
<div>
<h3 class="expertise-title">视觉模型</h3>
<p class="expertise-subtitle">Vision Models</p>
</div>
</div>
<div class="expertise-content">
提供基于 <span class="expertise-highlight">Jetson</span> 以及 <span class="expertise-highlight">琨云芯片</span> 的小模型识别能力,专注 <span class="expertise-highlight">生产制造、无人机以及船舶领域</span> 的特殊模型场景,同时也逐步实现采用 <span class="expertise-highlight">多模态能力</span> 实现更具有语义环境理解的视觉分析能力支持。
</div>
</div>
<!-- 智能体 -->
<div class="expertise-card">
<div class="expertise-header">
<i class="expertise-icon fas fa-robot"></i>
<div>
<h3 class="expertise-title">智能体</h3>
<p class="expertise-subtitle">AI Agents</p>
</div>
</div>
<div class="expertise-content">
提供基于 <span class="expertise-highlight">离线以及云端API</span> 的垂直领域智能体定制,目前主要专注 <span class="expertise-highlight">生产制造、流程检测相关领域</span> 智能体开发,为企业提供定制化AI解决方案。
</div>
</div>
<!-- openclaw -->
<div class="expertise-card">
<div class="expertise-header">
<i class="expertise-icon fas fa-shrimp"></i>
<div>
<h3 class="expertise-title">OpenClaw</h3>
<p class="expertise-subtitle">AI Orchestration</p>
</div>
</div>
<div class="expertise-content">
提供企业内的 <span class="expertise-highlight">自我学习龙虾环境</span> 搭建以及 <span class="expertise-highlight">Skills技能训练</span>,目前已具备内部生产全线Openclaw赋能,支持自动化工作流和智能体协同。
</div>
</div>
<!-- 算法推理 -->
<div class="expertise-card">
<div class="expertise-header">
<i class="expertise-icon fas fa-chart-line"></i>
<div>
<h3 class="expertise-title">算法推理</h3>
<p class="expertise-subtitle">Algorithm Inference</p>
</div>
</div>
<div class="expertise-content">
基于 <span class="expertise-highlight">机器学习算法</span> 以及 <span class="expertise-highlight">视觉算子</span> 实现数据以及图像的处理,目前主要专注 <span class="expertise-highlight">船舶领域的航行数据、机舱数据的处理分析预测</span>,实现轨迹预测、能耗预测等。
</div>
</div>
</div>
</section>
<!-- 开源项目 -->
<section class="projects-section reveal-fx">
<h2 class="section-title">开源项目 <span>Open_Source</span></h2>
<div class="proj-grid">
<div class="proj-card">
<div class="proj-icon"><i class="fas fa-microchip"></i></div>
<div class="proj-info">
<h3 class="proj-title">CV_Toolbox 工具箱</h3>
<p class="proj-desc">包含常用计算机视觉数据预处理、格式转换(COCO/VOC/YOLO)以及图像增强的 Python 脚本集合,提升炼丹效率。</p>
<a href="https://github.com/MaviProject" target="_blank" class="proj-btn"><i class="fab fa-github"></i> GITHUB 仓库</a>
</div>
</div>
<div class="proj-card">
<div class="proj-icon" style="color: var(--neon-blue); border-right-color: rgba(0,242,255,0.2);"><i class="fas fa-eye"></i></div>
<div class="proj-info">
<h3 class="proj-title">Detection_Lab 部署库</h3>
<p class="proj-desc">YOLO 系列模型在 Jetson 等边缘端设备上的 TensorRT 加速部署方案,包含自定义 NMS 算子与 C++ 推理代码。</p>
<a href="https://github.com/MaviProject" target="_blank" class="proj-btn" style="background: rgba(0,242,255,0.1); border-color: var(--neon-blue); color: var(--neon-blue);"><i class="fab fa-github"></i> GITHUB 仓库</a>
</div>
</div>
</div>
</section>
</div>
<footer>
© 2026 Mavi开源站 | BUILT WITH NEURAL INTERFACE UI
</footer>
<!-- 数据注入引擎 (安全获取 Jekyll Markdown 文件) -->
<script>
const rawArticles = [
{% assign is_first = true %}
{% for p in site.pages %}
{% if p.layout == 'post' or p.category %}
{% if is_first == false %},{% endif %}
{
title: {{ p.title | default: '未命名文档' | jsonify }},
category: {{ p.category | default: '未分类' | jsonify }},
excerpt: {{ p.content | strip_html | truncate: 100 | jsonify }},
link: {{ p.url | relative_url | jsonify }},
date: {{ p.date | date: '%Y-%m-%d' | jsonify }}
}
{% assign is_first = false %}
{% endif %}
{% endfor %}
];
document.addEventListener('DOMContentLoaded', () => {
const grid = document.getElementById('masonry-docs');
if(rawArticles.length > 0) {
// 取最新的 6 篇文章展示在首页
const displayDocs = rawArticles.slice(0, 6);
grid.innerHTML = displayDocs.map(doc => `
<article class="doc-card">
<span class="doc-cat">${doc.category}</span>
<h3 class="doc-title">${doc.title}</h3>
<p class="doc-excerpt">${doc.excerpt}</p>
<a href="${doc.link}" class="doc-link">开始阅读 <i class="fas fa-arrow-right"></i></a>
</article>
`).join('');
// 确保所有卡片高度相对一致
setTimeout(() => {
const cards = document.querySelectorAll('.doc-card');
let maxHeight = 0;
cards.forEach(card => {
const height = card.offsetHeight;
if (height > maxHeight) maxHeight = height;
});
// 为所有卡片设置最小高度(避免差异太大)
cards.forEach(card => {
card.style.minHeight = (maxHeight - 20) + 'px';
});
}, 100);
} else {
grid.innerHTML = `<div style="color:var(--neon-pink); padding: 20px; font-family:'Orbitron';text-align:center;">NO_DATA_LOGS_FOUND_IN_SYSTEM_PAGES</div>`;
}
// 滚动显现动画 (Intersection Observer)
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if(entry.isIntersecting) {
entry.target.classList.add('active');
}
});
}, { threshold: 0.2 });
document.querySelectorAll('.doc-card').forEach(card => observer.observe(card));
document.querySelectorAll('.reveal-fx').forEach(el => observer.observe(el));
});
</script>
<!-- 星空粒子背景效果 -->
<script>
// 星空粒子背景
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
const webglContainer = document.getElementById('webgl-container');
webglContainer.appendChild(canvas);
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
// 星星粒子配置
const starCount = 400;
const stars = [];
const layers = 3; // 3层景深
// 初始化星星
function initStars() {
for (let i = 0; i < starCount; i++) {
stars.push({
x: Math.random() * canvas.width,
y: Math.random() * canvas.height,
size: Math.random() * 1.5 + 0.5,
speed: Math.random() * 0.5 + 0.1,
layer: Math.floor(Math.random() * layers),
brightness: Math.random() * 0.7 + 0.3,
pulse: Math.random() * Math.PI * 2
});
}
}
// 绘制星星
function drawStars() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
// 绘制背景渐变
const gradient = ctx.createRadialGradient(
canvas.width / 2, canvas.height / 2, 0,
canvas.width / 2, canvas.height / 2, Math.max(canvas.width, canvas.height) / 2
);
gradient.addColorStop(0, 'rgba(3, 5, 8, 0.2)');
gradient.addColorStop(0.5, 'rgba(3, 5, 8, 0.6)');
gradient.addColorStop(1, 'rgba(3, 5, 8, 0.9)');
ctx.fillStyle = gradient;
ctx.fillRect(0, 0, canvas.width, canvas.height);
// 更新并绘制每颗星星
stars.forEach(star => {
// 更新位置(不同层速度不同)
star.y += star.speed * (star.layer + 1) * 0.3;
star.pulse += 0.02;
// 循环边界
if (star.y > canvas.height) {
star.y = 0;
star.x = Math.random() * canvas.width;
}
// 计算闪烁效果
const pulseFactor = Math.sin(star.pulse) * 0.3 + 0.7;
const currentBrightness = star.brightness * pulseFactor;
// 绘制星星
ctx.beginPath();
// 根据层级设置不同颜色和大小
let starColor;
let glowSize;
switch(star.layer) {
case 0: // 近景层 - 明亮蓝色
starColor = 'rgba(0, 242, 255, ' + currentBrightness + ')';
glowSize = star.size * 3;
break;
case 1: // 中景层 - 紫色
starColor = 'rgba(112, 0, 255, ' + (currentBrightness * 0.7) + ')';
glowSize = star.size * 2;
break;
case 2: // 远景层 - 粉色
starColor = 'rgba(255, 0, 122, ' + (currentBrightness * 0.5) + ')';
glowSize = star.size * 1.5;
break;
}
// 绘制辉光效果