/* M 站专题详情 */
.special-detail { padding: 12px 12px 24px; background: #eef1f4; min-height: 40vh; }

.special-header {
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 14px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.special-header h1 {
	font-size: 18px;
	color: #1a1a1a;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.45;
}
.special-header .meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	font-size: 12px;
	color: #666;
	margin-bottom: 10px;
}
.special-header .meta .tag {
	background: #f0f2f5;
	padding: 4px 10px;
	border-radius: 6px;
	color: #555;
}
.special-header .desc {
	color: #555;
	font-size: 14px;
	line-height: 1.65;
}

.zt-block { margin-bottom: 18px; }
.zt-subhd {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 6px 0 10px 4px;
	padding-left: 8px;
	border-left: 3px solid #14b8a6;
}

/* 下载模型 */
.dl-list-m { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.dl-card-m {
	background: #fff;
	border-radius: 12px;
	padding: 12px 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	border: 1px solid #e8e8e8;
}
.dl-card-m-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}
.dl-card-m-title {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.35;
	text-decoration: none;
	flex: 1;
	min-width: 0;
}
.dl-card-m-btn {
	flex-shrink: 0;
	padding: 6px 14px;
	border: 1px solid #14b8a6;
	border-radius: 8px;
	color: #0f766e !important;
	font-size: 13px;
	text-decoration: none;
	background: #fff;
}
.dl-card-m-body {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.dl-card-m-thumb {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background: #f0f0f0;
	display: block;
}
.dl-card-m-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.dl-card-m-meta {
	flex: 1;
	min-width: 0;
	font-size: 12px;
	color: #555;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.dl-card-m-row { line-height: 1.4; }
.dl-card-m-row .k {
	color: #888;
	margin-right: 6px;
}
.dl-card-m-row .stars {
	display: inline-flex;
	gap: 3px;
	vertical-align: middle;
}
.dl-card-m-row .stars i {
	width: 11px;
	height: 11px;
	border-radius: 2px;
	background: #ddd;
	display: inline-block;
}
.dl-card-m-row .stars i.active { background: #f5b400; }

/* 相关文章：白底卡片 + 单列列表 */
.article-panel-m {
	background: #fff;
	border-radius: 12px;
	margin-top: 12px;
	padding: 0 0 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
}
.article-list-m {
	list-style: none;
	margin: 0;
	padding: 4px 12px 10px;
	display: block;
}
.article-row-m {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 4px;
	border-bottom: 1px solid #f0f2f5;
	font-size: 14px;
}
.article-list-m .article-row-m:last-child {
	border-bottom: none;
	padding-bottom: 8px;
}
.article-row-m-title {
	color: #1a1a1a;
	text-decoration: none;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.article-row-m-date {
	flex-shrink: 0;
	color: #9ca3af;
	font-size: 12px;
}

/* 分页 */
.special-detail .page { padding: 15px 0; text-align: center; }
.special-detail .page a {
	display: inline-block;
	padding: 6px 12px;
	margin: 0 4px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #333;
	text-decoration: none;
	font-size: 12px;
}
.special-detail .page a:hover,
.special-detail .page a.on {
	background: #0d9488;
	color: #fff;
	border-color: #0d9488;
}
