/* lawlst 金牌律师网 - 列表页样式（资讯/问答列表共用） */
.list-section { padding: 24px 15px; }
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 0;
	font-size: 13px;
	color: #999;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}
.breadcrumb-home img { width: 14px; height: 14px; }
.breadcrumb-path a { color: #666; }
.breadcrumb-path a:hover { color: #c42621; }
.breadcrumb-path .current { color: #c42621; }

.list-wrap {
	background: #fff;
	padding: 24px 30px;
	border: 1px solid #eee;
	border-radius: 4px;
}
.list-head { margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid #c42621; }
.list-title {
	font-size: 22px;
	color: #c42621;
	font-weight: 700;
	display: inline-block;
	margin: 0;
	line-height: 1.2;
}
.list-intro {
	font-size: 13px;
	color: #888;
	margin-top: 8px;
	line-height: 1.6;
}

.list-items { display: flex; flex-direction: column; }
.list-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px dashed #e5e5e5;
	color: #333;
}
.list-item:last-child { border-bottom: 0; }
.list-item:hover { background: #fafafa; }
.list-item:hover .item-title { color: #c42621; }
.item-date {
	width: 70px;
	text-align: center;
	background: #f5f5f5;
	border-radius: 3px;
	padding: 6px 0;
	flex-shrink: 0;
}
.item-date .day {
	display: block;
	font-size: 24px;
	color: #c42621;
	font-weight: 700;
	font-family: Arial, sans-serif;
	line-height: 1.2;
}
.item-date .year {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 2px;
}
.item-content { flex: 1; min-width: 0; }
.item-title {
	font-size: 16px;
	color: #333;
	font-weight: 600;
	margin-bottom: 6px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.item-intro {
	font-size: 13px;
	color: #888;
	line-height: 1.6;
	max-height: 2.8em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.pagination {
	text-align: center;
	margin-top: 24px;
	padding-top: 16px;
}
.pagination a, .pagination span {
	display: inline-block;
	padding: 6px 12px;
	margin: 0 3px;
	border: 1px solid #ddd;
	color: #666;
	font-size: 13px;
	border-radius: 3px;
}
.pagination a:hover { background: #c42621; color: #fff; border-color: #c42621; }
.pagination .current {
	background: #c42621;
	color: #fff;
	border-color: #c42621;
}
