/* ====================== 1、全局基础重置 ====================== */
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:"Microsoft Yahei",sans-serif;
}
/* 全站通用居中容器（所有板块统一宽度） */
.main-container {
	max-width:1200px;
	margin:0 auto;
	padding:0 20px;
}
/* 通用板块标题样式 */
.section-title {
	color:#28b947;
	font-size:24px;
	margin-bottom:8px;
}
.section-sub {
	font-size:12px;
	color:#888;
	margin-bottom:40px;
}
/* ====================== 2、顶部导航 header ====================== */
/* 顶部通栏底色铺满全屏 */
header {
	background:#9922dd;
	height:50px;
	display:flex;
	align-items:center;
}
/* 内层容器固定最大宽度1200px，和全站内容左右对齐 */
.header-container {
	width:1200px;
	margin:0 auto;
	padding:0 20px;
	/* 左logo、右导航两端对齐 */
    display:flex;
	justify-content:space-between;
	align-items:center;
}
.nav-logo {
	background:#fff;
	padding:8px 16px;
	font-weight:bold;
}
.navbar-nav {
	display:flex;
	list-style:none;
	gap:16px;
	margin:0;
	padding:0;
}
.nav-link {
	color:#fff;
	text-decoration:none;
	font-size:12px;
}
.nav-item.active .nav-link {
	color:#26e89c;
	font-weight:bold;
}
.nav-link:hover {
	color:#26e89c;
}
/* 大屏自适应，小于1240px铺满宽度 */
@media screen and (max-width:1240px) {
	.header-container {
	width:100%;
}
}/* 手机端竖排居中 */
@media screen and (max-width:768px) {
	header {
	height:auto;
	padding:12px 0;
}
.header-container {
	flex-direction:column;
	gap:12px;
}
.navbar-nav {
	flex-wrap:wrap;
	justify-content:center;
}
}/* ====================== 3、首屏Banner ====================== */
.banner {
	background:#781fb8;
	background-image:url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23781fb8' width='100%25' height='100%25'/%3E%3Ccircle cx='30px' cy='40px' r='25' fill='%2326e89c'/%3E%3Ccircle cx='95%25' cy='30px' r='30' fill='%2326e89c'/%3E%3Cpath stroke='%2326ff99' stroke-width='3' fill='none' d='M400 10 C 500 120,600 30,680 150'/%3E%3C/svg%3E");
	color:white;
	text-align:center;
	padding:60px 20px;
}
.banner h1,.banner .banner-main-title {
	font-size:40px;
	color:#fff;
	font-weight:bold;
	margin-bottom:20px;
}
.banner p {
	font-size:16px;
	opacity:0.8;
	line-height:1.6;
}
/* ====================== 4、用户服务板块 ====================== */
.service-section {
	padding:50px 0;
	text-align:center;
}
.service-grid {
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:25px;
	margin-top:30px;
}
.service-card {
	display:block;
	text-decoration:none !important;
	color:inherit;
	transition:all 0.2s;
	text-align:center;
}
.service-card:hover {
	transform:scale(1.03);
	opacity:0.9;
}
.service-icon {
	width:120px;
	height:120px;
	border-radius:8px;
	margin:0 auto 15px;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
	background:#f5f5f5;
}
.service-icon img {
	width:80%;
	height:80%;
	object-fit:contain;
}
.service-card .service-icon a {
	text-decoration:none;
	color:inherit;
	display:block;
}
.service-card h3 {
	font-size:16px;
	margin-bottom:6px;
	color:#333;
}
.service-card p {
	font-size:11px;
	color:#777;
}
/* ====================== 5、紫色数据统计栏 ====================== */
.data-bar {
	background:#6b18b0;
	padding:30px 0;
	color:white;
}
.data-inner {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	gap:20px;
}
.data-item {
	text-align:center;
}
.data-item p:first-child {
	font-size:20px;
	font-weight:bold;
	margin-bottom:6px;
}
.data-item p:last-child {
	font-size:12px;
	opacity:0.9;
}
/* ====================== 6、优势保障板块 ====================== */
.advantage-section {
	padding:50px 0;
	text-align:center;
}
.card-grid-3 {
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
	margin-top:30px;
}
.adv-card {
	border:1px solid #eee;
	border-radius:6px;
	overflow:hidden;
	text-decoration:none !important;
	color:inherit;
	display:block;
}
.adv-card h4,.adv-card p {
	text-decoration:none;
}
.adv-card-top {
	height:220px;
	background:linear-gradient(#fff,#ffeef0);
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
}
.adv-card-bottom {
	padding:15px;
	text-align:left;
}
.adv-card-bottom h4 {
	font-size:14px;
	margin-bottom:8px;
}
.adv-card-bottom p {
	font-size:12px;
	color:#666;
}
.more-btn {
	margin-top:30px;
	background:#6b18b0;
	color:white;
	border:none;
	padding:10px 24px;
	border-radius:4px;
	cursor:pointer;
}
/* ====================== 7、常见问题FAQ ====================== */
.faq-section {
	background:#f9faff;
	padding:50px 0;
	text-align:center;
}
/* ====================== 8、面包屑导航 ====================== */
.breadcrumb-wrap {
	background:#f7f7f7;
	padding:15px 0;
}
.breadcrumb {
	max-width:1200px;
	margin:0 auto;
	padding:0 20px;
	font-size:13px;
	color:#666;
}
.breadcrumb a {
	color:#6b18b0;
	text-decoration:none;
}
.breadcrumb span {
	margin:0 8px;
	color:#aaa;
}
.breadcrumb strong {
	color:#333;
	font-weight:normal;
}
/* ====================== 9、二级栏目横向子导航 ====================== */
.sub-nav-wrap {
	background:#ffffff;
	border:1px solid #eee;
	padding:18px 0;
	margin-bottom:40px;
}
.sub-nav-box {
	max-width:1200px;
	margin:0 auto;
	padding:0 20px;
	display:flex;
	flex-wrap:wrap;
	gap:12px 24px;
	align-items:center;
}
.sub-nav-box a {
	padding:7px 18px;
	color:#555;
	font-size:14px;
	text-decoration:none;
	border-radius:4px;
	transition:0.2s all;
}
.sub-nav-box a.active {
	background-color:#6b18b0;
	color:#fff;
}
.sub-nav-box a:hover:not(.active) {
	background-color:#f0e6ff;
	color:#6b18b0;
}
/* ========== 底部转化区块 全新动画重写 ========== */
.action-banner-section {
	position:relative;
	overflow:hidden;
	padding:55px 0;
	margin:45px 0;
	color:#fff;
	/* 柔和紫蓝渐变底色 */
	background:radial-gradient(circle at 20% 10%,rgba(144,76,255,0.12) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(0,134,255,0.08) 0%,transparent 45%),linear-gradient(135deg,#041029,#102b68,#7b2ff0);
	background-size:220% 220%;
	/* 全新缓慢背景流动动画 */
	animation:actionBgSlowFlow 14s ease-in-out infinite alternate;
}
/* 左向柔和扫光层 */
.action-sweep {
	position:absolute;
	width:100%;
	height:100%;
	left:-120%;
	top:0;
	background:linear-gradient(90deg,transparent,rgba(255,255,255,0.1),transparent);
	animation:sweepGentleLeft 7s linear infinite;
	z-index:1;
	pointer-events:none;
}
/* 反向扫光层 */
.action-sweep-rev {
	position:absolute;
	width:100%;
	height:100%;
	right:-120%;
	top:0;
	background:linear-gradient(-90deg,transparent,rgba(0,228,221,0.08),transparent);
	animation:sweepGentleRight 9s linear infinite reverse;
	z-index:1;
	pointer-events:none;
}
/* 漂浮粒子容器 */
.action-particle {
	position:absolute;
	inset:0;
	pointer-events:none;
	z-index:1;
}
.action-particle span {
	position:absolute;
	width:8px;
	height:8px;
	background:#ffffff;
	border-radius:50%;
	box-shadow:0 0 12px rgba(255,255,255,0.4);
	/* 全新粒子上下左右浮动动画 */
	animation:particleSoftFloat 9s ease-in-out infinite;
}
.action-particle span:nth-child(1) {
	top:12%;
	left:6%;
	animation-delay:0s;
}
.action-particle span:nth-child(2) {
	top:70%;
	left:16%;
	animation-delay:1.8s;
}
.action-particle span:nth-child(3) {
	top:18%;
	right:12%;
	animation-delay:3.2s;
}
.action-particle span:nth-child(4) {
	top:66%;
	right:14%;
	animation-delay:4.6s;
}
.action-particle span:nth-child(5) {
	top:40%;
	left:52%;
	animation-delay:6s;
}
/* 多层呼吸圆环 */
.action-circle {
	position:absolute;
	width:340px;
	height:340px;
	border:1px solid rgba(255,255,255,0.07);
	border-radius:50%;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	animation:ringSoftPulse 5s ease-in-out infinite alternate;
	z-index:1;
	pointer-events:none;
}
.action-circle::before {
	content:"";
	position:absolute;
	width:520px;
	height:520px;
	border:1px solid rgba(144,76,255,0.05);
	border-radius:50%;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	animation:ringSlowRotate 16s linear infinite reverse;
}
.action-circle::after {
	content:"";
	position:absolute;
	width:700px;
	height:700px;
	border:1px solid rgba(0,134,255,0.03);
	border-radius:50%;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	animation:ringFaintScale 8s infinite alternate;
}
/* 内容容器 */
.action-inner {
	width:1000px;
	margin:0 auto;
	display:flex;
	align-items:center;
	gap:40px;
	position:relative;
	z-index:2;
	animation:blockFadeUp 1s ease;
}
.action-text-box {
	max-width:600px;
}
/* 标题：上下浮动+红色柔光闪烁新动画 */
.action-text-box h2,.action-text-box .action-h2-txt {
	font-size:30px;
	margin-bottom:12px;
	color:#fff;
	font-weight:bold;
	text-shadow:0 0 14px rgba(255,0,0,0.5);
	animation:titleFloatFlash 3.2s ease-in-out infinite alternate;
}
.action-text-box p {
	font-size:17px;
	opacity:0.9;
	color:#fff;
	margin-bottom:8px;
}
.action-button-group {
	display:flex;
	gap:20px;
}
/* 主按钮 红底白字+脉冲发光动画 */
.action-btn {
	position:relative;
	overflow:hidden;
	padding:15px 36px;
	border-radius:999px;
	font-size:16px;
	font-weight:500;
	background-color:#f5222d;
	color:#ffffff;
	border:none;
	transition:all 0.3s ease;
	animation:btnGentlePulse 4s infinite alternate;
}
.action-btn::before {
	content:"";
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(90deg,transparent,rgba(255,255,255,0.28),transparent);
	transition:left 0.5s ease;
}
.action-btn:hover::before {
	left:100%;
}
.action-btn:hover {
	background:#cf1322;
	transform:translateY(-6px);
	box-shadow:0 10px 24px rgba(245,34,45,0.35);
	animation:none;
}
/* 第二个按钮 透明白边 */
.action-btn.service-btn {
	background:transparent;
	border:2px solid #fff;
	color:#fff;
	animation:none;
}
.action-btn.service-btn:hover {
	background:rgba(255,255,255,0.15);
	color:#fff;
	box-shadow:0 0 18px rgba(255,255,255,0.2);
}
/* ========== 专属新动画关键帧 ========== */
/* 背景缓慢渐变流动 */
@keyframes actionBgSlowFlow {
	0% {
	background-position:0% 40%;
}
100% {
	background-position:100% 60%;
}
}/* 左右柔和扫光 */
@keyframes sweepGentleLeft {
	0% {
	left:-120%;
}
100% {
	left:120%;
}
}@keyframes sweepGentleRight {
	0% {
	right:-120%;
}
100% {
	right:120%;
}
}/* 粒子缓慢四处漂浮 */
@keyframes particleSoftFloat {
	0%,100% {
	transform:translateY(0) translateX(0);
	opacity:0.4;
}
50% {
	transform:translateY(-30px) translateX(15px);
	opacity:0.9;
}
}/* 圆环柔和缩放呼吸 */
@keyframes ringSoftPulse {
	from {
	transform:translate(-50%,-50%) scale(0.9);
	opacity:0.4;
}
to {
	transform:translate(-50%,-50%) scale(1.12);
	opacity:1;
}
}/* 外圈缓慢自转 */
@keyframes ringSlowRotate {
	from {
	rotate:0deg;
}
to {
	rotate:360deg;
}
}/* 最外圈微弱缩放 */
@keyframes ringFaintScale {
	from {
	transform:translate(-50%,-50%) scale(0.95);
	opacity:0.2;
}
to {
	transform:translate(-50%,-50%) scale(1.05);
	opacity:0.6;
}
}/* 标题上下浮动+红光闪烁 */
@keyframes titleFloatFlash {
	0% {
	transform:translateY(0);
	text-shadow:0 0 10px rgba(255,0,0,0.4);
}
100% {
	transform:translateY(-8px);
	text-shadow:0 0 24px rgba(255,0,0,0.7),0 0 40px rgba(255,40,40,0.3);
}
}/* 按钮轻微脉冲发光 */
@keyframes btnGentlePulse {
	0% {
	box-shadow:0 0 8px rgba(245,34,45,0.2);
}
100% {
	box-shadow:0 0 18px rgba(245,34,45,0.45);
}
}/* 区块入场淡入上移 */
@keyframes blockFadeUp {
	from {
	opacity:0;
	transform:translateY(30px);
}
to {
	opacity:1;
	transform:translateY(0);
}
}/* ========== 手机端适配 ========== */
@media screen and (max-width:768px) {
	/* 手机隐藏所有光效粒子圆环，提升流畅度 */
	.action-sweep,.action-sweep-rev,.action-particle,.action-circle {
	display:none !important;
	animation:none !important;
}
.action-inner {
	width:100%;
	padding:0 15px;
	flex-direction:column;
	text-align:left;
	gap:30px;
}
.action-button-group {
	flex-wrap:wrap;
	justify-content:flex-start;
}
.action-text-box h2,.action-text-box .action-h2-txt {
	font-size:24px;
}
.action-btn {
	padding:12px 26px;
	font-size:15px;
	width:100%;
	text-align:center;
}
}/* 仅页面独有新闻列表样式，其余全部公共css */
        .news-list-section {
	padding:50px 0;
}
.news-item {
	padding:20px;
	border-bottom:1px solid #eee;
	display:flex;
	gap:20px;
	align-items:center;
}
.news-item:hover {
	background:#f9faff;
}
.news-item-img img {
	width:140px;
	height:100px;
	object-fit:cover;
	border-radius:4px;
}
.news-item-text {
	flex:1;
}
.news-item-text h3 a {
	color:#333;
	text-decoration:none;
	font-size:16px;
}
.news-item-text h3 a:hover {
	color:#6b18b0;
}
.news-info {
	font-size:12px;
	color:#999;
	margin:8px 0;
}
.news-desc {
	font-size:13px;
	color:#666;
	line-height:1.6;
}
/* 分页独有 */
        .page-box {
	margin-top:40px;
	text-align:center;
}
.page-box a,.page-box span {
	display:inline-block;
	padding:6px 12px;
	border:1px solid #ddd;
	margin:0 3px;
	text-decoration:none;
	color:#333;
}
.page-box span.current {
	background:#6b18b0;
	color:#fff;
	border-color:#6b18b0;
}
/* 仅页面独有新闻列表样式，其余全部公共css */
        .news-list-section {
	padding:50px 0;
}
.news-item {
	padding:20px;
	border-bottom:1px solid #eee;
	display:flex;
	gap:20px;
	align-items:center;
}
.news-item:hover {
	background:#f9faff;
}
.news-item-img img {
	width:140px;
	height:100px;
	object-fit:cover;
	border-radius:4px;
}
.news-item-text {
	flex:1;
}
.news-item-text h3 a {
	color:#333;
	text-decoration:none;
	font-size:16px;
}
.news-item-text h3 a:hover {
	color:#6b18b0;
}
.news-info {
	font-size:12px;
	color:#999;
	margin:8px 0;
}
.news-desc {
	font-size:13px;
	color:#666;
	line-height:1.6;
}
/* 分页独有 */
        .page-box {
	margin-top:40px;
	text-align:center;
}
.page-box a,.page-box span {
	display:inline-block;
	padding:6px 12px;
	border:1px solid #ddd;
	margin:0 3px;
	text-decoration:none;
	color:#333;
}
.page-box span.current {
	background:#6b18b0;
	color:#fff;
	border-color:#6b18b0;
}
/* 仅页面独有新闻列表样式，其余全部公共css */
        .news-list-section {
	padding:50px 0;
}
.news-item {
	padding:20px;
	border-bottom:1px solid #eee;
	display:flex;
	gap:20px;
	align-items:center;
}
.news-item:hover {
	background:#f9faff;
}
.news-item-img img {
	width:140px;
	height:100px;
	object-fit:cover;
	border-radius:4px;
}
.news-item-text {
	flex:1;
}
.news-item-text h3 a {
	color:#333;
	text-decoration:none;
	font-size:16px;
}
.news-item-text h3 a:hover {
	color:#6b18b0;
}
.news-info {
	font-size:12px;
	color:#999;
	margin:8px 0;
}
.news-desc {
	font-size:13px;
	color:#666;
	line-height:1.6;
}
/* 分页独有 */
        .page-box {
	margin-top:40px;
	text-align:center;
}
.page-box a,.page-box span {
	display:inline-block;
	padding:6px 12px;
	border:1px solid #ddd;
	margin:0 3px;
	text-decoration:none;
	color:#333;
}
.page-box span.current {
	background:#6b18b0;
	color:#fff;
	border-color:#6b18b0;
}
/* ====================== 10、新闻列表专属样式 ====================== */
.news-item-text h2 a {
	text-decoration:none;
	color:#333;
}
.news-item-text h2 a:hover {
	color:#6b18b0;
}
/* ====================== 11、页脚footer ====================== */
footer {
	background:#5c139c;
	color:#ddd;
	padding:40px 0;
	font-size:12px;
}
.footer-inner {
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	flex-wrap:wrap;
	gap:30px;
}
.footer-col h4,.footer-col .footer-col-title,.footer-link h4 {
	color:#fff;
	font-weight:bold;
	margin-bottom:15px;
	font-size:16px;
}
.footer-col p {
	margin:6px 0;
	font-size:13px;
}
/* 友情链接链接横向排布 */
.link-box {
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}
.link-box a {
	text-decoration:none;
}
.link-box img {
	height:26px;
	width:auto;
	background:#fff;
	padding:3px;
	border-radius:3px;
}
/* 版权完全居中 */
.copyright {
	margin-top:25px;
	border-top:1px solid #7730b3;
	padding-top:15px;
	text-align:center;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:8px;
}
/* 手机端自动上下堆叠，全部居中 */
@media screen and (max-width:768px) {
	.footer-inner {
	flex-direction:column;
	align-items:center;
	text-align:center;
}
.link-box {
	justify-content:center;
}
}/* ====================== 12、全端响应式移动端适配 ====================== */
/* 大屏适配 */
@media screen and (max-width:1240px) {
	.header-container {
	width:100%;
}
}/* 手机端768px以内 */
@media screen and (max-width:768px) {
	/* 导航手机适配 */
    header {
	height:auto;
	flex-direction:column;
	padding:10px;
	gap:10px;
}
.header-container {
	flex-direction:column;
	gap:12px;
}
.navbar-nav {
	flex-wrap:wrap;
	justify-content:center;
}
/* 服务板块 */
    .service-grid {
	grid-template-columns:repeat(2,1fr);
}
/* 优势三栏变一栏 */
    .card-grid-3 {
	grid-template-columns:1fr;
}
/* 数据栏居中换行 */
    .data-inner {
	justify-content:center;
}
/* 子导航居中 */
    .sub-nav-box {
	justify-content:center;
}
/* 页脚适配 */
    footer {
	grid-template-columns:1fr;
}
}