-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprototype.html
More file actions
489 lines (434 loc) · 11.7 KB
/
Copy pathprototype.html
File metadata and controls
489 lines (434 loc) · 11.7 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AIPass 原型 - Plus 充值聚焦版</title>
<style>
:root {
--bg: #061719;
--card: rgba(10, 28, 34, .88);
--line: rgba(255,255,255,.16);
--text: #f5fbfc;
--muted: rgba(245,251,252,.74);
--soft: rgba(245,251,252,.58);
--teal: #22d3c5;
--teal-dark: #0ea79c;
--cream: #f4fff9;
--ink: #071516;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: flex-start;
padding: 22px 12px 108px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
color: var(--text);
background:
radial-gradient(240px 180px at 22% 14%, rgba(34,211,197,.22), transparent 72%),
radial-gradient(220px 160px at 88% 24%, rgba(112,171,255,.13), transparent 74%),
linear-gradient(145deg, #052d2c 0%, #071923 48%, #030b10 100%);
}
.card {
width: min(560px, 100%);
border: 1px solid rgba(125,255,239,.38);
border-radius: 22px;
background:
linear-gradient(180deg, rgba(34,211,197,.12), rgba(255,255,255,.035)),
var(--card);
box-shadow: 0 24px 72px rgba(0,0,0,.28);
overflow: hidden;
}
.inner { padding: 32px 24px 22px; }
.brand {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 18px;
font-weight: 900;
}
.logo {
width: 32px;
height: 32px;
border-radius: 11px;
display: grid;
place-items: center;
color: #042b2a;
background: linear-gradient(135deg, var(--teal), #8ef6e6);
}
.brand small {
display: block;
margin-top: 2px;
color: var(--muted);
font-size: 12px;
font-weight: 750;
}
.notice {
width: fit-content;
max-width: 100%;
margin: 0 auto 14px;
padding: 7px 12px;
border: 1px solid rgba(125,255,239,.34);
border-radius: 999px;
background: rgba(34,211,197,.1);
color: #cafff6;
font-size: 13px;
font-weight: 850;
text-align: center;
}
h1 {
margin: 0;
text-align: center;
font-size: clamp(31px, 8vw, 44px);
line-height: 1.12;
letter-spacing: 0;
}
.subhead {
margin: 14px auto 18px;
max-width: 440px;
text-align: center;
color: var(--muted);
font-size: 15px;
line-height: 1.75;
}
.price {
display: flex;
justify-content: center;
align-items: flex-end;
gap: 10px;
margin: 8px 0 18px;
}
.price strong {
font-size: 54px;
line-height: .9;
}
.price span {
margin-bottom: 4px;
padding: 5px 9px;
border-radius: 999px;
background: rgba(255,255,255,.12);
color: rgba(255,255,255,.88);
font-size: 13px;
font-weight: 850;
}
.actions {
display: grid;
grid-template-columns: 1.08fr .92fr;
gap: 10px;
margin-bottom: 12px;
}
.btn {
appearance: none;
border: 0;
min-width: 0;
min-height: 54px;
padding: 13px 10px;
border-radius: 14px;
font-size: 15px;
font-weight: 950;
cursor: pointer;
white-space: nowrap;
}
.btn-buy {
color: #041716;
background: linear-gradient(135deg, var(--teal), #7ff8e7);
box-shadow: 0 14px 34px rgba(34,211,197,.24);
}
.btn-system {
color: #061719;
background: rgba(255,255,255,.94);
border: 1px solid rgba(125,255,239,.44);
}
.risk {
margin: 0 0 12px;
text-align: center;
color: rgba(255,255,255,.84);
font-size: 13px;
}
.account-warning {
display: grid;
gap: 6px;
margin: 0 0 12px;
padding: 12px 13px;
border: 1px solid rgba(255,196,93,.42);
border-radius: 14px;
background: rgba(255,196,93,.12);
color: rgba(255,255,255,.9);
font-size: 13px;
line-height: 1.55;
}
.account-warning b {
color: #ffe7aa;
font-size: 14px;
}
.account-warning a {
width: fit-content;
color: #071516;
text-decoration: none;
padding: 7px 10px;
border-radius: 10px;
background: #ffe7aa;
font-weight: 900;
}
.steps {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
margin: 10px 0 16px;
}
.pill {
min-width: 92px;
padding: 7px 10px;
border-radius: 999px;
background: rgba(255,255,255,.88);
color: #182528;
text-align: center;
font-size: 13px;
font-weight: 850;
}
.value-box {
margin: 14px 0;
padding: 14px;
border: 1px solid var(--line);
border-radius: 16px;
background: rgba(255,255,255,.065);
}
.value-title {
margin: 0 0 10px;
color: #d8fff8;
font-size: 14px;
font-weight: 900;
}
.value-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.value-item {
padding: 10px;
border-radius: 12px;
background: rgba(255,255,255,.07);
color: rgba(255,255,255,.88);
font-size: 13px;
line-height: 1.45;
font-weight: 750;
}
.value-item b {
display: block;
margin-bottom: 2px;
color: #fff;
font-size: 14px;
}
details {
margin-top: 10px;
border: 1px solid var(--line);
border-radius: 14px;
background: rgba(255,255,255,.055);
overflow: hidden;
}
summary {
list-style: none;
cursor: pointer;
padding: 13px 14px;
color: rgba(255,255,255,.92);
font-size: 14px;
font-weight: 900;
}
summary::-webkit-details-marker { display: none; }
summary::after {
content: "+";
float: right;
color: #b8fff4;
font-size: 18px;
line-height: 1;
}
details[open] summary::after { content: "-"; }
.detail-body {
padding: 0 14px 14px;
color: var(--muted);
font-size: 13px;
line-height: 1.7;
}
.detail-body ul {
margin: 6px 0 0;
padding-left: 18px;
}
.other-ai {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
margin-top: 10px;
}
.other-ai span {
padding: 9px 6px;
border-radius: 10px;
background: rgba(34,211,197,.1);
border: 1px solid rgba(125,255,239,.22);
color: #d9fff9;
text-align: center;
font-size: 12px;
font-weight: 850;
}
.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid rgba(255,255,255,.1);
}
.stat {
text-align: center;
}
.stat b {
display: block;
color: #fff;
font-size: 16px;
}
.stat span {
display: block;
margin-top: 3px;
color: var(--soft);
font-size: 11px;
}
footer {
padding: 14px 18px 18px;
color: rgba(255,255,255,.48);
text-align: center;
font-size: 11px;
line-height: 1.6;
background: rgba(0,0,0,.13);
}
.sticky {
position: fixed;
left: 12px;
right: 12px;
bottom: 12px;
z-index: 20;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 9px;
width: min(536px, calc(100% - 24px));
margin: 0 auto;
padding: 10px;
border: 1px solid rgba(255,255,255,.16);
border-radius: 16px;
background: rgba(5,14,18,.9);
backdrop-filter: blur(16px);
box-shadow: 0 16px 42px rgba(0,0,0,.34);
}
@media (max-width: 390px) {
body { padding-top: 16px; }
.inner { padding: 26px 18px 20px; }
h1 { font-size: 31px; }
.subhead { font-size: 14px; }
.price strong { font-size: 48px; }
.btn { font-size: 14px; }
.value-grid { grid-template-columns: 1fr; }
.other-ai { grid-template-columns: 1fr 1fr; }
.stats { gap: 6px; }
}
</style>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?12e4de68b3ffda0f30868fae3b804a30";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<main class="card">
<div class="inner">
<div class="brand">
<div class="logo">A</div>
<div>
AIPass
<small>ChatGPT Plus 充值</small>
</div>
</div>
<div class="notice">当前价 ¥198 | Plus 稳定充值通道</div>
<h1>ChatGPT Plus 会员充值</h1>
<p class="subhead">购买的是 Plus 充值卡密,用来充值到你自己的 ChatGPT 账号。开通后可按账号实际展示使用更高额度模型、Codex、图片生成、文件分析等能力。</p>
<div class="price">
<strong>¥198</strong>
<span>月付标准版</span>
</div>
<div class="actions">
<button class="btn btn-buy">立即购买 Plus</button>
<button class="btn btn-system">进入充值系统</button>
</div>
<div class="account-warning">
<b>购买前确认</b>
<span>你需要自己能登录 ChatGPT / GPT 账号,才能使用卡密充值。没有网络访问能力的用户,不建议直接购买 Plus 卡密。</span>
<a href="../jingxiang/index.html">没有网络能力?查看镜像服务</a>
</div>
<p class="risk">提醒:请勿选择异常低价渠道,风险自担</p>
<div class="steps" aria-label="开通流程">
<span class="pill">1 下单卡密</span>
<span class="pill">2 系统激活</span>
<span class="pill">3 自动到账</span>
</div>
<section class="value-box">
<p class="value-title">Plus 开通后,你可以这样理解价值</p>
<div class="value-grid">
<div class="value-item"><b>更高额度</b>日常写作、办公、学习更够用</div>
<div class="value-item"><b>Codex</b>代码理解、修改、调试等能力入口</div>
<div class="value-item"><b>图片生成</b>海报、商品图、封面和头像</div>
<div class="value-item"><b>文件分析</b>文档、表格、资料整理更方便</div>
</div>
</section>
<details>
<summary>查看 Plus 充值说明</summary>
<div class="detail-body">
<ul>
<li>下单后获取卡密,再进入充值系统按指引激活到自己的 ChatGPT 账号。</li>
<li>购买前请确认你能正常访问并登录 ChatGPT,否则无法完成官方 Plus 使用。</li>
<li>无需提供账号密码,按页面指引操作即可。</li>
<li>Codex、图片生成等功能与额度以 ChatGPT 官方账号内实际展示为准。</li>
</ul>
</div>
</details>
<details>
<summary>其他 AI 会员充值(附带业务)</summary>
<div class="detail-body">
主站聚焦 Plus;如需其他 AI,可通过同一购买入口或联系客服确认价格与交付方式。
<div class="other-ai">
<span>ChatGPT Pro</span>
<span>Claude</span>
<span>Grok</span>
<span>Gemini</span>
<span>Sora</span>
<span>更多咨询</span>
</div>
</div>
</details>
<details>
<summary>为什么不是更便宜</summary>
<div class="detail-body">
价格包含官方订阅成本、通道成本、交付风控和售后支持。异常低价渠道常见回滚、拒付、风控与售后不可控问题。
</div>
</details>
<div class="stats">
<div class="stat"><b>50,000+</b><span>服务用户</span></div>
<div class="stat"><b>99.9%</b><span>近30天成功</span></div>
<div class="stat"><b>9:00-24:00</b><span>人工在线</span></div>
</div>
</div>
<footer>
本站为第三方数字服务平台,与 OpenAI 或 ChatGPT 官方无隶属关系。页面产品名称仅用于说明服务适配对象。
</footer>
</main>
<div class="sticky">
<button class="btn btn-buy">购买 Plus</button>
<button class="btn btn-system">充值系统</button>
</div>
</body>
</html>