﻿.zs-banner {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.zs-banner img {
	width: 100%;
}

.zs-item-center {
	width: 100%;
	height: calc(100vh -300px);
	border-radius: 6px;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding: 20px;
	gap: 20px;
}

.zs-item-center video {
	width: 100%;
	height: calc(100% - 450px);
}

.zs-item-center .kh-item-title {
	font-size: 1.5cqw;
	color: white;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.8));
}

.zs-item {
	width: 100%;
	height: calc(100vh - 200px);
	background: rgba(255, 255, 255, 0.5);
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	justify-content: center;
	padding: 0 20px;
	gap: 20px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.zs-item:hover {
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.zs-item .zs-item-title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 15px;
	max-height: max-content;
}

.zs-item .title-img {
	width: calc(100vw * 0.1);
	height: calc(100vw * 0.1);
	border-radius: 50%;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.8));
}

.zs-item-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.zs-item-content .title {
	font-weight: 700;
	margin-bottom: 10px;
}

.zs-item-content .info {
	color: #999;
	font-size: 15px;
}

.zs-item .zs-item-icon {
	width: 100%;
	position: absolute;
	bottom: 0;
	border-radius: 0 0 6px 6px;
}

@media screen and (min-width: 1300px) and (max-width: 1366px) {
	.zs-item .title-img {
		width: calc(100vw * 0.08);
		height: calc(100vw * 0.08);
	}

	.zs-item .zs-item-title {
		font-size: 12px !important;
	}

	.zs-item-content .info {
		font-size: 10px;
	}
}