body {
	font-family: 'Arial', sans-serif;
	background-color: #f0f0f0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.container {
	text-align: center;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: relative;
}

.logo {
	position: absolute;
	top: -60px;
	left: calc(50% - 60px);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
}

.logo img {
	width: 100%;
	height: auto;
	display: block;
}

h1 {
	color: #333;
	font-size: 2em;
	margin-top: 70px;
	/* 调整标题位置以避免与图片重叠 */
}

a {
	display: block;
	margin: 15px 0;
	padding: 10px 20px;
	text-decoration: none;
	color: white;
	background-color: #4caf50;
	border-radius: 5px;
	transition: background-color 0.3s;
}

a:hover {
	background-color: #45a049;
}

.description {
	font-size: 32px;
	color: transparent;
	text-align: center;
	background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
	background-clip: text;
	-webkit-background-clip: text;
	text-shadow: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.5);
	animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
	0% {
		text-shadow: 0 0 20px rgba(255, 0, 255, 0), 0 0 30px rgba(0, 255, 255, 0);
	}
	25% {
		text-shadow: 0 0 20px rgba(255, 0, 255, 0.25),
			0 0 30px rgba(0, 255, 255, 0.25);
	}
	50% {
		text-shadow: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.5);
	}
	75% {
		text-shadow: 0 0 20px rgba(255, 0, 255, 0.75),
			0 0 30px rgba(0, 255, 255, 0.75);
	}
	100% {
		text-shadow: 0 0 20px rgba(255, 0, 255, 1), 0 0 30px rgba(0, 255, 255, 1);
	}
}
.banner {
	width: 100%;
	height: 100%;
	position: fixed;
	inset: 0;
	z-index: -1;
}

.carousel {
	position: relative;
	width: 100%;
	height: 100%; /* 根据实际需要调整 */
}

.carousel-inner {
	display: flex;
	transition: transform 0.5s ease-in-out;
	height: 100%;
}

.carousel-item {
	min-width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: #f5f5f5;
}

.carousel-item img {
	height: 100%;
	width: 50%;
	object-fit: cover;
}

.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 18px;
	z-index: 10;
	visibility: hidden;
}

.carousel-control.prev {
	left: 10px;
}

.carousel-control.next {
	right: 10px;
}

.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
}

.indicator.active {
	background: white;
}
