llms.txt Content
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<title>正在前往 Hugging Face 原站</title>
<style>
:root {
color-scheme: light;
--bg: #f6f7fb;
--panel: #ffffff;
--text: #17202a;
--muted: #5b6573;
--line: #d9dee8;
--accent: #0f766e;
--accent-dark: #0b5f59;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
background: var(--bg);
color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.6;
}
main {
width: min(100%, 680px);
padding: 32px;
border: 1px solid var(--line);
border-radius: 8px;
background: var(--panel);
box-shadow: 0 18px 45px rgba(23, 32, 42, 0.08);
}
h1 {
margin: 0 0 14px;
font-size: 24px;
line-height: 1.3;
font-weight: 700;
}
p {
margin: 0 0 16px;
color: var(--muted);
font-size: 16px;
}
.destination {
display: block;
margin: 18px 0 22px;
padding: 12px 14px;
border: 1px solid var(--line);
border-radius: 6px;
overflow-wrap: anywhere;
color: var(--text);
background: #fbfcff;
font-size: 14px;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin-top: 22px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 9px 16px;
border-radius: 6px;
border: 1px solid var(--accent);
background: var(--accent);
color: #fff;
font-weight: 650;
text-decoration: none;
}
.button:hover {
background: var(--accent-da