-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
759 lines (595 loc) · 57.6 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>思媛起始页</title>
<!-- 网站图标 -->
<link rel="shortcut icon" href="./media/SY-start-favicon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="full-screen" content="yes">
<!--UC强制全屏-->
<meta name="browsermode" content="application">
<!--UC应用模式-->
<meta name="x5-fullscreen" content="true">
<!--QQ强制全屏-->
<meta name="x5-page-mode" content="app">
<!--QQ应用模式-->
<!-- <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css"> -->
<link href="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/bootstrap/4.5.3/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" id="font-awesome-css" href="./css/all.min.css" type="text/css" media="all"> <!-- https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css?ver=1.1422 -->
<script src="./js/jquery.min.js"></script> <!-- https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js -->
<!--各个网址图标-->
<script src="//at.alicdn.com/t/c/font_3347159_43scmrp7y3h.js"></script> <!-- 这里是 https://www.iconfont.cn/ 的symbol地址 -->
<!--各个网址图标-->
<script src="./js/sou.js"></script>
<link rel='stylesheet' href='./css/style.css'>
</head>
<body>
<!--头部背景-视频或者图片-->
<div class="banner-video">
<!--视频banner,与下面的图片banner只能任选其中的一种-->
<!-- <video autoplay loop muted><source src="./media/banner.mp4" type="video/mp4"></video> -->
<!-- <video autoplay loop muted><source src="./media/systart-banner-a.mp4" type="video/mp4"></video> -->
<!--图片banner,与上面的视频banner只能任选其中的一种-->
<img src="./media/systart-banner-a.png" alt="">
<div class="bottom-cover" style="background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(244 248 251 / 0.6) 50%, rgb(244 248 251) 100%);"></div>
</div>
<!--topbar开始-->
<style>
.navbar-toggler svg {
width: 24px;
height: 24px;
}
.navbar-toggler .bi-list-nested {
display: none;
}
.navbar-toggler.collapsed .bi-list-nested {
display: block;
}
.navbar-toggler.collapsed .bi-x {
display: none;
}
.navbar-toggler .bi-x {
display: block;
}
</style>
<nav class="navbar navbar-expand-lg navbar-light fixed-top" style="position: absolute; z-index: 10000;">
<a class="navbar-brand" href=""><img src="./media/SY-start-logo.png" height="35" style="margin-left: -1px;" alt=""></a>
<!--不知道干啥的-->
<button class="navbar-toggler collapsed" style="border: none; outline: none;" type="button" data-toggle="collapse" data-target="#navbarsExample05" aria-controls="navbarsExample05" aria-expanded="false" aria-label="Toggle navigation">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="bi bi-list-nested" fill="currentColor" id="list-nested">
<path fill-rule="evenodd" d="M4.5 11.5A.5.5 0 015 11h10a.5.5 0 010 1H5a.5.5 0 01-.5-.5zm-2-4A.5.5 0 013 7h10a.5.5 0 010 1H3a.5.5 0 01-.5-.5zm-2-4A.5.5 0 011 3h10a.5.5 0 010 1H1a.5.5 0 01-.5-.5z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="bi bi-x" fill="currentColor" id="x">
<path fill-rule="evenodd" d="M11.854 4.146a.5.5 0 010 .708l-7 7a.5.5 0 01-.708-.708l7-7a.5.5 0 01.708 0z"></path>
<path fill-rule="evenodd" d="M4.146 4.146a.5.5 0 000 .708l7 7a.5.5 0 00.708-.708l-7-7a.5.5 0 00-.708 0z"></path>
</svg>
</button>
<!--不知道干啥的 结束-->
<div class="collapse navbar-collapse" id="navbarsExample05">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="https://ihcll.cn" target="_blant">火车啦啦</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://qydz.ihcll.cn" target="_blant">情有独钟</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://list.ihcll.cn" target="_blant">跑路云盘</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.3x3.fun" target="_blant">3x3</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</nav>
<!--topbar结束-->
<div class="container" style="margin-top: 100px; position: relative; z-index: 100;">
<!--搜索开始-->
<div id="search" class="s-search">
<div id="search-list" class="hide-type-list">
<div class="search-group group-a s-current" style="padding-left: 20px">
<ul class="search-type">
<li><input checked="" hidden="" type="radio" name="type" id="type-bing" value="https://cn.bing.com/search?q=" data-placeholder="微软的搜索工具"><label for="type-bing"><span style="color:#2100E0">必应</span></label></li>
<li><input hidden="" type="radio" name="type" id="type-mitaso" value="https://metaso.cn/?q=" data-placeholder="没有广告,直达结果"><label for="type-mitaso"><span style="color:#2100E0">秘塔</span></label></li>
<li><input hidden="" type="radio" name="type" id="type-bilibili" value="https://search.bilibili.com/all?keyword=" data-placeholder="叔叔我啊,23333"><label for="type-bilibili"><span style="color:#2100E0">哔哩哔哩</span></label></li>
<li><input hidden="" type="radio" name="type" id="type-douban" value="https://search.douban.com/movie/subject_search?search_text=" data-placeholder="查一查先,评分不高的不看"><label for="type-douban"><span style="color:#2100E0">豆瓣</span></label></li>
<li><input hidden="" type="radio" name="type" id="type-google" value="https://www.google.com/search?q=" data-placeholder="谷歌一下,你就知道"><label for="type-google"><span style="color:#3B83FA">G</span><span style="color:#F3442C">o</span><span style="color:#FFC300">o</span><span style="color:#4696F8">g</span><span style="color:#2CAB4E">l</span><span style="color:#F54231">e</span></label></li>
<li><input hidden="" type="radio" name="type" id="type-wiki" value="https://zh.wikipedia.org/wiki/" data-placeholder="自由的百科全书"><label for="type-wiki"><span style="color:#2100E0">维基百科</span></label></li>
</ul>
</div>
</div>
<form action="https://www.baidu.com/s?wd=" method="get" target="_blank" id="super-search-fm">
<input type="text" id="search-text" placeholder="百度一下" style="outline:0" autocomplete="off">
<button class="submit" type="submit"><svg style="width: 20px; height: 20px; margin:7px 0; color: #29f;" class="icon" aria-hidden="true"><use xlink:href="#sy-sousuo"></use></svg><span></button>
<ul id="word" style="display: none;"></ul>
</form>
<div class="set-check hidden-xs">
<input type="checkbox" id="set-search-blank" class="bubble-3" autocomplete="off">
</div>
</div>
<!--搜索结束-->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg> 电影电视剧</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://tv.cctv.com/live/index.shtml" title="这不用多说了吧" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-cctv"></use></svg>
<span>CCTV直播</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.bilibili.com/" title="哔哩哔哩bilibili - 你感兴趣的视频都在这里" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-bilibili"></use></svg>
<span>哔哩哔哩</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.gying.net/" title="观影-高清影视资源下载 失联邮箱[email protected] [email protected] [email protected]" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-btnull"></use></svg>
<span>观影</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://v.aikanbot.com/" title="爱看机器人-ikanbot.com,是一个利用网络爬虫技术检索全网免费在线观看影视资源的搜素引擎" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-robot"></use></svg>
<span>iKanBot</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://ddys.pro/" title="低端影视-超清在线视频站。回家地址:https://ddys.info/" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg>
<span>低端影视</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://nz99.xyz/" title="NEW字幕组" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-newzmz"></use></svg>
<span>NEW字幕组</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="http://www.butailing.com" title="不太灵影视" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg>
<span>不太灵影视</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.bdys10.com/" title="哔嘀影视-失联链接(需魔法) bdys.me" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg>
<span>哔嘀影视</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.mp4us.com/" title="DOMP4电影-失联邮箱[email protected]或者domp4.icu" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg>
<span>DOMP4电影</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.mp4fan.org/" title="高清MP4粉-据说是MP4BA来的,自行分辨真假" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg>
<span>高清MP4粉</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="http://www.ddzimu.com/" title="点点字幕 | 美剧及电影字幕资源搜索下载" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-dian"></use></svg>
<span>点点字幕</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://subhd.tv/" title="分享交流下载字幕平台 - SubHD" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-zimu"></use></svg>
<span>SubHD</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.youtube.com/" title="就是通常说的油管啦" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-youtube"></use></svg>
<span>YouTube</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.jjduanju.com/" title="吉吉短剧网,各种风格和类型的免费短剧电视剧" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg>
<span>吉吉短剧</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://v.ijujitv.cc/" title="剧集TV-最新热播陆剧,日剧,韩剧,美剧,泰剧在线观看,好看的电视剧推荐" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-fldianying"></use></svg>
<span>剧集TV</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-zhinengai"></use></svg> Ai 智能相关</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://metaso.cn/" title="秘塔AI搜索,没有广告,直达结果" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-mitaso"></use></svg>
<span>秘塔搜索</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://chat.deepseek.com/" title="深度求索(DeepSeek),成立于2023年,专注于研究世界领先的通用人工智能底层模型与技术,挑战人工智能前沿性难题。" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shenduqiusuo"></use></svg>
<span>深度求索</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://chatgpt.com/" title="ChatGPT是OpenAI研发的一款聊天机器人程序" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-chatgpt"></use></svg>
<span>ChatGPT官网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://claude.ai/new" title="Claude是由Anthropic公司开发的一款人工智能聊天机器人" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-Claude"></use></svg>
<span>Claude</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://tongyi.aliyun.com/qianwen/" title="由阿里推出的智能大模型,能理解人类语言、生成内容,是人们生活和工作的智能助手" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-alityqw"></use></svg>
<span>通义千问</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://yiyan.baidu.com/" title="文心一言是百度全新一代知识增强大语言模型" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-baiduwxyy"></use></svg>
<span>文心一言</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://xinghuo.xfyun.cn/desk" title="由科大讯飞推出的新一代认知智能大模型,拥有跨领域的知识和语言理解能力" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-xunfeixh"></use></svg>
<span>讯飞星火</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://photo.baidu.com/photasy/home" title="超能画布是百度网盘荣誉出品的专注人像摄影的AI创意生成工具,致力于让每个人的图像创意都成真,是摄影师的降本增效神器" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-zhinengai"></use></svg>
<span>超能画布</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-flsheji"></use></svg> 一 · 视频和设计</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://miankoutupian.com/" title="免费的免抠图片素材网站,png透明背景图片素材库,支持以图搜图功能,提供了海量的高质量免抠图片素材免费下载,专门为设计师搜索和分享优质的无背景图和剪贴画,用户无需注册即可免费下载使用" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>免扣图片</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://huaban.com/" title="花瓣网-陪你做生活的设计师" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-huabanwang"></use></svg>
<span>花瓣网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://818ps.com/" title="图怪兽作图神器-在线图片编辑器-PS图片制作-搞定平面设计不求人" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tuguaishou"></use></svg>
<span>图怪兽</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://ibaotu.com/" title="包图网_专注原创商用设计图片下载,会员免费设计素材模板独家图库" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-baotuwang"></use></svg>
<span>包图网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://699pic.com/" title="摄图网-正版高清图片免费下载_商用设计素材图库" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shetuwang"></use></svg>
<span>摄图网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.58pic.com/" title="千图网-免费设计图片素材网站-正版图库免费设计素材中国" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-qiantuwang"></use></svg>
<span>千图网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://669pic.com/" title="万素网-png矢量图背景图片下载-psd摄影图片素材" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>万素网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.16pic.com/" title="六图网-psd素材网_免费设计素材下载_正版高清图片下载库" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>六图网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.aigei.com/" title="中国最大的数字娱乐免费素材下载网站,提供免费的音效配乐|3D模型|视频|游戏素材资源" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shengyin"></use></svg>
<span>爱给网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://ixintu.com/" title="新图网-免费png图片背景素材ppt模板" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-xintuwang"></use></svg>
<span>新图网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://houzi8.com/" title="「版权音乐」商用授权平台-罐头音乐视频配乐素材库-猴子音悦(全站通VIP史低599)" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-houzi"></use></svg>
<span>猴子音悦</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://free3d.com/" title="免费3D模型" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-free3d"></use></svg>
<span>Free3D</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.lanrentuku.com/" title="懒人图库-矢量图,JS代码,网页素材-学会偷懒,懒出境界!" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>懒人图库</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.iconfont.cn/" title="iconfont-国内功能很强大且图标内容很丰富的矢量图标库,提供矢量图标下载、在线存储、格式转换等功能。阿里巴巴体验团队倾力打造,设计和前端开发的便捷工具" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-iconfont"></use></svg>
<span>iconfont</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.xinpianchang.com/" title="新片场-发现全球优质视频与创作人,与百万创作人一起成长" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-xinpianchang"></use></svg>
<span>新片场</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.lookae.com/" title="LookAE.com 是大众脸为您提供的CG后期技术交流平台,欢迎您的到来" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-AdobeAe"></use></svg>
<span>LookAE</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.cgown.com/" title="CG资源网-AE模板_PR模板_C4D教程_FCPX插件_视频素材_免费下载" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-AdobeAe"></use></svg>
<span>CG资源网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://peiseka.com/" title="配色卡,简单好用的配色网站,让色彩搭配不再难" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-peise"></use></svg>
<span>配色卡</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://500px.com.cn/" title="视觉500px摄影师社区 视觉中国" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-500px"></use></svg>
<span>500px</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.vjshi.com/" title="光厂(VJ师网)_正版视频素材下载" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-vjshi"></use></svg>
<span>光厂</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.pinterest.com/" title="Pinterest 是一个以视觉方式发现创意点子的地方" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-pinterest"></use></svg>
<span>Pinterest</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-flyunzhuji"></use></svg> 云服务或建站相关</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://console.dnspod.cn/" title="致力于为各类网站提供高质量的电信、网通、教育网双线或者三线智能DNS免费解析" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-dnspod"></use></svg>
<span>DNSPod</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://home.console.aliyun.com/home/dashboard/ProductAndService" title="阿里云是阿里巴巴集团旗下公司,是全球领先的云计算及人工智能科技公司。" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-aliyun"></use></svg>
<span>阿里云</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://dash.cloudflare.com/" title="Cloudflare 是一个全球性的云平台,它为世界各地的各种规模的企业提供广泛的网络服务" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-cloudflare"></use></svg>
<span>CloudFlare</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.oracle.com/cn/cloud/sign-in.html" title="财大气粗的甲骨文云,请善待它" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-oraclecloud"></use></svg>
<span>Oracle</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.dogecloud.com/?iuid=1759" title="DogeCloud 强大易用的企业级视频应用引擎,多吉云" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-dogecloud"></use></svg>
<span>多吉云</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://cloud.google.com/?hl=zh-CN" title="借助 Google 的云计算服务,包括数据管理、混合云、多云以及 AI 和机器学习方面的服务,着力应对业务挑战" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-googleCloud"></use></svg>
<span>Google Cloud</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://gitcode.com/" title="GitCode是面向全球开发者的开源社区,包括原创博客,开源代码托管,代码协作,项目管理等。与开发者社区互动,提升您的研发效率和质量。" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-gitee"></use></svg>
<span>GitCode</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.vultr.com/zh/" title="一个国外的云服务商 2022仅限新人优惠码 VULTRMATCH" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-vultr"></use></svg>
<span>VULTR</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://aws.amazon.com/cn/console/" title="亚马逊提供的云服务,可免费使用一年VPS" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-aws"></use></svg>
<span>亚马逊云</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://developer.microsoft.com/zh-cn/microsoft-365/profile" title="Microsoft 365 开发人员计划" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-microsoft365"></use></svg>
<span>Microsoft365 E5</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.ucloud.cn/" title="UCloud优刻得-首家公有云科创板上市公司" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-Ucloud"></use></svg>
<span>UCloud</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.dynadot.com/zh/" title="注册域名,赠送建站工具!Dynadot帮您轻轻松松制作精美网站!" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-dynadot"></use></svg>
<span>Dynadot</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.namesilo.com/" title="Cheap Domain Names & Web Hosting Starting at $0.99! | NameSilo" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-namesilo"></use></svg>
<span>NameSilo</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.spaceship.com" title="Bring your domains to life with Spaceship OS" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-yuming"></use></svg>
<span>Spaceship</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://ohttps.com/monitor/dashboard" title="OHTTPS - 免费HTTPS证书、自动更新、自动部署" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-ohttps"></use></svg>
<span>OHTTPS</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://panel.myownfreehost.net/" title="免费空间 MyOwnFreeHost" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-flyunzhuji"></use></svg>
<span>MyOwnFreeHost</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://register.us.kg/auth/login" title="US.KG的免费域名" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-yuming"></use></svg>
<span>USKG域名</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-flsheji"></use></svg> 二 · 视频和设计</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://elements.envato.com/" title="国外优质多种素材网站 Envato Elements" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-envato"></use></svg>
<span>Envato</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.tosound.com/" title="淘声网 - toSound声音搜索引擎 - 免费音效素材资源|视频游戏配乐下载" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tosound"></use></svg>
<span>淘声网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.pexels.com/zh-cn/" title="免费素材图片和视频,可以在任何地方使用。✓ 高质量 ✓ 100% 免费✓ 无需注明归属" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-Pexels"></use></svg>
<span>Pexels</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://pixabay.com/zh/videos/" title="免费正版高清视频素材库 数千部优质视频素材可供免费使用和下载 - Pixabay" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-Pixabay"></use></svg>
<span>pixabay</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://musopen.org/" title="Free Sheet Music, Royalty Free & Public Domain Music | Musopen" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shengyin"></use></svg>
<span>Musopen</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://freepd.com/" title="FreePD.com - Free Public Domain Music Creative Commons 0 Completely Royalty Free" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shengyin"></use></svg>
<span>freePD</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://mazwai.com/" title="Free Stock Video Footage HD Royalty-Free Videos Download" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shipin1"></use></svg>
<span>Mazwai</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.videvo.net/" title="Free Stock Video Footage" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shipin1"></use></svg>
<span>videvo</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://mixkit.co/" title="Mixkit - Awesome free assets for your next video project" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shipin1"></use></svg>
<span>mixkit</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://coverr.co/" title="Free Stock Video Footage, Royalty Free Videos for Download" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shipin1"></use></svg>
<span>coverr</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://taira-komori.jpn.org/freesoundcn.html" title="小森平的免费下载音效" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shengyin"></use></svg>
<span>小森平</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.ear0.com/" title="耳聆网-听见世界之美-声音分享云|音效素材库" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shengyin"></use></svg>
<span>耳聆网</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.toptal.com/designers/subtlepatterns/" title="Subtle Patterns | Free textures for your next web project" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-toptal"></use></svg>
<span>免费纹理</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://wall.alphacoders.com/?lang=Chinese" title="Wallpaper Abyss - 高清壁纸,桌面背景" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-wallabyss"></use></svg>
<span>Wallpaper Abyss</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://asoftmurmur.com/" title="Mix ambient sounds together to wash away distraction and help you focus or relax" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-asoftmurmur"></use></svg>
<span>Soft Murmur</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.freepik.com/" title="Free Vectors, Stock Photos & PSD Downloads | Freepik" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>Freepik</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://pngimg.com/" title="PNG images | 100 000+ Free PNG images" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>PNG images</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.cleanpng.com/" title="CleanPNG - HD png images and illustrations. Free unlimited download.KissPNG" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>CleanPNG</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.bensound.com/free-music-for-videos" title="Royalty Free Music by Bensound" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shengyin"></use></svg>
<span>Bensound</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.splitshire.com/" title="Free Stock Photos - SplitShire" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupian"></use></svg>
<span>SplitShire</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-flxiazai"></use></svg> 网盘或软件资源下载</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.3x3.fun/" title="我为人人,人人为我。分享无界,精彩同在!" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-msx3x3logo-lvdi"></use></svg>
<span>3x3 资源绿洲</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://115.com/" title="115,一生相伴" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-wangpan115"></use></svg>
<span>115网盘</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.123pan.com/login" title="123云盘鼓励优质原创内容分享,专注大型文件存储分发,誓将免费高速进行到底!" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-yunpan123"></use></svg>
<span>123云盘</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://pan.baidu.com/" title="百度网盘为您提供文件的网络备份、同步和分享服务" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-baiduwangpan"></use></svg>
<span>百度网盘</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.aliyundrive.com/drive" title="阿里云盘是一款速度快、不打扰、够安全、易于分享的网盘" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-aliyunpan"></use></svg>
<span>阿里云盘</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://pan.quark.cn/" title="夸克网盘是一款云服务产品,功能包括云存储、高清看剧、文件在线解压、PDF一键转换" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-kuake"></use></svg>
<span>夸克网盘</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://cloud.189.cn/" title="天翼云盘是中国电信推出的云存储服务,为用户守护数据资产" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tianyiyun"></use></svg>
<span>天翼云盘</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://pc.woozooo.com/" title="来这里,下载无限制,无验证码,畅快淋漓尽致" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-lanzouyun"></use></svg>
<span>蓝奏云</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://lingshulian.com/" title="打破传统网页限制,在网络环境较差的情况下,依然保持着满速下载" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-wangpan"></use></svg>
<span>棱束链</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://musetransfer.com/" title="无需登录即可完成文件传输,10GB文件上传下载不限速、免费用,MuseTransfer文件传输工具就是快!" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-wangpan"></use></svg>
<span>MUSE</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://cowtransfer.com/" title="奶牛快传 | 免费大文件传输工具 上传下载不限速" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-nainiukuaichuan"></use></svg>
<span>奶牛快传</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://v.neobai.com/" title="集阅,数字视觉创作在线协作平台" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shipin"></use></svg>
<span>集阅</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.423down.com/" title="更新快、专注去广告类软件输出10年、个人IP品牌软件分享站" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-flxiazai"></use></svg>
<span>423Down</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.dayanzai.me/" title="大眼仔旭 - 专注视频剪辑、解压、录屏、思维导图等办公资源分享" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-flxiazai"></use></svg>
<span>大眼仔旭</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.iplaysoft.com/" title="极具人气和特色的软件网站!专注于推荐优秀软件、APP应用和互联网资源" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-flxiazai"></use></svg>
<span>异次元</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.weidown.com/" title="微当下载是一个免费的软件下载站,全站下载提供CDN加速,让您享受满速下载的体验" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-flxiazai"></use></svg>
<span>微当下载</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://lestore.lenovo.com/" title="联想应用商店为广大用户提供一站式的软件、游戏的极速下载,所有软件都通过人工亲测,安全无忧。" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-shangdian"></use></svg>
<span>联想应用商店</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://byrut.org/" title="通过种子将游戏免费下载到PC" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-zhongzi"></use></svg>
<span>BYRUTOR(荐)</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://rutracker.org/forum/index.php" title="俄罗斯免费盗版资源论坛" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-zhongzi"></use></svg>
<span>RUTRACKER</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.mirrored.to/" title="一个国外的一键上传文件到多个网盘的网站" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-wangpan"></use></svg>
<span>mirrored.to</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://pan666.net/" title="阿里小站-阿里云盘资源共享站 找回链接nav.magictool.cn" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-aliyunpan"></use></svg>
<span>阿里小站</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.hifini.com/" title="HiFiNi音乐磁场,无损音乐下载,高品质音乐下载,百度网盘音乐下载" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-hifini"></use></svg>
<span>音乐磁场</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-flgongju"></use></svg> 一些可能会用的小工具</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://suowo.cn/" title="缩我短链接-短信社群推广-老牌短网址工具-连通性好-永久免费" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-suowo"></use></svg>
<span>缩我短链接</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://tuzim.net/" title="兔子二维码是一款强大、简洁易用的在线二维码生成工具" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tuzi"></use></svg>
<span>兔子二维码</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.iloveimg.com/zh-cn" title="iLoveIMG是一个完全免费的在线处理图片文件的网站" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupianchuli"></use></svg>
<span>iLoveIMG</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.aconvert.com/cn/" title="在线转换文档,图像,视频,音频文件" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-aconvert"></use></svg>
<span>aconvert在线转换</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://cdkm.com/cn/" title="将文件从一种格式转换为另一种格式" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-cdkm"></use></svg>
<span>cdkm在线转换</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.tutieshi.com/" title="在线图片压缩_视频转GIF软件_GIF裁剪合成工具-图贴士_原GIF工具之家" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-tupianchuli"></use></svg>
<span>图贴士</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://gifcompressor.com/zh/" title="GIF压缩 – 在线压缩GIF动画" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-gifcompressor"></use></svg>
<span>GIF压缩</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://d.serctl.com/" title="GitHub 文件代理加速下载服务" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-GitHub"></use></svg>
<span>GitHub加速</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://tableconvert.com/zh-cn/" title="此转换器用于将 Excel(或者其它电子表格应用程序) 转换为 Markdown 表格,也可以通过在线表格编辑器轻松的创建和生成 Markdown 表格" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-biaogefile"></use></svg>
<span>表格转换工具</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://tools.miku.ac?aff=62e52aea0f407a33769759e8&ref=aff" title="MikuTools - 一个轻量的工具集合" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-flgongju"></use></svg>
<span>Miku工具箱</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://tool.oschina.net/" title="OSCHINA.NET在线工具,ostools为开发设计人员提供在线工具" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-ostools"></use></svg>
<span>OSTools</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.w3school.com.cn/index.html" title="全球最大的中文 Web 技术教程" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-w3school"></use></svg>
<span>W3school</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.runoob.com/" title="菜鸟教程-学的不仅是技术,更是梦想!" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-runoob"></use></svg>
<span>菜鸟教程</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://picwish.cn/" title="佐糖-免费在线抠图神器_证件照换底色_照片修复_无损压缩创意图像平台-PicWish" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-picwish"></use></svg>
<span>佐糖</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://bilicover.magecorn.com/" title="bilibili封面提取 - 好用的B站视频封面在线提取工具" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-bilibili"></use></svg>
<span>B站封面提取</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.unistory.cn/" title="UniStory·优映 - 分镜管理,故事板,拍摄计划,拉片工具" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-unistory"></use></svg>
<span>优映</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://rank.kkj.cn/" title="快科技天梯榜为您提供专业科技产品性能榜单数据。" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-jiangbei"></use></svg>
<span>快科技</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
<!-- 导航列表:一个分类的开始 -->
<ul class="mylist row">
<li class="title"><svg class="icon" aria-hidden="true"><use xlink:href="#sy-syshuye"></use></svg> 乱七八糟的不常用还不想分类</li> <!-- 此分类的名字 -->
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://qy.163.com/login/" title="网易企业邮箱" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-mail163"></use></svg>
<span>网易企业邮箱</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://qiye.aliyun.com/" title="阿里企业邮箱,构建在阿里云飞天平台上的企业邮箱" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-alimail"></use></svg>
<span>阿里企业邮箱</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://exmail.qq.com/login" title="不只是邮箱,更是一种高效办公新体验" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-txqymail"></use></svg>
<span>腾讯企业邮箱</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.yikm.net/" title="小霸王,其乐无穷。红白机,FC在线游戏,街机游戏在线,NES games" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-xiaobawang"></use></svg>
<span>在线小霸王</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://steamdb.info/" title="SteamDB - Steam数据库" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-steam"></use></svg>
<span>Steam DB</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://zh.wikipedia.org/wiki/Wikipedia:%E9%A6%96%E9%A1%B5" title="海纳百川,有容乃大!人人可编辑的自由百科全书!" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-wikipedia"></use></svg>
<span>维基百科</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://zh.wikihow.com/%E9%A6%96%E9%A1%B5" title="你可以信赖的万事指南-互联网上最值得信赖的指南网站" target="_blank"></a>
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-wikihow"></use></svg>
<span>wikiHow</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://asciiflow.com/#/" title="将一副画转换成众多文字汇聚成的样子" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-syshuye"></use></svg>
<span>画成字符</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.autopiano.cn/" title="自由钢琴 AutoPiano | 在线钢琴,键盘钢琴,模拟钢琴,多种乐器选择,好听又好玩" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-gangqin"></use></svg>
<span>自由钢琴</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.ageeye.cn/" title="观沧海是⼀个知识地图制作分享平台,它将地图和文字结合,反映中国历史、军事、地理、文化等方面的知识,向用户提供地图协作分享服务" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-ageeye"></use></svg>
<span>观沧海</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.smartedu.cn/" title="国家中小学智慧教育平台、国家职业教育智慧教育平台、国家高等教育智慧教育平台" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-jiaoyu"></use></svg>
<span>国家智慧教育</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="http://bzdt.ch.mnr.gov.cn/" title="标准地图依据中国和世界各国国界线画法标准编制而成..." target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-map"></use></svg>
<span>中国标准地图</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.openstreetmap.org/" title="OpenStreetMap 是一个由地图制作爱好者组成的社区。这些爱好者提供并维护世界各地关于道路、小道、咖啡馆、铁路车站等各种各样的数据" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-openstreetmap"></use></svg>
<span>OpenStreetMap</span></a></li>
<li class="col-3 col-sm-3 col-md-3 col-lg-1"><a href="https://www.virustotal.com/gui/home/upload" title="VirusTotal 是一个全球知名的免费在线查毒和威胁情报平台,由 Google 的母公司 Alphabet 运营" target="_blank">
<svg class="icon" aria-hidden="true"><use xlink:href="#sy-virustotal"></use></svg>
<span>VirusTotal</span></a></li>
</ul>
<!-- 导航列表:一个分类的结束 -->
</div>
<!--版权信息开始-->
<p class="mt-5 mb-3 text-muted text-center">©<script>document.write(new Date().getFullYear())</script> <a href="https://ihcll.cn/">火车啦啦 - 思媛起始页</a></p>
<!--
作者:D.Young
主页:https://blog.5iux.cn
github:https://github.com/5iux/5iux.github.io
日期:2021-08-02
版权所有,请勿删除
----------------------------------------
初始修改日期:2022-05-12
修改:火车啦啦
Github地址:https://github.com/hcllmsx/SYstart
更新时间:2025.02.05
-->
<!--版权信息结束-->
<script>
eval(function(e, t, a, c, i, n) {
if (i = function(e) {
return (e < t ? "" : i(parseInt(e / t))) + (35 < (e %= t) ? String.fromCharCode(e + 29) : e.toString(36))
}, !"".replace(/^/, String)) {
for (; a--;) n[i(a)] = c[a] || i(a);
c = [function(e) {
return n[e]
}], i = function() {
return "\\w+"
}, a = 1
}
for (; a--;) c[a] && (e = e.replace(new RegExp("\\b" + i(a) + "\\b", "g"), c[a]));
return e
}('!2(){2 g(){h(),i(),j(),k()}2 h(){d.9=s()}2 i(){z a=4.8(\'A[B="7"][5="\'+p()+\'"]\');a&&(a.9=!0,l(a))}2 j(){v(u())}2 k(){w(t())}2 l(a){P(z b=0;b<e.O;b++)e[b].I.1c("s-M");a.F.F.F.I.V("s-M")}2 m(a,b){E.H.S("L"+a,b)}2 n(a){6 E.H.Y("L"+a)}2 o(a){f=a.3,v(u()),w(a.3.5),m("7",a.3.5),c.K(),l(a.3)}2 p(){z b=n("7");6 b||a[0].5}2 q(a){m("J",a.3.9?1:-1),x(a.3.9)}2 r(a){6 a.11(),""==c.5?(c.K(),!1):(w(t()+c.5),x(s()),s()?E.U(b.G,+T X):13.Z=b.G,10 0)}2 s(){z a=n("J");6 a?1==a:!0}2 t(){6 4.8(\'A[B="7"]:9\').5}2 u(){6 4.8(\'A[B="7"]:9\').W("14-N")}2 v(a){c.1e("N",a)}2 w(a){b.G=a}2 x(a){a?b.3="1a":b.16("3")}z y,a=4.R(\'A[B="7"]\'),b=4.8("#18-C-19"),c=4.8("#C-12"),d=4.8("#17-C-15"),e=4.R(".C-1b"),f=a[0];P(g(),y=0;y<a.O;y++)a[y].D("Q",o);d.D("Q",q),b.D("1d",r)}();', 62, 77, "||function|target|document|value|return|type|querySelector|checked||||||||||||||||||||||||||var|input|name|search|addEventListener|window|parentNode|action|localStorage|classList|newWindow|focus|superSearch|current|placeholder|length|for|change|querySelectorAll|setItem|new|open|add|getAttribute|Date|getItem|href|void|preventDefault|text|location|data|blank|removeAttribute|set|super|fm|_blank|group|remove|submit|setAttribute".split("|"), 0, {}));
</script>
<!-- <script src="./js/bootstrap.min.js" type="application/javascript"></script> -->
<script src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/bootstrap/4.5.3/js/bootstrap.min.js" type="application/javascript"></script>
</body>
</html>