.swiper-rc {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	--swiper-navigation-size: 0;
	position: initial;
}

.swiper-rc .swiper-slide {
	position: relative;
	padding-right: 2px;
	box-sizing: border-box;
}

.swiper-rc .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-rc .swiper-button-prev,
.swiper-rc .swiper-button-next {
	width: 50px !important;
}

.rc-item {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin-bottom: 20px;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

.rc-item .rc-date {
	display: flex;
	flex-direction: column;
	min-width: max-content;
	color: #303133;
}

.rc-item .rc-date span:nth-child(1) {
	font-size: 30px;
	font-weight: 700;
}

.rc-item .rc-date div {
	display: flex;
	align-items: center;
	gap: 5px;
}

.rc-data {
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: #dcd9d4;
	background-image: linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0.5) 0%,
			rgba(0, 0, 0, 0.5) 100%
		),
		radial-gradient(
			at 50% 0%,
			rgba(255, 255, 255, 0.1) 0%,
			rgba(0, 0, 0, 0.5) 50%
		);
	background-blend-mode: soft-light, screen;
	width: 100%;
	padding: 10px 20px;
	border-radius: 6px;
}

.rc-data-left {
	display: flex;
	align-items: center;
	gap: 20px;
	box-sizing: border-box;
	width: 100%;
}

.rc-data .photo img {
	border: 5px solid white;
	border-radius: 50%;
	overflow: hidden;
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.rc-item .rc-content {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	gap: 20px;
	cursor: pointer;
	color: #333333;
       height: 138px;
}

.rc-item .rc-content .title div:nth-child(1) {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 20px;
}

.rc-item .rc-content .title div:nth-child(2) {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 13px;
}

.rc-item .rc-content .info {
	display: flex;
	flex-direction: column;
	font-size: 15px;
}

.rc-item .rc-content .info span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 13px;
}

.rc-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 100px;
}

.rc-btn i {
	font-size: 40px;
	color: white;
	cursor: pointer;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.8));
}

.rc-left-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: calc(100vh - 310px);
	background: rgba(255, 255, 255, 0.5);
	border-radius: 6px;
	padding: 30px 0 !important;
}

.rc-left-list li a {
	display: flex;
	gap: 10px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: color 0.3s ease-in-out;
	padding: 10px;
	box-sizing: border-box;
	align-items: center;
}

.rc-left-list li .title {
	color: #303133;
}

.rc-left-list li .title .content {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 20px;
	transition: all 0.3s ease-in-out;
}

.rc-left-list li .date {
	font-size: 15px !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
	min-width: max-content;
	min-height: max-content;
	padding: 5px;
	background-color: #dcd9d4;
	background-image: linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0.5) 0%,
			rgba(0, 0, 0, 0.5) 100%
		),
		radial-gradient(
			at 50% 0%,
			rgba(255, 255, 255, 0.1) 0%,
			rgba(0, 0, 0, 0.5) 50%
		);
	background-blend-mode: soft-light, screen;
	color: white;
	border-radius: 6px;
}

.rc-left-list li .date span {
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.8));
}

.rc-left-list li .date span:nth-child(1) {
	font-size: 20px;
	font-weight: 700;
}

.rc-left-list li .date img {
	width: 15px;
	height: 15px;
}

.rc-left-list li:hover .title .content {
	color: white;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.8));
}

.rc-bg {
	z-index: -1;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.rc-bg img {
	width: 100%;
}

.rc-img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rc-img-d {
	width: 100%;
	height: calc(100vh * 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	object-fit: cover;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	background-color: rgba(255, 255, 255, 0.8);
}

.rc-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rc-img-d .content {
	position: absolute;
	width: 100%;
	height: max-content;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	bottom: 0;
	padding: 5px;
}

.rc-img-d .content .info {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.rc-gap {
	gap: 20px;
}

@media screen and (min-width: 1300px) and (max-width: 1366px) {
	.rc-left-list {
		padding: 0px !important;
		height: calc(100vh - 240px);
		gap: 0 !important;
		overflow: hidden;
	}

	.rc-left-list li .title .content {
		font-size: 15px;
	}

	.rc-left-list li .date {
		font-size: 10px !important;
	}

	.rc-img-d {
		height: calc(100vh * 0.2);
	}

	.rc-data .photo img {
		width: 80px;
		height: 80px;
	}
	.rc-item .rc-date {
		display: none;
	}

	.rc-item .rc-content .title div:nth-child(1) {
		font-size: 14px;
	}

	.rc-item .rc-content .title div:nth-child(2) {
		font-size: 10px;
	}

	.rc-item .rc-content .info span {
		font-size: 10px !important;
	}

	.rc-item .rc-content {
		gap: 5px;
	}
}