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.

92 lines
2.2 KiB

5 months ago
<!DOCTYPE html>
4 months ago
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2026 江苏省新消费创新创业大赛</title>
<style>
:root {
color-scheme: light;
--bg: #f7f8fa;
--text: #1f2937;
--muted: #6b7280;
--border: #e5e7eb;
--primary: #2563eb;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
4 months ago
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
4 months ago
padding: 24px;
background: var(--bg);
color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
main {
width: min(100%, 560px);
padding: 40px 32px;
border: 1px solid var(--border);
border-radius: 8px;
background: #fff;
text-align: center;
}
h1 {
margin: 0;
font-size: 28px;
line-height: 1.35;
font-weight: 700;
}
p {
margin: 16px 0 0;
color: var(--muted);
font-size: 16px;
line-height: 1.7;
}
4 months ago
footer {
position: fixed;
right: 24px;
bottom: 18px;
left: 24px;
text-align: center;
font-size: 13px;
color: var(--muted);
}
footer a {
color: inherit;
4 months ago
text-decoration: none;
}
4 months ago
footer a:hover {
color: var(--text);
text-decoration: underline;
}
footer a:focus {
4 months ago
outline: 3px solid rgba(37, 99, 235, 0.25);
outline-offset: 2px;
}
</style>
</head>
<body>
<main>
4 months ago
<h1>欢迎访问 2026 江苏省新消费创新创业大赛报名系统</h1>
4 months ago
</main>
4 months ago
<footer>
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">苏ICP备13000016号-1</a>
</footer>
4 months ago
</body>
5 months ago
</html>