You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.0 KiB
84 lines
2.0 KiB
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>暂时无法进入报名系统</title>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
background: #f4f7fb;
|
|
color: #1f2937;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
|
|
}
|
|
|
|
main {
|
|
width: min(100%, 420px);
|
|
padding: 32px 24px;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
text-align: center;
|
|
box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
|
|
}
|
|
|
|
.icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
margin: 0 auto 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
background: #fff7ed;
|
|
color: #c2410c;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
font-size: 22px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
p {
|
|
margin: 12px 0 0;
|
|
color: #4b5563;
|
|
font-size: 16px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.hint {
|
|
color: #6b7280;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.code {
|
|
margin-top: 20px;
|
|
color: #9ca3af;
|
|
font-size: 12px;
|
|
word-break: break-all;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="icon" aria-hidden="true">!</div>
|
|
<h1>暂时无法进入报名系统</h1>
|
|
<p>{{ $message }}</p>
|
|
<p class="hint">请返回小程序后重新进入报名页面。</p>
|
|
<p class="code">错误码:{{ $errorCode }}</p>
|
|
</main>
|
|
</body>
|
|
</html>
|