/* Article. */

.article {
	--bone_w: 1200px;
}

.article_title {
	font-size: 44px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.article_list {
	grid-gap: 24px;
}

.article_list article {
	position: relative;

	border: 1px solid #EEEEEE;
	background-color: var(--bg);
	border-radius: 10px;
}

.article_img {
	position: relative;
}

.article_img:after {
	content: '';
	display: block;
	padding-bottom: 56%;
}

.article_img img {
	position: absolute;
	top: 0;
	left: 0;

	height: 100%;
	object-fit: cover;
	object-position: center;
}

.article_date {
	position: absolute;
	top: 8px;
	left: 8px;

	padding: 0 12px;
	color: #2A70E7;
	font-size: 15px;
	font-weight: 700;
	line-height: 32px;
	background-color: #EEF5FE;
	border-radius: 6px;
}

.article_content {
	padding: 24px 32px 32px;
}

.article_name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

	height: 2.4em;
	font-size: 24px;
	line-height: 1.2;

	word-wrap: break-word;
}

.article_name a {
	transition: color .43s;
}

.article_name:hover {
	--color: var(--primary);
}

.article_text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;

	margin-top: 12px;
	font-size: 15px;
	height: calc(1.4em * 4);
	line-height: 1.4;
}

.article_more {
	display: inline-block;

	margin-top: 12px;
	color: var(--primary);
	font-size: 15px;
}

.article_txt h2:not(:first-child) {
	margin-top: 44px;
}

.article_txt h2 {
	font-size: 24px;
}

.article_txt p {
	margin: 1em 0;
}

.article_txt img {
	max-width: 100%;
	height: auto !important;
	margin: 0 auto;
}

.article_time {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.article_time span {
	color: #808080;
}

/* Article. */

@media only screen and (max-width: 1100px) {

	/* Article. */

	.article_list {
		--grid_3: 2;
	}

	/* Article. */

}

@media only screen and (max-width: 770px) {

	/* Article. */

	.article_list {
		display: grid;
		grid-template-columns: 100%;
	}

	/* Article. */

}

@media only screen and (max-width: 600px) {

	/* Article. */

	.article_title {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.article_name,
	.article_txt h2 {
		font-size: 19px;
	}

	.article_content {
		padding: 12px 20px 20px;
	}

	/* Article. */

}