/* banner部分 */
.banner-wrap {
	position: relative;
	width: 100%;
	height: 7rem;
	background: url('../images/v20251030/common/news_bg.png') no-repeat center;
	background-size: cover;
}
.banner-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3rem;
	background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,0));
	opacity: 0.5;
	z-index: 5;
}
.banner-container {
	padding-left: 0.58rem;	
}
.banner-title {
	padding-top: 3.75rem;
	font-size: 0.5rem;
	font-family: Arial;
	font-weight: bold;
	color: rgba(255,255,255,1);
}
/* news部分 */
.news-wrap {
	background: rgba(246, 250, 255, 1);
}
.news-box {
	position: relative;
	top: -1.8rem;
	margin-bottom: -1.8rem;
	border: 1px solid rgba(230, 232, 245, 1);
	border-radius: 2px;
	opacity: 0.94;
}
.news-title-box {
	padding-top: 0.7rem;
	height: 1.8rem;
	background: #E6E8F5;
}
.news-title {
	margin-bottom: 0.2rem;
	font-size: 0.28rem;
	font-family: PingFang SC;
	font-weight: 600;
	color: rgba(31,31,31,1);
	line-height: 0.32rem;
	text-align: center;
}
.news-desc {
	font-size: 0.16rem;
	font-family: Arial;
	font-weight: 400;
	color: rgba(102,102,102,1);
	line-height: 0.18rem;
	opacity: 0.8;
	text-align: center;
}
.news-content-box {
	padding: 0.72rem 0.6rem 1.8rem;
	background: rgba(255,255,255,1);
}
.news-content {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	user-select: none;
	gap: 42px;
}
.news-content-link {
	margin-top: 0.66rem;
	display: block;
}
.news-content-link:first-child {
	margin-top: 0;
}
.news-content-link:hover .news-content-title {
	color: rgba(22,120,255,1);
}
/*.news-content-link:hover .news-content-date {
	color: rgba(22,120,255,1);
}
.news-content-link:hover .news-content-year {
	color: rgba(22,120,255,1);
}*/
.news-content-left {
	float: left;
	position: relative;
	margin-right: 0.4rem;
	width: 1.2rem;
	text-align: right;
}
.news-content-right {
	float: right;
	position: relative;
	width: 9rem;
}
.news-content-date {
	font-size: 48px;
	font-family: Arial;
	font-weight: bold;
	color: rgba(102,102,102,1);
	margin-bottom: 0.16rem;
}
.news-content-year {
	font-size: 24px;
	font-family: Arial;
	font-weight: bold;
	color: rgba(102,102,102,1);
	line-height: 32px;
}
.news-content-title {
	font-size: 24px;
	font-family: PingFang SC;
	font-weight: 600;
	color: rgba(51,51,51,1);
	line-height: 36px;
	margin-bottom: 18px;
}
.news-content-desc {
	font-size: 18px;
	font-family: PingFang SC;
	font-weight: 400;
	color: rgba(102,102,102,1);
	line-height: 28px;
	max-height: 56px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;     
  	-webkit-line-clamp: 2; 
  	-webkit-box-orient: vertical; 
}
.news-content-img {
	margin-top: 18px;
	margin-left: 180px;
	width: 6rem;
    height: 3rem;
    overflow: hidden;
}
.news-content-img img {
	width: 100%;
	height: 100%;
	transition: all 0.5s linear;
}
.news-content-img:hover img {
	transform: scale(1.1);
}
.news-content-box {
    opacity: 0;
    animation: fadeIn 0.2s ease-in-out forwards;
    animation-delay: 0.1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}