-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
453 lines (415 loc) · 18.3 KB
/
Copy pathindex.html
File metadata and controls
453 lines (415 loc) · 18.3 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
<!DOCTYPE html>
<html lang='zh-CN'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<!-- 防盗链设置 -->
<meta name="referrer" content="no-referrer">
<title>皮皮BOT</title>
<style>
/* ------------------- 全局变量与基础设置 ------------------- */
:root {
--primary-pink: #ff7eb3;
--primary-purple: #8e44ad;
--bg-glass: rgba(255, 255, 255, 0.75);
--bg-glass-heavy: rgba(255, 255, 255, 0.9);
--shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
--shadow-hover: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
--text-main: #2c3e50;
--text-sub: #555;
--radius-box: 16px;
--radius-btn: 50px;
--anim-speed: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
body {
font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
background: url('https://api.suyanw.cn/api/ys.php') center/cover fixed;
color: var(--text-main);
margin: 0;
padding: 20px;
min-height: 100vh;
display: flex;
align-items: flex-start;
justify-content: center;
}
body::before {
content: '';
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(135deg, rgba(255, 240, 245, 0.4) 0%, rgba(230, 230, 250, 0.4) 100%);
backdrop-filter: blur(5px);
z-index: -1;
}
/* ------------------- 主容器 ------------------- */
.content {
background: var(--bg-glass);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
padding: 40px;
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 850px;
text-align: center;
animation: fadeIn Up 0.8s ease-out;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
/* ------------------- Logo样式 ------------------- */
.logo {
width: 110px;
height: 110px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
animation: float 3s ease-in-out infinite;
box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
border: 4px solid rgba(255, 255, 255, 0.8);
background-color: #f0f0f0;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
h1 {
color: var(--primary-pink);
font-size: 2.2em;
margin: 10px 0;
font-weight: 800;
background: linear-gradient(45deg, #ff7eb3, #ff758c);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h2 {
position: relative;
color: var(--primary-purple);
font-size: 1.4em;
margin: 40px 0 20px;
display: inline-block;
padding-bottom: 8px;
}
h2::after {
content: '';
position: absolute;
bottom: 0; left: 50%; transform: translateX(-50%);
width: 50px; height: 3px;
background: var(--primary-pink);
border-radius: 2px;
}
.desc { color: var(--text-sub); margin-bottom: 30px; font-size: 1em; }
/* ------------------- 提示框/公告区样式 ------------------- */
.announcement {
text-align: left;
margin-bottom: 30px;
}
.alert-box {
padding: 15px 20px;
border-radius: 12px;
margin: 20px 0 12px 0; /* 增加上间距,避免和功能区太挤 */
font-size: 0.95em;
line-height: 1.6;
border-left: 5px solid transparent;
background: rgba(255, 255, 255, 0.5);
}
.alert-box.danger { background: rgba(255, 235, 238, 0.8); border-color: #ff4757; color: #c0392b; }
.alert-box.success { background: rgba(232, 245, 233, 0.8); border-color: #2ecc71; color: #27ae60; }
.group-tip-card {
background: linear-gradient(135deg, #fff8f0 0%, #fff0f5 100%);
border: 2px dashed #ffb6c1;
border-radius: var(--radius-box);
padding: 15px 20px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 25px;
transition: var(--anim-speed);
}
.group-tip-card:hover { transform: scale(1.01); border-color: var(--primary-pink); box-shadow: var(--shadow-soft); }
.group-tip-text { flex: 1; min-width: 200px; color: #d63031; font-weight: bold; }
/* ------------------- 通知列表 ------------------- */
.notice-list { width: 100%; }
.notice-item {
background: #fff;
border-radius: var(--radius-box);
padding: 30px;
text-align: left;
box-shadow: var(--shadow-soft);
transition: var(--anim-speed);
position: relative;
overflow: hidden;
margin-bottom: 20px;
}
.notice-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.notice-item.top::before {
content: '';
position: absolute;
top: 0; left: 0; width: 6px; height: 100%;
background: linear-gradient(to bottom, #ff9a9e, #fad0c4);
}
.notice-title {
font-size: 1.25em; font-weight: 700; margin-bottom: 25px;
display: flex; align-items: center; justify-content: space-between;
border-bottom: 1px solid #eee; padding-bottom: 15px;
}
.top-tag {
background: linear-gradient(135deg, #ff6b6b, #ff4757); color: #fff;
padding: 4px 12px; border-radius: 20px; font-size: 0.75em;
font-weight: normal; box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}
.tutorial-step {
background: #f8f9fa; border-radius: 12px; padding: 15px;
margin-bottom: 15px; border: 1px solid #eee;
display: flex; align-items: flex-start; gap: 15px; transition: 0.2s;
}
.tutorial-step:hover { background: #fff; border-color: #ffcdca; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.step-content { flex: 1; }
.step-desc { font-size: 0.9em; color: #666; line-height: 1.6; margin-top: 5px; display: block; }
.link-btn {
background: linear-gradient(135deg, #ff9a9e 0%, #ff6eb4 100%);
color: white !important; padding: 8px 20px; border-radius: var(--radius-btn);
text-decoration: none; font-weight: 600; font-size: 0.9em;
box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3); transition: all 0.3s;
white-space: nowrap; display: inline-flex; align-items: center; border: none;
}
.link-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5); filter: brightness(1.05); }
.small-link-btn {
background: white; color: var(--primary-pink) !important;
border: 1px solid var(--primary-pink); padding: 4px 12px;
border-radius: 12px; font-size: 0.8em; text-decoration: none;
transition: 0.2s; margin: 0 2px; display: inline-block; font-weight: bold;
}
.small-link-btn:hover { background: var(--primary-pink); color: white !important; }
/* ------------------- 功能展示区样式 ------------------- */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 15px;
width: 100%;
margin: 10px 0 25px 0; /* 调整间距 */
text-align: left;
}
.feature-card {
background: rgba(255, 255, 255, 0.6);
border-radius: 16px;
padding: 15px;
display: flex;
align-items: flex-start;
gap: 12px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.5);
position: relative;
overflow: hidden;
}
.feature-card:hover {
background: #fff;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
border-color: var(--primary-pink);
}
.feature-icon {
width: 45px;
height: 45px;
background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4em;
flex-shrink: 0;
color: var(--primary-purple);
}
.feature-info { flex: 1; }
.feature-title {
font-weight: bold;
font-size: 1em;
color: #333;
margin-bottom: 4px;
}
.feature-desc {
font-size: 0.85em;
color: #777;
line-height: 1.4;
}
/* 中间小标题 */
.section-mini-title {
font-size: 1.1em;
color: var(--primary-purple);
font-weight: bold;
margin: 0 0 10px 5px;
display: block;
}
/* ------------------- 弹窗样式 ------------------- */
.modal-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
z-index: 10000; display: none; align-items: center; justify-content: center;
opacity: 0; transition: opacity 0.3s;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box {
background: #fff; width: 85%; max-width: 500px;
border-radius: 20px; padding: 30px;
box-shadow: 0 25px 50px rgba(0,0,0,0.25);
transform: scale(0.9); transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close {
width: 100%; margin-top: 20px; padding: 12px; border-radius: 50px; border: none;
background: #f1f2f6; color: #57606f; font-weight: bold; cursor: pointer;
transition: 0.2s;
}
.modal-close:hover { background: #dfe4ea; color: #2f3542; }
/* 移动端适配 */
@media (max-width: 768px) {
.content { padding: 25px 20px; width: 95%; }
.logo { width: 90px; height: 90px; }
h1 { font-size: 1.8em; }
.tutorial-step { flex-direction: column; align-items: flex-start; gap: 10px; }
.link-btn { width: 100%; justify-content: center; text-align: center; }
.group-tip-card { flex-direction: column; text-align: center; }
.small-link-btn { display: inline-block; margin-top: 5px; }
/* 手机端展示功能展示单列 */
.feature-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- 弹窗结构 -->
<div class='modal-overlay' id='modal' onclick='if(event.target===this) closeModal()'>
<div class='modal-box'>
<div class="modal-title" id="modalTitle" style="font-size:1.2em; font-weight:bold; margin-bottom:10px; color:var(--primary-pink);"></div>
<div class="modal-time" id="modalTime" style="color:#999; font-size:0.8em; margin-bottom:15px;"></div>
<div class="modal-content" id="modalContent" style="line-height:1.6; color:#444;"></div>
<button class="modal-close" onclick="closeModal()">关闭公告</button>
</div>
</div>
<!-- 主内容 -->
<div class='content'>
<img src="https://img.kookapp.cn/assets/2025-12/14/0qsTwKyCVk0zk0ju.png"
class="logo"
alt="皮皮BOT头像"
referrerpolicy="no-referrer">
<h1>皮皮BOT</h1>
<p class="desc">
本页面为皮皮偷懒的页面,更新不一定及时如有问题联系皮皮哦
</p>
<!-- 提示/功能/警告 综合区域 -->
<div class='announcement'>
<div class="group-tip-card">
<div class="group-tip-text">
📌 重要提示 有疑问或拉群请加入皮皮群:827027795
</div>
<a href="https://qm.qq.com/q/zWFwYh6GIg" target="_blank" class="link-btn" style="padding: 6px 16px; font-size: 0.85em;">
点击加群
</a>
</div>
<span class="section-mini-title">✨ 部分功能</span>
<div class="feature-grid">
<!-- 功能1 -->
<div class="feature-card">
<div class="feature-icon">🛡️</div>
<div class="feature-info">
<div class="feature-title">简易群管助手</div>
<div class="feature-desc">自定义入群欢迎、违禁词检测</div>
</div>
</div>
<!-- 功能2 -->
<div class="feature-card">
<div class="feature-icon">🗡️</div>
<div class="feature-info">
<div class="feature-title">游戏攻略</div>
<div class="feature-desc">鸣潮、终末地、米游辅助面板插件</div>
</div>
</div>
<!-- 功能3 -->
<div class="feature-card">
<div class="feature-icon">🎲</div>
<div class="feature-info">
<div class="feature-title">娱乐互动</div>
<div class="feature-desc">meme表情合成、点歌、签到运势、戳一戳、解析视频网页等</div>
</div>
</div>
<!-- 功能5 -->
<div class="feature-card">
<div class="feature-icon">🤖</div>
<div class="feature-info">
<div class="feature-title">AI</div>
<div class="feature-desc">支持对话、绘图{不固定维护}</div>
</div>
</div>
</div>
<!-- 3. 警告和提示 -->
<div class="alert-box danger">
<b>请务必了解代挂和拉群的区别:</b><br>
代挂为使用自己账号登录到皮皮的后端同步皮皮的数据但是账号加群等由自行控制,<br>
拉群为直接将皮皮添加到群里会共享皮皮自身限制、而且会收到皮皮的小广告哦<br>
代挂分为ic{平板协议}和nc{pc协议},ic会少一点功能、请自行选择
</div>
<div class="alert-box success">
<b>💡 使用提示:</b><br>
使用过程中经常会遇到掉线、风控等问题,无法扫脸解封的的请慎用<br>
初次会比较频繁,老号也频繁那就是号不行、只推荐换号或者更换协议
</div>
</div>
<h2>📢 最新公告</h2>
<div class="notice-list">
<div class="notice-item top">
<div class="notice-title">
<span>皮皮代挂教程</span>
<span class="top-tag">置顶</span>
</div>
<div class="notice-content">
<div class="tutorial-step">
<a href="https://icqq.pippi.top/" target="_blank" class="link-btn">
🔗 IC入口
</a>
<div class="step-content">
<span class="step-desc">
按照说明使用即可“需皮皮bot在线”,如登录失败例频繁可以使用
<a href="https://loginicqq.928100.xyz/" target="_blank" class="small-link-btn">tk获取地址</a>
</span>
</div>
</div>
<div style="margin: 0 0 15px 15px; font-size: 0.9em; color: #666; border-left: 3px solid #eee; padding-left: 10px;">
在登录完成复制下载tk的链接打开
<a href="https://ictk.pippi.top/" target="_blank" class="small-link-btn">tk上传地址</a>
粘贴开始处理即可,完成重新发送登录命令
</div>
<div class="tutorial-step">
<a href="https://ncqq.pippi.top/" target="_blank" class="link-btn">
🔗 NC入口
</a>
<div class="step-content">
<span class="step-desc">
点击右下角新建nc、填入QQ静待安装完成自动刷新即可,进入控制台进行扫码登录和添加皮皮后端
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
function closeModal() {
const modal = document.getElementById('modal');
modal.style.opacity = '0';
setTimeout(() => {
modal.classList.remove('active');
}, 300);
}
function showModal(title, time, content) {
document.getElementById('modalTitle').innerText = title;
document.getElementById('modalTime').innerText = time;
document.getElementById('modalContent').innerHTML = content;
const modal = document.getElementById('modal');
modal.classList.add('active');
setTimeout(() => modal.style.opacity = '1', 10);
}
</script>
</body>
</html>