/* Banner轮播 - Swiper样式 */
.banner_carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.banner_carousel .mySwiper {
	width: 100%;
}

.banner_carousel .swiper-wrapper {
	width: 100%;
}

.banner_carousel .swiper-slide {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner_carousel .swiper-slide a {
	display: block;
	width: 100%;
}

.banner_carousel .swiper-slide img {
	width: 100% !important;
	height: auto !important;
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	background: #fff;
}

/* 导航按钮样式 */
.banner_carousel .swiper-button-prev,
.banner_carousel .swiper-button-next {
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.banner_carousel:hover .swiper-button-prev,
.banner_carousel:hover .swiper-button-next {
	opacity: 1;
	visibility: visible;
}

.banner_carousel .swiper-button-prev:hover,
.banner_carousel .swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.5);
}

.banner_carousel .swiper-button-prev:after,
.banner_carousel .swiper-button-next:after {
	font-size: 24px;
	font-weight: bold;
}

/* 分页器样式 */
.banner_carousel .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}

.banner_carousel .swiper-pagination-bullet-active {
	background: var(--accent);
	transform: scale(1.3);
}

/* 响应式调整 */
@media (max-width: 1024px) {
	.banner_carousel .swiper-button-prev,
	.banner_carousel .swiper-button-next {
		width: 40px;
		height: 40px;
	}
	
	.banner_carousel .swiper-button-prev:after,
	.banner_carousel .swiper-button-next:after {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.banner_carousel .swiper-button-prev,
	.banner_carousel .swiper-button-next {
		display: none;
	}
}
