p {
	margin: 0;
	padding: 0;
}

.news-list .news-list-item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 0px;
	margin-bottom: 30px;
	padding-right: 15px;
	padding-left: 15px;
	background-color: rgba(247, 247, 247, 1);
}

.news-item-image {
	flex: 0 0 22%;
	align-self: center;
}

.news-item-image img {
	max-width: 100%;
	width: 100%;
	height: auto;
	object-fit: contain;
	position: absolute;
	left: 50%;
	top: 50%;
	transition: all .5s ease 0s;
	transform: translate(-50%, -50%) scale(1) !important;
}

.news-list .news-list-item:hover img {
	transform: translate(-50%, -50%) scale(1.1) !important;
}

.news-item-info {
	flex: 0 0 78%;
	flex: 1;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.news-item-info .title {
	font-weight: normal;
	font-size: 22px;
	margin-bottom: 15px;
}

.publish-date {
	display: flex;
	align-items: center;
	color: #666;
	font-size: 15px;
	margin-bottom: 10px;
}


.news-item-info .title a {
	color: var(--text-title-black-color);
	font-size: 20px;
}

.news-item-info .title a:hover {
	color: var(--primary-color);
}


p.content {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 10px;
	max-height: 54px;
	overflow: hidden;
	color: var(--text-black-color);
}

p.btn-more {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	width: 100px;
	padding: 8px;
	height: auto;
	max-height: none;
	min-height: 0px;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-top: 10px;
	margin-bottom: 0px;
	background-color: rgba(238, 238, 238, 1);
	font-size: 15px;
	border-style: none;
	margin-right: auto;
	color: #fff;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	line-height: 2;
	background: var(--primary-color);
	transition: all .6s;
	cursor: pointer;
}

p.btn-more:hover {
	background: var(--high-light-color);
}

p.btn-more a {
	color: #fff;
	font-size: 15px;
}

.e_image {
	overflow: hidden;
	height: 0px;
	width: 100%;
	padding-bottom: 60%;
	position: relative;
}

span.time-year {
	min-height: 20px;
	padding-left: 0px;
	font-size: 16px;
	color: var(--secondary-color);
	line-height: 1.6;
	transition: all .5s ease;
	font-weight: bold;
}

.time-date {
	margin-top: -20px;
	min-height: 20px;
	padding-left: 0px;
	font-size: 56px;
	color: var(--secondary-color);
	line-height: 1.2;
	transition: all .5s ease;
	font-family: Impact;
	text-align: center;
}

.news-item-time {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 10px;
	margin-left: 30px;
}

@media screen and (max-width: 768px) {
	.time-date {
		font-size: 32px;
	}

	.news-item-image {
		flex: 0 0 100%;
	}

	.news-item-info {
		flex: 0 0 100%;
		margin-top: 10px;
		padding: 0;
		flex: 1;
	}

	.news-item-info .title a {
		font-size: 16px;
	}

	p.content {
		display: none;
	}

}