.news-index {
	padding-bottom: 20px;
}

.news-index .news-title {
	font-size: 40px;
	text-align: center;
	padding: 50px 0;
}

.news-index .news {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	height: 100%;
}

.news-index .news .item {
	width: 100%;
	margin: 5px 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
}


.news-index .news .item .img {
	width: 35%;
	margin-right: 10px;
}

.news-index .news .item .img img {
	width: 100%;
	height: 100%;
	min-height: 200px;
	object-fit: cover;
	border-radius: 10px;
}

.news-index .news .item .text {
	flex: 1 0;
	background-color: #ffffff;
	border-radius: 10px;
	color: #000;
	padding: 16px 20px;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.news-index .news .item .text .title {
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: bold;
}

.news-index .news .item .text .intro {
	font-size: 14px;
	flex: 1 0;
}

.news-index .news .item .text .date {
	font-size: 14px;
	align-self: flex-end;
}

@media screen and (max-width: 767px) {
	.news-index .news-title {
		font-size: 30px;
		padding: 30px 0;
	}

	.news-index .news .item {
		flex-direction: column;
		border-radius: 10px;
		overflow: hidden;
	}

	.news-index .news .item .img {
		width: 100%;
	}

	.news-index .news .item .img img {
		border-radius: 0;
	}

	.news-index .news .item .text {
		border-radius: 0;
	}

	.news-index .news .item .text .title {
		margin-bottom: 10px;
	}

	.news-index .news .item .text .intro {
		color: #666666;
	}
}