-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
6914 lines (6914 loc) · 425 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
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">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content="Wayne">
<title>WayneのNavigation</title>
<meta name="keywords" content="网址导航,网站导航,Wayne,Navigation"/>
<meta name="description" content="WayneのNavigation - 收集国内外优秀网站、灵感创意网站,定时更新分享优质书签。">
<link rel="shortcut icon" type="image/x-icon" href="images/wayne.png"/>
<link rel="stylesheet" href="css/core.min.css">
<link rel="stylesheet" href="css/dark.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">
<!-- jQuery -->
<script src="https://gcore.jsdelivr.net/npm/wayne-img@latest/js/jquery-3.6.4.min.js"></script>
<!-- tabler-icons -->
<link rel="stylesheet" href="https://gcore.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
<!-- Izitoast -->
<link rel="stylesheet" href="https://gcore.jsdelivr.net/npm/wayne-img@latest/iziToast-1.4.0/css/iziToast.min.css">
<script type="text/javascript" src="https://gcore.jsdelivr.net/npm/wayne-img@latest/iziToast-1.4.0/js/iziToast.min.js"></script>
</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">
<!-- logo -->
<div class="logo">
<a href="https://nav.kong.pub/" class="logo-expanded">
<img src="images/navigation.png" width="163px" height=“40px” alt="" />
</a>
<a href="https://nav.kong.pub/" class="logo-collapsed">
<img src="images/wayne.png" width="40" alt="" />
</a>
</div>
<div class="mobile-menu-toggle visible-xs">
<a onclick="switchNightMode()"><i class="ti ti-yin-yang-filled"></i></a>
<a href="#" data-toggle="user-info-menu"><i class="ti ti-settings"></i></a>
<a href="#" data-toggle="mobile-menu"><i class="ti ti-menu-2"></i></a>
</div>
</header>
<ul id="main-menu" class="main-menu">
<li><a href="#search" class="smooth"><i class="ti ti-search"></i> <span class="title">实用搜索</span></a></li>
<li><a href="#热搜新闻" class="smooth"><i class="ti ti-flame"></i> <span class="title">热搜新闻</span></a></li>
<li><a href="#常用推荐" class="smooth"><i class="ti ti-star"></i> <span class="title">常用推荐</span></a></li>
<li><a><i class="ti ti-disc"></i> <span class="title">及时行乐</span><span class="label label-pink pull-right hidden-collapsed">HOT</span></a>
<ul>
<li><a href="#文艺至死" class="smooth"><span class="title">文艺至死</span></a></li>
<li><a href="#音乐天堂" class="smooth"><span class="title">音乐天堂</span></a></li>
<li><a href="#直播聚合" class="smooth"><span class="title">直播聚合</span></a></li>
<li><a href="#在线综合" class="smooth"><span class="title">在线综合</span></a></li>
<li><a href="#影视搜索" class="smooth"><span class="title">影视搜索</span></a></li>
<li><a href="#在线解析" class="smooth"><span class="title">在线解析</span></a></li>
<li><a href="#字幕仓库" class="smooth"><span class="title">字幕仓库</span></a></li>
<li><a href="#资源仓库" class="smooth"><span class="title">资源仓库</span></a></li>
<li><a href="#休闲娱乐" class="smooth"><span class="title">休闲娱乐</span></a></li>
</ul>
</li>
<li><a><i class="ti ti-tool"></i> <span class="title">实用工具</span></a>
<ul>
<li><a href="#在线工具" class="smooth"><span class="title">在线工具</span></a></li>
<li><a href="#在线改图" class="smooth"><span class="title">在线改图</span></a></li>
<li><a href="#以图搜图" class="smooth"><span class="title">以图搜图</span></a></li>
<li><a href="#在线转格" class="smooth"><span class="title">在线转格</span></a></li>
<li><a href="#在线生成" class="smooth"><span class="title">在线生成</span></a></li>
<li><a href="#其他在线" class="smooth"><span class="title">其他在线</span></a></li>
<li><a href="#上传下载" class="smooth"><span class="title">上传下载</span></a></li>
<li><a href="#软件精选" class="smooth"><span class="title">软件精选</span></a></li>
<li><a href="#浏览器插件" class="smooth"><span class="title">浏览器插件</span></a></li>
<li><a href="#虚拟信息" class="smooth"><span class="title">虚拟信息</span></a></li>
</ul>
</li>
<li><a><i class="ti ti-book"></i> <span class="title">素材资源</span></a>
<ul>
<li><a href="#壁纸下载" class="smooth"><span class="title">壁纸下载</span></a></li>
<li><a href="#PNG免扣" class="smooth"><span class="title">PNG免扣</span></a></li>
<li><a href="#PPT资源" class="smooth"><span class="title">PPT资源</span></a></li>
<li><a href="#字体资源" class="smooth"><span class="title">字体资源</span></a></li>
<li><a href="#其他资源" class="smooth"><span class="title">其他资源</span></a></li>
<li><a href="#设计灵感" class="smooth"><span class="title">设计灵感</span></a></li>
<li><a href="#API资源" class="smooth"><span class="title">API资源</span><span class="label label-pink pull-right hidden-collapsed">NEW</span></a></a></li>
</ul>
</li>
<li><a><i class="ti ti-database"></i> <span class="title">开发生产</span></a>
<ul>
<li><a href="#域名申请" class="smooth"><span class="title">域名申请</span></a></li>
<li><a href="#云端服务" class="smooth"><span class="title">云端服务</span></a></li>
<li><a href="#开发文档" class="smooth"><span class="title">开发文档</span></a></li>
<li><a href="#网站管理" class="smooth"><span class="title">网站管理</span></a></li>
</ul>
</li>
<li><a><i class="ti ti-school"></i> <span class="title">学无止境</span></a>
<ul>
<li><a href="#自学编程" class="smooth"><span class="title">自学编程</span></a></li>
<li><a href="#学习天地" class="smooth"><span class="title">学习天地</span></a></li>
</ul>
</li>
<li><a><i class="ti ti-device-desktop"></i> <span class="title">系统相关</span></a>
<ul>
<li><a href="#系统下载" class="smooth"><span class="title">系统下载</span></a></li>
<li><a href="#系统美化" class="smooth"><span class="title">系统美化</span></a></li>
<li><a href="#系统工具" class="smooth"><span class="title">系统工具</span></a></li>
</ul>
</li>
<li><a href="#社区资讯" class="smooth"><i class="ti ti-news"></i> <span class="title">社区资讯</span></a></li>
<li><a href="#about" class="smooth"><i class="ti ti-id"></i> <span class="title">关于本站</span></a></li>
</ul>
</div>
</div>
<div class="main-content">
<nav class="navbar user-info-navbar" role="navigation" style="font-size: 14px">
<ul class="user-info-menu left-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs">
<a href="#" data-toggle="sidebar">
<i class="ti ti-menu-2"></i>
</a>
</li>
<li>
<a href="https://kong.pub/" target="_blank">
<i class="ti ti-home"></i> WayneのHome
</a>
</li>
<li>
<a href="https://blog.kong.pub/" target="_black">
<i class="ti ti-brand-blogger"></i> WayneのBlog
</a>
</li>
</ul>
<ul class="user-info-menu right-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs" style="padding: 30px 0px">
<iframe scrolling="no" src="https://tianqiapi.com/api.php?style=tz&skin=gif&color=f0610e"
frameborder="0" width="350" height="20" allowtransparency="true"></iframe>
</li>
</ul>
</nav>
<!-- 实用搜索 -->
<div id="search" class="s-search">
<div id="search-list" class="hide-type-list">
<div class="s-type">
<span></span>
<div class="s-type-list animated fadeInUp">
<label for="type-baidu">常用</label>
<label for="type-search">搜索</label>
<label for="type-br">工具</label>
<label for="type-zhihu">社区</label>
<label for="type-taobao1">生活</label>
<label for="type-zhaopin">求职</label>
</div>
</div>
<div class="search-group group-a">
<span class="type-text">常用</span>
<ul class="search-type">
<li><input checked hidden type="radio" name="type" id="type-baidu" value="https://www.baidu.com/s?wd="
data-placeholder="百度一下,你就知道"><label for="type-baidu"><span style="color:#2100E0"
class="dark-text">百度</span></label>
</li>
<li><input hidden type="radio" name="type" id="type-bing1" value="https://cn.bing.com/search?q="
data-placeholder="微软 Bing 搜索"><label for="type-bing1"><span style="color:#007daa">Bing</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-bili1"
value="https://search.bilibili.com/all?keyword=" data-placeholder="哔哩哔哩搜索"><label
for="type-bili1"><span style="color:#00a1d6">BiliBili</span></label></li>
<li><input hidden type="radio" name="type" id="type-git1"
value="https://github.com/search?utf8=%E2%9C%93&q=" data-placeholder="搜索 Github 仓库"><label
for="type-git1"><span style="color:#000000" class="dark-text">Github</span></label></li>
</ul>
</div>
<div class="search-group group-b">
<span class="type-text">搜索</span>
<ul class="search-type">
<li><input hidden type="radio" name="type" id="type-search" value="https://www.baidu.com/s?wd="
data-placeholder="百度一下,你就知道"><label for="type-search"><span style="color:#2319dc"
class="dark-text">百度</span></label>
</li>
<li><input hidden type="radio" name="type" id="type-bing" value="https://cn.bing.com/search?q="
data-placeholder="微软 Bing 搜索"><label for="type-bing"><span style="color:#007daa">Bing</span></label>
</li>
<li><input hidden type="radio" name="type" id="type-google1" value="https://www.google.com/search?q="
data-placeholder="谷歌搜索"><label for="type-google1"><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-fsou" value="https://fsoufsou.com/search?q="
data-placeholder="F搜"><label for="type-fsou"><span style="color:#AE049D ">F搜</span></label></li>
<li><input hidden type="radio" name="type" id="type-360" value="https://www.so.com/s?q="
data-placeholder="360好搜"><label for="type-360"><span style="color:#19b955">360</span></label></li>
<li><input hidden type="radio" name="type" id="type-sogo" value="https://www.sogou.com/web?query="
data-placeholder="搜狗搜索"><label for="type-sogo"><span style="color:#ff5943">搜狗</span></label></li>
<li><input hidden type="radio" name="type" id="type-bili" value="https://search.bilibili.com/all?keyword="
data-placeholder="哔哩哔哩搜索"><label for="type-bili"><span style="color:#00a1d6">BiliBili</span></label>
</li>
<li><input hidden type="radio" name="type" id="type-git"
value="https://github.com/search?utf8=%E2%9C%93&q=" data-placeholder="搜索 Github 仓库"><label
for="type-git"><span style="color:#000000" class="dark-text">Github</span></label></li>
</ul>
</div>
<div class="search-group group-c">
<span class="type-text">工具</span>
<ul class="search-type">
<li><input hidden type="radio" name="type" id="type-ping" value="https://ping.chinaz.com/"
data-placeholder="请输入网址 ( 不带http:// )"><label for="type-ping"><span
style="color:#00599e">PING检测</span></label></li>
<li><input hidden type="radio" name="type" id="type-icp" value="https://icp.chinaz.com/"
data-placeholder="请输入网址 ( 不带http:// )"><label for="type-icp"><span
style="color:#ffac00">备案查询</span></label></li>
<li><input hidden type="radio" name="type" id="type-br" value="https://rank.chinaz.com/all/"
data-placeholder="请输入网址 ( 不带http:// )"><label for="type-br"><span
style="color:#55a300">权重查询</span></label></li>
<li><input hidden type="radio" name="type" id="type-links" value="https://link.chinaz.com/"
data-placeholder="请输入网址 ( 不带http:// )"><label for="type-links"><span style="color:#313439"
class="dark-text">友链检测</span></label></li>
<li><input hidden type="radio" name="type" id="type-404" value="https://stool.chinaz.com/https?url="
data-placeholder="请输入网址 ( 不带http:// )"><label for="type-404"><span
style="color:#f00">HTTPS检测</span></label></li>
<li><input hidden type="radio" name="type" id="type-ciku" value="https://seo.chinaz.com/"
data-placeholder="请输入网址 ( 不带http:// )"><label for="type-ciku"><span
style="color:#016DBD">SEO查询</span></label></li>
</ul>
</div>
<div class="search-group group-d">
<span class="type-text">社区</span>
<ul class="search-type">
<li><input hidden type="radio" name="type" id="type-zhihu"
value="https://www.zhihu.com/search?type=content&q=" data-placeholder="知乎,与你分享刚编的故事"><label
for="type-zhihu"><span style="color:#0084ff">知乎</span></label></li>
<li><input hidden type="radio" name="type" id="type-wechat"
value="http://weixin.sogou.com/weixin?type=2&query=" data-placeholder="微信"><label
for="type-wechat"><span style="color:#00a06a">微信</span></label></li>
<li><input hidden type="radio" name="type" id="type-weibo" value="http://s.weibo.com/weibo/"
data-placeholder="微博"><label for="type-weibo"><span style="color:#e6162d">微博</span></label></li>
<li><input hidden type="radio" name="type" id="type-douban" value="https://www.douban.com/search?q="
data-placeholder="豆瓣"><label for="type-douban"><span style="color:#55a300">豆瓣</span></label></li>
<li><input hidden type="radio" name="type" id="type-why" value="https://ask.seowhy.com/search/?q="
data-placeholder="SEO问答社区"><label for="type-why"><span style="color:#428bca">搜外问答</span></label></li>
</ul>
</div>
<div class="search-group group-e">
<span class="type-text">生活</span>
<ul class="search-type">
<li><input hidden type="radio" name="type" id="type-taobao1" value="https://s.taobao.com/search?q="
data-placeholder="淘宝"><label for="type-taobao1"><span style="color:#f40">淘宝</span></label></li>
<li><input hidden type="radio" name="type" id="type-jd" value="https://search.jd.com/Search?keyword="
data-placeholder="京东"><label for="type-jd"><span style="color:#c91623">京东</span></label></li>
<li><input hidden type="radio" name="type" id="type-xiachufang"
value="http://www.xiachufang.com/search/?keyword=" data-placeholder="下厨房"><label
for="type-xiachufang"><span style="color:#dd3915">下厨房</span></label></li>
<li><input hidden type="radio" name="type" id="type-xiangha"
value="https://www.xiangha.com/so/?q=caipu&s=" data-placeholder="香哈菜谱"><label for="type-xiangha"><span
style="color:#930">香哈菜谱</span></label></li>
<li><input hidden type="radio" name="type" id="type-12306" value="http://www.12306.cn/?"
data-placeholder="12306"><label for="type-12306"><span style="color:#07f">12306</span></label></li>
<li><input hidden type="radio" name="type" id="type-qunar" value="https://www.qunar.com/?"
data-placeholder="去哪儿"><label for="type-qunar"><span style="color:#00afc7">去哪儿</span></label></li>
<li><input hidden type="radio" name="type" id="type-快递100" value="http://www.kuaidi100.com/?"
data-placeholder="快递100"><label for="type-快递100"><span style="color:#3278e6">快递100</span></label></li>
</ul>
</div>
<div class="search-group group-f">
<span class="type-text">求职</span>
<ul class="search-type">
<li><input hidden type="radio" name="type" id="type-zhaopin"
value="https://sou.zhaopin.com/jobs/searchresult.ashx?kw=" data-placeholder="智联招聘"><label
for="type-zhaopin"><span style="color:#689fee">智联招聘</span></label></li>
<li><input hidden type="radio" name="type" id="type-51job" value="https://search.51job.com/?"
data-placeholder="前程无忧"><label for="type-51job"><span style="color:#ff6000">前程无忧</span></label></li>
<li><input hidden type="radio" name="type" id="type-lagou" value="https://www.lagou.com/jobs/list_"
data-placeholder="拉钩网"><label for="type-lagou"><span style="color:#00b38a">拉钩网</span></label></li>
<li><input hidden type="radio" name="type" id="type-liepin" value="https://www.liepin.com/zhaopin/?key="
data-placeholder="猎聘网"><label for="type-liepin"><span style="color:#303a40"
class="dark-text">猎聘网</span></label></li>
</ul>
</div>
</div>
<form action="?s=" method="get" target="_blank" id="super-search-fm"><input type="text" id="search-text"
placeholder="输入关键字搜索" style="outline:0" autocomplete="off"><button type="submit"><i
class="ti ti-search"></i></button></form>
<div class="set-check hidden-xs">
<input type="checkbox" id="set-search-blank" class="bubble-3" autocomplete="off">
</div>
</div>
<script type="text/javascript">
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>
<!-- 实用搜索 end -->
<br />
<!-- 热搜新闻 -->
<h4 class="text-gray">
<i class="ti ti-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("http://www.53bk.com/baokan/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.53bk.com/baokan/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/53bk.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
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://duomoyu.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://duomoyu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/duomoyu.png" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
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("http://www.guozhivip.com/rank/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.guozhivip.com/rank/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/ic.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>果汁排行榜</strong>
</a>
<p class="overflowClip_2">是果汁导航旗下一键式快速查询各类排行榜的网站,网站囊括了热搜、热议、电影、音乐、摄影、游戏、财富等各大领域权威排名榜单</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!-- END 热搜新闻 -->
<!-- 常用推荐 -->
<h4 class="text-gray">
<i class="ti ti-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.youtube.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.youtube.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/youtube.png" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>Youtube</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://bilibili.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://bilibili.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.bilibili.com/favicon.ico?v=1" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>哔哩哔哩</strong>
</a>
<p class="overflowClip_2">中国版youtube</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://github.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://github.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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://www.douban.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.douban.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.douban.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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('http://live.yj1211.work/index/home/recommend/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://live.yj1211.work/index/home/recommend/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/live.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>JustLive</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.ithome.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.ithome.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.ithome.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>IT之家</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://chat.openai.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://chat.openai.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=chat.openai.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>ChatGPT</strong>
</a>
<p class="overflowClip_2">ChatGPT 是由 OpenAI 开发的一种人工智能语言模型,能够根据上下文和过去的对话生成类似人类的文本。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.423down.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.423down.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.423down.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>423Down</strong>
</a>
<p class="overflowClip_2">更新快、专注去广告类软件输出10年、个人IP品牌软件分享站</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" data-original-title="https://vercel.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=vercel.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>Vercel</strong>
</a>
<p class="overflowClip_2">类似Github Pages免费托管项目</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.jiu-yu.xyz', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.kanunu8.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/nunushufang.png" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>主页</strong>
</a>
<p class="overflowClip_2">Jiu-Yu 主页</p>
</div>
</div>
</div>
</div>
<br />
<!--END 常用推荐 -->
<!-- 文艺至死-->
<h4 class="text-gray"><i class="ti ti-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.gushiwen.cn/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.gushiwen.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.gushiwen.cn/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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.kanunu8.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.kanunu8.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/nunushufang.png" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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.zgshige.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.zgshige.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.zgshige.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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://xmsoushu.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://xmsoushu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://xmsoushu.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>熊猫搜书</strong>
</a>
<p class="overflowClip_2">熊猫搜书平台,提供免费电子书下载,mobi、epud、pdf、txt格式,kindle电子书下载</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://sobooks.net/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://sobooks.net/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=sobooks.net" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong> SoBooks</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("http://www.banshujiang.cn/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.banshujiang.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=www.banshujiang.cn" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
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.jiumodiary.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.jiumodiary.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=www.jiumodiary.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
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://singlelogin.site/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://singlelogin.site/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=singlelogin.site" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong> Z-library </strong>
</a>
<p class="overflowClip_2">免费下载书籍</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 文艺至死-->
<!-- 音乐天堂 -->
<h4 class="text-gray"><i class="ti ti-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://y.qq.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://y.qq.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://y.qq.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>QQ音乐</strong>
</a>
<p class="overflowClip_2">QQ音乐平台</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://music.163.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://music.163.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=music.163.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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://music.xf1433.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://music.xf1433.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://music.xf1433.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>音乐外链网址mp3生成</strong>
</a>
<p class="overflowClip_2">特制mp3免费音乐外链生成网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.lalal.ai/zh-hans/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.lalal.ai/zh-hans/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.lalal.ai/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>LALAL.AI:100%AI供电的人声和乐器音轨移除</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://unlock-music-ix.netlify.app/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://unlock-music-ix.netlify.app/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=unlock-music-ix.netlify.app" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>音乐解锁</strong>
</a>
<p class="overflowClip_2">目前支持网易云音乐(ncm), QQ音乐(qmc, mflac, mgg), 酷狗音乐(kgm), 虾米音乐(xm), 酷我音乐(.kwm)</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://listen1.github.io/listen1/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://listen1.github.io/listen1/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=listen1.github.io" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>Listen1音乐播放器</strong>
</a>
<p class="overflowClip_2">Listen 1可以搜索和播放来自网易云音乐,虾米,QQ音乐,酷狗音乐,酷我音乐,Bilibili,咪咕音乐网站的歌曲,让你的曲库更全面。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.aigei.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.aigei.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.aigei.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);"
class="xe-user-name overflowClip_1">
<strong>爱给网</strong>
</a>
<p class="overflowClip_2">中国最大的数字娱乐免费素材下载网站,免费提供免费的音效配乐|3D模型|视频|游戏素材资源下载。</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 音乐天堂 -->
<!-- 直播聚合 -->
<h4 class="text-gray"><i class="ti ti-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('http://live.yj1211.work/index/home/recommend/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://live.yj1211.work/index/home/recommend/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="images/live.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>JustLive</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.douyu.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.douyu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.douyu.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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.huya.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.huya.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://www.huya.com/favicon.ico" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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://tv.cctv.com/live/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://tv.cctv.com/live/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=tv.cctv.com/live" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>央视官方直播</strong>
</a>
<p class="overflowClip_2">直播大全_CCTV节目官网_央视网</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('http://www.aikantv.org/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://www.aikantv.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=www.aikantv.org" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>爱看tv</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('http://www.cietv.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://www.cietv.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=www.cietv.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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('http://tv.haoqu99.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://tv.haoqu99.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=tv.haoqu99.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>好趣网</strong>
</a>
<p class="overflowClip_2">2000套高清网络电视直播在线观看</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('http://www.zyz98.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://www.zyz98.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=www.zyz98.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>看全球</strong>
</a>
<p class="overflowClip_2">CGTN、CCTV、世界各国电视台直播在线观看</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('http://www.tvniu.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://www.tvniu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=www.tvniu.com" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" 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('http://cn.itver.cc/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://cn.itver.cc/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://api.xinac.net/icon/?url=cn.itver.cc" class="lozad img-circle" onerror="imgerrorfun();">
</a>
<div class="xe-comment">
<a href="javascript:void(0);" class="xe-user-name overflowClip_1">
<strong>iTVer电视吧在线直播平台</strong>
</a>
<p class="overflowClip_2">精选海量网络电视在线直播线上收看园地</p>
</div>
</div>
</div>