-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1407 lines (1191 loc) · 54.1 KB
/
index.html
File metadata and controls
1407 lines (1191 loc) · 54.1 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-Hans">
<head>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="viggo" />
<title>Yaklostack - 一枚无名小卒罢了</title>
<meta name="keywords" content="Hexo,虚之亚克洛,Yaklo,ChinaYaklo,xiaoluole,stack">
<meta name="description" content="做自己想做的事,才是最开心的">
<link rel="shortcut icon" href="/images/skyesclogo2.png">
<link rel="stylesheet" href="/css/hclonely.css">
<link rel="stylesheet" href="//fonts.loli.net/css?family=Arimo:400,700,400italic.css">
<link rel="stylesheet" href="/css/fonts/linecons/css/linecons.min.css">
<link rel="stylesheet" href="/css/fonts/fontawesome/css/all.min.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/xenon-core.min.css">
<link rel="stylesheet" href="/css/xenon-components.min.css">
<link rel="stylesheet" href="/css/xenon-skins.min.css">
<link rel="stylesheet" href="/css/nav.min.css">
<script src="/js/jquery-1.11.1.min.js"></script>
<script src="/js/header.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="/js/html5shiv.min.js"></script>
<script src="/js/respond.min.js"></script>
<![endif]-->
<!-- / FB Open Graph -->
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.skyesc.com/index.html">
<meta property="og:title" content="Yaklostack - 一枚无名小卒罢了">
<meta property="og:description" content="做自己想做的事,才是最开心的">
<meta property="og:site_name" content="Yaklostack - 一枚无名小卒罢了">
<meta property="og:image" content="/images/webstack_banner_cn.png">
<!-- / Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Yaklostack - 一枚无名小卒罢了">
<meta name="twitter:description" content="做自己想做的事,才是最开心的">
<meta name="twitter:image" content="/images/webstack_banner_cn.png">
<!-- 直接添加html内容即可 -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XP98XNNWW9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XP98XNNWW9');
</script>
<!-- 可设置多行 -->
<meta name="generator" content="Hexo 5.2.0"></head>
</head>
<body class="page-body">
<div class="page-container">
<div class="sidebar-menu toggle-others fixed">
<div class="sidebar-menu-inner">
<header class="logo-env">
<div class="logo">
<a href="/index.html" class="logo-expanded">
<img src="/images/3D-SkyEscLogo@10x.png" width="100%" alt="" />
</a>
<a href="/index.html" class="logo-collapsed">
<img src="/images/白-SkyEsc-.png" width="40" alt="" />
</a>
</div>
<div class="mobile-menu-toggle visible-xs">
<a href="#" data-toggle="user-info-menu">
<i class="linecons-cog"></i>
</a>
<a href="#" data-toggle="mobile-menu">
<i class="fas fa-bars"></i>
</a>
</div>
</header>
<ul id="main-menu" class="main-menu">
<li>
<a href="#开发工具" class="smooth">
<i class="fas fa-tools"></i>
<span class="title">开发工具</span>
</a>
</li>
<li>
<a href="#ACGN" class="smooth">
<i class="fas fa-paw"></i>
<span class="title">ACGN</span>
</a>
</li>
<li>
<a href="#实用工具" class="smooth">
<i class="fas fa-tools"></i>
<span class="title">实用工具</span>
</a>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-gamepad"></i>
<span class="title">游戏相关</span>
</a>
<ul>
<li>
<a href="#游戏平台" class="smooth">
<i class="fas fa-gamepad"></i>
<span class="title">游戏平台</span>
</a>
</li>
<li>
<a href="#游戏工具" class="smooth">
<i class="fas fa-gamepad"></i>
<span class="title">游戏工具</span>
</a>
</li>
<li>
<a href="#游戏Wiki" class="smooth">
<i class="fas fa-gamepad"></i>
<span class="title">游戏Wiki</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-gamepad"></i>
<span class="title">游戏定向</span>
</a>
<ul>
<li>
<a href="#明日方舟" class="smooth">
<i class="fas fa-chess-rook"></i>
<span class="title">明日方舟</span>
</a>
</li>
</ul>
</li>
<li>
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-blog"></i>
<span class="title">SkyEsc网络服务</span>
</a>
<ul>
<li>
<a href="#我的博客" class="smooth">
<i class="fas fa-blog"></i>
<span class="title">我的博客</span>
</a>
</li>
<li>
<a href="#服务站点" class="smooth">
<i class="fab fa-internet-explorer"></i>
<span class="title">服务站点</span>
</a>
</li>
</ul>
</li>
<li class="submit-tag">
<a href="/about/">
<i class="far fa-heart"></i>
<span class="tooltip-blue">关于本站</span>
</a>
</li>
<li>
<a href="javascript:void(0)">
<i class="fas fa-eye"></i>
<span id="busuanzi_container_site_pv">本站总访问量<span id="busuanzi_value_site_pv"></span></span>
</a>
</li>
<li>
<a href="javascript:void(0)">
<i class="fas fa-users"></i>
<span id="busuanzi_container_site_uv">本站总访客数<span id="busuanzi_value_site_uv"></span></span>
</a>
</li>
</ul>
</div>
</div>
<div class="main-content">
<nav class="navbar user-info-navbar" role="navigation">
<ul class="user-info-menu left-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs hover-line">
<a href="#" data-toggle="sidebar">
<i class="fas fa-bars"></i>
</a>
</li>
<li class="dropdown hover-line language-switcher">
<a href="/index.html" class="dropdown-toggle" data-toggle="dropdown">
<img src="/images/flags/flag-cn.png" alt="flag-cn" /> Chinese
</a>
<ul class="dropdown-menu languages">
<li class="active">
<a href="/index.html">
<img src="/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
</li>
</ul>
</li>
<li class="switch-mode hover-line" onclick="switchNightMode()">
<a href="#">
<svg t="1593061068148" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1681" width="16" height="16">
<path d="M582.4 326.4c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256z m0 448c-70.4 0-131.2-36.8-164.8-92.8 12.8 3.2 27.2 4.8 40 4.8 121.6 0 219.2-99.2 219.2-219.2 0-17.6-1.6-35.2-6.4-52.8 60.8 32 102.4 96 102.4 169.6 1.6 104-84.8 190.4-190.4 190.4zM582.4 262.4c17.6 0 32-14.4 32-32v-128c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 17.6 14.4 32 32 32zM262.4 582.4c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32zM310.4 356.8c6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6 12.8-12.8 12.8-32 0-44.8l-91.2-91.2c-12.8-12.8-32-12.8-44.8 0-12.8 12.8-12.8 32 0 44.8l91.2 91.2zM944 220.8c-12.8-12.8-32-12.8-44.8 0l-91.2 91.2c-12.8 12.8-12.8 32 0 44.8 6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6l91.2-91.2c12.8-12.8 12.8-33.6 0-44.8zM310.4 808l-91.2 91.2c-12.8 12.8-12.8 32 0 44.8 6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6l91.2-91.2c12.8-12.8 12.8-32 0-44.8-11.2-11.2-32-11.2-44.8 0z" p-id="1682" fill="#707070"></path>
</svg>
</a>
</li>
</ul>
</nav>
<section class="sousuo">
<div class="search">
<div class="search-box">
<span class="search-icon" style="background: url(/images/search_icon.png) 0px 0px; opacity: 1;"></span>
<input type="text" id="txt" class="search-input" autocomplete="off" placeholder="请输入关键字,按回车 / Enter 搜索">
<button class="search-btn" id="search-btn"><i class="fa fa-search"></i></button>
</div>
<!-- 搜索热词 -->
<div class="box search-hot-text" id="box" style="display: none;">
<ul></ul>
</div>
<!-- 搜索引擎 -->
<div class="search-engine" style="display: none;">
<div class="search-engine-head">
<strong class="search-engine-tit">选择您的默认搜索引擎:</strong>
<div class="search-engine-tool">搜索热词: <span id="hot-btn"></span></div>
</div>
<ul class="search-engine-list search-engine-list_zmki_ul">
</ul>
</div>
</section>
<script>search()</script>
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="开发工具"></i>开发工具</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.test-ipv6.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.test-ipv6.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/test-ipv6.webp" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>IPv6 连接测试</strong>
</a>
<p class="overflowClip_2"></p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https:https://github.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https:https://github.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/images/logos/github.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Github</strong>
</a>
<p class="overflowClip_2">面向开源及私有软件项目的托管平台。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://vercel.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://vercel.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/vercel.webp" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Vercel</strong>
</a>
<p class="overflowClip_2">Pages托管平台</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://imgchr.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://imgchr.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//s3.ax1x.com/2020/11/27/DrhAGn.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>路过图床</strong>
</a>
<p class="overflowClip_2">高速稳定的图片上传和外链服务</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.aliyun.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.aliyun.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/aly.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>阿里云</strong>
</a>
<p class="overflowClip_2">上云就上阿里云</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://cloud.tencent.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://cloud.tencent.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/txy.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>腾讯云</strong>
</a>
<p class="overflowClip_2">产业智变 云启未来</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.cloudflare.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.cloudflare.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/cloudflare.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Cloudflare</strong>
</a>
<p class="overflowClip_2">智能化集成全球云网络</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.ip110.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.ip110.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/gxhl.webp" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>港讯互联</strong>
</a>
<p class="overflowClip_2">专业的香港空间、香港虚拟主机、免备案空间服务商!</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://perfdog.qq.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://perfdog.qq.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/perfdog.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>PerfDog性能狗</strong>
</a>
<p class="overflowClip_2">移动全平台性能测试分析专家</p>
</div>
</div>
</div>
</div>
</div>
<br />
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="ACGN"></i>ACGN</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://mew.fun', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://mew.fun">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/Mew.webp" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Mew Online</strong>
</a>
<p class="overflowClip_2">独特的人,会吸引独特的人。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.lightnovel.us', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.lightnovel.us">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/qzgd.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>轻之国度</strong>
</a>
<p class="overflowClip_2">专注于分享的NACG社群</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.x23qb.com/lightnovel/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.x23qb.com/lightnovel/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/qbxs.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>铅笔小说 - 轻小说の</strong>
</a>
<p class="overflowClip_2">分享最爱的全本小说</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://waifulabs.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://waifulabs.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/waifulabs.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>WAIFU LABS</strong>
</a>
<p class="overflowClip_2">创造一个独一无二的二次元老婆(头像)</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://konachan.net', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://konachan.net">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/konachan.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Konachan</strong>
</a>
<p class="overflowClip_2">二次元壁纸 net[G] com[R-18]</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://www.zzzfun.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.zzzfun.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/zzzfun.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>ZzzFun动漫视频网 - ( ̄﹃ ̄)~zZZ</strong>
</a>
<p class="overflowClip_2">提供最新最快的动漫新番资讯和在线播放</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://bt.acgzero.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://bt.acgzero.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/acgzero.webp" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>零度动漫下载站</strong>
</a>
<p class="overflowClip_2"></p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.dmhy.org', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.dmhy.org">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/dmhy.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>動漫花園</strong>
</a>
<p class="overflowClip_2"></p>
</div>
</div>
</div>
</div>
</div>
<br />
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="实用工具"></i>实用工具</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.coolapk.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.coolapk.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.coolapk.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>酷安</strong>
</a>
<p class="overflowClip_2">发现科技新生活</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.mygraphpaper.com/index.php?lang=zh-hans', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.mygraphpaper.com/index.php?lang=zh-hans">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>图形方格纸 MyGraphPaper</strong>
</a>
<p class="overflowClip_2">制作自己的方格笔记本, 寻找适合的笔记法, 学习、工作更清晰 !</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://trace.moe', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://trace.moe">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//trace.moe/favicon.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>等待:这是什么动漫?</strong>
</a>
<p class="overflowClip_2">动漫场景搜索引擎</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://saucenao.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://saucenao.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//saucenao.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>SauceNAO</strong>
</a>
<p class="overflowClip_2">二次元找原图搜索引擎</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.biliob.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.biliob.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.biliob.com/img/icons/android-chrome-192x192.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>BiliOB观测者[律师函警告?]</strong>
</a>
<p class="overflowClip_2">哔哩哔哩数据统计分析网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.speedtest.net/zh-Hans', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.speedtest.net/zh-Hans">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.speedtest.net/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>SpeedTest</strong>
</a>
<p class="overflowClip_2">全球最好用的测速网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.speedtest.cn', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.speedtest.cn">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.speedtest.cn/images/ico/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>测速网</strong>
</a>
<p class="overflowClip_2">中国大陆最好使用这个测速网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://cowtransfer.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://cowtransfer.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//background.cowtransfer.com/favicon-32x32.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>奶牛快传</strong>
</a>
<p class="overflowClip_2">一款无比安全、省时高效的文件传输及存储服务</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://translate.google.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://translate.google.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//translate.google.cn/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Google翻译</strong>
</a>
<p class="overflowClip_2">著名的谷歌生草机(国内可能打不开)</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://translate.google.cn', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://translate.google.cn">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//translate.google.cn/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Google翻译.cn</strong>
</a>
<p class="overflowClip_2">著名的谷歌生草机.cn</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://fanyi.caiyunapp.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://fanyi.caiyunapp.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.caiyunapp.com/imgs/xiaoyilogo.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>彩云小译 - 在线翻译</strong>
</a>
<p class="overflowClip_2">一款好用与准确的翻译网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.deepl.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.deepl.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.deepl.com/img/logo/DeepL_Logo_darkBlue_v2.svg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>DeepL</strong>
</a>
<p class="overflowClip_2">基于深度学习的翻译软件,试试它会有出乎意料的效果</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://ym.bingly.cn', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://ym.bingly.cn">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/bly.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>冰灵云免流量平台</strong>
</a>
<p class="overflowClip_2">全局免流,不再局限于套餐限制</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.neat-reader.cn', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.neat-reader.cn">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.neat-reader.cn/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Neat Reader</strong>
</a>
<p class="overflowClip_2">新世代 ePub/Txt 阅读器,开启阅读全新体验</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://tinypng.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://tinypng.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//tinypng.com/images/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>TinyPNG</strong>
</a>
<p class="overflowClip_2">图片压缩</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.tutieshi.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.tutieshi.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//www.tutieshi.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>图贴士</strong>
</a>
<p class="overflowClip_2">原GIF工具之家</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.artbreeder.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.artbreeder.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/artbreeder.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Artbreeder</strong>
</a>
<p class="overflowClip_2">扩展您的想象力,肖像、专辑封面、景观、动漫肖像</p>
</div>
</div>
</div>
</div>
</div>
<br />
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="游戏平台"></i>游戏平台</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://store.steampowered.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://store.steampowered.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/steam.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Steam</strong>
</a>
<p class="overflowClip_2">Steam 是畅玩游戏、讨论游戏、创造游戏的终极目的地。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://zh-cn.ubisoft.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://zh-cn.ubisoft.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/ubisoft.webp" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>UBISOFT 育碧中国</strong>
</a>
<p class="overflowClip_2">育碧国际中文网站,发布育碧最新游戏新品动态.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://ubisoftconnect.com/zh-CN/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://ubisoftconnect.com/zh-CN/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/ubisoft.webp" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>UBISOFT CONNECT</strong>
</a>
<p class="overflowClip_2">一站式解决方案,轻松便捷地下载、安装、畅玩所有育碧游戏。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.epicgames.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.epicgames.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/epic.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>EPIC GAMES</strong>
</a>
<p class="overflowClip_2">一个为PC和Mac设计的数字商店,以玩家和创作者为中心。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.gog.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.gog.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/gog.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>GOG.COM</strong>
</a>
<p class="overflowClip_2">丰富的游戏选择,无DRM,有免费的好东西和30天退款。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.origin.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.origin.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webicon/origin.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Origin</strong>
</a>
<p class="overflowClip_2">充满超棒PC游戏聚集的平台。</p>
</div>
</div>
</div>
</div>
</div>
<br />
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="游戏工具"></i>游戏工具</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://static-web.ghzs.com/cspage_pro/yuanshenMap.html', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://static-web.ghzs.com/cspage_pro/yuanshenMap.html">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="//s3.ax1x.com/2021/03/19/6RdFq1.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>原神全资源互动地图工具-光环助手</strong>
</a>