.swiper-sz-container {
	width: 100%;
	height: calc(100vh - 400px);
}

.swiper-sz {
	width: 100%;
	height: 100%;
	--swiper-navigation-size: 40px;
	--swiper-navigation-color: white;
	overflow: hidden;
	position: relative;
}

.swiper-sz .swiper-slide {
	position: relative;
	height: calc(100vh - 400px);
	background-image: linear-gradient(
		-225deg,
		#22e1ff 0%,
		#1d8fe1 48%,
		#625eb1 100%
	);
	border-radius: 6px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.swiper-sz .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sz-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	gap: 20px;
	padding: 40px 20px;
	cursor: pointer;
	position: relative;
}

.sz-item .photo img {
	width: calc(100vw * 0.1);
	height: calc(100vw * 0.1);
	border-radius: 50%;
	border: 5px solid white;
	object-fit: contain;
        background: #dadada;
}

.sz-item .info {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	letter-spacing: 2px;
	gap: 5px;
}

.sz-item .info .user {
	font-size: 1.5cqw;
	font-weight: 700;
}

.sz-item .info .title {
	width: 100%;
	text-align: left;
	font-size: 1cqw;
}

.sz-item .info .data {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 0.9cqw;
}

.sz-item .info .data:after {
	content: attr(data-title);
	position: absolute;
	bottom: 0;
	border-radius: 0 0 6px 6px;
	left: 0;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 10px;
	height: 50%;
	transform: translateY(100%);
	transition: all 0.3s ease-in-out;
}

.sz-item .info .data:hover::after {
	transform: translateY(0);
}

.sz-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	gap: 100px;
}

.sz-btn i {
	font-size: 40px;
	color: white;
	cursor: pointer;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.8));
}

.rc-mt {
	margin-top: 60px;
}

@media screen and (max-width: 1200px) {
	.sz-item .photo {
		border: 5px solid white;
		border-radius: 50%;
		overflow: hidden;
		width: 200px;
		height: 200px;
		min-height: 200px;
		object-fit: contain;
	}

	.sz-item .photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border: none;
	}

	.sz-item .info .user {
		font-size: 20px;
	}

	.sz-item .info .title {
		font-size: 25px;
	}

	.sz-item .info .data {
		font-size: 15px;
	}
}

@media screen and (min-width: 1300px) and (max-width: 1366px) {
	.swiper-sz-container,
	.swiper-sz .swiper-slide {
		height: calc(100vh - 320px);
	}

	.sz-item .photo img {
		width: calc(100vw * 0.05);
		height: calc(100vw * 0.05);
	}
}