.carousel-module {
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 20px rgba(0, 0, 0, .1);
	background: #fff;
}

.carousel-list {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 16/10;
}

.carousel-shell {
  width: 100%;
  height: 100%;
  overflow: hidden;        /* 把 1 px 缝隙裁掉 */
}

.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform .6s ease-in-out;

}

.carousel-slide {
	min-width: 100%;
	height: 100%;
}

.carousel-slide img,
.carousel-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.thumbnails-wrapper {
	position: relative;
	padding: 15px 50px 10px;
	background: #f8f9fa;
	overflow: hidden;
}

.carousel-thumbnails {
	display: flex;
	gap: 16px;
	width: fit-content;
	margin: 0 auto;
	transition: transform .3s ease;
}

.thumbnail {
	min-width: 120px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	opacity: .7;
	transition: all .3s ease;
	border: 3px solid transparent;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .1);
}

.thumbnail.active {
	opacity: 1;
	border-color: #3192ce;
	transform: scale(1.08);
}

.thumbnail img,
.thumbnail video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width:800px) {
	.thumbnail {
		min-width: 90px;
		height: 60px;
	}
}

.thumb-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .9);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	color: #555;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.thumb-btn.prev {
	left: 8px;
}

.thumb-btn.next {
	right: 8px;
}

.thumb-btn:disabled {
	opacity: .3;
	cursor: not-allowed;
}