chore: initial import

This commit is contained in:
2026-04-19 14:05:40 +08:00
commit 89e9eae36e
81 changed files with 37363 additions and 0 deletions
+58
View File
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>访问被拒绝</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f2f5;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.container {
text-align: center;
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
max-width: 90%;
width: 400px;
}
.icon {
font-size: 64px;
margin-bottom: 20px;
}
h1 {
color: #ff4d4f;
font-size: 24px;
margin-bottom: 16px;
}
p {
color: #666;
font-size: 16px;
line-height: 1.5;
margin-bottom: 0;
}
.footer {
margin-top: 30px;
font-size: 12px;
color: #999;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">🚫</div>
<h1>访问被拒绝</h1>
<p>根据本单位安全规定,本系统<strong>禁止使用移动设备</strong>(手机/平板)访问。</p>
<p style="margin-top: 10px;">请使用办公电脑访问。</p>
<div class="footer">科技成果转化系统安全中心</div>
</div>
</body>
</html>