-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
49 lines (49 loc) · 1.57 KB
/
chat.html
File metadata and controls
49 lines (49 loc) · 1.57 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=https://chatbot.weixin.qq.com/webapp/NenUhKksSA0vgdkkNzO0tPZILUCnC5?robotName=%E8%9E%8D%E8%AE%AF%E6%99%BA%E8%83%BD%E5%AE%A2%E6%9C%8D">
<title>正在跳转到融讯智能客服...</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #f5f5f5;
}
.container {
max-width: 600px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.loading {
margin: 20px 0;
}
.spinner {
border: 5px solid #f3f3f3;
border-top: 5px solid #07C160;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<h1>正在跳转到融讯智能客服...</h1>
<div class="loading">
<div class="spinner"></div>
</div>
<p>如果页面没有自动跳转,请<a href="https://chatbot.weixin.qq.com/webapp/NenUhKksSA0vgdkkNzO0tPZILUCnC5?robotName=%E8%9E%8D%E8%AE%AF%E6%99%BA%E8%83%BD%E5%AE%A2%E6%9C%8D">点击这里</a>。</p>
</div>
</body>
</html>