html, body {
	margin: 0;
	height: 100%;
}

body {
	font-family: "宋体", "SimSun", "Songti SC", "Noto Serif CJK SC", serif;
	color: #111;
	background: #000 url("images/bg.jpg") center center / cover no-repeat fixed;
}

.page {
	min-height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo {
	width: 400px;
	/* width: min(40vw, 400px); */
	height: auto;
	display: block;
	margin: 0 auto 24px;
}

.coming {
	position: absolute;
	top: 77%;
	display: flex;
	align-items: center;
	gap: 16px;
}

.coming .text {
	font-size: 20px;
	color: #000000;
	font-weight: bold;
}

.coming .line {
	display: inline-block;
	width: 50px;
	height: 1px;
	background: #000000;
}

/* PC 优先，确保在较大屏幕表现良好 */
@media (min-width: 1440px) {
	.hero-logo { margin-bottom: 32px; }
	.hero-title { margin-bottom: 36px; }
}

@media (max-width: 768px) {
	.logo { 
		width: 350px; 
		margin: 30px auto 24px;
	}
}

.Footer{
	position:absolute;
	bottom: 5%;
	width:100%;
	text-align: center;
	color: #333;
}
.Footer a{
	color: #333;
}