|
|
|
|
@ -21,8 +21,10 @@
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
background: var(--bg);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
@ -52,22 +54,27 @@
|
|
|
|
|
line-height: 1.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
min-height: 42px;
|
|
|
|
|
margin-top: 28px;
|
|
|
|
|
padding: 0 18px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
background: var(--primary);
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
footer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 24px;
|
|
|
|
|
bottom: 18px;
|
|
|
|
|
left: 24px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:focus {
|
|
|
|
|
footer a:hover {
|
|
|
|
|
color: var(--text);
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer a:focus {
|
|
|
|
|
outline: 3px solid rgba(37, 99, 235, 0.25);
|
|
|
|
|
outline-offset: 2px;
|
|
|
|
|
}
|
|
|
|
|
@ -76,8 +83,9 @@
|
|
|
|
|
<body>
|
|
|
|
|
<main>
|
|
|
|
|
<h1>欢迎访问 2026 江苏省新消费创新创业大赛报名与评审系统</h1>
|
|
|
|
|
<p>系统已正常运行。</p>
|
|
|
|
|
<a href="/admin/">进入系统</a>
|
|
|
|
|
</main>
|
|
|
|
|
<footer>
|
|
|
|
|
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">苏ICP备13000016号-1</a>
|
|
|
|
|
</footer>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|