* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', sans-serif;
}



.container {
	width: 100%;
	max-width: 100%;
	/* 增加最大宽度 */
	margin: 0 auto;
	/* border: 1px solid red; */
}

.swiper-container {
	width: 100%;
	max-width: 1000px;
	/* 减小最大宽度 */
	height: 450px;
	/* 减小高度 */
	border-radius: 15px;
	margin: 0 auto;
	/* border: 1px solid red; */
	/* overflow: hidden; */
	position: relative;
}

.swiper-slide {
	width: 100%;
	/* 完全匹配slidesPerView: 1的设置 */
	height: 100%;
	right: 0;
	border-radius: 15px;
	margin: 0;
	padding: 20px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* border: 1px solid red; */
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
	padding: 25px;
	transform: translateY(0);
	transition: transform 0.4s ease;
	/* border: 1px solid red; */
	margin-left:15px;
}

.slide-content:hover h3 {
	color: #3a7bd5;
}

.slide-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

/* 鼠标悬浮时图片放大效果 */
.swiper-slide:hover img {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.slide-title:hover {
	color: #3a7bd5;
}

.slide-category {
	color: #3a7bd5;
	font-size: 16px;
	margin-bottom: 15px;
}

/* .slide-link {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
	border: 1px solid #3a7bd5;
	border-radius: 25px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: absolute;
	bottom: 25px;
	right: 25px;
	z-index: 10;
} */

.slide-link:hover {
	background-color: #3a7bd5;
	color: #ffffff;
}

.slide-link:hover img {
	transform: scale(1.2);
	/* 如果有替代图片，可以使用content属性更换图片 */
	content: url('../img/right.png');
	/* 如果没有替代图片，添加滤镜效果改变颜色 */
	/* filter: brightness(0) invert(1); */
}

.slide-link svg {
	margin-left: 8px;
	width: 16px;
	height: 16px;
}

/* 自定义导航按钮 */
.custom-navigation {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	gap: 15px;
}

.custom-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.custom-btn:hover {
	background: #ffffff;
	transform: scale(1.1);
}

.custom-btn svg {
	width: 24px;
	height: 24px;
}

/* 标题区域 */
.header {
	text-align: center;
	margin-bottom: 40px;
	color: white;
}

.main-title {
	font-size: 42px;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
	font-size: 18px;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.swiper-container {
		height: 360px;
		/* 增加高度 */
	}
}

@media (max-width: 768px) {
	.swiper-container {
		height: 320px;
		/* 增加高度 */
	}

	.slide-content {
		padding: 15px;
	}

	.slide-title {
		font-size: 20px;
	}

	.main-title {
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.swiper-container {
		height: 280px;
		/* 增加高度 */
	}

	.slide-content {
		padding: 10px;
	}

	.slide-title {
		font-size: 18px;
	}

	.main-title {
		font-size: 28px;
	}

	.custom-navigation {
		margin-top: 20px;
	}

	.custom-btn {
		width: 40px;
		height: 40px;
	}
}

/* 页面布局 */
.page-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	
}

/* 信息面板 */
.info-panel {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 25px;
	margin-top: 40px;
	color: white;
	max-width: 1400px;
	/* 与容器最大宽度一致 */
	width: 100%;
}

.info-panel h3 {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	color: red;
}

.info-panel p {
	line-height: 1.6;
	margin-bottom: 15px;
}

.highlight {
	color: #3a7bd5;
	font-weight: bold;
}

/* 加载状态样式 */
.loading-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-color: #f5f5f5;
	border-radius: 30px;
}

.loading-text {
	font-size: 18px;
	color: #666;
}