/* ==================== product ==================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
:root {
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--accent: #ec4899;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--bg-card: #f1f5f9;
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--border: #e2e8f0;
	--gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
}
body {
	background-color: var(--bg-light);
	color: var(--text-primary);
	line-height: 1.7;
	overflow-x: hidden;
}
.page-banner {
	position: relative;
	background-color: #0f172a;
	background-image: url('https://picsum.photos/id/1/1920/400');
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	color: white;
	z-index: 1;
	overflow: hidden;
}
.page-banner::before {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 100%);
	z-index: -1;
}
.page-banner::after {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background-image:
			radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 20%),
			radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 20%);
	background-size: 100% 100%;
	z-index: -1;
}
.banner-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}
.banner-title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.3;
}
.banner-desc {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.85);
	margin-bottom: 30px;
	line-height: 1.8;
}
.banner-btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 50px;
	background: var(--gradient);
	color: white;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}
.banner-btn:hover {
	transform: translateY(-3px);
}

/* ==================== 主体布局 ==================== */
.page-wrapper {
	display: flex;
	gap: 30px;
	/*padding: 80px 0;*/
}

/* 右侧内容区域 */
.content-area {
	flex: 1;
	background: var(--bg-white);
	border: 1px solid var(--border);
	padding: 40px;
}
.content-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--text-primary);
}
.content-section.active {
	display: block;
	animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.content-section h3 {
	font-size: 1.25rem;
	margin: 28px 0 12px;
	color: var(--text-primary);
}
.content-section p {
	color: var(--text-secondary);
	margin-bottom: 16px;
	line-height: 1.8;
}
.content-section ul {
	padding-left: 20px;
	margin-bottom: 16px;
}
.content-section li {
	color: var(--text-secondary);
	margin-bottom: 8px;
}
.content-section strong {
	color: var(--text-primary);
}

/* ==================== 响应式 ==================== */
@media (max-width: 992px) {
	.page-wrapper {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
		position: static;
	}
	.page-banner {
		padding: 70px 0;
	}
	.banner-title {
		font-size: 2rem;
	}
}
@media (max-width: 768px) {
	.content-area {
		padding: 24px;
	}
	.banner-title {
		font-size: 1.6rem;
	}
}
/* ==================== news ==================== */
/* 主体布局 */
/* 左侧边栏 */
.sidebar {
	width: 280px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 80px;
}
.sidebar-top h3 {
	font-size: 20px;
	margin-bottom: 15px;
}
.sidebar-top p {
	font-size: 14px;
	margin-bottom: 20px;
	opacity: 0.9;
}
.sidebar-module {
	background: var(--bg-white);
	border-radius: 6px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    position: relative;
    border-bottom: 1px solid #ebebeb;
}

.sidebar-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary); 
    border-radius: 1px;
}
.latest-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.latest-item {
	display: flex;
	gap: 12px;
}
.latest-item img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
.latest-item a {
	flex: 1;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.latest-item a:hover {
	color: var(--primary);
}
.latest-item time {
	font-size: 12px;
	color: var(--text-secondary);
	display: block;
	margin-top: 4px;
}
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tag-item {
	padding: 6px 14px;
	background: #f0f0f0;
	color: var(--text-secondary);
	border-radius: 4px;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.tag-item:hover {
	background: var(--primary);
	color: #fff;
}

/* 右侧内容区 */
.content-list-title h1{
	text-align: center;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.list1 .content-area {

}
.list1 .content-listbody {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.product-list{
	grid-template-columns: none !important;
}
.news-item {
	background: var(--bg-white);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}
.news-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.news-img {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}
.news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.news-item:hover .news-img img {
	transform: scale(1.1);
}
.news-badge {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: var(--primary);
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
}
.news-content {
	padding: 15px;
}
.news-title {
	font-size: 18px;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 10px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-title a {
	color: var(--text-primary);
	text-decoration: none;
}
.news-title a:hover {
	color: var(--primary);
}
.news-desc {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--text-secondary);
	border-top: 1px solid var(--border);
	padding-top: 10px;
}
.news-meta a {
	color: var(--primary);
	text-decoration: none;
}

/* 悬浮客服 */
.float-chat {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
}
.chat-btn {
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(204,0,0,0.3);
}

/* 响应式 */
@media (max-width: 992px) {
	.page-wrapper {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
		position: static;
	}
	.content-area {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 576px) {
	.news-title {
		font-size: 16px;
	}
	.sidebar-top {
		padding: 20px 15px;
	}
}
/* ==================== show ==================== */
.breadcrumb {
	padding: 18px 0;
	font-size: 14px;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 8px;
}
.breadcrumb-show-top{
	margin-top: 70px;
}
.breadcrumb-list-top {
	margin-top: 50px;
    padding-top: 0 !important;
}
.breadcrumb a {
	color: var(--primary);
	text-decoration: none;
}
.breadcrumb a:hover {
	color: var(--accent);
}
.breadcrumb svg {
	width: 14px;
	height: 14px;
	color: #999;
}
.page-wrapper {
	display: flex;
	gap: 30px;
	padding-bottom: 60px;
	align-items: flex-start;
	flex-direction: row;
}
.list {
    flex-direction: row;
}
.content-area-show {
	flex: 1;
	background: var(--bg-white);
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.article-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 16px;
	color: var(--text-primary);
}
.article-meta {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
	display: flex;
	gap: 20px;
}
.article-content {
	font-size: 16px;
	line-height: 1.9;
	color: var(--text-primary);
}
.article-content p {
	margin-bottom: 12px;
}
.article-content h3 {
    margin-bottom: 20px;
	margin-top: 40px;
}
.article-content h3 a{
	border-bottom: 2px solid #7d7d7d;
    padding-bottom: 4px;
}
.article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 20px 0;
}
.article-pager {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	font-size: 15px;
}
.article-pager a {
	color: var(--primary);
	text-decoration: none;
}
.article-pager a:hover {
	color: var(--accent);
}
.related-news {
	margin-top: 50px;
}
.related-title {
    font-weight: 600;
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.related-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.related-item {
	font-size: 15px;
}
.related-item a {
	color: var(--text-primary);
	text-decoration: none;
}
.related-item a:hover {
	color: var(--primary);
}
@media (max-width: 992px) {
	.page-wrapper {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
		position: static;
	}
	.content-area {
		padding: 24px;
	}
	.list .content-area {
		padding: 20px !important
	}
}
/* ==================== reviews ==================== */

.page-header {
	text-align: center;
	padding: 20px 0 40px;
}
.page-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.page-desc {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
}
.review-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	padding-bottom: 60px;
}
.review-list .review-card {
	background: var(--bg-white);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	position: relative;
	width:100% !important;
}
.review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(99, 99, 241, 0.08);
}
.review-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}
.user-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--bg-card);
}
.user-info h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}
.user-info time {
	font-size: 13px;
	color: var(--text-secondary);
}
.stars {
	margin-left: auto;
	color: var(--star);
	font-size: 14px;
}
.review-content {
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-primary);
}
.review-content p {
	margin-bottom: 10px;
}
.review-tag {
	display: inline-block;
	padding: 4px 10px;
	background: var(--bg-card);
	color: var(--primary);
	font-size: 12px;
	border-radius: 6px;
	margin-top: 10px;
}
.empty {
	grid-column: 1/-1;
	text-align: center;
	padding: 60px 20px;
	color: var(--text-secondary);
}
@media (max-width: 992px) {
	.review-list {
		grid-template-columns: 1fr;
	}
	.page-title {
		font-size: 24px;
	}
}
/* ==================== incentive ==================== */
.page-header {
	text-align: center;
	padding: 30px 0;
}
.page-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.page-desc {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.8;
}
.reward-banner {
	background: var(--primary);
	color: #fff;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	margin: 20px 0 40px;
}
.section-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 20px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--primary);
}
.method-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}
.method-card {
	background: var(--bg-white);
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--border);
	text-align: center;
	font-size: 14px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}
.method-card:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}
.rule-section {
	background: var(--bg-white);
	padding: 30px;
	border-radius: 12px;
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.rule-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rule-item {
	font-size: 15px;
	color: var(--text-primary);
}
.rule-item strong {
	color: var(--primary);
}
.rule-sub {
	list-style: none;
	padding-left: 24px;
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.rule-sub li {
	font-size: 14px;
	color: var(--text-secondary);
}
.cta-section {
	text-align: center;
	padding: 40px 0 60px;
}
.cta-btn {
	display: inline-block;
	padding: 16px 48px;
	background: var(--gradient);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
@media (max-width: 992px) {
	.method-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.page-title {
		font-size: 26px;
	}
}
@media (max-width: 576px) {
	.method-grid {
		grid-template-columns: 1fr;
	}
	.page-title {
		font-size: 22px;
	}
	.reward-banner {
		font-size: 16px;
		padding: 16px;
	}
}
/* ==================== about ==================== */
.about-thumb {
  margin-bottom: 30px;
}
.about-thumb img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
.content-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.content-section h3 {
  font-size: 18px;
  margin: 28px 0 14px;
  color: var(--primary);
}
.content-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.9;
}
.about-cta {
  margin-top: 40px;
  text-align: center;
}
.btn-experience {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
  transition: all 0.3s ease;
}
.btn-experience:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}
/* ================ 留言板优化样式 对齐用户评价风格 ================ */
/* 外层容器：和 .review-list 保持一致的间距 */
.message-board-box {
	margin: 40px 0;
    padding: 0;
    background: transparent; /* 去掉背景 直接继承页面 */
    border: none; /* 去掉边框 */
	grid-template-columns: unset !important;
}
.message-board-box .review-card{
	border: unset !important;
	box-shadow: unset !important;
}
/* 表单行布局：适配PC 移动端自动堆叠 */
.form-group-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.message-form .review-card{
    padding: 0 28px 28px 28px;
}
/* 单个表单项：复用你评价卡片的样式 保证外观统一 */
.message-form .form-item {
    margin-bottom: 25px;
}

.message-form .form-item label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}
.message-board-box .form-item {
    margin-bottom: 0px; 
}

/* 输入框/文本域：和评价卡片风格统一 */
.message-form input,
.message-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px; /* 大圆角更现代 */
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
	border: 1px solid rgba(126, 87, 194, 0.2);
}

.message-form input:focus,
.message-form textarea:focus {
    outline: none;
    border-color: #9d50bb; /* 用紫色渐变边框 更有科技感 */
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 3px rgba(157, 80, 187, 0.2);
}

.message-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* 按钮居中 + 渐变好看的样式 */
.btn-wrapper {
    text-align: center;
    margin-top: 10px;
}

.message-submit-btn {
    padding: 14px 40px;
    background: linear-gradient(90deg, #4facfe 0%, #9d50bb 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.message-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 80, 187, 0.4);
    opacity: 0.95;
}

.message-submit-btn:active {
    transform: translateY(0);
}

/* 移动端适配：手机端布局堆叠 */
@media (max-width: 768px) {
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
    
    .message-board-box {
        margin-top: 20px;
    }
    
    .message-submit-btn {
        width: 100%;
        padding: 14px;
    }
}
/* ============== 新闻详情Banner 纯净修复版 ============== */
.page-banner {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  margin-top: 70px;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/id/180/1920/600');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3 !important; 
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); 
}

.banner-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px 0;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.banner-desc {
  font-size: 18px;
  opacity: 0.95;
  margin: 0 0 24px 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .page-banner {
    height: 220px;
  }
  .banner-title {
    font-size: 32px;
  }
  .banner-desc {
    font-size: 16px;
  }
}
.list .content-area {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 0;
	padding: 0 40px;
	display: unset;
}
.hy-faq-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

.hy-faq-section {
  width: 100%;
  padding: 20px;
}

.hy-faq-header {
  text-align: center;
  margin-bottom: 20px;
}

.hy-faq-header h2 {
  font-size: 28px;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hy-faq-header p {
  font-size: 16px;
  color: #718096;
  line-height: 1.6;
}

.hy-faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hy-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hy-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e0;
}

.hy-faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #2d3748;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hy-faq-question:hover {
  background-color: #f7fafc;
}

.hy-faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, #f0f7ff 0%, #f5f0ff 100%);
  color: #5a67d8;
  border-left: 4px solid #5a67d8;
}

.hy-faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.hy-faq-icon::before,
.hy-faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hy-faq-icon::before {
  width: 10px;
  height: 2px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.hy-faq-icon::after {
  width: 2px;
  height: 10px;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
}

.hy-faq-question[aria-expanded="true"] .hy-faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.hy-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.7;
  padding: 0 24px;
}

.hy-faq-answer.open {
  max-height: 300px;
  padding: 0 24px 24px;
}

@media (max-width: 768px) {
  .hy-faq-section {
    padding: 24px 16px;
  }
  
  .hy-faq-header h2 {
    font-size: 24px;
  }
  
  .hy-faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }
  
  .hy-faq-answer.open {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .hy-faq-section {
    padding: 16px 12px;
  }
  
  .hy-faq-header {
    margin-bottom: 24px;
  }
  
  .hy-faq-question {
    padding: 14px 16px;
  }
  
  .hy-faq-answer.open {
    padding: 0 16px 16px;
  }
}
/* 分页样式 */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 10px 0;
}
.page-item {
	display: block;
	padding: 8px 16px;
	border-radius: 6px;
	background: #f5f5f5;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}
.page-item:hover,
.page-item.active {
	background: #2e86de;
	color: white;
}
.sort-box p a {
    display: block;
    padding: 6px 0;
    height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ====================== 分页模块 pagebar 响应式优化 ====================== */
.pagebar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

/* 分页按钮基础样式 */
.pagebar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* 当前页样式 */
.pagebar a.page-num-current {
    border-color: #0066cc;
    background: #0066cc;
    color: #fff;
    font-weight: 500;
}

/* hover效果（仅变色，无位移） */
.pagebar a:hover:not(.page-num-current) {
    border-color: #0066cc;
    color: #0066cc;
    background: #f0f7ff;
}

/* ====================== 移动端适配（≤768px） ====================== */
@media screen and (max-width: 768px) {
    .pagebar {
        gap: 6px;
        padding: 16px 12px;
    }

    .pagebar a {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 8px;
        border-radius: 6px;
    }

    /* 移动端优化：隐藏冗余文字，只保留核心按钮 */
    .pagebar a[title*="总共条数"],
    .pagebar a[title*="当前页/总页数"] {
        display: none;
    }
}

/* ====================== 超小屏适配（≤480px，iPhone 14 Pro Max等） ====================== */
@media screen and (max-width: 480px) {
    .pagebar {
        gap: 4px;
        padding: 12px 8px;
    }

    .pagebar a {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
        padding: 0 6px;
    }
}
.latest-list .latest-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ebebeb;
    transition: color 0.3s ease; 
    cursor: pointer;
}
.latest-list .latest-item .item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: transparent; 
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin-right: 12px;
    flex-shrink: 0;
    transition: color 0.3s ease; 
}
.latest-list .latest-item div {
    flex: 1;
}
.latest-list .latest-item a {
	display: -webkit-box;
	-webkit-line-clamp: 2; /* 限制2行 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all; /* 防止长英文/链接撑破布局 */
	line-height: 1.4; /* 保证两行高度正常 */
}
.latest-list .latest-item:hover a {
    color: #6366f1; 
    font-weight: 500;
}
.latest-list .latest-item:hover .item-icon {
    color: #6366f1; 
}
.latest-list .latest-item.active a {
    color: #6366f1;
    font-weight: 600;
}
.latest-list .latest-item.active .item-icon {
    color: #6366f1;
}
/* ====================== 侧边栏顶部卡片优化（适配幻语AI业务） ====================== */
.sidebar-top {
    padding: 24px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.sidebar-top h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-top p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

.sidebar-top .download-btn {
    display: inline-block;
    padding: 10px 28px;
    color: #0066cc;
    font-size: 15px;
    font-weight: 600;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-top .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* 强化回到顶部箭头图标样式 */
.float-chat .chat-btn i.fa-arrow-up {
    font-size: 20px; /* 放大图标，更醒目 */
    color: #fff; /* 白色箭头，和紫色背景对比强烈 */
    line-height: 1;
}

/* 按钮背景优化（可选，和你网站主题统一） */
.float-chat .chat-btn {
    background: linear-gradient(135deg, #0066cc, #6366f1); /* 蓝紫渐变，和你网站主题一致 */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.newsRecmd{
    width: 96%;
    position: relative;
    margin: 0 auto;
    padding: 22px 0 16px;
}
.pagination-show li{font-size:15px;overflow:hidden}
.pagination-show li a{padding:5px 0 5px}
.pagination-show ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
/* 上下篇导航容器 */
.pagination-show {
    margin: 40px 0;
    padding-top: 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

/* 列表项通用样式 */
.pagination-show li {
  position: relative;
  padding: 16px 20px;
  background: #f8f9ff;
  border-left: 4px solid #6c5ce7;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/*  hover 交互效果 */
.pagination-show li:hover {
  background: #f0f0ff;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
}

/* 上一篇/下一篇标签样式 */
.pagination-show li::before {
  content: attr(data-label);
  color: #6c5ce7;
  font-weight: 600;
  margin-right: 8px;
  font-size: 15px;
}

/* 链接样式 */
.pagination-show li a {
  color: #2d3436;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.pagination-show li a:hover {
  color: #6c5ce7;
}

/* 上下篇区分样式（可选，增强辨识度） */
.pagination-show li.prev {
  border-left-color: #6c5ce7;
}
.pagination-show li.next {
  border-left-color: #a29bfe;
}
/* 相关推荐模块容器 */
.related-news {
  margin-top: 50px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.related-body{
	
}
/* 相关推荐标题 */
.related-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

/* 标题装饰线（可选，提升精致感） */
.related-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #a29bfe;
}

/* 相关推荐列表容器 */
.related-list {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
	margin: 14px 0;
}

/* 相关推荐列表项 */
.related-list-item {
  position: relative;
  padding: 14px 18px;
  background: #fafbff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1.7;
}
.related-list .related-item span{
	padding: 0 10px;
	font-weight: 400;
}

/* hover 交互效果 */
.related-list-item:hover {
  background: #f0f0ff;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(108, 92, 231, 0.12);
}

/* 链接样式 */
.related-list-item a {
  color: #2d3436;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
}

.related-list-item a:hover {
  color: #6c5ce7;
}

/* 列表项前置箭头装饰（可选，增强引导感） */
.related-list-item::before {
  content: '→';
  color: #6c5ce7;
  font-weight: 700;
  margin-right: 8px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.related-list-item:hover::before {
  opacity: 1;
  transform: translateX(2px);
}
/* 父容器：about-show 统一样式 */
.about-show {
    background: #f8f9fa;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
	border: unset;
    padding: 0;
}

/* 横幅图片 */
.about-banner {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.about-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 内容区域 */
.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* 主标题 */
.about-title {
    font-size: 28px;
    color: #0f0f1a;
    margin: 0 0 30px;
    font-weight: 600;
    line-height: 1.3;
}

/* 章节容器 */
.about-section {
    margin-bottom: 35px;
}

/* 章节标题 */
.about-section-title {
    font-size: 20px;
    color: #6654f1; /* 匹配原站蓝紫主色 */
    margin: 0 0 15px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f5;
}

/* 正文文本 */
.about-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 15px;
}
.about-text:last-child {
    margin-bottom: 0;
}

/* 特色列表 */
.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.about-feature-item {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 5px;
}
.about-feature-item strong {
    color: #0f0f1a;
    font-weight: 600;
}

/* CTA按钮 */
.about-cta {
    text-align: center;
    margin-top: 40px;
}
.about-cta-btn {
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(135deg, #6654f1 0%, #f154a1 100%); /* 原站渐变风格 */
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 84, 241, 0.3);
}
.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 84, 241, 0.4);
    color: #fff;
    text-decoration: none;
}
/* 响应式适配 */
@media (max-width: 768px) {
    .about-content {
        padding: 25px 20px;
    }
    .about-title {
        font-size: 24px;
    }
    .about-section-title {
        font-size: 18px;
    }
    .about-text, .about-feature-item {
        font-size: 14px;
    }
}

.plan-header {
  text-align: center;
  margin: 40px 0 30px;
}
.plan-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.plan-title i {
  color: var(--primary);
}
.plan-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* 核心利益横幅 */
.benefit-banner {
  background: var(--primary-gradient);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}
.banner-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.banner-item i {
  font-size: 20px;
}

/* 通用板块样式 */
.section {
  margin-bottom: 0;
}
.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

/* 推广方式网格 */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.method-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 24px;
}
.method-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.method-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* 返利规则模块 */
.rule-section {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.rule-intro {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.rule-table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.rule-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  border-bottom: 1px solid var(--border);
}
.rule-row:last-child {
  border-bottom: none;
}
.rule-header {
  background: var(--primary-light);
  color: var(--white);
  font-weight: 600;
}
.rule-col {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}
.rule-header .rule-col {
  color: var(--white);
}
.rule-highlight {
  background: #ecfdf5;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #065f46;
  font-weight: 600;
  font-size: 15px;
}
.rule-highlight i {
  color: var(--success);
  font-size: 18px;
}
.rule-example {
  margin: 30px 0;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}
.rule-example h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.rule-example p {
  font-size: 15px;
  color: var(--text-gray);
  margin: 0 0 12px;
}
.rule-example ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rule-example li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  padding-left: 4px;
}
.rule-extra h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.extra-list li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.extra-list li i {
  color: var(--primary);
}

/* 行动召唤模块 */
.cta-section {
  text-align: center;
  padding: 50px 30px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 40px;
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.cta-section p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0 0 30px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn.primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}
.cta-btn.secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cta-btn.secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* 响应式适配 */
@media (max-width: 768px) {
  .plan-title {
    font-size: 24px;
  }
  .banner-content {
    flex-direction: column;
    gap: 12px;
  }
  .rule-row {
    grid-template-columns: 1fr;
  }
  .rule-col {
    border-bottom: 1px solid var(--border);
  }
  .rule-row:last-child .rule-col:last-child {
    border-bottom: none;
  }
  .cta-section h2 {
    font-size: 22px;
  }
}