@layer utilities {
	.content-auto {
		content-visibility: auto;
	}

	.text-shadow {
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}

	.text-shadow-lg {
		text-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
	}

	.ellipse-mask {
		clip-path: ellipse(100% 100% at 50% 0%);
	}

	.ellipse-mask-bottom {
		clip-path: ellipse(100% 100% at 50% 100%);
	}

	.scrollbar-hide::-webkit-scrollbar {
		display: none;
	}

	.scrollbar-hide {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
}

/* 导入字体 */



/* 滚动指示器样式 */
.scroll-indicator {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	animation: bounce 2s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0) translateX(-50%);
	}

	40% {
		transform: translateY(-20px) translateX(-50%);
	}

	60% {
		transform: translateY(-10px) translateX(-50%);
	}
}

/* 进度条样式 */
.progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, #165DFF, #FF7D00);
	width: 0%;
	z-index: 50;
	transition: width 0.1s ease;
}

/* 文字容器样式 */
.text-container {
	position: relative;
	height: 200px;
	/* 固定高度，确保内容过渡时不会跳动 */
}

.text-container>div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: all 0.8s ease;
}

/* 卡片容器样式 */
.card-container {
	position: relative;
	min-height: 300px;
	/* 固定高度，确保卡片过渡时不会跳动 */
}

.card-container>div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: all 0.8s ease;
}


/*滚动弧形效果*/
.xygk_hx_box {
	width: 100%;
	height: 100vh;
	background: #fff;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.xygk_c {
	width: 300px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: #fff url('wzbj.png') center no-repeat;
	overflow: hidden;
	transition: width 0.3s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-top: 570px;
}
/* 元素样式 */
.section {
	width: 900px;
	text-align: center;
	line-height: 60px;
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	margin: 0 auto 270px;
	transition: opacity 0.6s ease-out;
}
.gk_tow{
	opacity: 0;
	font-size: 18px;
	line-height: 40px;
	font-weight: 400;
}
.section-visible {
	opacity: 1;
	transform: translateY(0);
}
