/* ===== 变量 ===== */
:root {
	--o2: #FF5A1F;
	--o3: #FF3D00;
	--deep: #9E2600;
	--gold: #FFC14D;
	--gold-l: #FFE6B0;
	--ink: #1C0F05;
	--ink2: #5B4535;
	--ink3: #8C7565;
	--bg: #FFF9F5;
	--bg2: #FFEFE3;
	--line: #F8DCC6;
	--r: 20px;
	--sh-m: 0 12px 34px rgba(255, 61, 0, .13);
	--maxw: 1180px;
	--font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ===== reset ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	color: #3B2A1D;
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
	border: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font-family: var(--font);
	font-size: 100%;
	outline: none;
}

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 900;
	line-height: 1.22;
	letter-spacing: -.01em;
}

p,
ul {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

/* ===== 通用 ===== */
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}

.sec {
	padding: 82px 0;
	position: relative;
}

.center {
	text-align: center;
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bg2);
	color: var(--deep);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	padding: 7px 16px;
	border-radius: 99px;
	margin-bottom: 18px;
}

.tag i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--o3);
}

.tag-light {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}

.tag-light i {
	background: #fff;
}

.tag-gold {
	background: rgba(255, 255, 255, .14);
	color: var(--gold);
}

.tag-gold i {
	background: var(--gold);
}

.tag-gold-dot {
	background: rgba(255, 255, 255, .16);
	color: #fff;
}

.tag-gold-dot i {
	background: var(--gold);
}

.req {
	color: var(--o3);
}

.sec h2.title {
	font-size: 36px;
	color: var(--ink);
}

.sec h2.title em {
	font-style: normal;
	color: var(--o3);
}

.sub {
	margin-top: 14px;
	font-size: 17px;
	color: var(--ink2);
}

.center .sub {
	margin-left: auto;
	margin-right: auto;
}

/* ===== 按钮 ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-weight: 800;
	font-size: 17px;
	line-height: 1;
	padding: 17px 34px;
	border-radius: 99px;
	border: 0;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
	-webkit-tap-highlight-color: transparent;
}

.btn:active:not(:disabled) {
	transform: translateY(0) scale(.98);
}

.btn:disabled,
.btn.is-loading {
	cursor: not-allowed;
	opacity: .65;
	transform: none !important;
}

.btn.is-loading {
	pointer-events: none;
}

.btn .spinner {
	width: 16px;
	height: 16px;
	border: 2.5px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: btn-spin .8s linear infinite;
}

@keyframes btn-spin {
	to { transform: rotate(360deg); }
}

.btn-o {
	background: linear-gradient(135deg, #FF7A2F, #FF2D00);
	color: #fff;
	box-shadow: 0 12px 30px rgba(255, 45, 0, .36);
}

.btn-o:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(255, 45, 0, .46);
}

.btn-w {
	background: #fff;
	color: var(--o3);
}

.btn-w:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.btn-g {
	background: rgba(255, 255, 255, .13);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .42);
}

.btn-g:hover {
	background: rgba(255, 255, 255, .22);
}

.btn-l {
	background: #fff;
	color: var(--o3);
	border: 2px solid var(--o3);
}

.btn-lg {
	padding: 20px 46px;
	font-size: 19px;
}

.ar {
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .22);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 23px;
}

.btn-w .ar,
.btn-l .ar {
	background: var(--o3);
	color: #fff;
}

/* ===== 导航 ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 90;
	height: 64px;
	display: flex;
	align-items: center;
	transition: background .25s, box-shadow .25s, height .25s;
}

.nav.on {
	height: 56px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 4px 22px rgba(158, 38, 0, .10);
}

.nav-in {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 22px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
}

.logo-box {
	border-radius: 8px;
	padding: 6px 12px;
	display: flex;
	align-items: center;
}

.logo-box img {
	height: 36px;
	width: auto;
}

.logo-fb {
	display: none;
	font-weight: 900;
	font-size: 15px;
	color: #fff;
	line-height: 1.2;
}

.logo-fb.show {
	display: inline;
}

.logo-sub {
	display: inline-block;
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
	line-height: 1.2;
	margin-top: 2px;
	letter-spacing: .05em;
	padding: 3px 7px;
	background: rgba(255, 61, 0, .18);
	border: 1px solid rgba(255, 61, 0, .35);
	border-radius: 4px;
}

.nav.on .logo-fb {
	color: var(--ink);
}

.nav.on .logo-sub {
	color: var(--ink2);
	background: rgba(255, 61, 0, .1);
	border-color: rgba(255, 61, 0, .3);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.nav-links a {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, .88);
	transition: color .2s;
}

.nav.on .nav-links a {
	color: var(--ink2);
}

.nav-links a:hover {
	color: var(--o3);
}

.nav-tel {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 13.5px;
	color: #fff;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .3);
	padding: 7px 14px;
	border-radius: 8px;
	transition: all .2s;
}

.nav.on .nav-tel {
	background: var(--bg2);
	color: var(--deep);
	border-color: var(--line);
}

.nav-cta {
	background: #fff;
	color: var(--o3);
	font-weight: 600;
	font-size: 14px;
	padding: 8px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .14);
	transition: all .2s;
}

.nav-cta:hover {
	background: var(--o3);
	color: #fff;
}

.nav.on .nav-cta {
	background: var(--ink);
	color: #fff;
}

.nav.on .nav-cta:hover {
	background: var(--o3);
}

@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.nav-tel {
		margin-left: auto;
	}

	.nav-cta {
		font-size: 13px;
		padding: 7px 14px;
		white-space: nowrap;
	}
}

@media(max-width:480px) {
	.nav-cta {
		font-size: 12px;
		padding: 6px 10px;
	}
}

/* ===== HERO ===== */
.hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	padding: 96px 0 72px;
	background: radial-gradient(1200px 620px at 78% 8%, #C43400 0%, transparent 62%),
		linear-gradient(155deg, #210C02 0%, #5C1B00 45%, #FF3D00 130%);
}

.hero-g {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
	background-size: 60px 60px;
	-webkit-mask-image: radial-gradient(circle at 45% 35%, #000, transparent 70%);
	mask-image: radial-gradient(circle at 45% 35%, #000, transparent 70%);
}

.hero-b1 {
	position: absolute;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: #FF8A3D;
	filter: blur(90px);
	opacity: .42;
	top: -220px;
	right: -140px;
	pointer-events: none;
}

.hero-b2 {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: #FFB300;
	filter: blur(90px);
	opacity: .26;
	bottom: -200px;
	left: -160px;
	pointer-events: none;
}

.hero-in {
	position: relative;
	z-index: 3;
	text-align: center;
}

.hero-l {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 16px;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .26);
	padding: 8px 17px;
	border-radius: 99px;
	font-size: 13.5px;
	font-weight: 700;
	margin-bottom: 28px;
}

.kicker .dt {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #5BE49B;
	box-shadow: 0 0 0 4px rgba(91, 228, 155, .22);
}

h1.big {
	font-size: clamp(36px, 5.6vw, 62px);
	color: #fff;
	letter-spacing: -.02em;
	line-height: 1.15;
	margin-bottom: 40px;
}

h1.big u {
	text-decoration: none;
	position: relative;
	display: inline-block;
	padding: 0 6px;
	background: linear-gradient(180deg, transparent 60%, rgba(255, 193, 77, .6) 60%);
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
	justify-content: center;
}

.hero-cta {
	margin-top: 36px;
	display: inline-flex;
	transition: opacity .25s, transform .25s;
}

.hero-cta.hide {
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
}

.nav-cta {
	display: none;
}

.nav.has-cta .nav-cta {
	display: inline-flex;
}

/* Hero 内 5 张权益卡 */
.hero-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	text-align: left;
}

.hg {
	position: relative;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 12px;
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all .25s ease;
}

.hg:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 193, 77, .4);
	transform: translateY(-3px);
}

.hg-n {
	position: absolute;
	top: 16px;
	right: 18px;
	font-family: Georgia, serif;
	font-size: 13px;
	color: var(--gold-l);
	letter-spacing: .05em;
}

.hg h4 {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	padding-right: 32px;
	margin-bottom: 2px;
}

.hg p {
	font-size: 13px;
	color: rgba(255, 255, 255, .72);
	line-height: 1.65;
	min-height: 3lh;
}

.hg-tag {
	display: block;
	margin-top: 6px;
	padding-top: 12px;
	border-top: 1px dashed rgba(255, 255, 255, .2);
	font-size: 12px;
	color: var(--gold-l);
	font-weight: 500;
	line-height: 1.6;
}

/* ===== 数据条 ===== */
.tbar{
  background:#fff;
  border-bottom:1px solid var(--line);
}
.tbar-in{
  display:grid;grid-template-columns:repeat(4,1fr);
}
.tb{
  padding:38px 24px;text-align:center;
  border-right:1px solid var(--line);
  display:flex;flex-direction:column;align-items:center;gap:10px;
}
.tb:last-child{border-right:0;}
.tb-num{
  display:flex;align-items:baseline;gap:3px;
  color:var(--o3);line-height:1;
}
.tb-num .num{font-size:44px;font-weight:900;letter-spacing:-.02em;}
.tb-num i{
  font-style:normal;font-size:20px;font-weight:700;
  color:var(--deep);
}
.tb-cap{
  font-size:13.5px;color:var(--ink2);
  letter-spacing:.04em;
}

/* ===== 为什么 ===== */
.why {
	background: var(--bg);
}

.why-g {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 46px;
	align-items: stretch;
}

.wc {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 30px 26px;
	position: relative;
	overflow: hidden;
	transition: transform .2s, box-shadow .2s;
	display: flex;
	flex-direction: column;
}

.wc:hover {
	transform: translateY(-5px);
	box-shadow: var(--sh-m);
}

.wc .n {
	position: absolute;
	top: 10px;
	right: 18px;
	font-size: 56px;
	font-weight: 900;
	color: var(--bg2);
	line-height: 1;
}

.wc h3 {
	font-size: 20px;
	margin-bottom: 12px;
	position: relative;
}

.wc p {
	font-size: 15.5px;
	color: var(--ink2);
	position: relative;
	line-height: 1.75;
}

.wc .q {
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px dashed var(--line);
	font-size: 15px;
	font-weight: 800;
	color: var(--deep);
	position: relative;
	line-height: 1.5;
}

/* ===== 权益 ===== */
.ben {
	background: var(--bg);
	position: relative;
	overflow: hidden;
}

.ben-head {
	margin-bottom: 48px;
	max-width: 760px;
}

.ben-head .title {
	font-size: 36px;
}

.ben-head .sub {
	font-size: 16px;
	color: var(--ink2);
	margin-top: 16px;
}

.ben-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.bi {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: all .3s ease;
	overflow: hidden;
}

.bi::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--o3);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
}

.bi:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-m);
	border-color: transparent;
}

.bi:hover::before {
	transform: scaleX(1);
}

.bi-head {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.bi-n {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg);
	color: var(--o3);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	transition: all .25s;
	font-family: Georgia, serif;
}

.bi:hover .bi-n {
	background: var(--o3);
	color: #fff;
	border-color: var(--o3);
}

.bi-titles {
	flex: 1;
	min-width: 0;
}

.bi-titles h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 6px;
	line-height: 1.3;
}

.bi-titles p {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.7;
}

.bi-tag {
	display: block;
	margin-top: auto;
	font-size: 12.5px;
	color: var(--deep);
	font-weight: 600;
	background: var(--bg);
	border-radius: 8px;
	padding: 9px 12px;
	letter-spacing: .01em;
	line-height: 1.6;
	border-left: 2px solid var(--o3);
}

/* ===== 时间成本 ===== */
.cost{
  background:linear-gradient(135deg,#FF7A2F 0%,#FF3D00 55%,#B52C00 100%);
  color:#fff;position:relative;overflow:hidden;
}
.cost h1,.cost h2,.cost h3,.cost h4{color:#fff;}
.cost::after{
  content:"";position:absolute;
  width:520px;height:520px;border-radius:50%;
  background:radial-gradient(closest-side,rgba(255,255,255,.1),transparent 70%);
  top:-180px;right:-160px;pointer-events:none;
}
.cost::before{
  content:"";position:absolute;
  width:420px;height:420px;border-radius:50%;
  background:radial-gradient(closest-side,rgba(255,255,255,.06),transparent 70%);
  bottom:-200px;left:-140px;pointer-events:none;
}

.cost-head{margin-bottom:56px;max-width:780px;margin-left:auto;margin-right:auto;}
.cost .cost-head .title,
.cost .cost-head h2.title{color:#fff;}
.cost .cost-head .title em,
.cost .cost-head h2.title em{
  color:#fff;font-weight:900;
  font-style:normal;
}
.cost .cost-head .sub{color:rgba(255,255,255,.9);margin-top:18px;}

.cost-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr auto 1fr;gap:0;
  align-items:stretch;
}
.cost-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:44px 40px;
  display:flex;flex-direction:column;gap:18px;
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  transition:all .3s ease;
}
.cost-card:hover{background:rgba(255,255,255,.12);transform:translateY(-3px);}

.cost-cap{
  display:inline-block;align-self:flex-start;
  font-size:11px;font-weight:700;letter-spacing:.22em;
  color:var(--gold-l);
  padding:6px 12px;background:rgba(255,255,255,.1);border-radius:6px;
}

.cost-num{
  display:flex;align-items:flex-end;gap:14px;
  font-family:Georgia,"PingFang SC",serif;
  color:#fff;line-height:1;
}
.cn-big{font-size:96px;font-weight:400;letter-spacing:-.04em;}
.cn-unit{font-size:15px;font-weight:500;color:rgba(255,255,255,.85);padding-bottom:12px;line-height:1.3;}
.cn-unit i{font-style:normal;color:var(--gold-l);font-size:13px;}

.cost-card > p{
  font-size:15px;color:rgba(255,255,255,.82);line-height:1.85;
  margin-top:auto;
}

.cost-divider{
  display:flex;align-items:center;justify-content:center;
  width:56px;position:relative;
}
.cost-divider::before{
  content:"";position:absolute;left:50%;top:8%;bottom:8%;
  width:1px;background:linear-gradient(180deg,transparent,rgba(255,255,255,.35),transparent);
  transform:translateX(-50%);
}
.cost-divider span{
  position:relative;z-index:1;
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.95);color:var(--o3);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:300;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}

.cr-list{display:flex;flex-direction:column;}
.cr-list li{
  display:flex;justify-content:space-between;align-items:center;gap:20px;
  padding:18px 0;border-bottom:1px solid rgba(255,255,255,.15);
}
.cr-list li:last-child{border-bottom:0;}
.cr-l{font-size:15px;color:rgba(255,255,255,.85);line-height:1.5;}
.cr-r{display:flex;align-items:baseline;gap:4px;flex:none;text-align:right;white-space:nowrap;}
.cr-r b{
  font-family:Georgia,"PingFang SC",serif;
  font-size:28px;font-weight:400;color:var(--gold-l);
  letter-spacing:-.02em;line-height:1;
}
.cr-r i{font-style:normal;font-size:13px;color:rgba(255,255,255,.7);}
.cr-total{
  margin-top:8px;padding-top:22px!important;
  border-top:1px solid rgba(255,255,255,.3)!important;
}
.cr-total .cr-l{color:#fff;font-weight:600;}
.cr-total .cr-r b{color:#fff;font-size:32px;}

/* ===== 三大承诺 ===== */
.pro {
	background: var(--ink);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.pro::before {
	content: "";
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(255, 61, 0, .28);
	filter: blur(90px);
	top: -220px;
	left: -160px;
}

.pro h1,.pro h2,.pro h3,.pro h4{color:#fff;}
.pro-head {
	position: relative;
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
}

.pro .pro-head .title,
.pro .pro-head h2.title {
	color: #fff;
}

.pro .pro-head .title em,
.pro .pro-head h2.title em {
	color: #fff;
	font-weight: 900;
	font-style: normal;
}

.pro-head .sub {
	color: rgba(255, 255, 255, .85);
}

.pro-g {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 46px;
	position: relative;
	z-index: 2;
}

.pc {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--r);
	padding: 32px 26px;
	text-align: center;
	transition: background .2s, border-color .2s, transform .2s;
}

.pc:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 193, 77, .5);
	transform: translateY(-4px);
}

.seal {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	border: 2.5px solid var(--gold);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 24px;
	position: relative;
}

.seal::after {
	content: "";
	position: absolute;
	inset: 7px;
	border: 1px dashed rgba(255, 193, 77, .55);
	border-radius: 50%;
}

.pc h3 {
	font-size: 21px;
	margin-bottom: 12px;
	color: #fff;
}

.pc p {
	font-size: 15px;
	color: rgba(255, 255, 255, .72);
	line-height: 1.75;
}

/* ===== 三步 ===== */
.st {
	background: var(--bg);
}

.st-g {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 46px;
}

.sc {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 34px 26px;
	position: relative;
	overflow: hidden;
}

.sc .big-n {
	position: absolute;
	right: 14px;
	bottom: -16px;
	font-size: 110px;
	font-weight: 900;
	color: #FFF1E5;
	line-height: 1;
}

.sc .ic {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--bg2);
	color: var(--o3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	position: relative;
}

.sc .ic svg {
	width: 27px;
	height: 27px;
}

.sc h3 {
	font-size: 21px;
	margin-bottom: 10px;
	position: relative;
}

.sc p {
	font-size: 15.3px;
	color: var(--ink2);
	position: relative;
}

.sc .d {
	display: inline-block;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 800;
	color: var(--o3);
	background: var(--bg2);
	padding: 5px 13px;
	border-radius: 99px;
	position: relative;
}

.st-foot {
	margin-top: 34px;
	background: #fff;
	border: 2px dashed var(--line);
	border-radius: var(--r);
	padding: 24px 28px;
	text-align: center;
	font-size: 16.5px;
	color: var(--ink2);
}

.st-foot b {
	color: var(--deep);
}

/* ===== FAQ ===== */
.faq {
	background: #fff;
	background-image: radial-gradient(circle at 100% 0%, rgba(255, 61, 0, .035) 0%, transparent 45%);
}

.faq-head {
	margin-bottom: 56px;
	max-width: 760px;
}

.faq-head .title {
	font-size: 40px;
}

.faq-head .sub {
	font-size: 16px;
	color: var(--ink2);
	margin-top: 18px;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	counter-reset: faq;
}

.fi {
	position: relative;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	transition: all .3s ease;
}

.fi::before {
	content: "";
	position: absolute;
	top: 18px;
	bottom: 18px;
	left: 0;
	width: 3px;
	background: var(--o3);
	border-radius: 0 3px 3px 0;
	transform: scaleY(0);
	transform-origin: center;
	transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.fi:hover {
	border-color: rgba(255, 61, 0, .25);
}

.fi.open {
	background: #fff;
	border-color: var(--o3);
	box-shadow: 0 12px 28px rgba(255, 61, 0, .08);
	transform: translateY(-2px);
}

.fi.open::before {
	transform: scaleY(1);
}

.fi-n {
	position: absolute;
	top: 16px;
	left: 20px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--o3);
	letter-spacing: 0;
	transition: all .25s ease;
}

.fi:hover .fi-n {
	border-color: var(--o3);
}

.fi.open .fi-n {
	background: var(--o3);
	border-color: var(--o3);
	color: #fff;
}

.fq {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	padding: 16px 44px 16px 56px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
}

.fq-q {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.5;
	transition: color .2s;
}

.fi.open .fq-q {
	color: var(--o3);
}

.fq-icon {
	flex: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--line);
	position: relative;
	transition: all .25s ease;
}

.fq-icon::before,
.fq-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: currentColor;
	border-radius: 1px;
	transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.fq-icon::before {
	width: 9px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}

.fq-icon::after {
	width: 1.5px;
	height: 9px;
	transform: translate(-50%, -50%);
}

.fq-icon {
	color: var(--ink3);
}

.fi:hover .fq-icon {
	border-color: var(--o3);
	color: var(--o3);
}

.fi.open .fq-icon {
	background: var(--o3);
	border-color: var(--o3);
	color: #fff;
}

.fi.open .fq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.fa-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .35s cubic-bezier(.2, .8, .2, 1);
}

.fi.open .fa-wrap {
	grid-template-rows: 1fr;
}

.fa-wrap>.fa {
	overflow: hidden;
	padding: 0 28px 0 56px;
	color: var(--ink2);
	font-size: 14.5px;
	line-height: 1.85;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity .3s ease .05s, transform .3s ease .05s, padding .35s ease;
}

.fi.open .fa-wrap>.fa {
	padding: 0 28px 22px 56px;
	opacity: 1;
	transform: none;
}

/* ===== 报名弹窗 ===== */
.ap-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.ap-modal.show {
	display: flex;
}

.ap-mask {
	position: absolute;
	inset: 0;
	background: rgba(20, 15, 5, .55);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	animation: ap-fade .25s ease;
}

.ap-dialog {
	position: relative;
	width: 100%;
	max-width: 600px;
	max-height: calc(100vh - 48px);
	overflow: auto;
	animation: ap-up .35s cubic-bezier(.2, .8, .2, 1);
}

.ap-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .04);
	border: 0;
	color: var(--ink2, #666);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s, color .2s, transform .2s;
	z-index: 5;
	padding: 0;
}

.ap-close svg {
	width: 14px;
	height: 14px;
	display: block;
}

.ap-close:hover {
	background: rgba(255, 61, 0, .1);
	color: #FF3D00;
	transform: rotate(90deg);
}

@keyframes ap-fade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes ap-up {
	from {
		opacity: 0;
		transform: translateY(20px) scale(.98);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

body.ap-lock {
	overflow: hidden;
}

.fbox {
	background: #fff;
	border-radius: 24px;
	padding: 24px 22px;
	color: var(--ink);
}

.fbox h3 {
	font-size: 20px;
	padding-right: 36px;
}

.fbox .tp {
	font-size: 14px;
	color: var(--ink3);
	margin-bottom: 22px;
}

.fr {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7px;
}

.fc {
	flex: 1 1 100%;
	padding: 0 7px;
	margin-bottom: 12px;
}

.fc.h {
	flex: 1 1 50%;
}

.fc.h.full {
	flex: 1 1 100%;
}

.fc label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink2);
	margin-bottom: 8px;
}

.fc input,
.fc select,
.fc textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 14px;
	color: var(--ink);
	background: transparent;
	transition: border-color .18s, box-shadow .18s;
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
}

.fc input::placeholder,
.fc textarea::placeholder {
	color: #b8b3ac;
}

.fc input:hover:not(:focus),
.fc select:hover:not(:focus),
.fc textarea:hover:not(:focus) {
	border-color: #d8d2c8;
}

.fc input:focus,
.fc textarea:focus {
	border-color: var(--o3);
	background: transparent;
	box-shadow: 0 0 0 3px rgba(255, 61, 0, .1);
	outline: none;
}

.fc select:focus {
	border-color: var(--o3);
	background: transparent;
}

.fc select {
	padding-right: 36px;
}

.select-wrap {
	position: relative;
}

.select-wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #FF3D00;
	transform: translateY(-50%) rotate(0deg);
	transition: transform .2s ease;
	pointer-events: none;
}

.select-wrap.is-open::after {
	transform: translateY(-50%) rotate(180deg);
}

.fc textarea {
	min-height: 72px;
	resize: vertical;
}

.fc input:focus,
.fc textarea:focus {
	border-color: var(--o3);
	background: #fff;
}

.fc.err input,
.fc.err select,
.fc.err textarea {
	border-color: #E5484D;
	background: transparent;
	animation: fc-shake .35s ease;
}

@keyframes fc-shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

.em {
	display: none;
	color: #E5484D;
	font-size: 12.5px;
	margin-top: 5px;
	font-weight: 700;
}

.fc.err .em {
	display: block;
}

.tag-pick {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 6px;
	width: 100%;
}

.tg {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #E5E7EB;
	background: #fff;
	color: var(--ink, #333);
	font-size: 13px;
	font-weight: 500;
	height: 32px;
	border-radius: 8px;
	cursor: pointer;
	transition: background .18s, border-color .18s, color .18s, transform .12s;
	padding: 0 6px;
	font-family: inherit;
	white-space: nowrap;
}

.tg:hover {
	border-color: #FFB088;
	color: #FF3D00;
}

.tg:active {
	transform: scale(.96);
}

.tg.on {
	border-color: #FF3D00;
	color: #FF3D00;
}

.tg.on:hover {
	border-color: #FF3D00;
	color: #FF3D00;
}

.fbtn {
	width: 100%;
	margin-top: 6px;
	padding: 14px 28px;
	font-size: 16px;
}

.ff {
	margin-top: 14px;
	font-size: 12.5px;
	color: var(--ink3);
	text-align: center;
	line-height: 1.7;
}

.ok {
	display: none;
	text-align: center;
	padding: 16px 0;
}

.ok.show {
	display: block;
}

.ok-ic {
	width: 78px;
	height: 78px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FF7A2F, #FF2D00);
	color: #fff;
	font-size: 38px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 32px rgba(255, 45, 0, .32);
	position: relative;
}

.ok-ic::before {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 2px solid rgba(255, 61, 0, .25);
	animation: ok-pulse 1.6s ease-out infinite;
}

@keyframes ok-pulse {
	0% { transform: scale(.95); opacity: 1; }
	100% { transform: scale(1.35); opacity: 0; }
}

.ok h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.ok p {
	font-size: 15.5px;
	color: var(--ink2);
}

.ok-tel {
	margin-top: 18px;
	font-size: 14px;
	color: var(--ink3);
}

.ok-tel .tel-link {
	color: var(--o3);
	font-weight: 800;
}

.ok-n {
	margin-top: 24px;
	background: var(--bg);
	border-radius: 14px;
	padding: 20px;
	text-align: left;
}

.ok-n li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 14.8px;
	color: var(--ink2);
	padding: 10px 0;
	position: relative;
}

.ok-n li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 19px;
	top: calc(100% - 4px);
	bottom: 0;
	width: 1.5px;
	background: linear-gradient(180deg, var(--o3), transparent);
	opacity: .35;
}

.ok-n li b {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 61, 0, .12);
	color: var(--o3);
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	font-weight: 900;
}

.ok-n li span {
	flex: 1;
}

/* ===== 页脚 ===== */
/* ====== 页脚 ====== */
.ft {
	background: #fff;
	color: #666;
	font-size: 13px;
}

/* 页脚 wrap 锁死 1200px */
.ft .wrap {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 20px;
}

.bottomBar {
	border-top: 2px solid #ff5300;
	padding-top: 30px;
}

/* 4 列分类（flex 布局） */
.ft-cols {
	display: flex;
	flex-wrap: wrap;
	gap: 0 24px;
}

.ft-col {
	flex: 0 0 160px;
	padding: 0 16px;
	border-right: 1px solid #eee;
}

.ft-col:last-child {
	border-right: 0;
}

.ft-col-wide {
	flex: 0 0 240px;
}

.ft-col h3 {
	font-size: 15px;
	color: #333;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 14px;
}

.ft-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ft-col ul li {
	line-height: 28px;
}

.ft-col ul li a {
	color: #666;
	font-size: 13px;
	transition: color .15s;
}

.ft-col ul li a:hover {
	color: #ff5300;
}

/* 旗下网站：2 列布局填补空白 */
.ft-col-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 16px;
}

/* 联系我们列 */
.ft-col-contact {
	flex: 1 1 320px;
}

.ft-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
}

.ft-contact li {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.4 !important;
}

.ft-contact-k {
	color: #999;
	font-size: 12px;
}

.ft-contact li a {
	color: #ff5300;
	font-weight: 600;
	font-size: 14px;
	transition: color .15s;
}

.ft-contact li a:hover {
	color: #d64400;
}

.ft-contact-v {
	color: #666;
	font-size: 13px;
}

/* 分隔线 */
.ft-divider {
	height: 1px;
	background: #eee;
	margin: 24px 0 18px;
}

/* 底部导航 */
.ft-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	padding-bottom: 14px;
}

.ft-nav a {
	color: #666;
	font-size: 13px;
	padding: 0 14px;
	border-right: 1px solid #ddd;
	line-height: 1;
	transition: color .15s;
}

.ft-nav a:last-child {
	border-right: 0;
}

.ft-nav a:hover {
	color: #ff5300;
}

/* 备案 + 版权 */
.ft-copy {
	text-align: center;
	color: #999;
	font-size: 12.5px;
	line-height: 1.9;
	margin: 0;
}

.ft-copy a {
	color: #999;
	padding: 0 6px;
	transition: color .15s;
}

.ft-copy a:hover {
	color: #ff5300;
}

.ft-copy span {
	padding-left: 6px;
}

/* 底部认证图标（ccmn 原版 bottom_foot_last） */
.ft-cert {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding: 14px 0 18px;
}

.ft-cert-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #888;
	font-size: 12px;
	line-height: 1.2;
	transition: color .15s;
	text-decoration: none;
}

.ft-cert-item:hover {
	color: #ff5300;
}

.ft-cert-item img {
	width: 20px;
	height: 20px;
	display: block;
}

.ft-cert-item span {
	white-space: nowrap;
}

/* 友情链接条 */
.bottom_ad {
	width: 100%;
	background: #f7f7f7;
	border-top: 1px solid #eee;
	padding: 14px 0;
}

.ft-friends {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.ft-friends-label {
	color: #888;
	font-size: 13px;
	flex: none;
	padding-left: 4px;
}

.ft-friends-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
	flex: 1 1 auto;
}

.ft-friends-list a {
	color: #555;
	font-size: 13px;
	padding: 0 10px;
	border-right: 1px solid #e5e5e5;
	line-height: 1.6;
	transition: color .15s;
}

.ft-friends-list a:last-child {
	border-right: 0;
}

.ft-friends-list a:hover {
	color: #ff5300;
}

.ft-friends-more {
	color: #888;
	font-size: 13px;
	flex: none;
	transition: color .15s;
}

.ft-friends-more:hover {
	color: #ff5300;
}

/* 响应式 */
@media (max-width: 960px) {
	.ft .wrap {
		padding: 0 16px;
	}
	.ft-cols {
		gap: 18px 0;
	}
	.ft-col,
	.ft-col-wide,
	.ft-col-contact {
		flex: 0 0 50%;
		border-right: 0;
		padding: 0 10px;
	}
	.ft-col h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.ft-col ul li {
		line-height: 26px;
	}
	.ft-col-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0 12px;
	}
	.ft-contact {
		gap: 10px 16px;
	}
	.ft-col-contact {
		flex: 0 0 100%;
		margin-top: 4px;
		padding-top: 16px;
		border-top: 1px dashed #eee;
	}
	.ft-divider {
		margin: 18px 0 14px;
	}
	.ft-nav {
		padding-bottom: 12px;
	}
	.ft-nav a {
		padding: 0 8px;
		font-size: 12.5px;
	}
	.ft-copy {
		font-size: 12px;
		line-height: 1.8;
		padding: 0 4px 12px;
	}
	.ft-copy a,
	.ft-copy span {
		padding: 0 4px;
	}
	.ft-cert {
		gap: 10px 18px;
		padding: 10px 0 14px;
	}
	.ft-cert-item {
		font-size: 11.5px;
	}
	.ft-cert-item img {
		width: 18px;
		height: 18px;
	}
	.ft-friends {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.ft-friends-label {
		padding-left: 0;
		font-size: 12.5px;
	}
	.ft-friends-list a {
		font-size: 12.5px;
		padding: 0 8px;
	}
	.ft-friends-more {
		font-size: 12.5px;
	}
}

@media (max-width: 640px) {
	.ft .wrap {
		padding: 0 12px;
	}
	.ft-cols {
		flex-wrap: wrap;
		gap: 16px 0;
	}
	.ft-col,
	.ft-col-wide {
		flex: 1 1 auto;
		padding: 0 8px;
		border-right: 1px solid #eee;
		min-width: 0;
	}
	.ft-col:nth-child(2n) {
		border-right: 0;
	}
	.ft-col-contact {
		flex: 0 0 100%;
		padding: 12px 0 0;
		border-top: 1px dashed #eee;
		margin-top: 4px;
	}
	.ft-col h3 {
		font-size: 13px;
		margin-bottom: 8px;
		white-space: nowrap;
	}
	.ft-col ul li {
		line-height: 22px;
	}
	.ft-col ul li a,
	.ft-col-grid a {
		font-size: 12px;
		white-space: nowrap;
	}
	.ft-col-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0 8px;
	}
	.ft-contact {
		grid-template-columns: 1fr 1fr;
		gap: 10px 16px;
	}
	.ft-contact-k {
		font-size: 11px;
	}
	.ft-contact li a {
		font-size: 12.5px;
	}
	.ft-contact-v {
		font-size: 12px;
	}
	.ft-divider {
		margin: 14px 0 10px;
	}
	.ft-nav {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 0;
		padding-bottom: 10px;
	}
	.ft-nav a {
		padding: 3px 6px;
		font-size: 11.5px;
		border-right: 1px solid #ddd;
		margin: 2px 0;
	}
	.ft-nav a:last-child {
		border-right: 0;
	}
	.ft-copy {
		font-size: 11.5px;
		line-height: 1.7;
	}
	.ft-copy a,
	.ft-copy span {
		padding: 0 3px;
	}
	.ft-cert {
		gap: 6px 10px;
		padding: 8px 0 12px;
	}
	.ft-cert-item {
		font-size: 11px;
	}
	.ft-cert-item img {
		width: 16px;
		height: 16px;
	}
	.ft-friends-list a {
		font-size: 12px;
		padding: 0 6px;
	}
}

/* ===== 悬浮 ===== */
.fab {
	position: fixed;
	right: 24px;
	bottom: 32px;
	z-index: 88;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: all .3s;
}

.fab.show {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.fab a {
	display: flex;
	align-items: center;
	gap: 9px;
	background: #fff;
	color: var(--deep);
	font-weight: 800;
	font-size: 15px;
	padding: 13px 22px;
	border-radius: 99px;
	box-shadow: 0 10px 26px rgba(158, 38, 0, .24);
}

.fab a.main {
	background: linear-gradient(135deg, #FF7A2F, #FF2D00);
	color: #fff;
	box-shadow: 0 12px 30px rgba(255, 45, 0, .4);
}

.fab a:hover {
	transform: translateY(-2px);
}

@media(max-width:960px) {
	.fab {
		display: none;
	}
}

/* ===== 动画 ===== */
.rv {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

.rv.in {
	opacity: 1;
	transform: none;
}

/* ===== 响应式 ===== */
@media(max-width:1000px) {

	.why-g,
	.pro-g,
	.st-g,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.ben-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.tbar-in {
		grid-template-columns: repeat(2, 1fr);
	}

	.tb {
		padding: 32px 16px;
	}

	.tb:nth-child(2) {
		border-right: 0;
	}

	.tb:nth-child(1),
	.tb:nth-child(2) {
		border-bottom: 1px solid var(--line);
	}

	.cost-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cost-divider {
		width: 100%;
		height: 56px;
	}

	.cost-divider::before {
		left: 8%;
		right: 8%;
		top: 50%;
		bottom: auto;
		width: auto;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
		transform: translateY(-50%);
	}

	.cost-mid {
		flex-direction: row;
		padding: 8px 0;
	}

	.cost-mid-line {
		width: 60px;
		height: 1px;
	}

	.ap-in {
		flex-direction: column;
		gap: 48px;
	}

	.ft-cols {
		grid-template-columns: 1fr;
		gap: 32px;
		min-width: 0;
	}

	.ft-top {
		flex-direction: column;
		gap: 40px;
	}
}

@media(max-width:640px) {
	.ben-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:900px) {
	.sec {
		padding: 60px 0;
	}

	.sec h2.title {
		font-size: 28px;
	}

	.hero {
		padding-top: 114px;
	}

	.cost-vs {
		width: 50px;
		height: 50px;
		font-size: 15px;
	}
}

@media(max-width:640px) {
	body {
		font-size: 15.5px;
	}

	.tag-pick {
		grid-template-columns: repeat(4, 1fr);
	}

	.tg {
		font-size: 12.5px;
		height: 30px;
		padding: 0 4px;
	}

	.sec {
		padding: 50px 0;
	}

	.sec h2.title {
		font-size: 24px;
	}

	.cost-head {
		margin-bottom: 36px;
	}

	.cost-card {
		padding: 32px 24px;
		gap: 14px;
	}

	.cn-big {
		font-size: 72px;
	}

	.cn-unit {
		font-size: 13px;
		padding-bottom: 8px;
	}

	.cr-r b {
		font-size: 22px;
	}

	.cr-total .cr-r b {
		font-size: 26px;
	}

	.cr-list li {
		padding: 14px 0;
	}

	.tb {
		padding: 28px 16px;
		gap: 8px;
	}

	.tb-num .num {
		font-size: 36px;
	}

	.tb-num i {
		font-size: 17px;
	}

	.sec h2.title {
		font-size: 24px;
	}

	.tb {
		padding: 28px 16px;
		gap: 8px;
	}

	.tb-num .num {
		font-size: 36px;
	}

	.tb-num i {
		font-size: 17px;
	}

	.faq-head .title {
		font-size: 28px;
	}

	.ben-head .title {
		font-size: 26px;
	}

	.sub {
		font-size: 15.5px;
	}

	.cta-row .btn {
		width: 100%;
	}

	.btn-lg {
		padding: 17px 30px;
		font-size: 17px;
	}

	.fbox {
		padding: 22px 18px;
		border-radius: 18px;
	}

	.fc.h {
		flex: 1 1 100%;
	}

	.fc label {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.fc input,
	.fc select,
	.fc textarea {
		font-size: 14px;
		padding: 10px 12px;
		border-radius: 10px;
	}

	.fc select {
		padding-right: 42px;
	}

	.fc select.has-value {
		padding-left: 36px;
	}

	.ap-dialog {
		max-width: 100%;
	}

	.ap-close {
		top: 10px;
		right: 10px;
		background: rgba(0, 0, 0, .04);
		color: var(--ink2);
		box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
	}

	.ap-close:hover {
		background: var(--ink);
		color: #fff;
		transform: rotate(90deg);
	}

	.bi {
		padding: 22px 20px;
		gap: 14px;
	}

	.bi-titles h3 {
		font-size: 17px;
	}

	.bi-tag {
		font-size: 12px;
		padding: 8px 10px;
	}

	.hero-grid {
		gap: 10px;
	}

	.hg {
		padding: 14px 12px;
		gap: 8px;
	}

	.hg h4 {
		font-size: 14px;
		padding-right: 24px;
		margin-bottom: 0;
	}

	.hg p {
		font-size: 12px;
		min-height: 3lh;
	}

	.hg-tag {
		font-size: 11.5px;
		padding-top: 8px;
		margin-top: 4px;
	}

	.hg-n {
		top: 12px;
		right: 12px;
		font-size: 12px;
	}

	h1.big {
		margin-bottom: 28px;
	}

	.ft {
	}

	.st-foot {
		padding: 20px;
		font-size: 15.5px;
	}

	.ap-close {
		top: 10px;
		right: 10px;
	}

	.ap-dialog {
		max-height: calc(100vh - 32px);
	}

	.fi-n {
		left: 14px;
		top: 14px;
		width: 22px;
		height: 22px;
		font-size: 11.5px;
	}

	.fq {
		padding: 14px 38px 14px 46px;
	}

	.fa-wrap>.fa {
		padding: 0 22px 0 50px;
	}

	.fi.open .fa-wrap>.fa {
		padding: 0 22px 18px 50px;
	}
}

@media(prefers-reduced-motion:reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}

	.rv {
		opacity: 1;
		transform: none;
	}

	.btn .spinner {
		animation: none !important;
		border-right-color: currentColor !important;
	}
}