:root {
	--desktop-width: 1170px;
	--desktop-height: 390px;
	--tablet-width: 90vw;
	--tablet-height: 320px;
	--mobile-width: 100vw;
	--mobile-height: 250px;
}

.swiper-container {
	width: var(--desktop-width);
	height: var(--desktop-height);
	margin: 0 auto;
	overflow: hidden;
	height: auto !important;
}
.swiper-pagination{
    bottom: unset !important;
}
.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 平板设备适配 */
@media (max-width: 1199px) {
	.swiper-container {
		width: var(--tablet-width);
		height: var(--tablet-height);
	}
}

/* 移动设备适配 */
@media (max-width: 767px) {
	.swiper-container {
		width: var(--mobile-width);
		height: var(--mobile-height);
	}
	
	.swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	
	.swiper-pagination{
	    display: none;
	}
}

/* 分页器样式 */
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #fff;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #fff;
	transform: scale(1.2);
}