:root {
	--swiper-theme-color: #ffffff;
}

html,
body {
	background: #292728;
}

.amap-icon img,
.amap-marker-content img {
	width: 25px;
	height: 34px;
}

.case-module {
	margin: var(--top-height) 0 0 0;
	display: flex;
	flex-direction: column;
	z-index: 1;
}

.case-list {
	width: 100%;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.case-wapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}

.case-item {
	height: 100%;
	overflow: hidden;
}

.case-item-img {
	width: calc(100% - 2px);
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.case-item-img img {
	height: 100%;
	display: flex;
	object-fit: cover;
	transition: all 0.5s;
}

.item-img-cover {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(52, 52, 52, 1);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s;
}

.item-img-cover p {
	padding: 1rem;
	text-align: justify;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.3rem;
}

.case-item-img:hover {
	border: 1px solid rgba(255, 255, 255, 0.1)
}

.item-title {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
}

.case-turn-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 1rem;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	cursor: pointer;
	background: rgba(145, 24, 15, 1);
	border: 1px solid rgba(145, 24, 15, 1);
}

.case-turn-btn img {
	width: 1.2rem;
}

.swiper-button-disabled {
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: unset;
}

.turn-right img {
	transform: rotate(180deg);
}

footer {
	position: fixed;
	left: 0;
	bottom: 0;
}

@media (max-width: 768px) {
	#swiper-list {
		height: 40vh;
	}

	.case-list {
		height: 40vh;
	}

	.case-item {
		width: 100%;
		height: 40vh;
		overflow: hidden;
	}

	.case-item-img {
		width: 100%;
		height: 100%;
	}
}