/* ==========================================================
   view_special.css — 专题详情页（view_special.htm）专用样式
   横幅标题 + 通栏节点板块（2列）；主色 #108DEE 与全站统一；响应式
   创建：2026-08-20；第三版：2026-08-24（横幅化、精简主体）
   ========================================================== */

/* ---------- 横幅：栏目图 + 居中专题标题/副标题 ---------- */
.bannern .jz {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.vs-bt {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	font-family: "Microsoft YaHei";
	letter-spacing: 3px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	line-height: 1.3;
}
.vs-bs {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.92);
	margin-top: 12px;
	letter-spacing: 1px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	line-height: 1.5;
	max-width: 92%;
}

/* ---------- 专题主体通栏 ---------- */
.vs-wrap {
	width: 100%;
	overflow: hidden;
	background: #fff;
	padding: 34px 0 60px; /* 与页头页尾保持合适间距 */
}

/* ---------- 专题节点：2列板块 ---------- */
.vs-nodes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px 30px;
	overflow: hidden;
}
.vs-node-sec {
	background: #FAFBFC;
	border: 1px solid #EEF1F4;
	border-radius: 6px;
	padding: 20px 22px 10px;
	-webkit-transition: border-color 0.3s, box-shadow 0.3s;
	-moz-transition: border-color 0.3s, box-shadow 0.3s;
	-ms-transition: border-color 0.3s, box-shadow 0.3s;
	-o-transition: border-color 0.3s, box-shadow 0.3s;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.vs-node-sec:hover {
	border-color: #108DEE;
	box-shadow: 0 6px 18px rgba(16, 141, 238, 0.08);
}

/* 节点标题：大号序号 + 节点名，突出显示 */
.vs-node-title {
	display: flex;
	align-items: baseline;
	font-size: 22px;
	font-weight: 700;
	color: #333;
	font-family: "Microsoft YaHei";
	margin: 0 0 14px;
	padding: 0 0 12px;
	border-bottom: 2px solid #108DEE;
}
.vs-node-num {
	font-size: 30px;
	font-weight: 700;
	font-style: italic;
	color: rgba(16, 141, 238, 0.22);
	margin-right: 10px;
	line-height: 1;
	flex-shrink: 0;
	font-family: Georgia, "Times New Roman", serif;
}
.vs-node-name {
	color: #333;
}
.vs-node-sec:hover .vs-node-name {
	color: #108DEE;
}

/* 节点文章列表 */
.vs-node-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.vs-node-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 40px;
	border-bottom: 1px dashed #E5E5E5;
	padding: 0 2px;
	-webkit-transition: background 0.25s;
	-moz-transition: background 0.25s;
	-ms-transition: background 0.25s;
	-o-transition: background 0.25s;
	transition: background 0.25s;
}
.vs-node-list li:hover {
	background: #fff;
}
.vs-node-list li a {
	font-size: 14px;
	color: #3C3C3C;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 15px;
	-webkit-transition: color 0.25s;
	-moz-transition: color 0.25s;
	-ms-transition: color 0.25s;
	-o-transition: color 0.25s;
	transition: color 0.25s;
}
.vs-node-list li a::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #C7D6E6;
	margin-right: 10px;
	vertical-align: middle;
	-webkit-transition: background 0.25s;
	-moz-transition: background 0.25s;
	-ms-transition: background 0.25s;
	-o-transition: background 0.25s;
	transition: background 0.25s;
}
.vs-node-list li a:hover {
	color: #108DEE;
}
.vs-node-list li a:hover::before {
	background: #108DEE;
}
.vs-node-date {
	font-size: 12px;
	color: #B4B4B4;
	flex-shrink: 0;
}
/* 空节点提示 */
.vs-node-empty {
	font-size: 13px;
	color: #999;
	background: #fff;
	border: 1px dashed #E0E0E0;
	border-radius: 3px;
	padding: 16px 14px;
	margin: 0;
}

/* ---------- 手机版：2列变1列，自适应 ---------- */
@media all and (max-width: 767px) {
	.vs-bt {
		font-size: 24px;
		letter-spacing: 2px;
	}
	.vs-bs {
		font-size: 13px;
		margin-top: 8px;
	}
	.vs-wrap {
		padding: 20px 0 40px;
	}
	.vs-nodes {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}
	.vs-node-sec {
		padding: 16px 16px 8px;
	}
	.vs-node-title {
		font-size: 19px;
	}
	.vs-node-num {
		font-size: 26px;
	}
	.vs-node-list li {
		line-height: 38px;
	}
	.vs-node-list li a {
		white-space: normal;
		line-height: 24px;
		padding: 6px 0;
	}
}
