.swiper-xs-container {
	width: 100%;
	height: calc(100vh - 310px);
	border-radius: 6px;
	overflow: hidden;
	background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
}

.swiper-xs {
	width: 100%;
	height: 100%;
	/* --swiper-navigation-size: 40px;
	--swiper-navigation-color: white; */
	overflow: hidden;
	position: relative;
}

.swiper-xs .swiper-slide {
	position: relative;
	background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
	height: calc(100vh - 310px);
	background: white;
	display: flex;
	flex-direction: column;
}

.swiper-xs .swiper-slide .title {
	padding: 10px 20px;
	background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
	font-weight: 700;
	color: white;
}

.swiper-xs .swiper-slide .photo {
	overflow: hidden;
	flex-grow: 1;
	background-color: yellow;
}

.swiper-xs .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-xs .xs-bullet {
	display: flex;
	flex-direction: column;
	width: 20px;
	height: 20px;
	margin: 10px 0;
	border: 1px solid white;
	transition: all 0.3s ease;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
	border-radius: 6px;
}

.swiper-xs .xs-bullet-active {
	display: flex;
	flex-direction: column;
	width: 20px;
	height: 20px;
	border: none;
	background: white;
}

.xs-item {
	background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
	display: flex;
	flex-direction: column;
	gap: 5px;
	box-sizing: border-box;
	justify-content: center;
	padding: 10px 20px;
	box-sizing: border-box;
	cursor: pointer;
}

.xs-item .u-title {
	font-size: 16px;
	font-weight: 700;
	color: white;
}

.xs-item .user,
.xs-item .time,
.xs-item .location {
	font-size: 14px;
	color: white;
       overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media screen and (min-width: 1300px) and (max-width: 1366px) {
	.notice-left-list {
		height: calc(100vh - 250px);
	}

	.notice-left-list li .title {
		font-size: 14px;
	}

	.notice-left-list li .date {
		font-size: 12px !important;
	}

	.notice-left-list li .date span:nth-child(1) {
		font-size: 14px;
	}

	.swiper-xs-container {
		height: calc(100vh - 250px);
	}
}

@media screen and (max-width: 1200px) {
	.notice-left-list {
		box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
	}
}