/* ===========================================================
   江苏大松机械有限公司 · 新闻详情页样式
   =========================================================== */

/* ===== 正文卡片 ===== */
.page-main{
	padding-bottom: 50px;
}
.as-article {
	background: #fff;
	border: 1px solid var(--line);
	padding: 46px 50px 40px;
}
.as-article__cat {
	display: inline-block;
	font-size: 11.5px;
	color: var(--accent);
	border: 1px solid rgba(184,0,0,.35);
	padding: 2px 12px;
	letter-spacing: .1em;
	margin-bottom: 16px;
}
.as-article__title {
	font-size: 27px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: .02em;
}
.as-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin-top: 18px;
	padding-bottom: 22px;
	font-size: 13px;
	color: var(--text-mut-2);
}
.as-article__meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.as-article__meta svg {
	width: 15px;
	height: 15px;
	color: var(--text-mut-2);
}
.as-article__meta b {
	color: var(--text-mut);
	font-weight: 500;
}
.as-article__divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 30px;
}
.as-article__divider span {
	flex: 1;
	height: 1px;
	background: var(--line);
}
.as-article__divider i {
	font-style: normal;
	font-size: 9px;
	color: #c9c9cf;
}
/* 正文排版 */
.as-article__content {
	color: var(--text-mut);
}
.as-article__content p {
	font-size: 15px;
	line-height: 2.1;
	margin-bottom: 20px;
	text-align: justify;
}
.as-article__content h3 {
	position: relative;
	font-size: 19px;
	font-weight: 600;
	color: var(--text);
	letter-spacing: .03em;
	margin: 34px 0 16px;
	padding-left: 16px;
}
.as-article__content h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	bottom: 8px;
	width: 4px;
	background: var(--accent);
}
.as-article__figure {
	margin: 30px 0;
}
.as-article__figure img {
	width: 100%;
	display: block;
}
.as-article__figure figcaption {
	text-align: center;
	font-size: 12.5px;
	color: var(--text-mut-2);
	padding-top: 12px;
	letter-spacing: .08em;
}
.as-article__quote {
	margin: 28px 0;
	background: var(--accent-soft);
	border-left: 3px solid var(--accent);
	padding: 22px 28px;
}
.as-article__quote p {
	margin: 0;
	color: var(--text);
	font-size: 14.5px;
}
/* 标签 */
.as-article__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
	padding-top: 24px;
	border-top: 1px dashed var(--line);
}
.as-article__tags-cap {
	font-size: 13px;
	color: var(--text-mut-2);
}
.as-article__tags a {
	font-size: 12.5px;
	color: var(--text-mut);
	background: var(--bg-alt);
	padding: 5px 14px;
	transition: all .4s var(--ease);
}
.as-article__tags a:hover {
	background: var(--accent);
	color: #fff;
}
/* ===== 上一篇/下一篇 ===== */
.as-pn {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-top: 26px;
}
.as-pn__item {
	background: #fff;
	border: 1px solid var(--line);
	padding: 22px 26px;
	position: relative;
	transition: all .5s var(--ease);
	overflow: hidden;
}
.as-pn__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background: var(--accent);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .5s var(--ease);
}
.as-pn__item:hover {
	border-color: transparent;
	box-shadow: 0 18px 38px rgba(0,0,0,.09);
}
.as-pn__item:hover::before {
	transform: scaleY(1);
}
.as-pn__item span {
	display: block;
	font-size: 12px;
	color: var(--text-mut-2);
	letter-spacing: .14em;
	margin-bottom: 8px;
}
.as-pn__item b {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--text);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color .4s var(--ease);
}
.as-pn__item:hover b {
	color: var(--accent);
}
.as-pn__item--next {
	text-align: right;
}
/* ===== 相关阅读 ===== */
.as-related {
	margin-top: 56px;
}
.as-related__title {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: .04em;
	padding-bottom: 16px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--line);
}
.as-related__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 42px;
	height: 2px;
	background: var(--accent);
}
.as-related__title span {
	float: right;
	font-family: var(--serif);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .16em;
	color: var(--text-mut-2);
	text-transform: uppercase;
	margin-top: 8px;
}
.as-related__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.as-related__item {
	background: #fff;
	border: 1px solid var(--line);
	transition: all .5s var(--ease);
	display: block;
}
.as-related__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,.09);
	border-color: transparent;
}
.as-related__img {
	height: 158px;
	background-size: cover;
	background-position: center;
	transition: filter .5s var(--ease);
}
.as-related__item:hover .as-related__img {
	filter: brightness(1.08);
}
.as-related__date {
	display: block;
	font-family: var(--serif);
	font-size: 11.5px;
	color: var(--text-mut-2);
	letter-spacing: .1em;
	padding: 16px 20px 0;
}
.as-related__item h4 {
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--text);
	padding: 8px 20px 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color .4s var(--ease);
}
.as-related__item:hover h4 {
	color: var(--accent);
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
.as-article {
	padding: 30px 24px;
}
.as-article__title {
	font-size: 21px;
}
.as-related__grid {
	grid-template-columns: 1fr;
}
.as-pn {
	grid-template-columns: 1fr;
}
.as-pn__item--next {
	text-align: left;
}
}
