forked from WebStackPage/WebStackPage.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1138 lines (1116 loc) · 68.2 KB
/
index.html
File metadata and controls
1138 lines (1116 loc) · 68.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0DYG850ZS6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0DYG850ZS6');
</script>
<!-- Google AdSense -->
<script async src = "//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" >
</script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-8550836177608334",
enable_page_level_ads: true
});
</script>
<!-- 百度统计 -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?c05bb16ea908292af9f6c513087a1cc3";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- Plausible Analytics -->
<script defer data-domain="webaitools.net" src="https://plausible.yuanzhixiang.com/js/script.js"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="WebAITools" />
<title>Web建站与AI工具导航 | WebAITools - 专业站长资源平台</title>
<meta name="keywords" content="Web建站,AI工具,导航,站长资源,关键词调研,SEO工具,网站模板,建站技巧,网站优化,前端开发,后端技术">
<meta name="description" content="WebAITools导航 - 一站式Web建站与AI开发资源导航平台,提供精选建站工具、AI应用、SEO方案和开发框架,助力开发者和站长提升网站质量和竞争力。">
<link rel="canonical" href="https://webaitools.net/" />
<link rel="shortcut icon" href="../assets/images/favicon.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Arimo:400,700,400italic">
<link rel="stylesheet" href="../assets/css/fonts/linecons/css/linecons.css">
<link rel="stylesheet" href="../assets/css/fonts/fontawesome/css/font-awesome.min.css">
<link rel="stylesheet" href="../assets/css/bootstrap.css">
<link rel="stylesheet" href="../assets/css/xenon-core.css">
<link rel="stylesheet" href="../assets/css/xenon-components.css">
<link rel="stylesheet" href="../assets/css/xenon-skins.css">
<link rel="stylesheet" href="../assets/css/nav.css">
<script src="../assets/js/jquery-1.11.1.min.js"></script>
<!-- 自定义LOGO样式 - 修正布局问题 -->
<style>
.logo img {
transition: all 0.2s ease;
filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}
.logo img:hover {
filter: brightness(1.2);
}
/* 确保导航菜单有足够的空间 */
.sidebar-menu .main-menu {
margin-top: 10px;
}
</style>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- / FB Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://webaitools.net/">
<meta property="og:title" content="Web建站与AI工具导航 | WebAITools - 专业站长资源平台">
<meta property="og:description" content="WebAITools导航 - 一站式Web建站与AI开发资源导航平台,提供精选建站工具、AI应用、SEO方案和开发框架,助力开发者和站长提升网站质量和竞争力。">
<meta property="og:image" content="https://webaitools.net/assets/images/webstack_banner_cn.png">
<meta property="og:site_name" content="WebAITools - 专业的Web建站与AI工具导航平台">
<!-- / Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Web建站与AI工具导航 | WebAITools - 专业站长资源平台">
<meta name="twitter:description" content="WebAITools导航 - 一站式Web建站与AI开发资源导航平台,提供精选建站工具、AI应用、SEO方案和开发框架,助力开发者和站长提升网站质量和竞争力。">
<meta name="twitter:image" content="https://webaitools.net/assets/images/webstack_banner_cn.png">
<!-- 自动语言重定向脚本 -->
<script type="text/javascript">
// 获取浏览器语言
var userLang = navigator.language || navigator.userLanguage;
userLang = userLang.toLowerCase();
// 根据语言重定向
if (userLang.indexOf('zh') === 0) {
// 中文用户
window.location.href = './cn/index.html';
} else {
// 默认为英文
window.location.href = './en/index.html';
}
</script>
</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" style="margin: 20px 0; text-align: center; padding: 0; height: auto;">
<a href="index.html" class="logo-expanded">
<img src="../assets/images/[email protected]" width="200" style="max-width: 95%; height: auto; margin: 5px 0;" alt="webaitools.net" />
</a>
<a href="index.html" class="logo-collapsed">
<img src="../assets/images/[email protected]" width="60" style="max-width: 100%; height: auto;" alt="webaitools.net" />
</a>
</div>
<!-- 移动端菜单切换按钮 -->
<div class="mobile-menu-toggle visible-xs">
<a href="#" data-toggle="user-info-menu">
<i class="linecons-cog"></i>
</a>
<a href="#" data-toggle="mobile-menu">
<i class="fa-bars"></i>
</a>
</div>
</header>
<!-- 主导航菜单 -->
<ul id="main-menu" class="main-menu">
<!-- 各个分类的导航项 -->
<li>
<a href="#Requirement" class="smooth">
<i class="linecons-star"></i>
<span class="title">需求收集</span>
</a>
</li>
<li>
<a href="#Keywords" class="smooth">
<i class="linecons-doc"></i>
<span class="title">关键词调研</span>
</a>
</li>
<li>
<a href="#Essentials" class="smooth">
<i class="linecons-lightbulb"></i>
<span class="title">上站必备</span>
</a>
</li>
<li>
<a href="#Competitor" class="smooth">
<i class="linecons-thumbs-up"></i>
<span class="title">竞品调研</span>
</a>
</li>
<li>
<a href="#Templates" class="smooth">
<i class="linecons-diamond"></i>
<span class="title">上站模板</span>
</a>
</li>
<li>
<a href="#NavTemplates" class="smooth">
<i class="linecons-pencil"></i>
<span class="title">导航站模板</span>
</a>
</li>
<li>
<a href="#News" class="smooth">
<i class="linecons-user"></i>
<span class="title">资讯部分</span>
</a>
</li>
<li>
<a href="../en/about.html">
<i class="linecons-heart"></i>
<span class="tooltip-blue">关于本站</span>
<span class="label label-Primary pull-right hidden-collapsed">♥︎</span>
</a>
</li>
</ul>
</div>
</div>
<div class="main-content">
<!-- 顶部导航栏 -->
<nav class="navbar user-info-navbar" role="navigation">
<!-- 左侧菜单切换和语言选择 -->
<ul class="user-info-menu left-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs">
<a href="#" data-toggle="sidebar">
<i class="fa-bars"></i>
</a>
</li>
<!-- 语言切换下拉菜单 -->
<li class="dropdown hover-line language-switcher">
<a href="../cn/index.html" class="dropdown-toggle" data-toggle="dropdown">
<img src="../assets/images/flags/flag-cn.png" alt="flag-cn" /> Chinese
</a>
<ul class="dropdown-menu languages">
<li>
<a href="../en/index.html">
<img src="../assets/images/flags/flag-us.png" alt="flag-us" /> English
</a>
</li>
<li class="active">
<a href="../cn/index.html">
<img src="../assets/images/flags/flag-cn.png" alt="flag-cn" /> Chinese
</a>
</li>
</ul>
</li>
</ul>
<ul class="user-info-menu right-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs">
<a href="https://github.com/TonyChen56" target="_blank">
<i class="fa-github"></i> GitHub
</a>
</li>
</ul>
<!-- <a href="https://github.com/WebStackPage/WebStackPage.github.io" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a> -->
</nav>
<!-- 需求收集板块 - 收集AI产品和工具的需求信息 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="Requirement"></i>需求收集</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.toolify.ai/Best-AI-Tools-revenue', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.toolify.ai/Best-AI-Tools-revenue">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIgMkM2LjQ4IDIgMiA2LjQ4IDIgMTJzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwUzE3LjUyIDIgMTIgMnptMCAxOGMtNC40MSAwLTgtMy41OS04LThzMy41OS04IDgtOCA4IDMuNTkgOCA4LTMuNTkgOC04IDh6IiBmaWxsPSIjMDAwIi8+PHBhdGggZD0iTTEyIDZjLTMuMzEgMC02IDIuNjktNiA2czIuNjkgNiA2IDYgNi0yLjY5IDYtNi0yLjY5LTYtNi02em0wIDEwYy0yLjIxIDAtNC0xLjc5LTQtNHMxLjc5LTQgNC00IDQgMS43OSA0IDQtMS43OSA0LTQgNHoiIGZpbGw9IiMwMDAiLz48L3N2Zz4=" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Toolify 榜单</strong>
</a>
<p class="overflowClip_2">AI工具排行榜和收入数据</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://theresanaiforthat.com/requests', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://theresanaiforthat.com/requests">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://theresanaiforthat.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>AI导航站需求列表</strong>
</a>
<p class="overflowClip_2">AI工具需求和应用场景列表</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 需求收集 -->
<!-- 关键词调研板块 - AI和科技行业资讯网站 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="Keywords"></i>关键词调研</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://trends.google.com/trends/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://trends.google.com/trends/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>新词挖掘</strong>
</a>
<p class="overflowClip_2">Google Trends趋势分析工具</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.searchsuggest.tips/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.searchsuggest.tips/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.searchsuggest.tips/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>谷歌下拉词</strong>
</a>
<p class="overflowClip_2">搜索建议和关键词挖掘工具</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://ahrefs.com/keyword-difficulty', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://ahrefs.com/keyword-difficulty">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://cdn.ahrefs.com/favicon-32x32.png?v=2" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>关键词难度</strong>
</a>
<p class="overflowClip_2">SEO关键词难度分析工具</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 关键词调研 -->
<!-- 上站必备板块 - 域名注册和网站基础服务 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="Essentials"></i>上站必备</h4>
<!-- 第一行:域名查询工具 -->
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://leandomainsearch.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://leandomainsearch.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://leandomainsearch.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Lean Domain Search</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://query.domains/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://query.domains/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://query.domains/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Query Domains</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://instantdomainsearch.com/?q=', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://instantdomainsearch.com/?q=">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/s2/favicons?domain=instantdomainsearch.com&sz=128" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Instant Domain Search</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://tld-list.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://tld-list.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://tld-list.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>TLD List</strong>
</a>
<p class="overflowClip_2">域名注册商价格对比</p>
</div>
</div>
</div>
</div>
</div>
<!-- 第二行:域名注册和基础设施 -->
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://spaceship.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://spaceship.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/s2/favicons?domain=spaceship.com&sz=128" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Spaceship</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://porkbun.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://porkbun.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://porkbun.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Porkbun</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://cloudflare.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://cloudflare.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://cloudflare.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Cloudflare</strong>
</a>
<p class="overflowClip_2">网站加速与安全服务</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://vercel.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://vercel.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://vercel.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Vercel</strong>
</a>
<p class="overflowClip_2">前端项目托管平台</p>
</div>
</div>
</div>
</div>
</div>
<!-- 第三行:开发和分析工具 -->
<div class="row">
<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 src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>GitHub</strong>
</a>
<p class="overflowClip_2">代码托管平台</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://openrouter.ai/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://openrouter.ai/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/s2/favicons?domain=openrouter.ai&sz=128" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>OpenRouter</strong>
</a>
<p class="overflowClip_2">统一的AI模型API接口</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://search.google.com/search-console', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://search.google.com/search-console">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Google Search Console</strong>
</a>
<p class="overflowClip_2">Google站长工具</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://analytics.google.com/analytics/web/#', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://analytics.google.com/analytics/web/#">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/analytics/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Google Analytics</strong>
</a>
<p class="overflowClip_2">网站数据分析工具</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 上站必备 -->
<!-- 竞品调研板块 - 网站分析和SEO工具 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="Competitor"></i>竞品调研</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://aitdk.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://aitdk.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/s2/favicons?domain=aitdk.com&sz=128" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>AITDK</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://ahrefs.com/free-seo-tools', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://ahrefs.com/free-seo-tools">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://cdn.ahrefs.com/favicon-32x32.png?v=2" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Ahrefs</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://semrush.com', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://semrush.com">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/s2/favicons?domain=semrush.com&sz=128" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>SEMrush</strong>
</a>
<p class="overflowClip_2">全面的网站关键词分析工具</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 竞品调研 -->
<!-- 上站模板板块 - 开源网站模板和框架 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="Templates"></i>上站模板</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/openRin/Rin', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/openRin/Rin">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Rin 动态博客</strong>
</a>
<p class="overflowClip_2">基于Cloudflare Pages + Workers + D1 + R2的动态博客</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/ixartz/Next-js-Boilerplate', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/ixartz/Next-js-Boilerplate">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Next.js 15 Boilerplate</strong>
</a>
<p class="overflowClip_2">支持应用路由器和页面路由器的Next.js样板</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/ixartz/SaaS-Boilerplate', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/ixartz/SaaS-Boilerplate">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>SaaS Boilerplate</strong>
</a>
<p class="overflowClip_2">Next.js + Tailwind CSS + Shadcn UI + TypeScript的SaaS样板</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/ixartz/Next-JS-Landing-Page-Starter-Template', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/ixartz/Next-JS-Landing-Page-Starter-Template">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>NextJS Landing Page</strong>
</a>
<p class="overflowClip_2">免费NextJS登陆页面模板</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/ixartz/Astro-boilerplate', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/ixartz/Astro-boilerplate">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Astro Boilerplate</strong>
</a>
<p class="overflowClip_2">Astro样板与响应博客和投资组合模板</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/weijunext/landing-page-boilerplate', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/weijunext/landing-page-boilerplate">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>多功能Landing Page</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://github.com/ai-aigc-studio/Viggle-AI-WebUI', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/ai-aigc-studio/Viggle-AI-WebUI">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Viggle AI WebUI</strong>
</a>
<p class="overflowClip_2">开源的viggle ai web客户端</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/weijunext/new-blog', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/weijunext/new-blog">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>周刊博客</strong>
</a>
<p class="overflowClip_2">技术周刊博客系统</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/daimajia/huntscreens', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/daimajia/huntscreens">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Hunt Screens</strong>
</a>
<p class="overflowClip_2">探索Producthunt等平台的新项目截图</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/weijunext/smart-excel-ai', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/weijunext/smart-excel-ai">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Smart Excel AI</strong>
</a>
<p class="overflowClip_2">使用ChatGPT快速生成Excel公式</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/Pwntus/change-hairstyle-ai', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/Pwntus/change-hairstyle-ai">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>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://github.com/replicate/green-screen-creator', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/replicate/green-screen-creator">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>绿幕生成器</strong>
</a>
<p class="overflowClip_2">视频物体追踪与绿幕背景添加</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/wasp-lang/open-saas', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/wasp-lang/open-saas">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Open SaaS</strong>
</a>
<p class="overflowClip_2">免费开源的React和Node.js SaaS启动器</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/ocluf/justship', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/ocluf/justship">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Svelte SaaS</strong>
</a>
<p class="overflowClip_2">Svelte 5和SvelteKit的SaaS样板</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/JavascriptMick/supanuxt-saas', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/JavascriptMick/supanuxt-saas">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Nuxt3 SaaS</strong>
</a>
<p class="overflowClip_2">Nuxt3、Supabase等技术栈的SaaS样板</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/saasfly/saasfly', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/saasfly/saasfly">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>SaasFly</strong>
</a>
<p class="overflowClip_2">从bun create saasfly开始的SaaS模板</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 常用工具 -->
<!-- 导航站模板板块 - 开源导航站和工具目录 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="NavTemplates"></i>导航站模板</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/fre123-com/fre123-nav/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/fre123-com/fre123-nav/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>FRE123 导航</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://github.com/dubinc/oss-gallery?ref=ossgallery', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/dubinc/oss-gallery?ref=ossgallery">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>OSS Gallery</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://github.com/WebStackPage/WebStackPage.github.io', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/WebStackPage/WebStackPage.github.io">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>WebStack</strong>
</a>
<p class="overflowClip_2">静态响应式网址导航网站webstack.cc</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/6677-ai/tap4-ai-webui', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/6677-ai/tap4-ai-webui">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>AI工具目录</strong>
</a>
<p class="overflowClip_2">一键使用开源网页用户界面部署你自己的人工智能工具目录</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://github.com/all-in-aigc/gpts-works', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/all-in-aigc/gpts-works">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>GPTs商店</strong>
</a>
<p class="overflowClip_2">一个第三方GPTs商店</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/ddahan/ui-libs', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/ddahan/ui-libs">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>UI库选择器</strong>
</a>
<p class="overflowClip_2">适用于Vue 3/Nuxt 3的UI库选择器</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/DokeyAI/dokeyai-data', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/DokeyAI/dokeyai-data">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://github.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>AI工具数据</strong>
</a>
<p class="overflowClip_2">网站的公共人工智能工具数据</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 导航站模板 -->
<!-- 资讯部分板块 - AI和技术行业动态 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="News"></i>资讯部分</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://liberating-doll-b8a.notion.site/Reddit-1a8e8aed91b18021839ecba8b74e530b', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://liberating-doll-b8a.notion.site/Reddit-1a8e8aed91b18021839ecba8b74e530b">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.redditstatic.com/desktop2x/img/favicon/favicon-32x32.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Reddit 子社区</strong>
</a>
<p class="overflowClip_2">Reddit 子社区导航</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://developers.google.com/search/docs/fundamentals/creating-helpful-content?hl=zh-cn', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://developers.google.com/search/docs/fundamentals/creating-helpful-content?hl=zh-cn">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://www.google.com/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>谷歌搜索中心</strong>
</a>
<p class="overflowClip_2">SEO 基础知识</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://ahrefs.com/websites#trending', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://ahrefs.com/websites#trending">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://cdn.ahrefs.com/favicon-32x32.png?v=2" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Ahrefs热门网站排行</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://docs.google.com/spreadsheets/d/1QOdqq9KbjQj1JZO43vc1pir2rnEEsMUXzTDATrOCn2k/edit?gid=0#gid=0', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://docs.google.com/spreadsheets/d/1QOdqq9KbjQj1JZO43vc1pir2rnEEsMUXzTDATrOCn2k/edit?gid=0#gid=0">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://ssl.gstatic.com/docs/spreadsheets/favicon3.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>AI视频工具</strong>
</a>
<p class="overflowClip_2">人工智能视频软件即服务工具</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://docs.google.com/spreadsheets/d/1eUni44pIURML2VWFFXKzNmm-WKuuam9_ynr5Fo_Q74M/edit?gid=83151001#gid=83151001', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://docs.google.com/spreadsheets/d/1eUni44pIURML2VWFFXKzNmm-WKuuam9_ynr5Fo_Q74M/edit?gid=83151001#gid=83151001">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img src="https://ssl.gstatic.com/docs/spreadsheets/favicon3.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>创业故事</strong>
</a>