@charset "utf-8";
/* CSS Document */

#certify {
	position: relative;
	width: 1134px;
	margin: 0 auto;
}

#certify .swiper-container {
	padding-bottom: 30px;
	overflow: hidden;
}

#certify .swiper-slide {
	width: 744px;
	height: 415px;
	background: transparent;
	box-shadow: none;
	overflow: hidden;
}

/* 右侧第一张图片尺寸 420*262 - 更靠近中间，显示更少 */
#certify .swiper-slide[data-index="1"] img,
#certify .swiper-slide[data-index="-1"] img {
	width: 420px;
	height: 262px;
}

/* 右侧第二张图片尺寸 320*200 - 更靠近中间，显示更少 */
#certify .swiper-slide[data-index="2"] img,
#certify .swiper-slide[data-index="-2"] img {
	width: 320px;
	height: 200px;
}

#certify .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#certify .swiper-slide p {
	display: none;
}

/* 文字分页按钮样式 */
#certify .swiper-pagination {
	width: 100%;
	bottom: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	position: relative;
}

#certify .swiper-pagination-bullet {
	width: 120px;
	height: 45px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	opacity: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease;
	line-height: 1;
}

/* 激活状态 - 径向渐变效果 */
#certify .swiper-pagination-bullet-active {
	background: radial-gradient(ellipse 155.27% 239.57% at 3.01% -18.86%, #003CF1 14%, rgba(0, 0, 0, 0) 51%, #0A82FF 85%);
	border-color: #0A82FF;
	box-shadow: 0 0 15px rgba(10, 130, 255, 0.5);
	color: #fff;
}

#certify .swiper-button-prev {
	left: -30px;
	width: 45px;
	height: 45px;
	background: url(/assets/images/swiper/wm_button_icon.png) no-repeat;
	background-position: 0 0;
	background-size: 100%;
}

#certify .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%;
}

#certify .swiper-button-next {
	right: -30px;
	width: 45px;
	height: 45px;
	background: url(/assets/images/swiper/wm_button_icon.png) no-repeat;
	background-position: 0 -93px;
	background-size: 100%;
}

#certify .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%;
}

/* 响应式适配 */
@media (max-width: 1414px) {
	.showcase-wrapper {
		width: 100vw;
	}
	#certify {
		width: 160vw;
		left: 50%;
		transform: translateX(-50%);
	}
	#certify .swiper-slide {
		width: 52vw;
		height: 29vw;
	}
	#certify .swiper-button-prev {
		left: 10px;
	}
	#certify .swiper-button-next {
		right: 10px;
	}
	#certify .swiper-pagination-bullet {
		width: 100px;
		height: 40px;
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	#certify .swiper-slide {
		width: 80vw;
		height: 45vw;
	}
	#certify .swiper-button-prev,
	#certify .swiper-button-next {
		display: none;
	}
	#certify .swiper-pagination {
		flex-wrap: wrap;
		gap: 5px;
	}
	#certify .swiper-pagination-bullet {
		width: 80px;
		height: 35px;
		font-size: 11px;
	}
}
