.baitu-sg-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.baitu-sg-track {
	display: flex;
	flex-direction: row;
	width: max-content;
	animation: baituScrollLeft var(--baitu-sg-speed, 30s) linear infinite;
}

.baitu-sg-slide {
	flex-shrink: 0;
	height: 100%;
	line-height: 0;
}

.baitu-sg-slide img {
	height: 100%;
	width: auto;
	display: block;
	object-fit: cover;
}

.baitu-sg-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 2;
}

.baitu-sg-center-box {
	pointer-events: auto;
	box-sizing: border-box;
	width: 100%;
}

.baitu-sg-title {
	margin-top: 0;
}

.baitu-sg-desc {
	padding-left: 20px;
	margin: 0;
}

.baitu-sg-desc li {
	margin-bottom: 8px;
}

.baitu-sg-desc li:last-child {
	margin-bottom: 0;
}

@keyframes baituScrollLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-33.333%);
	}
}
