.news-list .news-list-item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 0px;
	margin-bottom: 30px;
	padding-right: 15px;
	padding-left: 15px;
	background-color: rgb(245 245 245);
	box-shadow: rgb(39 40 42 / 13%) 0px 10px 27px 0px;
}

.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%; */
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

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

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

.publish-date svg {
	width: 24px;
	height: 24px;
}

.news-item-info .title a {
	color: #333;
}

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

p.content {}

p.content {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 10px;
	text-overflow: ellipsis;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.btn-more {
	display: inline-block;
	position: relative;
	width: 200px;
	margin-left: 0px;
	height: 56px;
	line-height: 56px;
	padding: 0 20px;
	overflow: hidden;
	text-align: left;
	box-sizing: border-box;
	background-image: linear-gradient(to right, #0a64bb, #032b8d);
	transition: all 0.6s;
	border-style: none;
	border-width: 1px;
	border-color: rgba(64, 158, 255, 1);
	color: #fff;
}
.btn-more::before {
	content: '';
	position: absolute;
	background: url(https://omo-oss-image1.thefastimg.com//portal-saas/new2021120112000475386/cms/image/c7c3f0b2-c38a-49b3-ab83-f7770953ab41.png)
		no-repeat;
	width: 30px;
	height: 8px;
	top: 25px;
	right: 20px;
}
.btn-more:hover {
	border-style: none;
	border-color: rgba(51, 143, 238, 1);
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	color: #fff;
}
.e_image {
	overflow: hidden;
	height: 0px;
	width: 100%;
	padding-bottom: 60%;
	position: relative;
}
.main {
	box-shadow: none;
}

@media screen and (max-width: 768px) {
	.news-item-image {
		flex: 0 0 100%;
	}

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

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