-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1887 lines (1723 loc) · 90.6 KB
/
Copy pathindex.html
File metadata and controls
1887 lines (1723 loc) · 90.6 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" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover">
<meta name="description" content="ZYMCT - 流畅安全的致月生态矩阵">
<meta name="theme-color" content="#f8fbfd">
<!-- Cloudflare 底层网络优化 -->
<link rel="dns-prefetch" href="https://yejzzy.com">
<link rel="dns-prefetch" href="https://world.zymct.com">
<link rel="preconnect" href="https://yejzzy.com" crossorigin>
<link rel="preconnect" href="https://world.zymct.com" crossorigin>
<!-- 预加载首屏最重要的 Logo 图像资源 -->
<link rel="preload" as="image" href="https://vip.123pan.cn/1812579799/yk6baz03t0l000dc5iqel5gy6yzv0pvaDIYPDqJ0BIU2BGxzDwU0.png">
<link rel="icon" type="image/png" href="https://vip.123pan.cn/1812579799/yk6baz03t0l000dc5iqel5gy6yzv0pvaDIYPDqJ0BIU2BGxzDwU0.png">
<meta property="og:title" content="ZYMCT · 致月生态">
<meta property="og:description" content="探索 ZYMCT 产品矩阵。流畅、安全、且充满热爱。">
<title>ZYMCT · 致月生态</title>
<style>
/* =========================================
1. 核心主题变量
========================================= */
:root {
--bg-base: #07111f;
--text-main: #eef5fb;
--text-muted: #91a6ba;
--card-bg: rgba(13, 27, 44, 0.78);
--card-border: rgba(132, 164, 196, 0.15);
--card-hover: rgba(17, 36, 58, 0.92);
--accent: #5f91ef;
--accent-blue: #65a3ff;
--accent-pink: #53c6d9;
--accent-purple: #7aa4c7;
--glass-2: rgba(166, 197, 226, 0.025);
--glass-4: rgba(166, 197, 226, 0.045);
--glass-5: rgba(166, 197, 226, 0.065);
--glass-8: rgba(166, 197, 226, 0.1);
--glass-10: rgba(166, 197, 226, 0.13);
--glass-15: rgba(166, 197, 226, 0.18);
--glass-30: rgba(166, 197, 226, 0.3);
--btn-inner-bg: rgba(9, 20, 34, 0.96);
--halo-track: rgba(132, 164, 196, 0.15);
--halo-glow: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
--smooth-curve: cubic-bezier(0.16, 1, 0.3, 1);
--spring-curve: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-theme="light"] {
--bg-base: #f8fbfd;
--text-main: #12213b;
--text-muted: #60748d;
--card-bg: rgba(255, 255, 255, 0.9);
--card-border: rgba(18, 33, 59, 0.09);
--card-hover: rgba(255, 255, 255, 1);
--accent: #2e63e8;
--btn-inner-bg: #ffffff;
--halo-track: rgba(18, 33, 59, 0.08);
--halo-glow: drop-shadow(0 8px 18px rgba(18, 33, 59, 0.08));
--accent-blue: #2e63e8;
--accent-pink: #23b8d1;
--accent-purple: #38577a;
--glass-2: rgba(18, 33, 59, 0.018);
--glass-4: rgba(18, 33, 59, 0.035);
--glass-5: rgba(18, 33, 59, 0.045);
--glass-8: rgba(18, 33, 59, 0.075);
--glass-10: rgba(18, 33, 59, 0.1);
--glass-15: rgba(18, 33, 59, 0.14);
--glass-30: rgba(18, 33, 59, 0.24);
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: none; }
html, body { height: 100%; scroll-behavior: smooth; }
body {
margin: 0;
color: var(--text-main);
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-base);
overflow-x: hidden;
padding-top: env(safe-area-inset-top);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
touch-action: manipulation;
transition: background-color 0.5s var(--smooth-curve), color 0.5s var(--smooth-curve);
}
::selection { background: rgba(46, 99, 232, 0.24); color: #fff; }
:focus-visible {
outline: 3px solid rgba(46, 99, 232, 0.72);
outline-offset: 4px;
}
/* =========================================
3. 顶部 Logo
========================================= */
.site-logo {
position: absolute;
top: max(24px, env(safe-area-inset-top));
left: max(24px, env(safe-area-inset-left));
z-index: 9999;
display: flex;
align-items: center;
height: 64px;
opacity: 0;
animation: fadeIn 1s 0.8s forwards;
user-select: none;
-webkit-user-drag: none;
pointer-events: auto;
cursor: pointer;
}
.site-logo img { height: 100%; width: auto; aspect-ratio: 3125 / 2000; object-fit: contain; }
/* =========================================
流体极光背景 & 科幻网格 (空间张力)
========================================= */
.fluid-aurora {
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
z-index: -1; overflow: hidden; pointer-events: none;
background:
radial-gradient(ellipse 72% 52% at 12% -12%, rgba(50, 104, 174, 0.18), transparent 64%),
radial-gradient(ellipse 58% 42% at 94% 106%, rgba(42, 145, 158, 0.09), transparent 68%),
linear-gradient(180deg, #07111f 0%, #060e19 58%, #081321 100%);
transition: background 0.5s var(--smooth-curve);
}
.aurora-blob {
position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0;
animation: floatAura 25s infinite alternate linear; will-change: transform; transform: translateZ(0);
}
[data-theme="light"] .fluid-aurora {
background: linear-gradient(180deg, #fbfdff 0%, #f8fbfd 52%, #f5f9fc 100%);
}
[data-theme="light"] .aurora-blob { opacity: 0; }
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--accent-blue), transparent 60%); }
.blob-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, var(--accent), transparent 60%); animation-duration: 30s; animation-direction: alternate-reverse; }
.blob-3 { top: 40%; left: 30%; width: 40vw; height: 40vw; background: radial-gradient(circle, var(--accent-pink), transparent 60%); animation-duration: 35s; opacity: 0.15; }
/* 赋予极简生态一种空间刻度感 */
.hero-grid {
position: absolute; inset: 0; z-index: 0; pointer-events: none;
background-image: linear-gradient(to right, var(--glass-5) 1px, transparent 1px),
linear-gradient(to bottom, var(--glass-5) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: radial-gradient(circle at center, black 10%, transparent 60%);
-webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 60%);
opacity: 0;
animation: fadeIn 3s ease 1s forwards;
}
[data-theme="dark"] .hero-grid {
background-image: linear-gradient(to right, rgba(148, 180, 210, 0.025) 1px, transparent 1px),
linear-gradient(to bottom, rgba(148, 180, 210, 0.025) 1px, transparent 1px);
background-size: 72px 72px;
mask-image: radial-gradient(circle at center, black 0%, transparent 62%);
-webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 62%);
}
[data-theme="light"] .hero-grid {
background-image: none;
}
@keyframes floatAura {
0% { transform: translate(0, 0) scale(1) translateZ(0); }
100% { transform: translate(10%, 15%) scale(1.1) translateZ(0); }
}
/* =========================================
4. Halo 3.0 伪元素流光悬浮按钮
========================================= */
.lang-toggle {
--scroll-pct: 0deg;
position: fixed;
top: calc(max(24px, env(safe-area-inset-top)) + 12px);
right: max(24px, env(safe-area-inset-right));
z-index: 9999;
appearance: none; background: none; border: none;
display: flex; align-items: center; cursor: pointer;
padding: 0; border-radius: 99px; overflow: hidden;
filter: var(--halo-glow);
transition: transform 0.3s var(--smooth-curve);
opacity: 0; animation: fadeIn 1s 0.8s forwards;
}
.lang-toggle::before {
content: ''; position: absolute; inset: 0; z-index: -1;
background: conic-gradient(from 0deg, var(--accent-blue), var(--accent-pink), var(--accent-purple), var(--accent-blue) var(--scroll-pct), var(--halo-track) var(--scroll-pct));
transition: background 0.3s;
}
[data-theme="dark"] .lang-toggle::before {
background: conic-gradient(from -90deg, #5f91ef 0deg, #53c6d9 var(--scroll-pct), rgba(132, 164, 196, 0.15) var(--scroll-pct), rgba(132, 164, 196, 0.15) 360deg);
}
[data-theme="light"] .lang-toggle::before {
background: conic-gradient(from -90deg, #2e63e8 0deg, #23b8d1 var(--scroll-pct), rgba(18, 33, 59, 0.1) var(--scroll-pct), rgba(18, 33, 59, 0.1) 360deg);
}
.lang-toggle-inner {
display: flex; align-items: center; gap: 6px; margin: 2px; padding: 8px 16px;
background: var(--btn-inner-bg); border-radius: 99px; color: var(--text-main); font-size: 14px; font-weight: 600;
backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: background-color 0.5s;
}
.lang-toggle:hover { transform: translateY(-2px) scale(1.02); }
.lang-toggle svg { width: 18px; height: 18px; }
/* =========================================
滚动揭示动画 (极致丝滑、零迟钝感)
========================================= */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: opacity 0.75s var(--smooth-curve), transform 0.75s var(--smooth-curve); will-change: opacity, transform; }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
/* =========================================
首屏:发光大标题与 Apple 级 Hello 动画
========================================= */
.hero-landing { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; perspective: 1200px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 99px; background: var(--glass-5); border: 1px solid var(--glass-10); color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-bottom: 32px; letter-spacing: 2px; animation: fadeInDown 1.5s var(--smooth-curve) 0.4s forwards; opacity: 0; position: relative; z-index: 2; }
[data-theme="dark"] .badge {
background: rgba(14, 28, 45, 0.78);
border-color: rgba(144, 177, 207, 0.16);
color: #a9bacb;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 30px rgba(0, 0, 0, 0.18);
}
[data-theme="light"] .badge {
background: rgba(236, 243, 248, 0.78);
border-color: rgba(56, 87, 122, 0.18);
color: #38577a;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(18, 33, 59, 0.045);
}
/* 摄影级失焦拉近特效 (Cinematic Focus Pull) */
@keyframes cinematicReveal {
0% { opacity: 0; transform: scale(1.25) translateY(30px); filter: blur(24px); }
100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
/* 优化性能:开启 GPU 加速,支持 3D Transform 倾斜 */
.hero-glow-title {
font-size: clamp(3rem, 12vw, 8.5rem);
font-weight: 900;
letter-spacing: -2px;
margin: 0;
line-height: 1.1;
background: linear-gradient(
108deg,
#f3f8fc 0%,
#dce9f3 18%,
#7899b7 31%,
#78c8d6 42%,
#5f91ef 53%,
#abc9e4 66%,
#f3f8fc 80%,
#6799ef 100%
);
background-size: 225% 100%;
-webkit-background-clip: text;
color: transparent;
/* 结合色彩流转与电影级对焦出场 */
animation: nightGlacierFlow 24s cubic-bezier(0.45, 0, 0.2, 1) infinite, cinematicReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
text-shadow: 0 18px 54px rgba(0, 5, 14, 0.34), 0 1px 0 rgba(255, 255, 255, 0.1);
opacity: 0;
z-index: 2;
text-align: center;
transform-style: preserve-3d;
will-change: transform, filter, opacity;
transition: transform 0.15s cubic-bezier(0.1, 1, 0.3, 1); /* 极致跟手的阻尼感 */
}
[data-theme="light"] .hero-glow-title {
background-image: linear-gradient(
108deg,
#12213b 0%,
#1c3154 14%,
#38577a 24%,
#b9e4ed 34%,
#2e63e8 44%,
#3f86e5 57%,
#23b8d1 70%,
#a8e4ec 80%,
#2e63e8 90%,
#12213b 100%
);
background-size: 230% 100%;
background-clip: text;
-webkit-background-clip: text;
text-shadow: 0 18px 42px rgba(18, 33, 59, 0.07);
animation: glacierFlow 20s cubic-bezier(0.45, 0, 0.2, 1) infinite, cinematicReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
will-change: background-position, transform, filter, opacity;
}
/* Apple-style Hello Animation */
.apple-hello-wrapper {
margin-top: 16px;
min-height: 48px;
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
opacity: 0;
animation: fadeIn 2s var(--smooth-curve) 1s forwards;
}
.apple-hello-text {
font-size: clamp(1.8rem, 6vw, 2.5rem);
font-weight: 300;
letter-spacing: 2px;
background: linear-gradient(135deg, var(--text-main), var(--text-muted));
-webkit-background-clip: text;
color: transparent;
transition: opacity 1s var(--smooth-curve), filter 1s var(--smooth-curve), transform 1s var(--smooth-curve);
opacity: 1;
filter: blur(0px);
transform: translateY(0) scale(1);
will-change: filter, transform, opacity;
}
.apple-hello-text.hide {
opacity: 0;
filter: blur(12px);
transform: translateY(8px) scale(0.95);
}
/* =========================================
向下滚动引导
========================================= */
.scroll-prompt {
position: absolute;
bottom: 40px;
display: flex; flex-direction: column; align-items: center; gap: 10px;
color: var(--text-main); font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
animation: fadeIn 2s 1.5s forwards; cursor: pointer; opacity: 0; z-index: 2; padding: 10px;
}
.scroll-prompt span { opacity: 0.6; font-weight: 500; transition: opacity 0.3s; }
.scroll-prompt svg { width: 24px; height: 24px; color: var(--accent-blue); filter: drop-shadow(0 4px 8px rgba(46, 99, 232, 0.24)); animation: arrowBounce 2s infinite ease-in-out; }
/* =========================================
Slogan 视觉张力重构
========================================= */
.slogan-section { padding: 140px 20px 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; max-width: 800px; margin: 0 auto; }
.slogan-brand {
font-size: clamp(0.8rem, 2vw, 0.95rem);
font-weight: 700;
letter-spacing: 6px;
text-transform: uppercase;
margin: 0 0 20px;
color: var(--accent-blue);
opacity: 0.8;
transform: translateX(3px);
}
.slogan-title {
font-size: clamp(2.4rem, 7vw, 4.8rem);
font-weight: 800;
line-height: 1.15;
margin: 0 0 24px;
letter-spacing: -1.5px;
}
.slogan-title span.gradient-text { background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.slogan-and {
font-weight: 300;
font-style: italic;
opacity: 0.5;
font-size: 0.65em;
margin: 0 10px;
}
.slogan-desc {
font-size: clamp(1rem, 2.5vw, 1.2rem);
color: var(--text-muted);
margin: 0;
font-weight: 400;
max-width: 540px;
line-height: 1.6;
}
/* =========================================
便当盒布局 (Bento Grid) - Dense 排列
========================================= */
.bento-container { max-width: 1200px; margin: 0 auto; padding: 0 20px 100px; }
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 24px; grid-auto-flow: dense; perspective: 1200px; }
@media (min-width: 800px) {
.bento-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(220px, auto); }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.row-span-2 { grid-row: span 2; }
}
/* =========================================
满血卡片悬停动效:光影追踪 + 3D物理倾斜
========================================= */
.bento-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 28px;
padding: 36px 32px;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
transition: transform 0.4s var(--smooth-curve), box-shadow 0.4s var(--smooth-curve), border-color 0.4s var(--smooth-curve), background 0.4s;
text-decoration: none;
color: inherit;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
transform-style: preserve-3d;
will-change: transform, box-shadow; /* 开启性能加速 */
}
[data-theme="light"] .bento-card { box-shadow: 0 10px 34px rgba(18, 33, 59, 0.055); }
/* 注入磁性探照灯 (Spotlight) 伪元素 */
.bento-card::before {
content: '';
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.08), transparent 40%);
opacity: 0;
transition: opacity 0.5s var(--smooth-curve);
}
[data-theme="light"] .bento-card::before {
background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,0,0,0.04), transparent 40%);
}
/* 基础悬停发光 */
.bento-card:hover { border-color: rgba(101, 163, 255, 0.3); box-shadow: 0 24px 48px rgba(0, 4, 12, 0.3), 0 0 24px rgba(83, 198, 217, 0.055); }
[data-theme="light"] .bento-card:hover { border-color: rgba(46, 99, 232, 0.28); box-shadow: 0 24px 48px rgba(18, 33, 59, 0.085), 0 0 22px rgba(35, 184, 209, 0.08); }
.bento-card:hover::before { opacity: 1; }
.bento-card:active { transform: scale3d(0.98, 0.98, 0.98) !important; box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
[data-theme="light"] .bento-card:active { box-shadow: 0 12px 24px rgba(0,0,0,0.05); }
/* 项目状态标签:沿用原有玻璃质感,不改变卡片结构 */
.project-state {
align-self: flex-start;
display: inline-flex;
align-items: center;
gap: 7px;
min-height: 26px;
padding: 4px 10px;
margin-bottom: 14px;
border: 1px solid var(--glass-8);
border-radius: 99px;
background: var(--glass-4);
color: var(--text-muted);
font-size: 0.72rem;
font-weight: 650;
line-height: 1;
position: relative;
z-index: 2;
pointer-events: none;
}
.project-state::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: currentColor;
box-shadow: 0 0 8px currentColor;
}
.project-state.state-live { color: var(--accent-blue); }
.project-state.state-building { color: #fbbf24; }
.project-state.state-archive { color: var(--text-muted); opacity: 0.82; }
.card-keysafe-typography .project-state { align-self: center; }
.card-emby-typography .project-state { margin-bottom: 18px; }
/* 状态卡片屏蔽动效 */
.bento-card.status-card:hover { transform: none !important; box-shadow: none; border-color: var(--card-border); background: var(--card-bg); }
[data-theme="dark"] .bento-card.status-card { background: rgba(50, 105, 170, 0.055) !important; }
[data-theme="light"] .bento-card.status-card { background: rgba(46, 99, 232, 0.032) !important; }
[data-theme="light"] .bento-card.status-card:hover { box-shadow: 0 10px 34px rgba(18, 33, 59, 0.055); border-color: var(--card-border); }
.bento-card.status-card:active { transform: none !important; box-shadow: none; }
[data-theme="light"] .bento-card.status-card:active { box-shadow: 0 10px 34px rgba(18, 33, 59, 0.055); }
.bento-card.status-card::before { display: none; }
.card-link-icon { position: absolute; top: 32px; right: 32px; color: var(--text-muted); opacity: 0; transform: translate(-10px, 10px); transition: all 0.4s var(--smooth-curve); width: 20px; height: 20px; z-index: 5; pointer-events: none; }
.bento-card:hover .card-link-icon { opacity: 1; transform: translate(0, 0); color: var(--text-main); }
.card-icon { width: 52px; height: 52px; background: var(--glass-4); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent-blue); border: 1px solid var(--glass-5); transition: transform 0.4s var(--smooth-curve), background 0.4s; position: relative; z-index: 2; pointer-events: none; }
.bento-card:hover .card-icon { transform: scale(1.1) rotate(-5deg); background: var(--glass-10); color: var(--text-main); }
[data-theme="dark"] .bento-card:hover .card-icon { color: #fff; }
.bento-card h3 { font-size: 1.5rem; margin: 0 0 12px; font-weight: 600; position: relative; z-index: 2; pointer-events: none; }
.bento-card p { margin: 0; color: var(--text-muted); font-size: 1rem; flex-grow: 1; line-height: 1.6; position: relative; z-index: 2; pointer-events: none; }
/* 核心矩阵高亮特效 */
.card-highlight { background: linear-gradient(135deg, rgba(95,145,239,0.1), rgba(83,198,217,0.035)); border-color: rgba(101,163,255,0.19); }
[data-theme="light"] .card-highlight { background: linear-gradient(135deg, rgba(46,99,232,0.105), rgba(35,184,209,0.055)); border-color: rgba(46,99,232,0.2); }
.card-highlight .card-icon { color: var(--accent); }
/* Key Safe 纯排版专属样式 */
.card-keysafe-typography {
display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.card-keysafe-typography h3 {
font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
-webkit-background-clip: text; color: transparent; margin: 0 0 12px 0; letter-spacing: -0.5px;
}
.card-keysafe-typography p {
font-size: 1.05rem; color: var(--text-main); opacity: 0.85; flex-grow: 0; line-height: 1.6; font-weight: 500;
}
/* 文本内联超链接样式 */
.inline-link { color: var(--accent-blue); text-decoration: none; font-weight: 600; transition: opacity 0.3s ease; pointer-events: auto; }
.inline-link:hover { text-decoration: underline; opacity: 0.8; }
.version-tags { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; font-size: 0.75rem; font-weight: 600; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; position: relative; z-index: 2; pointer-events: none; }
.version-tags span { padding: 4px 8px; border-radius: 6px; background: var(--glass-5); color: var(--text-muted); transition: all 0.3s ease; }
.version-tags svg { width: 12px; height: 12px; color: var(--text-muted); opacity: 0.5; }
.version-tags span.current { color: var(--accent-blue); background: rgba(46,99,232,0.11); border: 1px solid rgba(46,99,232,0.2); box-shadow: 0 0 10px rgba(46,99,232,0.12); }
.slogan-text { font-size: 1.1rem; font-weight: 500; color: var(--text-main); margin-bottom: 12px !important; font-style: italic; opacity: 0.9; }
.card-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; position: relative; z-index: 2; pointer-events: auto; }
.action-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; transition: all 0.3s var(--smooth-curve); text-decoration: none; }
.action-btn:active { transform: scale(0.95) !important; }
.action-btn.secondary { background: var(--glass-5); border: 1px solid var(--glass-10); color: var(--text-main); }
.action-btn.secondary:hover { background: var(--glass-15); border-color: var(--glass-30); transform: translateY(-2px); }
.action-btn.primary { background: linear-gradient(135deg, #244fc7, var(--accent-blue) 55%, #358bdc); color: #fff; border: 1px solid rgba(46, 99, 232, 0.46); box-shadow: 0 5px 14px rgba(46, 99, 232, 0.24); }
.action-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(46, 99, 232, 0.34); }
.action-btn.primary svg { width: 16px; height: 16px; margin-left: 6px; }
/* ZYMCT Emby 专属高级纯文字排版 */
.card-emby-typography { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.card-emby-typography h3 {
font-size: clamp(2rem, 5vw, 3.2rem);
font-weight: 900;
margin: 0 0 16px 0;
letter-spacing: -1px;
/* 替换掉过于跳脱的粉色,采用克制通透的蓝紫渐变,与整体主色调完美平衡 */
background: linear-gradient(135deg, var(--text-main) 30%, var(--accent-blue) 80%, var(--accent-purple));
-webkit-background-clip: text;
color: transparent;
}
.card-emby-typography p { font-size: 1.05rem; line-height: 1.6; color: var(--text-muted); max-width: 90%; }
[data-theme="light"] .card-emby-typography h3 {
/* 浅色模式下同样保持克制的高级感 */
background: linear-gradient(135deg, var(--text-main) 30%, var(--accent-blue) 80%, var(--accent-purple));
-webkit-background-clip: text;
}
.notice-box { margin-top: 16px; padding: 12px 16px; background: rgba(46, 99, 232, 0.065); border-left: 3px solid var(--accent-blue); border-radius: 0 8px 8px 0; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; pointer-events: none; }
.notice-box svg { width: 16px; height: 16px; color: var(--accent-blue); flex-shrink: 0; margin-top: 2px; }
/* 状态卡片 & 社交链 */
.status-card { display: flex; flex-direction: column; justify-content: center; background: var(--glass-2); }
.status-tag { font-size: 0.75rem; color: var(--accent-blue); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 8px; pointer-events: none; }
.status-title { font-size: 1.5rem !important; font-weight: 600; margin: 0; color: var(--text-main); pointer-events: none; }
.status-desc { font-size: 0.95rem; color: var(--text-muted); margin: 6px 0 0; pointer-events: none; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; position: relative; z-index: 2; pointer-events: auto; }
.social-icon { height: 40px; border-radius: 99px; padding: 0 16px; background: var(--glass-5); border: 1px solid var(--glass-8); display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--text-main); transition: all 0.4s var(--spring-curve); text-decoration: none; font-size: 0.9rem; font-weight: 500; white-space: nowrap; }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-icon.email-icon svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.social-icon:hover { background: var(--accent-blue); border-color: var(--accent-blue); color: #fff; transform: translateY(-4px) scale(1.03); box-shadow: 0 8px 20px rgba(46, 99, 232, 0.3); }
.social-icon:active { transform: scale(0.92) !important; }
.social-icon.disabled { opacity: 0.4; pointer-events: none; cursor: not-allowed; filter: grayscale(100%); background: transparent; }
.archived-wrapper { opacity: 0.6; filter: grayscale(80%); display: flex; flex-direction: column; flex-grow: 1; transition: all 0.6s var(--smooth-curve); pointer-events: none; }
.bento-card:hover .archived-wrapper { opacity: 1; filter: grayscale(0%); }
/* =========================================
世界和平专属水印 (Ethos Watermark)
========================================= */
.peace-wrapper {
display: flex;
justify-content: center;
align-items: center;
padding: 0 20px;
margin-top: -20px;
margin-bottom: 60px; /* 增加下方留白,作为版块之间的优雅过渡 */
position: relative;
z-index: 10;
}
.peace-badge {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 0.75rem; /* 更精致的小字号 */
font-weight: 500;
letter-spacing: 4px; /* 拉大字间距,提升高级感 */
text-transform: uppercase;
color: var(--text-muted);
opacity: 0.4; /* 默认更透明,像安静的水印 */
transition: all 0.8s var(--smooth-curve);
cursor: default;
user-select: none;
}
.peace-badge:hover {
opacity: 1;
color: var(--text-main);
text-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
transform: scale(1.02);
}
[data-theme="light"] .peace-badge:hover {
text-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}
/* 两侧的极简渐变线条,像一双延伸的翅膀 */
.peace-badge::before, .peace-badge::after {
content: '';
display: block;
width: 30px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--text-muted), transparent);
opacity: 0.3;
transition: width 0.8s var(--smooth-curve), opacity 0.8s var(--smooth-curve);
}
.peace-badge:hover::before, .peace-badge:hover::after {
width: 50px;
opacity: 0.6;
}
.peace-icon {
font-size: 1.1rem;
display: inline-block;
opacity: 0.8;
animation: doveBreath 4s ease-in-out infinite alternate;
}
@keyframes doveBreath {
0% { transform: translateY(1px); opacity: 0.6; }
100% { transform: translateY(-2px); opacity: 1; }
}
/* =========================================
产品目录页脚
========================================= */
.footer-wrapper {
--footer-bg: #11161d;
--footer-bg-deep: #0d1218;
--footer-text: #f4f7fb;
--footer-muted: #9aa7b8;
--footer-subtle: #6f7d8f;
--footer-rule: rgba(214, 225, 237, 0.14);
--footer-live: #63d5b0;
--footer-accent: #70a2ff;
position: relative;
overflow: hidden;
border-top: 1px solid rgba(18, 33, 59, 0.08);
padding: 56px max(clamp(24px, 4vw, 64px), env(safe-area-inset-right)) max(34px, calc(34px + env(safe-area-inset-bottom))) max(clamp(24px, 4vw, 64px), env(safe-area-inset-left));
color: var(--footer-text);
background: var(--footer-bg);
}
[data-theme="dark"] .footer-wrapper {
--footer-bg: #080e15;
--footer-bg-deep: #060b10;
--footer-muted: #93a3b5;
--footer-rule: rgba(194, 212, 230, 0.12);
border-top-color: rgba(153, 183, 211, 0.12);
}
.footer {
width: min(1400px, 100%);
margin: 0 auto;
color: inherit;
}
.footer-main {
display: grid;
grid-template-columns: minmax(180px, 0.82fr) minmax(0, 4.7fr);
gap: clamp(42px, 5vw, 84px);
align-items: start;
}
.footer-brand {
min-width: 0;
}
.footer-brand-lockup {
display: flex;
align-items: center;
gap: 13px;
}
.footer-logo {
width: 58px;
height: 40px;
object-fit: contain;
opacity: 1;
user-select: none;
-webkit-user-drag: none;
cursor: pointer;
transition: transform 0.2s var(--smooth-curve);
}
.footer-logo:active { transform: scale(0.94); }
.footer-brand-copy {
display: flex;
flex-direction: column;
gap: 1px;
}
.footer-brand-copy strong {
color: #fff;
font-size: 1.03rem;
line-height: 1.2;
font-weight: 720;
}
.footer-brand-copy span {
color: var(--footer-muted);
font-size: 0.75rem;
line-height: 1.35;
}
.footer-peace {
margin: 24px 0 0;
color: #b2bdca;
font-size: 0.78rem;
line-height: 1.5;
}
.footer-directory {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 32px;
}
.footer-column {
min-width: 0;
}
.footer-summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin: 0 0 19px;
color: #fff;
font-size: 0.84rem;
line-height: 1.35;
font-weight: 680;
list-style: none;
cursor: default;
pointer-events: none;
}
.footer-summary::-webkit-details-marker { display: none; }
.footer-chevron {
display: none;
flex: 0 0 auto;
width: 19px;
height: 19px;
color: #dbe2eb;
transition: transform 0.28s var(--smooth-curve);
}
.footer-column[open] .footer-chevron {
transform: rotate(180deg);
}
.footer-column.is-closing .footer-chevron {
transform: rotate(0deg);
}
.footer-list {
display: flex;
flex-direction: column;
gap: 13px;
margin: 0;
padding: 0;
list-style: none;
}
.footer-item {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 8px;
align-items: baseline;
min-height: 20px;
color: var(--footer-muted);
font-size: 0.78rem;
line-height: 1.45;
transition: color 0.25s var(--smooth-curve), transform 0.25s var(--smooth-curve);
}
.footer-item:hover {
color: var(--footer-text);
transform: translateX(2px);
}
.footer-item-name {
min-width: 0;
overflow-wrap: anywhere;
}
.footer-item-status {
color: var(--footer-subtle);
font-size: 0.62rem;
line-height: 1.4;
white-space: nowrap;
}
.footer-item-status.is-live { color: var(--footer-live); }
.footer-item-status.is-partner { color: var(--footer-accent); }
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
margin-top: 48px;
padding-top: 22px;
border-top: 1px solid var(--footer-rule);
color: var(--footer-muted);
}
.footer-bottom-left {
display: flex;
align-items: center;
gap: 24px;
min-width: 0;
}
.footer-socials {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
}
.footer-socials a {
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 7px;
width: 46px;
min-height: 48px;
font-size: 10px;
line-height: 1.3;
color: #aeb9c7;
border-radius: 4px;
transition: color 0.22s ease, transform 0.22s var(--smooth-curve);
}
.footer-socials a:hover {
color: #fff;
transform: translateY(-2px);
}
.footer-socials svg {
width: 17px;
height: 17px;
}
.footer-legal,
.footer-cf {
font-size: 0.7rem;
line-height: 1.5;
}
.footer-legal { white-space: nowrap; }
.footer-cf {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 7px;
text-align: right;
}
.footer-cf-mark {
color: #ffd35a;
font-size: 0.82rem;
line-height: 1;
}
/* =========================================
关键帧动画
========================================= */
@keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes nightGlacierFlow {
0% { background-position: 0% 50%; }
46% { background-position: 34% 50%; }
54% { background-position: 34% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes glacierFlow {
0% { background-position: 0% 50%; }
46% { background-position: 35% 50%; }
54% { background-position: 35% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes arrowBounce { 0%, 100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(8px); opacity: 1; } }
@keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
@media (max-width: 1200px) {
.footer-main {
grid-template-columns: 190px minmax(0, 1fr);
gap: 42px;
}
.footer-directory {
grid-template-columns: repeat(3, minmax(0, 1fr));
row-gap: 38px;
}
}
/* =========================================
移动端专属适配 (优化性能与轻量化动效)
========================================= */
@media (max-width: 768px) {
.bento-card { padding: 28px 24px; border-radius: 24px; transform-style: flat; } /* 移动端关闭3D避免滑屏卡顿 */
.bento-card:hover { transform: translateY(-3px); }
/* 手机端进一步缩减位移与时间,告别滑屏拖沓 */
.reveal { transform: translateY(20px) scale(0.99); transition: opacity 0.6s var(--smooth-curve), transform 0.6s var(--smooth-curve); }
.hero-grid { background-size: 40px 40px; mask-image: radial-gradient(circle at center, black 20%, transparent 80%); -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%); }
/* 手机端使用更轻量级的对焦缩放,防止文字溢出屏幕 */
.hero-glow-title { animation: gradientFlow 10s ease infinite, cinematicRevealMobile 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes cinematicRevealMobile {
0% { opacity: 0; transform: scale(1.1) translateY(15px); filter: blur(12px); }
100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.slogan-section { padding: 100px 20px 60px; }
.slogan-brand { margin: 0 0 16px; letter-spacing: 4px; transform: translateX(2px); }
.slogan-title { letter-spacing: -0.5px; line-height: 1.25; }
.slogan-and { margin: 0 6px; }
.social-links { gap: 10px; justify-content: center; }
.social-icon { padding: 0 14px; font-size: 0.8rem; height: 40px; }
.card-emby-typography p { max-width: 100%; }
.card-link-icon { display: none; }
.site-logo { top: max(16px, env(safe-area-inset-top)); left: max(16px, env(safe-area-inset-left)); height: 48px; }
.lang-toggle { top: calc(max(16px, env(safe-area-inset-top)) + 3px); right: max(16px, env(safe-area-inset-right)); }
.scroll-prompt { bottom: max(90px, env(safe-area-inset-bottom) + 50px); }
/* 移动端和平徽章适配 */
.peace-wrapper {
margin-top: -40px;
margin-bottom: 40px;
}
.peace-badge {
font-size: 0.7rem;
letter-spacing: 2px;
}
.peace-badge::before, .peace-badge::after {
width: 15px; /* 移动端线条缩短 */
}
.peace-badge:hover::before, .peace-badge:hover::after {
width: 25px;
}
.footer-wrapper {
padding: 42px max(20px, env(safe-area-inset-right)) max(28px, calc(28px + env(safe-area-inset-bottom))) max(20px, env(safe-area-inset-left));
}
.footer {
display: flex;
flex-direction: column;
}
.footer-main {
display: contents;
}
.footer-brand {
order: 2;
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 24px;
padding: 34px 0 28px;
}
.footer-brand-lockup { gap: 12px; }
.footer-logo { width: 54px; height: 36px; }
.footer-peace {
margin: 0;
text-align: right;
}
.footer-directory {
order: 1;
display: block;
border-top: 1px solid var(--footer-rule);
}
.footer-column {
border-bottom: 1px solid var(--footer-rule);
}
.footer-summary {
min-height: 68px;
margin: 0;
padding: 20px 0;
scroll-margin-top: 20px;
font-size: 0.98rem;
line-height: 1.3;
cursor: pointer;
pointer-events: auto;
user-select: none;
transition: color 0.24s ease;
}
.footer-summary:hover { color: #fff; }
.footer-summary:focus-visible {
outline: 2px solid var(--footer-accent);
outline-offset: -2px;
}
.footer-chevron {
display: block;
transition-duration: 0.38s;
transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-list {
gap: 0;
padding: 0 0 18px;
transform-origin: top;
will-change: opacity, transform;
}
.footer-item {
grid-template-columns: minmax(0, 1fr) auto;
gap: 14px;
min-height: 42px;
padding: 11px 0;
border-top: 1px solid rgba(214, 225, 237, 0.07);
font-size: 0.8rem;
}
.footer-bottom {
order: 3;
align-items: flex-start;
flex-direction: column;
margin-top: 0;
padding-top: 24px;
}
.footer-bottom-left {