/* 设置内容高度为200vh，使其产生滚动条 */
.content {
	height: 200vh;
	background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
}
.content h1 {
	margin-top: 20vh;
	color: #343a40;
}
.content p {
	margin-top: 10vh;
	color: #6c757d;
	font-size: 18px;
}
/* 登录提示遮罩层 */
.login-prompt {
	display: none;
	/* 默认隐藏 */
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.85);
	color: white;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	z-index: 1000;
	backdrop-filter: blur(5px);
}
.login-prompt button {
	padding: 12px 24px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	transition: background 0.3s;
}
.login-prompt button:hover {
	background: #0056b3;
}