.faculty-page-news {
	padding: 40px 34px 30px;
	background: rgba(255, 255, 255, 0.97);
}

.faculty-page-news .faculty-page-panel-head {
	margin-bottom: 28px;
}

.faculty-page-news .faculty-page-grid {
	grid-template-columns: 1fr;
	gap: 22px;
}

.faculty-page-news .faculty-member-card {
	position: relative;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 34px;
	padding: 28px 28px 26px;
	border: 1px solid rgba(231, 219, 212, 0.88);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 245, 0.98));
	box-shadow: 0 18px 28px rgba(120, 74, 61, 0.06);
	overflow: hidden;
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, border-color 0.42s ease;
}

.faculty-page-news .faculty-member-card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 54px;
	height: 3px;
	background: #d11414;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.faculty-page-news .faculty-member-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(188, 17, 17, 0.96) 0%, rgba(167, 7, 7, 0.95) 58%, rgba(143, 0, 0, 0.95) 100%),
		radial-gradient(circle at 90% 24%, rgba(255, 214, 184, 0.16), rgba(255, 214, 184, 0) 28%),
		url("../images/bg.png") right 18px center/260px auto no-repeat;
	opacity: 0;
	transform: scaleX(0.96);
	transform-origin: left center;
	transition: opacity 0.38s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 0;
}

.faculty-page-news .faculty-member-card > * {
	position: relative;
	z-index: 1;
}

.faculty-page-news .faculty-member-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 44px rgba(95, 18, 18, 0.18);
	border-color: rgba(187, 0, 0, 0.9);
}

.faculty-page-news .faculty-member-card:hover::before {
	transform: scaleX(1);
}

.faculty-page-news .faculty-member-card:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.faculty-page-news .faculty-news-thumb {
	height: 170px;
	box-shadow: none;
	background: #ddd5cf;
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease;
}

.faculty-page-news .faculty-member-card:hover .faculty-news-thumb {
	transform: translateX(6px);
	box-shadow: 0 16px 26px rgba(35, 8, 8, 0.16);
}

.faculty-page-news .faculty-news-thumb::before,
.faculty-page-news .faculty-news-thumb::after {
	display: none;
}

.faculty-page-news .faculty-news-thumb img {
	transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.faculty-page-news .faculty-member-card:hover .faculty-news-thumb img {
	transform: scale(1.035);
	filter: saturate(1.05) brightness(1.02);
}

.faculty-page-news .faculty-news-info {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	padding-top: 8px;
}

.faculty-page-news .faculty-news-date {
	padding-top: 10px;
	font-family: "Georgia", serif;
	color: #d11414;
	text-align: center;
}

.faculty-page-news .faculty-news-date strong {
	display: block;
	font-size: 54px;
	line-height: 0.9;
	font-weight: 700;
}

.faculty-page-news .faculty-news-date span {
	display: block;
	margin-top: 8px;
	font-size: 15px;
	line-height: 1.2;
	font-family: "Open Sans", "Microsoft YaHei", sans-serif;
}

.faculty-page-news .faculty-news-copy {
	position: relative;
	min-width: 0;
	padding-top: 6px;
	padding-right: 54px;
}

.faculty-page-news .faculty-news-tag {
	margin-bottom: 10px;
	font-size: 14px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #b57f62;
	transition: color 0.32s ease, opacity 0.32s ease;
}

.faculty-page-news .faculty-member-info h4 {
	display: block;
	margin-bottom: 14px;
	padding-bottom: 6px;
	font-size: 22px;
	line-height: 1.45;
	font-weight: 700;
	color: #2f2a26;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.32s ease;
}

.faculty-page-news .faculty-member-info h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 82px;
	height: 2px;
	background: rgba(209, 20, 20, 0.8);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.32s ease;
}

.faculty-page-news .faculty-news-desc {
	margin-bottom: 0;
	color: #726864;
	font-size: 16px;
	line-height: 1.95;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.32s ease, opacity 0.32s ease;
}

.faculty-page-news .faculty-member-more {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	margin: 0;
	background: transparent;
	font-size: 34px;
	line-height: 40px;
	color: #d11414;
	opacity: 0.8;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), color 0.32s ease, opacity 0.32s ease;
}

.faculty-page-news .faculty-member-card:hover .faculty-member-info h4::after {
	transform: scaleX(1);
	background: rgba(255, 245, 200, 0.88);
}

.faculty-page-news .faculty-member-card:hover .faculty-news-copy::after {
	opacity: 0.18;
	transform: translate3d(0, -50%, 0);
}

.faculty-page-news .faculty-member-card:hover .faculty-news-tag,
.faculty-page-news .faculty-member-card:hover .faculty-member-info h4,
.faculty-page-news .faculty-member-card:hover .faculty-news-desc,
.faculty-page-news .faculty-member-card:hover .faculty-news-date,
.faculty-page-news .faculty-member-card:hover .faculty-member-more {
	color: #fff5c8;
}

.faculty-page-news .faculty-member-card:hover .faculty-member-more {
	transform: scale(1.08);
	opacity: 1;
}

.faculty-page-path{
	font-size: 20px;
}

.newsList{
	color:#000000;
	display: flex;
	flex-direction: row;
	/* justify-content: center; */
	align-items: center;
	padding-bottom:10px;
	border-bottom: 1px solid #726864;
	/* 给所有子元素的文字颜色加上过渡 */
  	transition: color 0.5s ease;
}

.newsList img {
	height:50px;
}

.newsList .newsListTime{
	display: flex;
	flex-direction: column;
	font-size:16px;
	line-height:22px;
	color: #726864;
	justify-content: center;
	align-items: center;
	min-width: 100px;
}

.newsList .newsListLine{
	margin-left:30px;
	margin-right: 30px;
	color: #8B0000;
	font-weight: bold;
}

.newsList:hover span,
.newsList:hover p,
.newsList:hover h4 {
  color: #FFD700;   
}

.newsList:hover{
	transform-origin: left center;
	background:
		linear-gradient(90deg, rgba(188, 17, 17, 0.96) 0%, rgba(167, 7, 7, 0.95) 58%, rgba(143, 0, 0, 0.95) 100%),
		radial-gradient(circle at 90% 24%, rgba(255, 214, 184, 0.16), rgba(255, 214, 184, 0) 28%),
		url("../images/bg.png") right 18px center/260px auto no-repeat;
}

@media (max-width: 991px) {
	.faculty-page-news {
		padding: 28px 18px 22px;
	}

	.faculty-page-news .faculty-member-card {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 22px;
		padding: 22px 18px 20px;
	}

	.faculty-page-news .faculty-member-card::before {
		width: 48px;
	}

	.faculty-page-news .faculty-news-thumb {
		height: 146px;
	}

	.faculty-page-news .faculty-news-info {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 18px;
	}

	.faculty-page-news .faculty-news-date strong {
		font-size: 44px;
	}

	.faculty-page-news .faculty-member-info h4 {
		font-size: 20px;
	}

	.faculty-page-news .faculty-news-desc {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.faculty-page-news .faculty-member-card {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.faculty-page-news .faculty-member-card::before {
		width: 46px;
	}

	.faculty-page-news .faculty-news-thumb {
		height: 190px;
	}

	.faculty-page-news .faculty-news-info {
		grid-template-columns: 56px minmax(0, 1fr);
		gap: 14px;
	}

	.faculty-page-news .faculty-news-date {
		padding-top: 0;
	}

	.faculty-page-news .faculty-news-date strong {
		font-size: 38px;
	}

	.faculty-page-news .faculty-news-date span {
		font-size: 13px;
	}

	.faculty-page-news .faculty-news-copy {
		padding-right: 42px;
	}

	.faculty-page-news .faculty-member-card .faculty-news-copy::after {
		width: 150px;
		height: 110px;
		right: 0;
	}

	.faculty-page-news .faculty-member-info h4 {
		font-size: 18px;
		white-space: normal;
	}

	.faculty-page-news .faculty-news-desc {
		font-size: 14px;
		line-height: 1.8;
	}

	.faculty-page-news .faculty-member-more {
		right: 2px;
		bottom: 4px;
	}
}
