forked from CJHCSM/Jsnzkpg.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1993 lines (1854 loc) · 87.7 KB
/
Copy pathindex.html
File metadata and controls
1993 lines (1854 loc) · 87.7 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>Privat5418书签收藏</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- 百度统计代码 -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?fff33d50cef8b9d386a8c31da4723d53";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}
body {
color: #fff;
line-height: 1.6;
min-height: 100vh;
overflow-x: hidden;
background: #1a1a2e;
}
/* 视频背景容器 */
.video-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
overflow: hidden;
}
/* 视频背景 */
#video-bg {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.7;
transition: opacity 0.8s ease;
}
/* 深色叠加层 */
.dark-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
z-index: -1;
}
/* 背景模糊层 */
.blur-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
backdrop-filter: blur(0px);
z-index: -1;
transition: backdrop-filter 0.5s ease;
}
body.scrolled .blur-overlay {
backdrop-filter: blur(8px);
}
body.scrolled #video-bg {
opacity: 0.5;
}
.container {
max-width: min(1200px, 90vw);
margin: 0 auto;
position: relative;
padding: 20px;
padding-top: 60px;
}
/* 跑马灯样式 - 毛玻璃效果 - 减小高度 */
.marquee-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding: 6px 0;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.marquee {
display: inline-block;
white-space: nowrap;
animation: marquee 20s linear infinite;
padding-left: 100%;
}
.marquee-content {
display: inline-block;
margin-right: 40px;
color: #f5f5f5;
font-weight: bold;
font-size: 14px;
}
.marquee-link {
color: #f5f5f5;
text-decoration: none;
transition: all 0.3s ease;
padding: 0 15px;
position: relative;
}
.marquee-link:hover {
color: #ffffff;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
header {
text-align: center;
margin-bottom: 40px;
padding: 30px 0;
}
/* 修改标题样式 */
h1 {
margin-bottom: 15px;
font-size: clamp(2em, 6vw, 3em);
font-weight: bold;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
display: inline-block;
background: linear-gradient(90deg, #ff6b6b, #ffa726, #66bb6a, #42a5f5, #ab47bc);
background-size: 400% 100%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.description {
color: rgba(255, 255, 255, 0.8);
font-size: clamp(14px, 3.5vw, 18px);
margin-top: 10px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
/* 移除头像的白色边框 */
.avatar {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 15px auto;
background-image: url('https://mpimg.cn/view.php/f28da3eac8f392e9fa2ba91723b2bf4c.png');
background-size: cover;
background-position: center;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.avatar:hover {
transform: scale(1.05);
}
/* 特殊链接区域 - 改进排版和样式 */
.special-links {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin: 25px auto;
max-width: 90%;
}
.special-link {
position: relative;
padding: 10px 15px;
background: rgba(255, 255, 255, 0.15);
border-radius: 12px;
text-decoration: none;
color: rgba(255, 255, 255, 0.9);
font-weight: bold;
font-size: 13px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
/* 移除毛玻璃效果 */
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.special-link:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
background: rgba(255, 255, 255, 0.25);
color: #fff;
}
.special-link i {
margin-right: 6px;
font-size: 12px;
}
/* 修改卡片间距和圆角 */
.bookmarks {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
gap: 35px;
margin-top: 20px;
}
.bookmark {
background: rgba(255, 255, 255, 0.15);
border-radius: 30px;
padding: 25px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
backdrop-filter: blur(5px);
}
.bookmark:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
background: rgba(255, 255, 255, 0.25);
border-color: rgba(255, 255, 255, 0.4);
}
/* 高科技折叠标题样式 */
.bookmark-header {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
margin-bottom: 15px;
padding-bottom: 15px;
position: relative;
transition: all 0.3s ease;
text-align: center;
}
/* 科技感标题文字 */
.bookmark-title {
color: #ffffff;
font-size: 20px;
line-height: 1.3;
font-weight: bold;
text-align: center;
position: relative;
padding: 0 10px;
margin-bottom: 12px;
letter-spacing: 0.5px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
transition: all 0.4s ease;
}
.bookmark-header:hover .bookmark-title {
text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
color: #a3d9ff;
}
.bookmark-header.collapsed .bookmark-title {
color: #a3d9ff;
text-shadow: 0 0 15px rgba(163, 217, 255, 0.6);
}
/* 科技感折叠指示器 - 线条动画 */
.fold-indicator {
position: relative;
width: 80%;
height: 2px;
background: linear-gradient(90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.5) 50%,
rgba(255, 255, 255, 0) 100%);
border-radius: 2px;
overflow: hidden;
transition: all 0.4s ease;
}
.fold-indicator::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.8) 50%,
rgba(255, 255, 255, 0) 100%);
animation: shimmer 2.5s infinite;
}
.bookmark-header:hover .fold-indicator {
background: linear-gradient(90deg,
rgba(163, 217, 255, 0) 0%,
rgba(163, 217, 255, 0.7) 50%,
rgba(163, 217, 255, 0) 100%);
height: 3px;
box-shadow: 0 0 8px rgba(163, 217, 255, 0.3);
}
.bookmark-header.collapsed .fold-indicator {
background: linear-gradient(90deg,
rgba(163, 217, 255, 0) 0%,
rgba(163, 217, 255, 0.9) 50%,
rgba(163, 217, 255, 0) 100%);
height: 3px;
box-shadow: 0 0 12px rgba(163, 217, 255, 0.5);
}
.bookmark-header.collapsed .fold-indicator::before {
background: linear-gradient(90deg,
rgba(163, 217, 255, 0) 0%,
rgba(163, 217, 255, 1) 50%,
rgba(163, 217, 255, 0) 100%);
animation: shimmer-fast 1.5s infinite;
}
@keyframes shimmer {
0% { left: -100%; }
100% { left: 100%; }
}
@keyframes shimmer-fast {
0% { left: -100%; }
100% { left: 100%; }
}
/* 折叠状态指示器 - 高科技脉冲点 */
.fold-status {
display: none; /* 隐藏圆点 */
/* 以下是原有的样式,但会被display: none覆盖 */
position: absolute;
top: 0;
right: 0;
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transition: all 0.4s ease;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
.bookmark-header:hover .fold-status {
background: rgba(163, 217, 255, 0.5);
box-shadow: 0 0 8px rgba(163, 217, 255, 0.4);
}
.bookmark-header.collapsed .fold-status {
background: rgba(163, 217, 255, 0.9);
box-shadow: 0 0 12px rgba(163, 217, 255, 0.7);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(163, 217, 255, 0.7);
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
box-shadow: 0 0 0 10px rgba(163, 217, 255, 0);
transform: scale(1);
}
}
.bookmark-links {
display: flex;
flex-direction: column;
flex-grow: 1;
gap: 10px;
transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
max-height: 1000px;
overflow: hidden;
}
.bookmark-links.collapsed {
max-height: 0;
opacity: 0;
margin: 0;
padding: 0;
gap: 0;
}
.link-row {
display: flex;
justify-content: center;
flex-grow: 1;
gap: 8px;
}
.link-item {
flex: 1;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.link-item a {
display: block;
padding: 12px 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
font-size: 14px;
transition: all 0.3s ease;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
align-items: center;
justify-content: center;
line-height: 1.2;
height: 100%;
min-height: 45px;
color: #fff;
text-decoration: none;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.link-item a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
border-color: rgba(255, 255, 255, 0.3);
}
/* 音乐播放器 */
.music-player {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 100;
transition: all 0.4s ease;
opacity: 0.8;
}
.music-player:hover {
transform: scale(1.1);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
opacity: 1;
background: rgba(255, 255, 255, 0.25);
}
.music-player i {
font-size: 20px;
color: #ffffff;
}
@media (max-width: 1024px) {
.special-links {
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
}
@media (max-width: 768px) {
.container {
padding: 10px;
padding-top: 50px;
}
.avatar {
width: 90px;
height: 90px;
}
.special-links {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
max-width: 95%;
}
.special-link {
padding: 8px 12px;
font-size: 12px;
}
.special-link i {
font-size: 11px;
}
.bookmarks {
gap: 25px;
}
.bookmark {
padding: 20px;
border-radius: 25px;
}
.bookmark-title {
font-size: 18px;
}
.link-item a {
font-size: 13px;
padding: 10px 6px;
min-height: 40px;
}
.marquee-content {
font-size: 12px;
}
.music-player {
width: 45px;
height: 45px;
bottom: 15px;
right: 15px;
}
.music-player i {
font-size: 18px;
}
}
@media (max-width: 480px) {
.bookmarks {
grid-template-columns: 1fr;
}
.special-links {
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.special-link {
padding: 6px 8px;
font-size: 11px;
}
.link-row {
flex-direction: column;
gap: 8px;
}
.link-item {
margin: 0;
}
.bookmark-title {
font-size: 16px;
}
.fold-indicator {
width: 70%;
}
}
</style>
</head>
<body>
<!-- 视频背景容器 -->
<div class="video-container">
<video id="video-bg" autoplay muted loop playsinline>
<source src="https://txmov2.a.kwimgs.com/upic/2023/10/13/16/BMjAyMzEwMTMxNjU4MTJfMTcyNTc4NzU4N18xMTQ4OTQ2OTgxMzRfMl8z_b_B209e890a596d64fbd174507b758b0815.mp4" type="video/mp4">
您的浏览器不支持视频标签。
</video>
</div>
<!-- 深色叠加层 -->
<div class="dark-overlay"></div>
<!-- 背景模糊层 -->
<div class="blur-overlay"></div>
<!-- 跑马灯广告位 - 固定在顶部 -->
<div class="marquee-container">
<div class="marquee">
<span class="marquee-content">
<a href="https://affman.mellanox.fyi/#/register?code=JZkBqCct" class="marquee-link">✈️月付10元500G机场分享/解锁奈飞.TikTok.谷歌Gemini/不限速不限设备 </a>
</span>
</div>
</div>
<!-- 音乐播放器 -->
<audio id="bgMusic" loop>
<source src="https://mpimg.cn/view.php/b58f5759da3f2296c226c362b1986a2f.mp3" type="audio/mpeg">
</audio>
<div class="music-player" id="musicToggle">
<i class="fas fa-volume-up"></i>
</div>
<div class="container">
<header>
<h1>
<a href="https://link3.cc/privat5418" class="home-link" style="text-decoration: none; border-bottom: none;">Privat5418书签收藏</a>
</h1>
<div class="avatar"></div>
<!-- 特殊链接区域 - 改进后的布局 -->
<div class="special-links">
<a href="https://t.me/SyntaxJester" class="special-link"><i class="fab fa-telegram"></i> TG频道</a>
<a href="https://t.me/+-OPh-M6oiLA0MzM1" class="special-link"><i class="fab fa-telegram"></i> TG群聊</a>
<a href="https://github.com/SyntaxJester/" class="special-link"><i class="fab fa-github"></i> Github</a>
<a href="https://SyntaxJester.github.io/Jsnzkpg" class="special-link"><i class="fas fa-sync"></i> 自用直链托管</a>
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/SyntaxJester/Jsnzkpg/Jsnzkpg/Jsnzkpg" class="special-link"><i class="fas fa-server"></i> 自用节点订阅</a>
<a href="https://sharky.de5.net/" class="special-link"><i class="fas fa-server"></i> 自用CFNEW终端</a>
<a href="https://pyapk.github.io" class="special-link"><i class="fas fa-rocket"></i> 裤佬Github加速</a>
<a href="https://syntaxjester.github.io/Shadowrocket/" class="special-link"><i class="fas fa-rocket"></i>SyntaxJester共享小火箭</a>
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/Jsnzkpg/Jsnzkpg/Jsnzkpg1.m3u" class="special-link"><i class="fas fa-tv"></i> 裤佬IPTV订阅</a>
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/Jsnzkpg/Jsnzkpg/Jsnzkpg3" class="special-link"><i class="fas fa-play-circle"></i> 裤佬UZ影视订阅</a>
<a href="https://9280.kstore.vip/newwex.json" class="special-link"><i class="fas fa-film"></i> 王二小TVbox订阅</a>
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/Jsnzkpg/Jsnzkpg/Jsnzkpg2" class="special-link"><i class="fas fa-film"></i> 裤佬TVbox订阅</a>
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/Jsnzkpg/Jsnzkpg/Jsnzkpg4" class="special-link"><i class="fas fa-play-circle"></i> 裤佬Cinetry订阅</a>
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/Jsnzkpg/Jsnzkpg/Jsnzkpg5" class="special-link"><i class="fas fa-play-circle"></i> 裤佬EchoTV订阅</a>
<a href="https://9280.kstore.vip/cat/index.js.md5" class="special-link"><i class="fas fa-paw"></i> 王二小index.js.md5订阅</a>
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/stymei/Jsnzkpg/index.js.md5" class="special-link"><i class="fas fa-paw"></i> 裤佬index.js.md5订阅</a>
</div>
</header>
<div class="bookmarks">
<!-- TVbox软件合辑{空壳} -->
<div class="bookmark">
<div class="bookmark-header" onclick="toggleBookmark(this)">
<div class="bookmark-title">TVbox软件合辑{空壳}</div>
<div class="fold-indicator"></div>
<div class="fold-status"></div>
</div>
<div class="bookmark-links">
<div class="link-row">
<div class="link-item">
<a href="https://9280.kstore.space/newwex.json"> 复制王二小TVbox订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="http://www.饭太硬.com/tv"> 复制饭太硬TVbox订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="http://ok213.top/tv"> 复制OK佬TVbox订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="http://我不是.摸鱼儿.com" > 复制摸鱼儿TVbox订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="http://肥猫.com" > 复制肥猫TVbox订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/Jsnzkpg/Jsnzkpg/Jsnzkpg2">复制裤佬TVbox订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/R6GKck">OK影视-[安卓+TV]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/VOMWUL">FM影视-[安卓+TV]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/PNDWcr">影视仓-[安卓+TV]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/QWELFE">影视+[安卓魔改]</a>
</div>
</div>
</div>
</div>
<!-- index.js.md5软件合辑{空壳}-->
<div class="bookmark">
<div class="bookmark-header" onclick="toggleBookmark(this)">
<div class="bookmark-title">index.js.md5软件合辑{空壳}</div>
<div class="fold-indicator"></div>
<div class="fold-status"></div>
</div>
<div class="bookmark-links">
<div class="link-row">
<div class="link-item">
<a href="https://9280.kstore.vip/cat/index.js.md5">复制王二小index.js.md5永久订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/stymei/Jsnzkpg/index.js.md5">复制裤佬index.js.md5永久订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://ghfast.top/https://raw.githubusercontent.com/Darklessing/catvod/refs/heads/main/xuenai/index.js.md5">复制雪乃猫index.js.md5永久订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://ghfast.top/https://raw.githubusercontent.com/Darklessing/catvod/refs/heads/main/lmentor/index.js.md5">复制LM佬index.js.md5永久订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://ghfast.top/https://raw.githubusercontent.com/Darklessing/catvod/refs/heads/main/douer/index.js.md5">复制豆儿猫ndex.js.md5永久订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://ghfast.top/https://raw.githubusercontent.com/4TVBox/Cat/refs/heads/main/index.js.md5">复制沐辰index.js.md5永久订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://apps.apple.com/us/app/miraplay/id6749287494?l=zh-Hans-CN"> MiraPlay下载地址 </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://apps.apple.com/us/app/jstv/id6742569460?l=zh-Hans-CN"> JSTV下载地址 </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/qxq0sP"> Peekpili下载地址 </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/wpN1iz"> 蚂蚁影视下载地址</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/xk03H4"> 猫爪下载地址 </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://testflight.apple.com/join/ywzcMKS3">魔力云播下载地址</a>
</div>
</div>
</div>
</div>
<!-- IPTV软件合辑{空壳}-->
<div class="bookmark">
<div class="bookmark-header" onclick="toggleBookmark(this)">
<div class="bookmark-title">IPTV软件合辑{空壳}</div>
<div class="fold-indicator"></div>
<div class="fold-status"></div>
</div>
<div class="bookmark-links">
<div class="link-row">
<div class="link-item">
<a href="https://gh-proxy.org/https://raw.githubusercontent.com/Jsnzkpg/Jsnzkpg/Jsnzkpg/Jsnzkpg1.m3u">复制裤佬IPTV永久订阅</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://k.xzwl.top/zbzh">直播源格式转换-[可一键复制转换后文本]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://yang-1989.eu.org/Conversion.php">直播源格式转换-[订阅可在线转*合并去重]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://taoiptv.com/loding.html">淘IPTV-[酒店源*组播源*生成]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://yang-1989.eu.org">YanG-[综合直播源生成]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://iptv.cqshushu.com/jiekou.php"> 医工学习日志-[体育直播源生成]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="http://156.238.248.80:8880/token">某内部群-[最强直播源生成]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://wwda.lanzoug.com/b00ccbned">酷9原版-[安卓+TV]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://wwda.lanzouu.com/b0ck4joch"> 酷9魔改-[安卓+TV] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/68lViA">云影空蒙-[安卓+TV]</a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/J6wPum"> 极致-[安卓+TV] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/mZm9sK"> IPTVPro-[安卓+TV] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/n50WFq"> TiviMate-[安卓+TV] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/73myfx"> LOTUS-[安卓+TV+Win] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://testflight.apple.com/join/FcMTsEMc"> NanoTV-[苹果+苹果TV] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://aptv.wegic.app"> APTV-[苹果全系列都可] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://diyp.lanzoue.com/b0dvwotwh"> DIYP影音-[TV_密码diyp] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://streamshare.wireway.ch/download/to3j9w01"> 派大星-[TV] </a>
</div>
</div>
</div>
</div>
<!-- 挂载软件合辑(空壳) -->
<div class="bookmark">
<div class="bookmark-header" onclick="toggleBookmark(this)">
<div class="bookmark-title">挂载软件合辑(空壳)</div>
<div class="fold-indicator"></div>
<div class="fold-status"></div>
</div>
<div class="bookmark-links">
<div class="link-row">
<div class="link-item">
<a href="https://intro.bgp.yt/accounts/regonline"> 无门槛Emby公益服注册-[二刺螈] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://tv.hohai.eu.org"> 无门槛Emby公益服注册-[HOHAI] </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://down.nigx.cn/upld.zone.id/uploads/q9iq9e5iq/emby.txt"> 点击获取Emby免费共享账号 </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://down.nigx.cn/upld.zone.id/uploads/q9iq9e5iq/webdav.txt"> 点击获取WebDAV免费共享账号 </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://down.nigx.cn/upld.zone.id/uploads/q9iq9e5iq/fnos.txt"> 点击获取fnOS免费共享账号 </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://zh.okaapps.com/product/1659622164"> VidHub(苹果+安卓+TV) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://capyplayer.feifeiduck.com/zh"> 卡皮巴拉(苹果+安卓) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/n5qESq"> 柴柴emby(安卓+TV) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://docs.togother.app/download"> Syncwe(苹果+安卓+Win+Mac) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://bmh.163.com"> 爆米花(苹果+安卓+TV+Win+Mac) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://www.dandanplay.com"> 弹弹play(苹果+安卓+Win+Mac+Linux) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://testflight.apple.com/join/y478QNPY"> Vidora(苹果) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://testflight.apple.com/join/zcRStRh9"> Themby(苹果) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://lennaapp.github.io"> Lenna(苹果) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://testflight.apple.com/join/YWayHNUf"> OtoFlow(苹果) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://www.amcfy.xyz"> 箭头音乐(苹果+安卓) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/mZprTK"> AfuseKt(安卓+TV) </a>
</div>
</div>
<div class="link-row">
<div class="link-item">
<a href="https://dogpan.com/s/o2r3uL"> Femor(苹果+安卓+TV+x86系统) </a>
</div>