/* 列表页：上下布局，1200px 居中，每页 6 条卡片+分页，悬停红底金字 */

/* 当前导航标题区（在 1200px 盒子外，居中） */
.list-page-header {
	text-align: left;
	margin-bottom: 24px;
}

.list-page-header-title {
	display: inline-block;
	font-size: 26px;
	font-weight: 700;
	color: #1a2744;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0 0 10px 0;
	padding: 12px 28px;
	/* background: #fff; */
	/* border: 2px solid #333; */
	line-height: 1.3;
}

.list-page-header-breadcrumb {
	font-size: 14px;
	color: #888;
	line-height: 1.5;
}

.list-page-header-breadcrumb a {
	color: #888;
	text-decoration: none;
}

.list-page-header-breadcrumb a:hover {
	color: #bf1313;
}

.list-page-wrap {
	width: 1200px;
	margin: 0 auto;
	padding: 20px 0 30px;
	text-align: left;
}

.list-page-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px 20px;
	margin-bottom: 30px;
}

.list-page-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	overflow: hidden;
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.list-page-card:hover {
	background-color: #bf1313;
	border-color: #bf1313;
}

.list-page-card:hover .list-page-card-title a,
.list-page-card:hover .list-page-card-meta,
.list-page-card:hover .list-page-card-btn {
	color: #d4af37 !important;
}

.list-page-card:hover .list-page-card-btn {
	background: rgba(255,255,255,0.2);
	color: #d4af37;
	border-color: #d4af37;
}

.list-page-card-img {
	display: block;
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #eaeaea;
}

.list-page-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.list-page-card-body {
	padding: 16px 14px 18px;
	display: flex;
    justify-content: space-between;
}

.list-page-card-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	height: 44px;
	overflow: hidden;
}

.list-page-card-title a {
	color: #333;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.list-page-card-title a:hover {
	color: #bf1313;
}

.list-page-card-meta {
	font-size: 13px;
	color: #999;
	margin-top: 6px;
}

.list-page-card-btn {
	display: inline-block;
    /* padding: 8px 20px; */
    width: 110px;
    font-size: 14px;
    color: #666;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 36px;
    line-height: 36px;
    height: 36px;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.list-page-card-btn:hover {
	background: #e0e0e0;
	color: #333;
}

/* 分页居中，当前页/悬停红色 */
.list-page-pagination {
	clear: both;
	text-align: center;
	margin: 20px 0;
}

.list-page-pagination.pagination2 a,
.list-page-pagination.pagination2 span.current {
	border-radius: 6px;
}

.list-page-pagination.pagination2 span.current {
	background-color: #bf1313 !important;
	color: #fff !important;
	border-color: #bf1313 !important;
}

.list-page-pagination.pagination2 a:hover {
	background-color: #bf1313 !important;
	color: #fff !important;
	border-color: #bf1313 !important;
}

/* 置顶标识保留 */
.list-page-card.ding {
	position: relative;
}

.list-page-card.ding::after {
	content: '';
	position: absolute;
	right: 10px;
	top: 10px;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #f78015;
}
