/* ===========================================================
   江苏大松机械有限公司 · 新闻列表页样式
   =========================================================== */

/* ===== 工具条 ===== */
.al-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--line);
}
.al-toolbar__total {
	font-size: 13.5px;
	color: var(--text-mut-2);
	letter-spacing: .04em;
}
.al-toolbar__total b {
	font-family: var(--serif);
	color: var(--accent);
	font-weight: 500;
	margin: 0 3px;
}
.al-toolbar__cur {
	font-size: 14px;
	color: var(--text);
	letter-spacing: .05em;
	position: relative;
	padding-left: 14px;
}
.al-toolbar__cur::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--accent);
	transform: translateY(-50%) rotate(45deg);
}
/* ===== 新闻列表 ===== */
.al-list {
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.al-item {
	position: relative;
	display: flex;
	gap: 28px;
	background: #fff;
	border: 1px solid var(--line);
	padding: 26px;
	transition: all .5s var(--ease);
}
.al-item:hover {
	border-color: transparent;
	box-shadow: 0 22px 46px rgba(0,0,0,.1);
	transform: translateY(-4px);
}
.al-item__img {
	width: 250px;
	height: 172px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	position: relative;
}
.al-item__img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10,10,14,0);
	transition: background .5s var(--ease);
}
.al-item:hover .al-item__img::after {
	background: rgba(10,10,14,.16);
}
.al-item__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.al-item__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.al-item__cat {
	font-size: 11.5px;
	color: var(--accent);
	border: 1px solid rgba(184,0,0,.35);
	padding: 2px 10px;
	letter-spacing: .08em;
}
.al-item__meta time {
	font-size: 12.5px;
	color: var(--text-mut-2);
	font-family: var(--serif);
	letter-spacing: .05em;
}
.al-item__title {
	font-size: 18.5px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: .02em;
	margin-bottom: 10px;
	transition: color .4s var(--ease);
}
.al-item:hover .al-item__title {
	color: var(--accent);
}
.al-item__desc {
	font-size: 13.5px;
	color: var(--text-mut);
	line-height: 1.9;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.al-item__more {
	margin-top: auto;
	padding-top: 12px;
	font-size: 13px;
	color: var(--text-mut);
	letter-spacing: .06em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color .4s var(--ease);
}
.al-item__more i {
	font-style: normal;
	transition: transform .4s var(--ease);
}
.al-item:hover .al-item__more {
	color: var(--accent);
}
.al-item:hover .al-item__more i {
	transform: translateX(5px);
}
/* 右侧日期块 */
.al-item__date {
	flex-shrink: 0;
	text-align: center;
	padding: 0 6px 0 26px;
	border-left: 1px dashed var(--line);
	align-self: center;
}
.al-item__date b {
	display: block;
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	color: var(--text);
	transition: color .4s var(--ease);
}
.al-item:hover .al-item__date b {
	color: var(--accent);
}
.al-item__date span {
	display: block;
	font-family: var(--serif);
	font-size: 12px;
	color: var(--text-mut-2);
	letter-spacing: .12em;
	margin-top: 8px;
}
.al-empty {
	text-align: center;
	color: var(--text-mut-2);
	padding: 80px 0;
	font-size: 14.5px;
	letter-spacing: .05em;
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
.al-item {
	flex-wrap: wrap;
	padding: 20px;
}
.al-item__img {
	width: 100%;
	height: 220px;
}
.al-item__date {
	display: none;
}
.al-item__title {
	font-size: 17px;
}
}
