/* ========== 客服中心 / 关于我们 / 联系我们 - 新版样式 ========== */
/* 配色：主色 #0d5c63 青绿 | 辅色 #e07a5f 珊瑚橙 | 背景 #faf8f5 米白 */

.bc-nav {
	width: 100%;
	height: 42px;
	line-height: 42px;
	border-bottom: none;
	background: linear-gradient(180deg, #f5f3ef 0%, #faf8f5 100%);
}
.bc-nav > p {
	width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	font-size: 13px;
}
.bc-nav > p > a {
	color: #6b6b6b;
	transition: color 0.2s;
}
.bc-nav > p > a:hover {
	color: #0d5c63;
}

/* ---------- 主容器 ---------- */
.help-box {
	width: 1200px;
	margin: 0 auto;
	min-height: 600px;
	padding: 28px 0 48px;
	display: flex;
	gap: 24px;
}
.help-left {
	width: 240px;
	min-width: 240px;
	float: none;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(13, 92, 99, 0.08);
	border: 1px solid rgba(13, 92, 99, 0.1);
	overflow: hidden;
	margin: 0;
}
.help-right {
	width: 100%;
	min-width: 0;
	overflow-x: hidden;
	min-height: 400px;
	background: #fff;
	float: none;
	margin: 0;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(13, 92, 99, 0.08);
	border: 1px solid rgba(13, 92, 99, 0.1);
	flex: 1;
}

/* ---------- 左侧：客服中心标题 ---------- */
.h-title {
	height: 48px;
	line-height: 48px;
	text-align: center;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #0d5c63 0%, #0f7a83 100%);
	margin: 0;
	letter-spacing: 0.5px;
}
.b-99 {
	/*background: transparent;*/
}

/* ---------- 左侧：分类折叠 ---------- */
#parent {
	list-style: none;
	margin: 0;
	padding: 0;
}
#parent > li {
	line-height: 1;
	display: block;
	border-bottom: 1px solid #f0eeeb;
}
#parent > li:last-child {
	border-bottom: none;
}
#parent > li > span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: #faf8f5;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
#parent > li > span:hover {
	background: #e8f4f5;
	color: #0d5c63;
}
#parent > li > span p {
	margin: 0;
	float: none;
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	transition: transform 0.2s;
}

/* 折叠状态：箭头向下 */
.h-hide ul {
	display: none;
}
.h-hide p {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 6px solid #0d5c63;
	border-top: none;
}

/* 展开状态：箭头向上 */
.h-show ul {
	display: block;
}
.h-show > span {
	background: #e8f4f5;
	color: #0d5c63;
}
.h-show p {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #0d5c63;
	border-bottom: none;
	margin: 0;
	float: none;
}

/* ---------- 左侧：链接列表 ---------- */
.h-list {
	border: none;
	margin: 0;
	padding: 8px 0;
	background: #fff;
	list-style: none;
}
.h-list li {
	width: auto;
	line-height: 1.4;
	margin: 0;
	padding: 12px 16px 12px 28px;
	cursor: pointer;
	font-size: 14px;
	color: #555;
	border-left: 3px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.h-list .h-curr {
	margin-left: 0;
	background: rgba(13, 92, 99, 0.06);
	color: #0d5c63;
	font-weight: 600;
	border-left-color: #0d5c63;
}
.h-list a {
	text-decoration: none;
	color: inherit;
	display: block;
}
.h-list a:hover li {
	color: #0d5c63;
	font-weight: 500;
	background: rgba(13, 92, 99, 0.04);
	border-left-color: rgba(13, 92, 99, 0.4);
}

/* ---------- 右侧：文章标题 ---------- */
.h-right-title {
	width: 100%;
	min-height: 32px;
	margin: 0;
	padding: 24px 28px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 2px solid #f0eeeb;
}
#square {
	margin: 0;
	width: 4px;
	height: 22px;
	background: linear-gradient(180deg, #0d5c63, #e07a5f);
	float: none;
	border-radius: 2px;
	flex-shrink: 0;
}
.h-right-title > h4 {
	float: none;
	font-size: 20px;
	font-weight: 600;
	color: #222;
	margin: 0;
	letter-spacing: 0.3px;
}

/* ---------- 右侧：内容区 ---------- */
.b {
	border: none;
}
.h-content {
	padding: 24px 28px 20px;
	width: 100%;
	max-width: 100%;
	min-height: 320px;
	text-indent: 0;
	font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
	font-size: 15px;
	line-height: 1.85;
	color: #444;
	box-sizing: border-box;
}
.h-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}
.h-content .head {
	padding-bottom: 20px;
}
.h-content .head p {
	float: left;
	min-width: 200px;
	font-size: 15px;
	height: 36px;
	line-height: 36px;
	border-bottom: 2px solid #0d5c63;
	color: #0d5c63;
}
.h-content .head p span {
	font-size: 22px;
}
.h-content h1 {
	text-align: center;
	color: #222;
	font-size: 22px;
}
.h-content .cat-time {
	text-align: center;
	padding: 12px 0;
	color: #888;
	font-size: 13px;
}

/* ---------- 右侧：反馈区 ---------- */
.h-record {
	padding: 24px 28px 28px;
	width: 100%;
	min-height: 80px;
	margin: 0;
	margin-top: 8px;
	border-top: 1px solid #f0eeeb;
	background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
	border-radius: 0 0 12px 12px;
	box-sizing: border-box;
}
.h-record > p {
	padding: 0 0 14px;
	margin: 0;
	font-size: 14px;
	color: #555;
}
.h-button {
	width: 140px;
	height: 40px;
	padding: 0 20px;
	color: #fff;
	margin: 0 10px 0 0;
	font-size: 14px;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.1s;
}
.h-button:first-of-type {
	background: linear-gradient(135deg, #0d5c63 0%, #0f7a83 100%);
}
.h-button:last-of-type {
	background: linear-gradient(135deg, #e07a5f 0%, #e8927a 100%);
}
.h-button:hover {
	opacity: 0.92;
}
.h-button:active {
	transform: scale(0.98);
}

/* ---------- 工具类 ---------- */
.c {
	clear: both;
	display: none;
}
.b-lg {
	background: transparent;
}

/* ---------- 新闻列表等（若有） ---------- */
.news-list a,
.list-time {
	font-size: 13px;
	letter-spacing: 0.5px;
	color: #444;
}
.news-list li {
	padding: 12px 16px;
	border-bottom: 1px dashed #eee;
}
.news-list a:hover {
	color: #0d5c63;
}
.list-time {
	display: block;
	float: right;
	color: #888;
}
#g-square {
	margin: 8px 0;
	width: 3px;
	height: 3px;
	background: #0d5c63;
	float: left;
	border-radius: 50%;
}
.n-content {
	width: 100%;
	min-height: 300px;
	overflow: hidden;
}
.n-content img {
	max-width: 100%;
	height: auto;
}

/* ---------- 分页 ---------- */
.h-page {
	position: relative;
	width: 100%;
	height: 100px;
	background: none;
	background-size: contain;
}
.h-page .pagination {
	position: relative;
	top: 32px;
	left: 0;
	width: 100%;
	height: 36px;
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.h-page .pagination li {
	margin: 0;
	width: 32px;
	height: 32px;
	border: 1px solid #e0e0e0;
	float: none;
	border-radius: 6px;
	transition: border-color 0.2s, background 0.2s;
}
.h-page .pagination li a {
	line-height: 30px;
	padding-left: 0;
	display: block;
	text-align: center;
}
.h-page .pagination .active {
	background: #0d5c63;
	color: #fff;
	border-color: #0d5c63;
}
.h-page .pagination .disabled span,
.h-page .pagination .active span {
	left: 0;
	line-height: 30px;
	padding-left: 0;
}
