/* 文章卡片 */
.news-wenzhan-card {
	display: flex;
	margin-top: 30px;
	padding-bottom: 30px;
	width: 100%;
	border-bottom: 1px solid #4d4d4d33;
}

.news-wenzhan-card .news-wenzhan-img{
	width: 270px;
	height: 140px;
	overflow: hidden;
}

.news-wenzhan-card .news-wenzhan-img img {
	width: 100%;
	height: 100%;
	transition: all 0.6s;
	cursor: pointer;
	object-fit: cover;
}

.news-wenzhan-card .news-wenzhan-img img:hover{
	cursor: pointer;
	transform: scale(1.1);
}

.news-wenzhan-title {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	padding: 8px 20px;
	width: 72%;
}

/* 标题 */
.news-wenzhan-title>:nth-child(1) {
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-weight: bold;
	color: #3B3B3B;
	line-height: 28px;
	margin-bottom: 18px;
}

.news-wenzhan-title>:nth-child(1)>:nth-child(1) {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 100px;
	width: 500px;
}

.news-wenzhan-title>:nth-child(1)>:nth-child(1):hover{
	color: #0E48EA;
	cursor: pointer;
}

/* 时间 */
.news-wenzhan-title>:nth-child(1)>:nth-child(2) {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #B3B3B3;
	line-height: 30px;
}

/* 简介 */
.news-wenzhan-title>:nth-child(2) {
	font-weight: 400;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #656565;
	line-height: 27px;
	height: 54px;
}

.news-wenzhan-title>:nth-child(3) {
	color: #FF4525;
}

.news-wenzhan-title>:nth-child(3) a{
	color: #FF4525;
}

.news-wenzhan-title>:nth-child(3):hover {
	cursor: pointer;
}