-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1319 lines (1236 loc) · 65.1 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">
<title>小萌网址导航 - 最萌的小主页</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="copyright" content="webstack_cinnamoroll_0.0.1_wzdh.snowflake.moe">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Arimo:400,700,400italic">
<link rel="stylesheet" href="../static/css/linecons.css">
<link rel="stylesheet" href="../static/css/font-awesome.min.css">
<link rel="stylesheet" href="../static/css/bootstrap.css">
<link rel="stylesheet" href="../static/css/xenon-core.css">
<link rel="stylesheet" href="../static/css/xenon-components.css">
<link rel="stylesheet" href="../static/css/xenon-skins.css">
<link rel="stylesheet" href="../static/css/nav.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1627571_5r5ttgth8yq.css">
<script src="https://at.alicdn.com/t/font_1627571_5r5ttgth8yq.js"></script>
<script src="../static/js/jquery.min.js"></script>
<link rel="shortcut icon" href="../favicon.ico">
<link rel="apple-touch-icon" href="../static/img/logo_1.png">
<meta property="og:title" content="小萌网址导航">
<meta property="og:type" content="website">
<meta property="og:image" content="../favicon.ico">
<meta property="og:url" content="https://wzdh.snowflake.moe/">
<meta property="og:site_name" content="小萌网址导航">
<meta name="description" content="网址导航,为萌而生">
<meta name="keywords" content="wzdh,网址导航,萌,Cinnamoroll,小萌,玉桂狗,主页">
<meta name="generator" content="Typecho 1.1/17.10.30">
<meta name="template" content="WebStack">
<meta content="always" name="referrer">
</head>
<body class="page-body ">
<!-- skin-white -->
<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://wzdh.snowflake.moe/index.php" class="logo-expanded">
<img class="logo_size" src="../static/img/logo.png" width="100%">
</a>
</div>
<div class="mobile-menu-toggle visible-xs">
<a href="#" data-toggle="mobile-menu">
<i class="fa-bars"></i>
</a>
</div>
</header>
<ul id="main-menu" class="main-menu">
<li>
<a>
<i class="fa fa-star"></i>
<span class="title">推荐网站</span>
</a>
<ul>
<li>
<a href="#旗下网站" class="smooth"><i class="fa fa-star-o"></i>旗下网站</a>
</li>
<li>
<a href="#其它推荐" class="smooth"><i class="fa fa-info"></i>其它推荐</a>
</li>
</ul>
</li>
<li>
<a href="#智慧搜索" class="smooth">
<i class="fa fa-search"></i>
<span class="title">智慧搜索</span>
</a>
</li>
<li>
<a href="#好听音乐" class="smooth">
<i class="fa fa-music"></i>
<span class="title">好听音乐</span>
</a>
</li>
<li>
<a href="#最全影视" class="smooth">
<i class="fa fa-film"></i>
<span class="title">最全影视</span>
</a>
</li>
<li>
<a href="#网络购物" class="smooth">
<i class="fa fa-shopping-cart"></i>
<span class="title">网络购物</span>
</a>
</li>
<li>
<a href="#网络文档" class="smooth">
<i class="fa fa-file-text-o"></i>
<span class="title">网络文档</span>
</a>
</li>
<li>
<a href="#博客论坛" class="smooth">
<i class="fa fa-bandcamp"></i>
<span class="title">博客论坛</span>
</a>
</li>
<li>
<a href="#网络存储" class="smooth">
<i class="fa fa-cloud-download"></i>
<span class="title">网络存储</span>
</a>
</li>
<li>
<a>
<i class="fa fa-gamepad"></i>
<span class="title">好玩游戏</span>
</a>
<ul>
<li>
<a href="#小游戏" class="smooth"><i class="fa fa-search-minus"></i>小游戏</a>
</li>
<li>
<a href="#手机游戏" class="smooth"><i class="fa fa-mobile"></i>手机游戏</a>
</li>
<li>
<a href="#PC游戏" class="smooth"><i class="fa fa-desktop"></i>PC游戏</a>
</li>
<li>
<a href="#网页游戏" class="smooth"><i class="fa fa-trophy"></i>网页游戏</a>
</li>
<li>
<a href="#Minecarft" class="smooth"><i class="fa fa-trophy"></i>Minecarft</a>
</li>
</ul>
</li>
<li>
<a href="#优质站点" class="smooth">
<i class="fa fa-thumbs-up"></i>
<span class="title">优质站点</span>
</a>
</li>
<li>
<a href="#其它网站" class="smooth">
<i class="fa fa-thumbs-down"></i>
<span class="title">其它网站</span>
</a>
</li>
<li>
<a href="sysdownload.html">
<i class="fa fa-television"></i>
<span class="smooth">网址导航系统下载</span>
</a>
</li>
<li class="submit-tag">
<a href="about.html">
<i class="linecons-heart"></i>
<span class="smooth">关于本站</span>
<span class="label label-Primary pull-right hidden-collapsed">♥</span>
</a>
</li>
</ul>
</div>
</div>
<!--顶部美化开始-->
<div class="board">
<div class="left">
<ul class="user-info-menu left-links list-inline list-unstyled">
<li><span class="board-title zmki_wap_zsy1"><a href="https://wzdh.snowflake.moe/index.php"><i class="fa fa-home"></i> 首页</a></span></li>
<li><span class="board-title"><a href="https://bbs.snowflake.moe/forum.php?mod=viewthread&tid=1&extra=page%3D1" target="_blank"><i class="fa fa-plus-square "></i> 收录提交</a></span></li>
<li><span class="board-title "><a href="about.html"><i class="fa fa-heart xiaotubiao" style="color: #fb5962;"></i> 关于本站</a></span></li>
<li><div class="zmki_wap" id="tp-weather-widget"> </div></li>
<li><div class="zmki_yldh zmki_wap_zsy2" title="切换模式"><a href="javascript:switchNightMode()" target="_self"><svg class="icon zmki_dh" aria-hidden="true"><use xlink:href="#icon-yueliang2"></use></svg></a></div></li>
</ul>
</div>
</div>
<li><a type="button" id="fullscreen"> </a></li><a type="button" id="fullscreen">
<!--心知天气开始-->
<!--由于默认调用的免费版每分钟20次API调用限制,如有需求可前往知心天气官网购买服务配置-->
<div id="tp-weather-widget"></div>
<script>
(function(a,h,g,f,e,d,c,b){b=function(){d=h.createElement(g);c=h.getElementsByTagName(g)[0];d.src=e;d.charset="utf-8";d.async=1;c.parentNode.insertBefore(d,c)};a["SeniverseWeatherWidgetObject"]=f;a[f]||(a[f]=function(){(a[f].q=a[f].q||[]).push(arguments)});a[f].l=+new Date();if(a.attachEvent){a.attachEvent("onload",b)}else{a.addEventListener("load",b,false)}}(window,document,"script","SeniverseWeatherWidget","//cdn.sencdn.com/widget2/static/js/bundle.js?t="+parseInt((new Date().getTime() / 100000000).toString(),10)));
window.SeniverseWeatherWidget('show', {
flavor: "slim",
location: "WX4FBXXFKE4F",
geolocation: true,
language: "zh-Hans",
unit: "c",
theme: "auto",
token: "6cc2a314-5422-4e9c-b3ad-7b9217f4e494",
hover: "enabled",
container: "tp-weather-widget"
})
</script>
<!--心知天气结束-->
</a><div class="main-content"><a type="button" id="fullscreen">
<!--顶部美化结束-->
<!--顶部新增模块开始 -->
<section class="sousuo">
<div class="search">
<div class="search-box">
<span class="search-icon" style="background: url(../static/img/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>
</div>
</section>
<script src="../static/js/index.min.js"></script>
<script src="../static/js/zui.js"></script>
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="旗下网站"></i>旗下网站</h4>
</a><div class="row"><a type="button" id="fullscreen">
</a><div class="col-sm-3"><a type="button" id="fullscreen">
</a><div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://pan.mojy.xyz/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://pan.mojy.xyz/"><a type="button" id="fullscreen">
</a><div class="xe-comment-entry"><a type="button" id="fullscreen">
</a><a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/02/12/40EB5ACD-DFE8-44C7-AE22-AEB24FC6A969.png" class="img-circle" width="32">
</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://snowflake.moe/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://snowflake.moe/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/2ADF7840-E1DF-4BDF-9A23-8983745C5A32.jpg" class="img-circle" width="32">
</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://mcskin.snowflake.moe/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://mcskin.snowflake.moe/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/IMG_0450.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Cinnamoroll Skin</strong>
</a>
<p class="overflowClip_2">一个萌萌的Minecarft皮肤站为萌萌的你!</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>
<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.baidu.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.baidu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/IMG_0444.jpg" class="img-circle" width="32">
</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.google.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.google.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/IMG_0445.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>谷歌搜索</strong>
</a>
<p class="overflowClip_2">在应用中搜索更为方便 在Android 上,使用“Google”应用进行搜索更为方便。试试? 不用了 好 全部图片 登录深色主题:已停用 设置隐私权条款 广告商务Google 大全</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://bing.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://bing.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/IMG_0446.jpg" class="img-circle" width="32">
</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.so.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.so.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/IMG_0447.png" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>360好搜</strong>
</a>
<p class="overflowClip_2">360旗下搜索引擎服务,包含网页、新闻、影视等搜索产品,为您带来更安全、干净的搜索体验。360专业安全保证,杜绝欺诈、木马网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.sogou.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.sogou.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/IMG_0448.jpg" class="img-circle" width="32">
</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.kugou.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.kugou.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0460.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>酷狗音乐</strong>
</a>
<p class="overflowClip_2">酷狗音乐在线正版音乐网站,为您提供酷狗音乐播放器下载 、在线音乐试听下载,提供听书、长音频、电台、听小说和MV播放服务。酷狗音乐,就是歌多!小说相声也很多!场景音乐也很多!</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 src="https://pics.moecloud.cn/images/2022/01/14/18885211718935735.png" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>网易云音乐</strong>
</a>
<p class="overflowClip_2">网易云音乐是一款专注于发现与分享的音乐产品,依托专业音乐人、DJ、好友推荐及社交功能,为用户打造全新的音乐生活。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://www.kuwo.cn/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.kuwo.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/favicon.jpg" class="img-circle" width="32">
</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('http://y.qq.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://y.qq.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0467.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>QQ音乐</strong>
</a>
<p class="overflowClip_2">QQ音乐是腾讯公司推出的一款网络音乐服务产品,海量音乐在线试听、新歌热歌在线首发、歌词翻译、手机铃声下载、高品质无损音乐试听、海量无损曲库、正版音乐下载、空间背景音乐设置、MV观看等,是互...</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://music.taihe.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://music.taihe.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0468.jpg" class="img-circle" width="32">
</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://music.migu.cn/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://music.migu.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0469.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>咪咕音乐</strong>
</a>
<p class="overflowClip_2">咪咕音乐网是中国移动官方音乐门户,旨在提供音乐首发、高品质音乐试听、彩铃订购、歌曲下载、铃音管理、音乐电台、音乐视频等一站式音乐互动体验,好音乐尽在music.migu.cn!</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://music.douban.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://music.douban.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0470.jpg" class="img-circle" width="32">
</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://haokan.baidu.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://haokan.baidu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/IMG_0444.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>好看视频</strong>
</a>
<p class="overflowClip_2">好看视频拥有数十万视频创作者,独家海量高清短视频,分类覆盖VLOG、影视、娱乐、搞笑、音乐、游戏等全方位优质视频,每天观看次数数十亿次,深度了...</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://www.iqiyi.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.iqiyi.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0471.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>爱奇艺</strong>
</a>
<p class="overflowClip_2">爱奇艺(iQIYI.COM)是拥有海量、优质、高清的网络视频的大型视频网站,专业的网络视频播放平台。爱奇艺影视内容丰富多元,涵盖电影、电视剧、动漫、综艺、生活、音乐、搞笑、财经、军事、体育、片花...</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://v.qq.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://v.qq.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0472.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>腾讯视频</strong>
</a>
<p class="overflowClip_2">腾讯视频致力于打造中国领先的在线视频媒体平台,以丰富的内容、极致的观看体验、便捷的登录方式、24小时多平台无缝应用体验以及快捷分享的产品特性,主要满足用户在线观看视频的需求。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://www.youku.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.youku.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0473.jpg" class="img-circle" width="32">
</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.mgtv.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.mgtv.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0474.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>芒果TV</strong>
</a>
<p class="overflowClip_2">芒果TV-大家都在看的在线视频网站-热门综艺最新电影电视剧在线观看</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://v.baidu.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://v.baidu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0475.png" class="img-circle" width="32">
</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://tv.sohu.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://tv.sohu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0476.jpg" class="img-circle" width="32">
</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.bilibili.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.bilibili.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0480.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>bilibili</strong>
</a>
<p class="overflowClip_2">哔哩哔哩(bilibili)直播,在这里看见最年轻的生活方式,学习、游戏、电竞、宅舞、唱见、绘画、美食等等应有尽有,快来捕捉你最喜欢的up主最真实的一面吧!</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.taobao.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.taobao.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0477.jpg" class="img-circle" width="32">
</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.jd.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.jd.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0478.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>京东</strong>
</a>
<p class="overflowClip_2">京东JD.COM-专业的综合网上购物商城,为您提供正品低价的购物选择、优质便捷的服务体验。商品来自全球数十万品牌商家,囊括家电、手机、电脑、服装、居家、母婴、美妆、个护、食品、生鲜等丰富品类,...</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.tmall.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.tmall.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0479.png" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>天猫</strong>
</a>
<p class="overflowClip_2">由于该网站的robots.txt文件存在限制指令(限制搜索引擎抓取),系统无法提供该页面的内容描述</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.1688.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.1688.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0481.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>1688</strong>
</a>
<p class="overflowClip_2">上午好,欢迎来到1688 填写我的采购需求 一键登录 免费注册 新品直播 直播中 足不出户采一手新品 更多 厂货直播 源头新品每日上新 新品直播 每日上新1000+ 厂货通 好品质放心采轻松卖 更多 淘卖专...</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://drive.wps.cn/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://drive.wps.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0482.png" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>WPS云文档</strong>
</a>
<p class="overflowClip_2">WPS 云文档是金山软件自主研发的一款协同办公产品,帮助企业实现更加安全高效的内部沟通和企业文档的存储管理。特色支持:根据组织架构进行群聊,一个平台聚合所有消息,文档多人...</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://zhihu.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://zhihu.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0483.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>知乎</strong>
</a>
<p class="overflowClip_2">知乎,中文互联网高质量的问答社区和创作者聚集的原创内容平台,于 2011 年 1 月正式上线,以「让人们更好地分享知识、经验和见解,找到自己的解答」为品牌使命。知乎凭借认真、...</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 src="https://pics.moecloud.cn/images/2022/01/14/IMG_0470.jpg" class="img-circle" width="32">
</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://bb.snowflake.moe/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://bb.snowflake.moe/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/13/2ADF7840-E1DF-4BDF-9A23-8983745C5A32.jpg" class="img-circle" width="32">
</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://weibo.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://weibo.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0484.jpg" class="img-circle" width="32">
</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://pan.snowflake.moe/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://pan.snowflake.moe/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/02/12/40EB5ACD-DFE8-44C7-AE22-AEB24FC6A969.png" class="img-circle" width="32">
</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('http://www.4399.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.4399.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0485.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>4399小游戏</strong>
</a>
<p class="overflowClip_2">4399小游戏大全包含连连看 ,连连看小游戏大全,双人小游戏大全,H5在线小游戏,4399洛克王国,4399赛尔号,4399奥拉星,4399奥比岛,4399弹弹堂,4399单人小游戏,奥比岛小游戏,造梦西游online,造梦无双等...</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://www.7k7k.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.7k7k.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://pics.moecloud.cn/images/2022/01/14/IMG_0486.jpg" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>7k7k小游戏</strong>
</a>
<p class="overflowClip_2">7k7k小游戏大全包含洛克王国,赛尔号,7k7k洛克王国,连连看 ,连连看小游戏大全,美女小游戏,双人小游戏大全,在线小游戏,7k7k赛尔号,7k7k奥拉星,斗破苍穹 2,7k7k奥比岛,7k7k弹弹堂,7k7k单人小游戏,奥...</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>
<br>
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="PC游戏"></i>PC游戏</h4>
<div class="row">
</div>
<br>
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="网页游戏"></i>网页游戏</h4>
<div class="row">
</div>
<br>
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="Minecarft"></i>Minecarft</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('http://www.jscity.top/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="http://www.jscity.top/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://s4.ax1x.com/2022/02/22/HxxLGT.png" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>MC JS City官网</strong>
</a>
<p class="overflowClip_2">js城创造服务器是一个充满活力的基岩版创造服务器。我们以开放随时随地的创造为初衷。至今js城已经有了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.wintercreate.xyz/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.wintercreate.xyz/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://s4.ax1x.com/2022/02/22/HxxLGT.png" class="img-circle" width="32">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>MC JS City论坛</strong>
</a>
<p class="overflowClip_2">js城创造服务器是一个充满活力的基岩版创造服务器。我们以开放随时随地的创造为初衷。至今js城已经有了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>
<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://wews.snowflake.moe/index.php/cinnamoroll/other.html', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://wews.snowflake.moe/index.php/cinnamoroll/other.html">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="" class="img-circle" width="32">
</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>
<footer class="main-footer sticky footer-type-1">
<div class="footer-inner">
<div class="footer-text">
<!--zmki优化 zmki.cn --基于WebStac Modify BY Seogo 2020年5月18日19:41:46-->
<!--今日诗词-->
<span id="jinrishici-sentence">今日诗词加载中...</span>
<script src="../static/js/jinrishici.js" charset="utf-8"></script>
</div>
<!--友情链接-->
<div class="links_zmki zmki_footer_mar">
<span>友情链接:</span>
</div>
<br>
<div class="zmki_footer_mar">
<!--底部修改开始-->
© 2022 Theme:
<a href="https://wzdh.snowflake.moe/" target="_blank"><strong>Cinnamoroll</strong></a> Design BY <a href="http://webstack.cc" target="_blank"><strong>Webstack</strong></a> Modify BY <a href="https://www.seogo.me" target="_blank"><strong>Seogo</strong></a> Two Open BY <a href="https://www.zmki.cn/" target="_blank"><strong>Zmki</strong></a>
版权所有:<b>Cinnamoroll SANYIMOE</b>
<a href="http://beian.miit.gov.cn/" target="_blank"><strong> 津ICP备18003528号 </strong></a>
<a href="https://icp.gov.moe/?keyword=20210165" target="_blank"> <strong> 萌ICP备20210165号 </strong></a>
</div>
<!--锚点-->
<div class="go-up">
<a href="#" rel="go-top">
<i class="fa-angle-up"></i>
</a>
</div>
<!--站点运行时间开始-->
<div class="zmki_footer_mar">
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
站点已稳定运行:<span id="span_dt_dt" style="color: #2F889A;"></span>
<script language="javascript">function show_date_time(){
window.setTimeout("show_date_time()", 1000);
BirthDay=new Date("1/1/2021 00:00:00 ");
today=new Date();
timeold=(today.getTime()-BirthDay.getTime());
sectimeold=timeold/1000
secondsold=Math.floor(sectimeold);
msPerDay=24*60*60*1000
e_daysold=timeold/msPerDay
daysold=Math.floor(e_daysold);
e_hrsold=(e_daysold-daysold)*24;
hrsold=Math.floor(e_hrsold);
e_minsold=(e_hrsold-hrsold)*60;
minsold=Math.floor((e_hrsold-hrsold)*60);
seconds=Math.floor((e_minsold-minsold)*60);
span_dt_dt.innerHTML='<font style=color:#C40000>'+daysold+'</font> 天 <font style=color:#C40000>'+hrsold+'</font> 时 <font style=color:#C40000>'+minsold+'</font> 分 <font style=color:#C40000>'+seconds+'</font> 秒';
}show_date_time();</script>
<!--站点运行时间结束-->
</div>
</div>
</footer>
</div>
</div>
<script type="text/javascript">
var href = "";
var pos = 0;
$("a.smooth").click(function(e) {
$("#main-menu li").each(function() {
$(this).removeClass("active");
});
$(this).parent("li").addClass("active");
e.preventDefault();
href = $(this).attr("href");
pos = $(href).position().top - 30;
$("html,body").animate({
scrollTop: pos
}, 500);
});
</script>
<script src="../static/js/index.min_1.js"></script>
<script src="../static/js/zui_1.js"></script>
<script src="../static/js/bootstrap.min.js"></script>
<script src="../static/js/TweenMax.min.js"></script>
<script src="../static/js/resizeable.js"></script>
<script src="../static/js/joinable.js"></script>
<script src="../static/js/xenon-api.js"></script>
<script src="../static/js/xenon-toggles.js"></script>
<script src="../static/js/xenon-custom.js"></script>
<script type="text/javascript">
<!--//夜间模式-->
(function(){
if(document.cookie.replace(/(?:(?:^|.*;\s*)night\s*\=\s*([^;]*).*$)|^.*$/, "$1") === ''){
if(new Date().getHours() > 22 || new Date().getHours() < 6){
document.body.classList.add('night');
document.cookie = "night=1;path=/";
console.log('夜间模式开启');
}else{
document.body.classList.remove('night');
document.cookie = "night=0;path=/";
console.log('夜间模式关闭');
}