-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
2412 lines (2073 loc) · 106 KB
/
Copy pathindex.html
File metadata and controls
2412 lines (2073 loc) · 106 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="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>老司机导航-懂你的网址导航</title>
<meta name="Keywords" content="老司机导航,h导航,私密导航、网址你懂的,老司机网站大全,柠檬AV导航,芒果福利精品导航,91论坛导航,老司机福利导航,91网址导航,成人app下载,滴滴网址导航,午夜视频网址,在线小视频,百度网址导航,qq网址导航,hao123导航,360导航,搜狗网址导航">
<meta name="Description" content="老司机是一个简洁高效,懂你的网址导航工具。精选了互联网资讯,办公效率工具,最新综艺等,没有广告、弹窗,老司机导航希望成为通向未知的最短路径。快捷键直达站点、一键打开多个标签页,老司机导航为你节省每分每秒。">
<meta name="author" content="老司机导航">
<meta name="dc" content="itianxia 2.0">
<meta name="baidu_union_verify" content="810c1ee5f4b013ba6a83bf0e3e560a2c">
<!-- shortcut icon -->
<link rel="shortcut icon" href="img/laosji.png">
<!-- Bootstrap core CSS -->
<link href="../assets/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- 新 Bootstrap4 核心 CSS 文件 -->
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<!-- jQuery -->
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<!-- bootstrap.bundle.min.js 用于弹窗、提示、下拉菜单,包含了 popper.min.js -->
<script src="https://cdn.staticfile.org/popper.js/1.15.0/umd/popper.min.js"></script>
<!-- 最新的 Bootstrap4 核心 JavaScript 文件 -->
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Custom styles for this template -->
<link href="itianxia.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118569103-1"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3281954914625230"
crossorigin="anonymous"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3281954914625230"
crossorigin="anonymous"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118569103-1');
</script>
<script>
/**
* Google Analytics(分析)中的函数,捕获对出站链接的点击。
* 此函数会将有效网址字符串作为参数,并将该网址字符串
* 用作事件标签。通过将 transport 方法设置为“beacon”来发送匹配
* 在支持“navigator.sendBeacon”的浏览器中使用该方法。
*/
var captureOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<!--百度统计代码-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?1161156530f7d51f2fe860643bde0135";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!--google ad-->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3281954914625230"
crossorigin="anonymous"></script>
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark">
<img class="mr-3,img-circle" src="img/laosji-logo.png" alt="laosji导航" width="34" height="34">
<button class="navbar-toggler p-0 border-0" type="button" data-toggle="offcanvas">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse offcanvas-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="http://ai.laosji.net/"> AI导航 <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.laosji.net" target="_blank">首页</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.itianxia.cn/vip.html" target="_blank">VIP</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">更多</a>
<div class="dropdown-menu" aria-labelledby="dropdown01">
<a class="dropdown-item" href="https://www.itianxia.cn/alipay.html" target="_blank">支付宝红包</a>
<a class="dropdown-item" href="https://www.itianxia.cn/coupon.html" target="_blank">领券指南</a>
<a class="dropdown-item" href="https://www.itianxia.cn/about.html" target="_blank">关于老司机</a>
</div>
</li>
</ul>
<form class="form-inline my-2 my-lg-0" action="https://www.baidu.com/s" target="_blank">
<input class="form-control mr-sm-2" type="text" name="wd" placeholder="搜索" aria-label="搜索">
<button class="btn btn-primary" type="submit">百度一下</button>
</form>
</div>
</nav>
<div class="nav-scroller bg-white shadow-sm">
<nav class="nav nav-underline">
<a class="nav-link active" href="">推荐</a>
<a class="nav-link" href="https://wx.qq.com/" target="_blank">微信文件传输</a>
<a class="nav-link" href="https://www.weibo.com/" target="_blank">微博</a>
<a class="nav-link" href="https://twitter.com/" target="_blank">Twitter</a>
<a class="nav-link" href="https://www.taobao.com/?spm=875.7931836/B.a2226mz.12.17784265H4xI5r" target="_blank">淘宝</a>
<a class="nav-link" href="https://u.jd.com/M5vMt4" target="_blank">京东</a>
<a class="nav-link" href="https://www.toutiao.com/" target="_blank">头条新闻</a>
<a class="nav-link" href="https://music.163.com/" target="_blank">网易云</a>
<a class="nav-link" href="https://pan.baidu.com/" target="_blank">百度网盘</a>
<a class="nav-link" href="https://medium.com/" target="_blank">Medium</a>
<a class="nav-link" href="https://substack.com/" target="_blank">Substack</a>
<a class="nav-link" href="https://github.com/" target="_blank">Github</a>
<a class="nav-link" href="https://stackoverflow.com/" target="_blank">Stackoverflow</a>
<a class="nav-link" href="https://emoecho.com" target="_blank">ChatGPT
<span class="badge badge-pill bg-light align-text-bottom">AI</span>
</a>
</nav>
</div>
<div class="container blocks">
<div class="row">
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>常用</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.baidu.com" id="11" class="website hotkey66 hotkey32" target="_blank">
<span>百度</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.google.com" id="12" class="website hotkey71" target="_blank">
<span>谷歌</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.weibo.com" id="13" class="website hotkey86" target="_blank">
<span>新浪微博</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://wx.qq.com" id="14" class="website hotkey87" target="_blank">
<span>微信网页版</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://app.yinxiang.com/Home.action" id="15" class="website hotkey89" target="_blank">
<span>印象笔记</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://translate.google.cn/" id="16" class="website hotkey49" target="_blank">
<span>谷歌翻译</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://mail.qq.com" id="116" class="website" target="_blank">
<span>qq邮箱</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://mail.google.com/" id="217" class="website" target="_blank">
<span>Gmail</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://mail.163.com/" id="117" class="website" target="_blank">
<span>163邮箱</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://mp.weixin.qq.com/" id="130" class="website" target="_blank">
<span>微信公众平台</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://mp.toutiao.com/" id="130" class="website" target="_blank">
<span>头条号</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://channels.weixin.qq.com/login" id="341" class="website " target="_blank">
<span>视频号</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>互联网</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.36kr.com" id="33" class="website hotkey51" target="_blank">
<span>36氪</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.huxiu.com/" id="34" class="website hotkey72" target="_blank">
<span>虎嗅</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.cnbeta.com/" id="35" class="website" target="_blank">
<span>CNbeta</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.ifanr.com/" id="36" class="website hotkey50" target="_blank">
<span>爱范儿</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://readhub.cn/topics" id="37" class="website " target="_blank">
<span>Readhub</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.iheima.com/" id="38" class="website hotkey73" target="_blank">
<span>I黑马</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.pingwest.com/" id="138" class="website" target="_blank">
<span>Pingwest</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://tech2ipo.com/" id="139" class="website" target="_blank">
<span>创见</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.leiphone.com/" id="140" class="website" target="_blank">
<span>雷锋网</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://cn.engadget.com/" id="238" class="website" target="_blank">
<span>Engadget</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.geekpark.net/" id="239" class="website" target="_blank">
<span>极客公园</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.tmtpost.com/" id="246" class="website" target="_blank">
<span>钛媒体</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>观点</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.qdaily.com/" id="105" class="website" target="_blank">
<span>好奇心日报</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://sspai.com/" id="145" class="website" target="_blank">
<span>少数派</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.ithome.com/" id="106" class="website" target="_blank">
<span>IT之家</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.zol.com.cn/" id="107" class="website" target="_blank">
<span>中关村在线</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.mydrivers.com/" id="107" class="website" target="_blank">
<span>快科技</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.iyiou.com/" id="107" class="website" target="_blank">
<span>亿欧网</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.gupowang.com/" id="107" class="website" target="_blank">
<span>姑婆那些事</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://tingwen.me/" id="107" class="website" target="_blank">
<span>听闻</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://baijia.baidu.com/" id="107" class="website" target="_blank">
<span>百度百家</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.infoq.com" id="107" class="website" target="_blank">
<span>infoq</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.donews.com/" id="107" class="website" target="_blank">
<span>Donews</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://flipboard.com/" id="107" class="website" target="_blank">
<span>Flipboard</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>门户新闻</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.thepaper.cn" id="28" class="website hotkey80" target="_blank">
<span>澎湃新闻</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://news.qq.com/" id="29" class="website hotkey81" target="_blank">
<span>腾讯新闻</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://toutiao.com/" id="30" class="website hotkey52" target="_blank">
<span>今日头条</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://ent.sina.com.cn" id="31" class="website " target="_blank">
<span>新浪娱乐</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.ftchinese.com" id="31" class="website " target="_blank">
<span>FT中文网</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://wallstreetcn.com" id="32" class="website " target="_blank">
<span>华尔街见闻</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://news.sohu.com/" id="32" class="website " target="_blank">
<span>搜狐新闻</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://news.163.com/" id="32" class="website " target="_blank">
<span>网易新闻</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.bbc.com/zhongwen/simp/world" id="232" class="website " target="_blank">
<span>BBC世界新闻</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>社区</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.v2ex.com/" id="111" class="website" target="_blank">
<span>V2EX</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://gold.xitu.io/" id="116" class="website" target="_blank">
<span>稀土掘金</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://leetcode-cn.com/" id="115" class="website " target="_blank">
<span>Leetcode</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.woshipm.com/" id="114" class="website " target="_blank">
<span>人人都是产品经理</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.pmcaff.com/" id="211" class="website " target="_blank">
<span>PMcaff</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://wanqu.co/" id="210" class="website " target="_blank">
<span>湾区日报</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.producthunt.com/" id="115" class="website" target="_blank">
<span>Producthunt</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.pinterest.com/" id="116" class="website" target="_blank">
<span>Pinterest</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://github.com/" id="115" class="website" target="_blank">
<span>Github</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>AI聊天</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="https://chat.openai.com/chat" id="39" class="website hotkey84" target="_blank">
<span>ChatGPT-4</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://bard.google.com" id="42" class="website " target="_blank">
<span>bard</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://claude.ai/" id="40" class="website " target="_blank">
<span>claude 2</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://yiyan.baidu.com/welcome" id="41" class="website " target="_blank">
<span>文心一言</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://huggingface.co/chat/" id="43" class="website " target="_blank">
<span>huggingface</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://poe.com/" id="244" class="website " target="_blank">
<span>poe</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://beta.character.ai/" id="241" class="website " target="_blank">
<span>character.ai</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://heypi.com/talk" id="240" class="website " target="_blank">
<span>heypi</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://tongyi.aliyun.com/" id="44" class="website " target="_blank">
<span>通义千问</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>AI写作</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.notion.so/product/ai" id="244" class="website " target="_blank">
<span>Notion AI</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.jasper.ai/" id="39" class="website hotkey84" target="_blank">
<span>Jasper</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.copy.ai/" id="40" class="website " target="_blank">
<span>Copy.ai</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://writesonic.com/" id="41" class="website " target="_blank">
<span>Writesonic</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://rytr.me/" id="42" class="website " target="_blank">
<span>Rytr</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.craft.do/" id="43" class="website " target="_blank">
<span>Craft</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.peppercontent.io/peppertype-ai/" id="241" class="website " target="_blank">
<span>Peppertype</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.canva.com/magic-write/" id="240" class="website " target="_blank">
<span>Magic Write</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://tinywow.com/" id="44" class="website " target="_blank">
<span>Tinywow</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>AI绘画</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="https://stablediffusionweb.com/" id="39" class="website hotkey84" target="_blank">
<span>StableDiffusion</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.midjourney.com" id="40" class="website " target="_blank">
<span>Midjourney</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://imagen.research.google/" id="44" class="website " target="_blank">
<span>Imagen</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://openai.com/product/dall-e-2" id="240" class="website " target="_blank">
<span>Dall-e-2</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://firefly.adobe.com/" id="43" class="website " target="_blank">
<span>Firefly</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://looka.com/logo-ideas/ai-logo-generator/" id="41" class="website " target="_blank">
<span>Looka</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://getimg.ai/" id="42" class="website " target="_blank">
<span>Getimg</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://novelai.net/" id="244" class="website " target="_blank">
<span>Novelai</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://playgroundai.com/" id="241" class="website " target="_blank">
<span>Playgroundai</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>AI工具</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.chatpdf.com/" id="39" class="website hotkey84" target="_blank">
<span>ChatPDF</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://chatdoc.com/" id="40" class="website " target="_blank">
<span>ChatDoc</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://myaskai.com/" id="41" class="website " target="_blank">
<span>Myaskai</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://bearly.ai/" id="42" class="website " target="_blank">
<span>Bearly</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.craft.do/" id="43" class="website " target="_blank">
<span>Craft</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://github.com/features/copilot" id="244" class="website " target="_blank">
<span>Copilot</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://gamma.app/" id="241" class="website " target="_blank">
<span>Gamma</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://hotoke.ai/" id="240" class="website " target="_blank">
<span>Hotoke</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.humata.ai/" id="44" class="website " target="_blank">
<span>Humata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>购物</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="https://s.click.taobao.com/aczvShv" id="39" class="website hotkey84" target="_blank">
<span>淘宝618红包</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://u.jd.com/Mw6OHc" id="40" class="website " target="_blank">
<span>京东618庆典</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.amazon.cn/%E5%9B%BE%E4%B9%A6/b/ref=as_li_ss_tl?_encoding=UTF8&camp=536&creative=3132&linkCode=ur2&node=658390051&tag=812223035qqco-23" id="41" class="website " target="_blank">
<span>亚马逊</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.smzdm.com/" id="42" class="website " target="_blank">
<span>什么值得买</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://163.lu/Z1HSk0" id="43" class="website " target="_blank">
<span>考拉海购</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://m.you.163.com/lead/share/C5BA4A6975TXprNU1EWTBOemc96AF949BC7088CA60A7B3C3?_stat_from=web_pd_invite_qzone_0" id="244" class="website " target="_blank">
<span>网易严选</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.gome.com.cn/" id="241" class="website " target="_blank">
<span>国美</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://s.click.taobao.com/Re0NxKw" id="240" class="website " target="_blank">
<span>天猫</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.masamaso.com/" id="44" class="website " target="_blank">
<span>马萨玛索</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>网络课程</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-lg-4 website">
<a href="http://open.163.com/" id="102" class="website " target="_blank">
<span>网易公开课</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.icourse163.org/" id="103" class="website " target="_blank">
<span>中国大学公开课</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.coursera.org/" id="104" class="website" target="_blank">
<span>Coursera</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.jikexueyuan.com/" id="150" class="website" target="_blank">
<span>极客学院</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.imooc.com/" id="100" class="website" target="_blank">
<span>慕课网</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://www.khanacademy.org/" id="143" class="website" target="_blank">
<span>可汗学院</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.hjenglish.com/" id="142" class="website" target="_blank">
<span>沪江英语</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="https://ke.qq.com/" id="246" class="website" target="_blank">
<span>腾讯课堂</span>
</a>
</div>
<div class="col-sm-4 col-lg-4 website">
<a href="http://www.mtedu.com/" id="267" class="website" target="_blank">
<span>馒头学院</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4 block"><!--block用来约束分类对应的区块位置,building用来展示实际带边框的分类内容,包括分类标题和分类下的网站-->
<div class="col-sm-12 col-lg-12 building">
<div class="row block-header">
<div class="col-sm-12 col-lg-12 block-desc">
<div class="col-sm-4 col-lg-4 block-name">
<!--<a id="1" class="lead"href="#">-->
<blockquote><strong>视频</strong></blockquote>
</a>
</div>
<div class="col-sm-4 col-lg-4 placeholder"></div>
<div class="col-sm-4 col-lg-4 placeholder"></div>