

.carousel-container {
	width: 1200px;
	height: 100px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width: 100%;
	height: 100%;
	position: relative;
}

.slide-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}

.slide-image {
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
	background-size: cover
}

.slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: white;
}

.slide-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.slide-description {
	font-size: 12px;
	opacity: 0.9;
}

/* .carousel-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 10;
	padding: 0 10px;
} */

.carousel-btn {
	background: rgba(255, 255, 255, 0.7);
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: scale(1.1);
}

.carousel-btn svg {
	width: 16px;
	height: 16px;
}

.carousel-indicators {
	position: absolute;
	bottom: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: white;
	transform: scale(1.2);
}

.carousel-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.8);
	width: 0%;
	transition: width 0.1s linear;
	z-index: 10;
}

/* 响应式设计 */
@media (max-width: 1250px) {
	.carousel-container {
		width: 95%;
		max-width: 1200px;
	}
}