* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', sans-serif;
}
}
.container {
	width: 100%;
	max-width: 100%;
	/* 增加最大宽度 */
	margin: 0 auto;
	}
@media (min-width:2560px) {

	/* 案例展示区域 - 大屏幕适配 */
	.container {
		max-width: 100%;
		width: 100%;
		margin: 0 20px;
	}

	.swiper-container {
		position: relative;
		width: 100%;
		min-width: 100%;
		height: 800px !important;
		max-width: 1800px;
	}

	.swiper-slide {
		width: calc(53.333% - 90px) !important;
		height: 100% !important;
		min-height: 100%;
		margin-right: 30px !important;
		border: none;
	}

	.swiper-slide img {
		height: 100% !important;
		object-fit: cover;
	}

	.slide-content {
		padding: 40px;
		margin-left: 0;
	}

	.slide-title {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.slide-category {
		font-size: 20px;
		margin-bottom: 20px;
	}

	/* 标题区域适配 */
	.header {
		margin-bottom: 60px;
		padding: 0 40px;
	}

	.main-title {
		font-size: 56px;
		margin-bottom: 20px;
	}

	.subtitle {
		font-size: 24px;
		max-width: 900px;
		line-height: 1.6;
	}

	/* 信息面板适配 */
	.info-panel {
		max-width: 1800px;
		padding: 40px;
		margin-top: 60px;
	}

	.info-panel h3 {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.info-panel p {
		font-size: 18px;
		line-height: 1.8;
		margin-bottom: 25px;
	}

	/* 导航按钮适配 */
	.custom-navigation {
		margin-top: 50px;
		gap: 25px;
	}

	.custom-btn {
		width: 60px;
		height: 60px;
	}

	.custom-btn svg {
		width: 28px;
		height: 28px;
	}
}

.swiper-container {
	width: 100%;
	max-width: 1200px;
	/* 增加最大宽度 */
	/* 增加高度 */
	border-radius: 15px;
	margin: 0 auto;
	/* overflow: hidden; */
	position: relative;
}

.swiper-slide {
	width: calc(83.333% - 90px) !important;
	height: 100% !important;
	min-height: 100%;
	margin-right: 30px !important;
	border: none;
}

.swiper-slide img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.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: 850px;
		/* 增加高度 */
	}
}

@media (max-width: 768px) {
	.swiper-container {
		height: 750px;
		/* 增加高度 */
	}

	.slide-content {
		padding: 30px;
	}

	.slide-title {
		font-size: 28px;
	}

	.main-title {
		font-size: 42px;
	}
}

@media (max-width: 480px) {
	.swiper-container {
		height: 650px;
		/* 增加高度 */
	}

	.slide-content {
		padding: 25px;
	}

	.slide-title {
		font-size: 24px;
	}

	.main-title {
		font-size: 38px;
	}

	.custom-navigation {
		margin-top: 30px;
	}

	.custom-btn {
		width: 55px;
		height: 55px;
	}
}

/* 页面布局 */
.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;
}