feat: 初始化静态镜像站点仓库
This commit is contained in:
109
hc-pos.sqygj.cn/404/index.html
Normal file
109
hc-pos.sqygj.cn/404/index.html
Normal file
@@ -0,0 +1,109 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>页面未镜像 - 项目运营平台</title>
|
||||
<style>
|
||||
:root {
|
||||
--bg: #0b1220;
|
||||
--panel: #121c30;
|
||||
--text: #eef4ff;
|
||||
--muted: #98a7c2;
|
||||
--accent: #4aa3ff;
|
||||
--border: rgba(255,255,255,0.08);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(74, 163, 255, 0.18), transparent 28%),
|
||||
radial-gradient(circle at bottom right, rgba(94, 234, 212, 0.12), transparent 26%),
|
||||
var(--bg);
|
||||
color: var(--text);
|
||||
font: 16px/1.6 -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
|
||||
}
|
||||
|
||||
.card {
|
||||
width: min(680px, calc(100vw - 32px));
|
||||
padding: 32px 28px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 20px;
|
||||
background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
|
||||
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0 0 12px;
|
||||
font-size: 28px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 14px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
margin-top: 20px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 132px;
|
||||
padding: 12px 16px;
|
||||
border-radius: 12px;
|
||||
text-decoration: none;
|
||||
transition: transform 0.15s ease, opacity 0.15s ease;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.primary {
|
||||
background: var(--accent);
|
||||
color: #06101f;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.secondary {
|
||||
border: 1px solid var(--border);
|
||||
color: var(--text);
|
||||
background: rgba(255,255,255,0.03);
|
||||
}
|
||||
|
||||
code {
|
||||
padding: 2px 6px;
|
||||
border-radius: 8px;
|
||||
background: rgba(255,255,255,0.06);
|
||||
color: var(--text);
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="/__mirror/static-mirror.css"></head>
|
||||
<body>
|
||||
<main class="card">
|
||||
<h1>这个页面还没有被完整镜像</h1>
|
||||
<p>当前本地站点是基于已登录浏览器会话导出的静态快照。</p>
|
||||
<p>你点到的这个入口暂时没有对应的本地页面文件,所以我把它统一落到了这个兜底页,避免出现文件不存在。</p>
|
||||
<p>如果你需要,我可以继续针对这个入口做定向补抓,把它补成真实页面。</p>
|
||||
<p>当前目录:<code>hc-pos.sqygj.cn/404/</code></p>
|
||||
<div class="actions">
|
||||
<a class="primary" href="../dashboard/">返回项目首页</a>
|
||||
<a class="secondary" href="../dataPlatform/home/">进入运营指数</a>
|
||||
</div>
|
||||
</main>
|
||||
<script src="/__mirror/static-mirror.js"></script></body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user