.banner_box {
	width: 68%;
	height: auto;
	margin: auto;
	padding: 5px 16%;
	position: relative;

}

.ticker-container {
	width: 90%;
	margin: 20px auto;
	overflow: hidden;
	height: 40px;
	border-radius: 10px;
	border: 2px solid rgba(0, 0, 0, .2);
	position: relative;
	/* 添加阴影和渐变背景 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
	/* 添加悬停效果 */
	transition: all 0.3s ease;
}

.ticker-container:hover {
	border-color: rgba(226, 14, 109, 0.4);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.ticker-heading {
	position: absolute;
	background: #FF5C5C;
	display: block;
	left: 0;
	top: 0;
	height: 40px;
	line-height: 40px;
	padding: 0 10px 0 15px;
	z-index: 2;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.ticker-heading::after {
	content: '';
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid #FF5C5C;
	position: absolute;
	margin-left: 9.5px;
	top: 12px;
}

.ticker-wrap {
	position: relative;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	height: 40px;
	/* background-color: #ffffffaa; */
}

.ticker {
	display: flex;
	align-items: center;
	height: 36px;
	line-height: 36px;
	white-space: nowrap;
	/* 设置ticker的宽度为内容宽度 */
	width: max-content;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-name: ticker;
	animation-name: ticker;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	/* 确保动画立即开始，无延迟 */
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	/* 添加硬件加速 */
	will-change: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	/* 立即开始动画，而不是等待 */
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	/* 确保动画立即启动 */
	-webkit-animation-play-state: running;
	animation-play-state: running;
	/* 添加平滑的过渡效果 */
	transition: none;
}

/* 移除容器级别的hover暂停效果 */

@keyframes ticker {
	0% {
		transform: translate3d(100%, 0, 0);
		-webkit-transform: translate3d(100%, 0, 0);
	}

	100% {
		transform: translate3d(-100%, 0, 0);
		-webkit-transform: translate3d(-100%, 0, 0);
	}
}

/* 添加响应式动画速度调整 */
@media (max-width: 768px) {
	.ticker {
		/* 移动设备上快速滑动 */
		animation-duration: 1.5s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ticker {
		/* 为有运动敏感的用户提供稍慢的动画 */
		animation-duration: 5s;
	}
}


.ticker-item {
	display: flex;
	align-items: center;
	padding: 0 20px;
	font-weight: bold;
	color: #e20e6d;
	position: relative;
	white-space: nowrap;
	/* 添加平滑的悬停效果 */
	transition: all 0.3s ease;
	cursor: pointer;
	/* 确保链接样式正确 */
	text-decoration: none;
	border: none;
	background: none;
}

.ticker-item:hover {
	color: #FF5C5C;
	transform: scale(1.05);
}

.ticker-item img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	margin-right: 12px;
	/* 添加图片的过渡效果 */
	transition: transform 0.3s ease;
	border: 2px solid rgba(226, 14, 109, 0.2);
}

.ticker-item:hover img {
	transform: rotate(360deg) scale(1.1);
	border-color: #FF5C5C;
}

.ticker-item:not(:last-child)::after {
	content: "•";
	position: absolute;
	right: 5px;
	color: #FF5C5C;
	font-size: 16px;
	animation: pulse 2s infinite;
}

/* 分隔符的脉冲动画 */
@keyframes pulse {

	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

.menu_text {
	width: 90%;
	height: auto;
	display: flex;
	justify-content: center;
	margin: 10px auto;

}

.menu_text a {
	color: #e20e6d;
	background: #fff;
	border: 2px solid #e20e6d;
	border-radius: 16px;
	cursor: pointer;
	box-shadow: 0 2px 0 #e20e6d;
	display: inline-block;
	padding: 6px 12px;
	font-weight: 600;
	background-color: #ffffffaa;
	margin-right: 15px;
}

.menu_text a:hover {
	background-color: #e20e6d;
	color: #fff;
}

.page-title {
	width: 90%;
	background: #ffffff10;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: 20px;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
	padding: 30px 2vw;
	margin: 40px auto;
	border-radius: 8px;
	position: relative;
}

.page-title h1 {
	font-size: 40px;
}

.page-title p {
	font-size: 18px;
	margin-top: 20px;
	font-weight: 600;
}


@media (max-width: 760px) {
	.banner_box {
		width: 100%;
		padding: 10px 0;
	}

	.menu_text {
		justify-content: space-between;
		overflow-x: scroll;
		scroll-behavior: smooth;
	}

	.menu_text a {
		display: flex;
		align-items: center;
	}

	.sun {
		display: none;
	}
}