.banner-wrap {
	height: 7rem;
	background: url('../images/news/news-bg.png') no-repeat center;
	background-size: cover;
}
.banner-title {
	position: absolute;
	top: 2.4rem;
	width: 100%;
	font-size: 0.44rem;
	font-family: Source Han Serif CN;
	font-weight: bold;
	color: rgba(255,255,255,1);
	text-align: left;
	margin-left: 0.8rem;
}
.news-wrap {
	background: rgba(246, 250, 255, 1);
}
.news-box {
	position: relative;
	margin: 0 auto;
	width: 6.7rem;
	background: rgba(255,255,255,1);
	border: 1px solid rgba(230, 232, 245, 1);
	border-radius: 2px;
	opacity: 0.94;
	top: -1.8rem;
	margin-bottom: -1.8rem;
	padding-bottom: 1.2rem;
}
.news-box.active {
	height: auto;
}
.news-title-box {
	padding-top: 0.6rem;
	height: 1.8rem;
	background: #E6E8F5;
}
.news-title {
	margin-bottom: 0.2rem;
	font-size: 0.32rem;
	font-family: PingFang SC;
	font-weight: 600;
	color: rgba(31,31,31,1);
	text-align: center;
}
.news-desc {
	font-size: 0.24rem;
	font-family: Arial;
	font-weight: 400;
	color: rgba(102,102,102,1);
	opacity: 0.8;
	text-align: center;
}
.news-content-link {
	margin-top: 0.6rem;
	display: block;
}
.news-content {
	padding: 0 0.4rem;
	overflow: hidden;
}
.news-content-left {
	float: left;
	position: relative;
	margin-right: 0.2rem;
	width: 1.2rem;
	text-align: right;
}
.news-content-right {
	float: right;
	position: relative;
	width: 4.2rem;
}
.news-content-date {
	font-size: 0.44rem;
	font-family: Arial;
	font-weight: bold;
	color: rgba(102,102,102,1);
	margin-bottom: 0.12rem;
}
.news-content-year {
	font-size: 0.32rem;
	font-family: Arial;
	font-weight: bold;
	color: rgba(102,102,102,1);
}
.news-content-title {
	font-size: 0.32rem;
	font-family: PingFang SC;
	font-weight: 600;
	color: rgba(51,51,51,1);
	margin-bottom: 0.18rem;
}
.news-content-desc {
	font-size: 0.24rem;
	font-family: PingFang SC;
	font-weight: 400;
	color: rgba(102,102,102,1);
	line-height: 0.32rem;
	max-height: 1.28rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;     
  	-webkit-line-clamp: 4; 
  	-webkit-box-orient: vertical; 
}
.news-content-img {
	margin: 0 auto;
	margin-top: 0.2rem;
	width: 6rem;
    height: 3rem;
    overflow: hidden;
}
/*.news-more {
	padding: 0.6rem 0;
	font-size: 0.32rem;
	font-family: PingFang SC;
	font-weight: 600;
	color: rgba(22,120,255,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;
    }
}