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

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

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

.business-module .business-tr {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.business-module .business-item {
	width: 24%;
	height: 13.37rem;
	margin-bottom: 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border: 1px solid rgba(46, 46, 46, 0);
	transition: all 1s;
}

.business-module .business-item img {
	width: 100%;
	height: 13.37rem;
	display: flex;
	object-fit: cover;
	transition: all 1s;
}

.business-module .business-item .item-cover {
	width: 100%;
	height: 13.37rem;
	background: rgba(0, 0, 0, 0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 1s;
}

.business-module .business-item .item-cover .line {
	position: absolute;
	bottom: -2px;
	width: 1.5rem;
	height: 0.31rem;
	background: rgba(172, 34, 23, 0);
	z-index: 10;
}

.business-module .business-item .item-covers {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
}

.business-module .business-item:hover {
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.business-module .business-item:hover .item-cover {
	background: rgba(0, 0, 0, 0.3);
}

.business-module .business-item:hover .item-covers {
	display: none;
}

.business-module .business-item:hover .item-cover .line {
	background: rgba(172, 34, 23, 1);
}

.business-module .business-item:hover img {
	margin-top: -13.37rem;
}


@media (max-width: 768px) {
	.business-module .business-item {
		width: 48%;
		height: 13.37rem;
		margin-bottom: 0.75rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		cursor: pointer;
		overflow: hidden;
		border: 1px solid rgba(46, 46, 46, 0);
		transition: all 1s;
	}

	.business-module .business-item img {
		width: 100%;
		height: 13.37rem;
		display: flex;
		object-fit: cover;
		transition: all 1s;
	}
}