body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-image: url('https://img.darklotus.cn/random');  /*主页的背景图片url*/
	background-size: cover;
	background-position: center center;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #fff;
	font-size: 14px;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

a {
	cursor: pointer;
}

.footer p a {
	color: #ff8080;
	text-decoration: none;
}

.footer p a:hover {
	color: #ff6060;
}

.footer p {
	display: inline-block;
	margin: 0;
	color: #777777;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 16px; /* 缩小内边距 */
	border-radius: 16px; /* 缩小圆角半径 */
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding:24px;
	border-radius:36px;
	z-index: 1; /* 添加 z-index 属性 */
}

h1 {
	font-size: 48px;
	margin: 0;
	text-align: center;
	color: #ff8080;
	text-shadow: 1px 1px 1px #ccc;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

a {
	text-decoration: none;
	color:#ff8080;
	white-space:nowrap;
}

p {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 20px;
	text-align: justify;
	color: #666;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #ff8080;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	font-size: 18px;
	transition: all 0.2s ease-in-out;
	margin-top: 20px;
}

.btn:hover {
	background-color: #7bbfea;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.container h1 {
		font-size: 25px;
	}

	.container p {
		font-size: 16px;
	}

	.container .btn {
		font-size: 16px;
	}

	.footer {
		display: none;
	}
}
