-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.html
464 lines (387 loc) · 15.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatBot - 支持超多模型</title>
<!-- Favicon -->
<!-- bootstrap CSS -->
<link rel="stylesheet" href="static/css/bootstrap.min.css" type="text/css" media="all">
<!-- carousel CSS -->
<link rel="stylesheet" href="static/css/owl.carousel.min.css" type="text/css" media="all">
<!-- animate CSS -->
<link rel="stylesheet" href="static/css/animate.css" type="text/css" media="all">
<!-- animated-text CSS -->
<link rel="stylesheet" href="static/css/animated-text.css" type="text/css" media="all">
<!-- font-awesome CSS -->
<link rel="stylesheet" href="static/css/all.min.css" type="text/css" media="all">
<!-- font-flaticon CSS -->
<link rel="stylesheet" href="static/css/flaticon.css" type="text/css" media="all">
<!-- theme-default CSS -->
<link rel="stylesheet" href="static/css/theme-default.css" type="text/css" media="all">
<!-- meanmenu CSS -->
<link rel="stylesheet" href="static/css/meanmenu.min.css" type="text/css" media="all">
<!-- transitions CSS -->
<link rel="stylesheet" href="static/css/owl.transitions.css" type="text/css" media="all">
<!-- venobox CSS -->
<link rel="stylesheet" href="static/css/venobox.css" type="text/css" media="all">
<!-- bootstrap icons -->
<link rel="stylesheet" href="static/css/bootstrap-icons.css" type="text/css" media="all">
<!-- Main Style CSS -->
<link rel="stylesheet" href="static/css/style.css" type="text/css" media="all">
<!-- responsive CSS -->
<link rel="stylesheet" href="static/css/responsive.css" type="text/css" media="all">
<!-- modernizr js -->
<link rel="icon" href="static/picture/logo.png"><!-- 32×32 -->
<script src="static/js/modernizr-3.5.0.min.js"></script>
<link href="static/css/clash-display.css" rel="stylesheet">
</head>
<body>
<!--==================================================-->
<!-- Start CChatBot Main Menu -->
<!--==================================================-->
<div id="sticky-header" class="CChatBot_nav_manu">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-lg-3">
<div class="logo">
<a class="logo_img" href="" title="ChatBot">
<img src="static/picture/logo.png" style="width:50px;height: 50px;" alt="logo">
</a>
<a class="main_sticky" href="" title="ChatBot">
<img src="static/picture/logo.png" style="width:50px;height: 50px;" alt="logo">
</a>
</div>
</div>
<div class="col-lg-9">
<nav class="CChatBot_menu">
<ul class="nav_scroll">
<li><a href="#Home">首页 </a></li>
<li><a href="#Features"> 特性 </a></li>
<li><a href="#About"> 关于 </a></li>
<li><a href="https://achatbot.top/index_en.html"> EN </a></li>
</ul>
<!-- header button -->
</nav>
</div>
</div>
</div>
</div>
<!-- CChatBot Mobile Menu -->
<div class="mobile-menu-area sticky d-sm-block d-md-block d-lg-none ">
<div class="mobile-menu">
<nav class="CChatBot_menu">
<ul class="nav_scroll">
<li><a href="#Home">Home </a></li>
<li><a href="#Features">Feature </a></li>
<li><a href="#About">Contact US </a></li>
</ul>
</nav>
</div>
</div>
<!--==================================================-->
<!-- End CChatBot Main Menu -->
<!--==================================================-->
<!--==================================================-->
<!-- start CChatBot-hero-section -->
<!--==================================================-->
<div class="hero-section" id="Home">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="hero-content wow fadeInLeft animated">
<h1><span>ChatBot - 支持超多模型</span> <br></h1>
<p>一款AI聊天助手应用,支持使用 OpenAI、Gemini、Ollama、通义千问、智谱、DeepSeek、Moonshot(月之暗面)、零一万物、MiniMax、文心一言、商汤日日新
等 AI 工具来理解和回复您的消息。您可以使用 ChatBot 提问、分享想法、征求建议,或者只是随意聊天。</p>
<p></p><a style="font-size: 10;"> (需要自行提供对应的API Key)</a></p>
</div>
<div class="hero-button wow fadeInRight animated">
<a class="main-button" href="https://apps.apple.com/app/id6499505508"><span><i
class="fab"></i></span>iOS 下载</a>
<a class="main-button" href="https://apps.apple.com/app/id6499505508"><span><i
class="fab"></i></span>macOS 下载</a>
<a class="main-button" href="https://github.com/ChatBot-All/chatbot-app"><span><i
class="fab"></i></span>Android 下载</a>
</div>
</div>
<div class="col-lg-6" style="padding-left: 20%;">
<div class="hero-thumb wow fadeInRight animated">
<img src="static/picture/hero-img.png" style="width: 400px;" alt="">
</div>
</div>
</div>
</div>
</div>
<!--==================================================-->
<!-- End CChatBot-hero-section -->
<!--==================================================-->
<!--==================================================-->
<!-- start CChatBot-feature-section -->
<!--==================================================-->
<div class="feature-section" id="Features">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="section-title wow fadeInLeft animated">
<span class="number">01</span>
<h5>ChatBot Features</h5>
<h3><span>Features</span></h3>
</div>
<div class="section-disc">
<p>您可以使用 ChatBot 提问、分享想法、寻求建议,或者只是随意聊天.</p>
</div>
<div class="sec-widget-element wow fadeInRight animated">
<ul>
<li><span><i class="fas fa-check"></i></span>支持结合上下文进行持续提问</li>
<li><span><i class="fas fa-check"></i></span>支持生成AI图像</li>
<li><span><i class="fas fa-check"></i></span>多种模型自由选择</li>
<li><span><i class="fas fa-check"></i></span>语音聊天更便捷</li>
</ul>
</div>
</div>
<div class="col-lg-6">
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="feature-single-box wow fadeInLeft animated">
<div class="feature-icon">
<span><i class="far fa-bell"></i></span>
</div>
<div class="feature-box-title">
<h2><a href="#">连续提问</a></h2>
</div>
<div class="feature-box-disc">
<p>承载上下文<br>人工智能自动理解上下文含义</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="feature-single-box wow fadeInLeft animated">
<div class="feature-icon">
<span><i class="fas fa-cog"></i></span>
</div>
<div class="feature-box-title">
<h2><a href="#">生成图像</a></h2>
</div>
<div class="feature-box-disc">
<p>使用对应的图像模型<br>快速生成你想要的图片</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="feature-single-box wow fadeInUp animated">
<div class="feature-icon">
<span><i class="fas fa-shield-virus"></i></span>
</div>
<div class="feature-box-title">
<h2><a href="#">多种模型</a></h2>
</div>
<div class="feature-box-disc">
<p>OpenAI、Gemini、Ollama、通义千问、智谱、DeepSeek、Moonshot(月之暗面)、零一万物、MiniMax、文心一言、商汤日日新
<br>随时切换
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="feature-single-box wow fadeInDown animated">
<div class="feature-icon">
<span><i class="fas fa-sliders-h"></i></span>
</div>
<div class="feature-box-title">
<h2><a href="#">语音聊天</a></h2>
</div>
<div class="feature-box-disc">
<p>语音聊天更方便<br> 支持选择不同的声音</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================================================-->
<!-- End CChatBot-feature-section -->
<!--==================================================-->
<!--==================================================-->
<!-- start CChatBot-about-section -->
<!--==================================================-->
<!--==================================================-->
<!-- End CChatBot-about2-section -->
<!--==================================================-->
<!--==================================================-->
<!-- start CChatBot-testimpnial-section -->
<!--==================================================-->
<div class="testimonial-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="testimonial-title wow fadeInRight animated">
<h5>UI 预览</h5>
<h2><span>应用程序的</span> 截图</h2>
</div>
</div>
</div>
<div class="row screenshot">
<div class="screen-mobile-image"></div>
<div class="testimonial owl-carousel">
<div class="col-lg-12">
<div class="testimonial-thumb">
<img src="static/picture/screenshot1.png" style="width: 285px; height: 570px;" alt="">
</div>
</div>
<div class="col-lg-12">
<div class="testimonial-thumb">
<img src="static/picture/screenshot2.png" style="width: 285px; height: 570px;" alt="">
</div>
</div>
<div class="col-lg-12">
<div class="testimonial-thumb">
<img src="static/picture/screenshot3.png" style="width: 285px; height: 570px;" alt="">
</div>
</div>
<div class="col-lg-12">
<div class="testimonial-thumb">
<img src="static/picture/screenshot4.png" style="width: 285px; height: 570px;" alt="">
</div>
</div>
<div class="col-lg-12">
<div class="testimonial-thumb">
<img src="static/picture/screenshot5.png" style="width: 285px; height: 570px;" alt="">
</div>
</div>
<div class="col-lg-12">
<div class="testimonial-thumb">
<img src="static/picture/screenshot6.png" style="width: 285px; height: 570px;" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================================================-->
<!-- start CChatBot-testimonial-section -->
<!--==================================================-->
<!--==================================================-->
<!-- Start polytia Footer Section -->
<!--==================================================-->
<div class="footer-section" id="About">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="widgets-company-info wow fadeInLeft animated">
<div class="CChatBot-logo">
<a class="logo_thumb" href="" title="ChatBot">
<img src="static/picture/logo.png" style="width:50px;height: 50px;" alt=""> 联系我们
</a>
</div>
<div class="company-info-desc">
<p>如果您对我们的服务条款有任何疑问或建议,请随时联系我们 newtab12138@gmail.com</p>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 pl-40">
<div class="widget-nav-menu wow fadeInUp animated">
<h4 class="widget-title">探索</h4>
<div class="menu-quick-link-content">
<ul class="footer-menu">
<li> <span></span><a href="#Home"> 首页 </a></li>
<li> <span></span><a href="#Features"> 特性 </a></li>
<li> <span></span><a href="#About"> 关于 </a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6">
<div class="widget widget-nav-menu wow fadeInDown animated">
<h4 class="widget-title"> </h4>
<div class="menu-quick-info-content">
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 pr-0">
<div class="menu-quick-link-contact wow fadeInRight animated">
<div class="widget-content">
<h4>下载 Apps</h4>
</div>
<div class="widget-button">
<div class="hero-button wow fadeInRight animated">
<div><a class="main-button" href="https://apps.apple.com/app/id6499505508"><span><i
class="fab fa-apple"></i></span>iOS 下载</a>
<a class="main-button" href="https://apps.apple.com/app/id6499505508"><span><i
class="fab fa-apple"></i></span>macOS 下载</a>
</div>
<div style="margin-top: 20px;"><a class="main-button"
href="https://github.com/ChatBot-All/chatbot-app"><span><i
class="fab fa-android"></i></span>Android 下载</a></div>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="row footer-bg">
<div class="col-lg-6 col-md-6">
<div class="footer-bottom-content">
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="footer-bottom-menu text-right wow fadeInUp animated">
<ul>
Copyright © 2024 <a target="_blank" href="https://achatbot.top">ChatBot</a> All rights
reserved. <a target="_blank" href="https://achatbot.top/privacy.html">Privacy Protocol</a>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--==================================================-->
<!-- End polytia Footer Section -->
<!--==================================================-->
<!--==================================================-->
<!-- Start Search Popup Area -->
<!--==================================================-->
<div class="search-popup">
<button class="close-search style-two"><i class="fas fa-times"></i></button>
<button class="close-search"><i class="fas fa-arrow-up"></i></button>
<form method="post" action="#">
<div class="form-group">
<input type="search" name="search-field" value="" placeholder="Search Here" required="">
<button type="submit"><i class="fas fa-search"></i></button>
</div>
</form>
</div>
<!--==================================================-->
<!-- End Search Popup Area -->
<!--==================================================-->
<!--==================================================-->
<!-- Start scrollup section Section -->
<!--==================================================-->
<div class="prgoress_indicator active-progress">
<svg class="progress-circle svg-content" width="100%" height="100%" viewbox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98"
style="transition: stroke-dashoffset 10ms linear 0s; stroke-dasharray: 307.919, 307.919; stroke-dashoffset: 270.456;">
</path>
</svg>
</div>
<!--==================================================-->
<!-- Start scrollup section Section -->
<!--==================================================-->
<script src="static/js/jquery-3.6.2.min.js"></script>
<script src="static/js/popper.min.js"></script>
<script src="static/js/owl.carousel.min.js"></script>
<script src="static/js/jquery.counterup.min.js"></script>
<script src="static/js/waypoints.min.js"></script>
<script src="static/js/wow.js"></script>
<script src="static/js/imagesloaded.pkgd.min.js"></script>
<script src="static/js/venobox.js"></script>
<script src="static/js/animated-text.js"></script>
<script src="static/js/venobox.min.js"></script>
<script src="static/js/isotope.pkgd.min.js"></script>
<script src="static/js/jquery.meanmenu.js"></script>
<script src="static/js/jquery.scrollUp.js"></script>
<script src="static/js/jquery.barfiller.js"></script>
<script src="static/js/theme.js"></script>
</body>
</html>