-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaiti.html
More file actions
260 lines (257 loc) · 8.62 KB
/
aiti.html
File metadata and controls
260 lines (257 loc) · 8.62 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<link rel="icon" href="/image/favicon.png" type="image/png" sizes="64x64" />
<title>给 AI 的 SBTI 人格测试(简易)</title>
<style>
:root {
--bg: #f6faf6;
--panel: #ffffff;
--text: #1e2a22;
--muted: #6a786f;
--line: #dbe8dd;
--accent-strong: #4d6a53;
--warn-bg: #fff8f0;
--warn-border: #e8c9a8;
--warn-text: #6b4420;
--shadow: 0 12px 32px rgba(47, 73, 55, 0.08);
--radius: 20px;
--safe-b: env(safe-area-inset-bottom, 0px);
--safe-t: env(safe-area-inset-top, 0px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
color: var(--text);
background: radial-gradient(circle at top left, #f8fff8 0, #f6faf6 40%, #f2f7f3 100%);
min-height: 100vh;
min-height: 100dvh;
padding-top: var(--safe-t);
}
.shell {
max-width: 560px;
margin: 0 auto;
padding: 16px 14px calc(24px + var(--safe-b));
display: flex;
flex-direction: column;
gap: 14px;
}
.card {
background: var(--panel);
border: 1px solid var(--line);
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 20px 18px 22px;
}
h1, h2, p { margin: 0; }
.page-title {
margin-bottom: 10px;
font-size: 1.02rem;
font-weight: 700;
color: var(--accent-strong);
line-height: 1.35;
}
.intro-desc {
font-size: 0.86rem;
color: var(--muted);
line-height: 1.65;
}
.top-link-row {
display: flex;
flex-wrap: wrap;
gap: 10px 14px;
margin: 0 0 12px;
}
.top-link {
font-size: 0.9rem;
font-weight: 600;
color: var(--accent-strong);
text-decoration: none;
padding: 2px 0;
}
.top-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.security-card {
background: var(--warn-bg);
border-color: var(--warn-border);
}
.security-card .page-title { color: var(--warn-text); }
.security-list {
margin: 10px 0 0;
padding-left: 1.15rem;
font-size: 0.86rem;
color: var(--warn-text);
line-height: 1.65;
}
.security-list li + li { margin-top: 6px; }
.meta-line {
font-size: 0.9rem;
color: var(--text);
margin-top: 10px;
line-height: 1.5;
}
.meta-line strong { color: var(--accent-strong); }
.review-link {
display: block;
margin-top: 8px;
word-break: break-all;
font-size: 0.82rem;
color: var(--accent-strong);
font-weight: 600;
}
.form-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 12px;
align-items: center;
}
button {
border: 0;
cursor: pointer;
transition: transform .14s ease, opacity .14s ease;
font: inherit;
touch-action: manipulation;
}
button:active:not(:disabled) { transform: scale(0.98); }
.btn-primary {
background: var(--accent-strong);
color: #fff;
padding: 14px 22px;
border-radius: 14px;
font-weight: 700;
min-height: 48px;
}
.btn-secondary {
background: #fff;
color: var(--accent-strong);
padding: 14px 20px;
border-radius: 14px;
border: 1px solid var(--line);
font-weight: 700;
min-height: 48px;
}
textarea {
width: 100%;
min-height: 200px;
margin-top: 10px;
border: 1px solid var(--line);
border-radius: 12px;
padding: 12px;
font: 13px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
resize: vertical;
background: #fcfefc;
color: #243229;
}
.error {
margin-top: 10px;
padding: 10px 12px;
border-radius: 10px;
border: 1px solid rgba(180, 55, 50, 0.3);
color: #9e2a2a;
background: #fff8f7;
font-size: 0.88rem;
}
.site-footer {
margin-top: 14px;
padding-top: 18px;
border-top: 1px solid var(--line);
text-align: center;
font-size: 0.86rem;
color: var(--muted);
line-height: 1.65;
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
}
.site-footer-nav,
.site-footer-meta {
display: flex;
flex-wrap: wrap;
gap: 6px 10px;
justify-content: center;
align-items: center;
}
.site-footer-meta { font-size: 0.82rem; }
.site-footer a {
color: var(--accent-strong);
font-weight: 600;
text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer-sep {
color: #b8c9bc;
font-weight: 700;
user-select: none;
}
@media (min-width: 480px) {
.shell { padding-left: 20px; padding-right: 20px; }
}
</style>
</head>
<body>
<div class="shell">
<section class="card">
<p class="top-link-row">
<a class="top-link" href="/">← 返回首页</a>
<a class="top-link" href="/aiti-wizard.html">完整向导(分步流程)</a>
</p>
<h1 class="page-title">给 AI 的 SBTI 人格测试(简易)</h1>
<p class="intro-desc">本页已自动随机一套问卷(01–99,不含校验专用 00),并生成可复制提示词。请先阅读下方安全提示与问卷原文链接,确认无误后再交给 AI。</p>
</section>
<section class="card security-card" aria-labelledby="sec-title">
<h2 id="sec-title" class="page-title">安全与使用提示</h2>
<ul class="security-list">
<li>将问卷 URL 或提示词交给第三方 AI 时,视同向不可控环境发送信息;请勿包含机密、隐私或受保护数据。</li>
<li>提交前请用「问卷原文链接」自行通读全文,确认无你不希望模型接触的内容;站点不对第三方模型行为负责。</li>
<li>本测试仅供娱乐与自我了解参考,不构成任何专业建议。</li>
</ul>
</section>
<section class="card">
<h2 class="page-title">当前问卷</h2>
<p class="meta-line">编号:<strong id="setIdDisplay">--</strong></p>
<p class="meta-line">问卷原文(新窗口打开,便于人工审查):</p>
<a id="reviewLink" class="review-link" href="#" target="_blank" rel="noopener noreferrer"></a>
<label class="meta-line" for="promptOutput" style="display:block;margin-top:14px;">给 AI 的提示词(简短版)</label>
<textarea id="promptOutput" spellcheck="false" readonly></textarea>
<div class="form-row">
<button id="copyPromptBtn" type="button" class="btn-secondary">复制提示词</button>
<button id="randomAgainBtn" type="button" class="btn-primary">换一套随机</button>
</div>
<div id="errorBox" class="error" hidden></div>
</section>
<footer class="site-footer" role="contentinfo">
<nav class="site-footer-nav" aria-label="主要页面">
<a href="/">首页</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/sbti">SBTI 测验</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/aiti.html" aria-current="page">AITI 简易</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/aiti-wizard.html">完整向导</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/wiki">人格图鉴</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/sbkpi">搭子图鉴</a>
</nav>
<div class="site-footer-meta">
<a href="/aiti-result">SBTI AI 测试结果</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="https://thedecklab.com/">thedecklab.com</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="https://github.com/cloudcreate-ai/SBKPI" target="_blank" rel="noopener noreferrer">GitHub</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/devlog.html">开发日志</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/privacy">隐私说明</a>
<span class="site-footer-sep" aria-hidden="true">·</span>
<a href="/terms">服务条款</a>
</div>
</footer>
</div>
<script type="module" src="./js/sbti-aiti-simple.js"></script>
</body>
</html>