* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
	min-height: 100dvh;
	margin: 0;
	font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	background: linear-gradient(180deg, #e8f2ff 0%, #f0f5fa 28%, #f5f8fc 100%);
}

.page {
	min-height: 100dvh;
	padding-bottom: calc(110px + env(safe-area-inset-bottom, 0));
}

.ls-head {
	background: linear-gradient(180deg, #1657e8 0%, #3d7cff 70%, #4d88ff 100%);
	padding: calc(10px + env(safe-area-inset-top, 0)) 0 0;
	color: #fff;
}

.ls-head .bar {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 44px;
	padding: 0 16px 10px;
}

.ls-back {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
}

.ls-head .page-tit {
	font-size: 17px;
	font-weight: 700;
}

.ls-subnav {
	display: flex;
	background: #fff;
	border-bottom: 1px solid #e8edf3;
	overflow-x: auto;
	scrollbar-width: none;
}
.ls-subnav::-webkit-scrollbar { display: none; }

.ls-subtab {
	flex: 1;
	min-width: 72px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 10px 6px 8px;
	border: none;
	background: none;
	font-family: inherit;
	cursor: pointer;
	color: #9ca3af;
	-webkit-tap-highlight-color: transparent;
}

.ls-subtab svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ls-subtab span {
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
}

.ls-subtab.active {
	color: #2563eb;
	font-weight: 700;
}

.ls-subtab.active::after {
	content: "";
	display: block;
	width: 28px;
	height: 3px;
	background: #2563eb;
	border-radius: 2px;
	margin-top: 2px;
}

.ls-body {
	padding: 16px 14px 20px;
}

.ls-panel { display: none; }
.ls-panel.active { display: block; }

.ls-field { display: block; margin-bottom: 12px; padding: 0 2px; }
.ls-field-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 6px;
}
.ls-select, .ls-input {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 12px;
	font-size: 14px;
	background: #fff;
	font-family: inherit;
	color: #111827;
}
.ls-select {
	-webkit-appearance: menulist;
	appearance: menulist;
}

.ls-upload {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 160px;
	border: 2px dashed #93c5fd;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.75);
	padding: 24px 16px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
}

.ls-upload:active { opacity: 0.92; }

.ls-upload-ico {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: #dbeafe;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.ls-upload-ico svg {
	width: 28px;
	height: 28px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
}

.ls-upload .t1 {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
}

.ls-upload .t2 {
	font-size: 12px;
	color: #6b7280;
	margin-top: 8px;
	text-align: center;
	line-height: 1.5;
}

.ls-upload input[type="file"] {
	display: none;
}

.ls-file-name {
	margin-top: 10px;
	font-size: 12px;
	color: #2563eb;
	font-weight: 600;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ls-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 48px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: inherit;
	margin-top: 12px;
	-webkit-tap-highlight-color: transparent;
}

.ls-btn:active { opacity: 0.92; }

.ls-btn.primary {
	background: linear-gradient(145deg, #3b82f6, #1d4ed8);
	color: #fff;
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.ls-btn.outline {
	background: #fff;
	color: #2563eb;
	border: 1px solid #93c5fd;
}

.ls-btn svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.ls-feat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 18px;
}

.ls-feat {
	background: #fff;
	border-radius: 14px;
	padding: 14px 12px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.8);
}

.ls-feat-ico {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.ls-feat-ico svg {
	width: 22px;
	height: 22px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

.ls-feat-ico.c-blue { background: linear-gradient(145deg, #60a5fa, #2563eb); }
.ls-feat-ico.c-purple { background: linear-gradient(145deg, #c084fc, #7c3aed); }
.ls-feat-ico.c-green { background: linear-gradient(145deg, #4ade80, #16a34a); }
.ls-feat-ico.c-orange { background: linear-gradient(145deg, #fb923c, #ea580c); }

.ls-feat .tit {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
}

.ls-feat .desc {
	font-size: 11px;
	color: #6b7280;
	margin-top: 4px;
	line-height: 1.4;
}

.ls-info {
	margin-top: 16px;
	background: rgba(219, 234, 254, 0.45);
	border-radius: 14px;
	padding: 16px 14px;
	border: 1px solid rgba(147, 197, 253, 0.35);
}

.ls-info h3 {
	font-size: 15px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 12px;
}

.ls-info ul {
	list-style: none;
}

.ls-info li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 12px;
	color: #4b5563;
	line-height: 1.55;
	margin-bottom: 10px;
}

.ls-info li:last-child { margin-bottom: 0; }

.ls-info li svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
	margin-top: 1px;
}

.ls-sec-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.ls-sec-hd strong {
	font-size: 16px;
	font-weight: 800;
	color: #111827;
}

.ls-sec-hd a {
	font-size: 13px;
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}

.ls-hist-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 14px;
	padding: 14px 12px;
	margin-bottom: 10px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.85);
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}

.ls-hist-card:active { opacity: 0.94; }

.ls-hist-ico {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(145deg, #dbeafe, #bfdbfe);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ls-hist-ico svg {
	width: 22px;
	height: 22px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
}

.ls-hist-mid { flex: 1; min-width: 0; }

.ls-hist-mid .tit {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	line-height: 1.35;
}

.ls-hist-mid .time {
	font-size: 12px;
	color: #9ca3af;
	margin-top: 4px;
}

.ls-hist-right {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.ls-hist-right .status {
	font-size: 13px;
	font-weight: 600;
	color: #16a34a;
}

.ls-hist-right .chev { color: #cbd5e1; }

.ls-login-tip {
	margin-top: 14px;
	padding: 14px;
	text-align: center;
	font-size: 13px;
	color: #9ca3af;
	border: 1px dashed #d1d5db;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.6);
}

.ls-sample-intro {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: #fff;
	border-radius: 14px;
	padding: 14px;
	margin-bottom: 12px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.85);
}

.ls-sample-intro .spark {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(145deg, #3b82f6, #1d4ed8);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ls-sample-intro .spark svg {
	width: 18px;
	height: 18px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

.ls-sample-intro h3 {
	font-size: 15px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 6px;
}

.ls-sample-intro p {
	font-size: 12px;
	color: #6b7280;
	line-height: 1.55;
}

.ls-sample-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 14px;
	padding: 14px 12px;
	margin-bottom: 10px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.85);
}

.ls-sample-card .doc-ico {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(145deg, #60a5fa, #2563eb);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ls-sample-card .doc-ico svg {
	width: 22px;
	height: 22px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

.ls-sample-card .mid { flex: 1; min-width: 0; }

.ls-sample-card .tit-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.ls-sample-card .tit-row strong {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
}

.ls-tag-demo {
	font-size: 10px;
	font-weight: 700;
	color: #2563eb;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	padding: 2px 8px;
	border-radius: 999px;
}

.ls-sample-card .sub {
	font-size: 12px;
	color: #9ca3af;
	margin-top: 4px;
}

.ls-btn-view {
	flex-shrink: 0;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 600;
	color: #2563eb;
	background: #fff;
	border: 1px solid #93c5fd;
	border-radius: 8px;
	cursor: pointer;
	font-family: inherit;
	-webkit-tap-highlight-color: transparent;
}

.ls-btn-view:active { opacity: 0.9; }

.ls-doc-card {
	background: #fff;
	border-radius: 14px;
	padding: 16px 14px;
	margin-bottom: 12px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.85);
}

.ls-doc-card .card-tit {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 14px;
}

.ls-doc-card .card-tit::before {
	content: "";
	width: 4px;
	height: 16px;
	background: #2563eb;
	border-radius: 2px;
	flex-shrink: 0;
}

.ls-steps { list-style: none; }

.ls-steps li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 14px;
	font-size: 14px;
	color: #374151;
	line-height: 1.5;
}

.ls-steps li:last-child { margin-bottom: 0; }

.ls-steps .num {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #2563eb;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ls-faq dt {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 6px;
}

.ls-faq dd {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 14px 0;
}

.ls-faq dd:last-child { margin-bottom: 0; }

.ls-warn-card {
	background: #fffbeb;
	border: 1px solid #fcd34d;
	border-radius: 14px;
	padding: 16px 14px;
}

.ls-warn-card .card-tit {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 800;
	color: #92400e;
	margin-bottom: 12px;
}

.ls-warn-card .card-tit::before { display: none; }

.ls-warn-card .card-tit svg {
	width: 20px;
	height: 20px;
	stroke: #ea580c;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.ls-warn-card ul {
	list-style: none;
	font-size: 13px;
	color: #78350f;
	line-height: 1.65;
}

.ls-warn-card li {
	padding-left: 1em;
	position: relative;
	margin-bottom: 8px;
}

.ls-warn-card li:last-child { margin-bottom: 0; }

.ls-warn-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f59e0b;
}

.tabbar {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(14px + env(safe-area-inset-bottom, 0));
	width: min(300px, calc(100% - 40px));
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px 8px;
	border-radius: 999px;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
	border: 1px solid rgba(226, 232, 240, 0.95);
	z-index: 100;
}

.tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 10px;
	color: #9ca3af;
	min-width: 52px;
	text-decoration: none;
}

.tab.active,
.tab.on {
	color: #5b8ff9;
	font-weight: 600;
}

.tab svg,
.tab [data-lucide] svg {
	width: 20px;
	height: 20px;
}

/* 贷前尽调 / 市场尽调 */
.jd-hero {
	background: linear-gradient(145deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
	border-radius: 16px;
	padding: 18px 16px;
	color: #fff;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
	margin-bottom: 16px;
}

.jd-hero-hd {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.jd-hero-hd svg {
	width: 22px;
	height: 22px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.jd-hero-hd strong {
	font-size: 17px;
	font-weight: 800;
}

.jd-hero p {
	font-size: 12px;
	line-height: 1.55;
	opacity: 0.95;
	margin-bottom: 14px;
}

.jd-hero-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-height: 44px;
	border: none;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	color: #2563eb;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.jd-hero-cta:active { opacity: 0.92; }

.jd-fw-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 12px;
}

.jd-fw-title svg {
	width: 20px;
	height: 20px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
}

.jd-acc {
	background: #fff;
	border-radius: 14px;
	margin-bottom: 10px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.85);
	overflow: hidden;
}

.jd-acc-hd {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 12px;
	border: none;
	background: #fff;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.jd-acc-ico {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.jd-acc-ico.orange { background: #ffedd5; }
.jd-acc-ico.orange svg { stroke: #ea580c; }
.jd-acc-ico.green { background: #dcfce7; }
.jd-acc-ico.green svg { stroke: #16a34a; }

.jd-acc-ico svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke-width: 2;
}

.jd-acc-meta { flex: 1; min-width: 0; }

.jd-acc-meta strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #111827;
}

.jd-acc-meta span {
	display: block;
	font-size: 12px;
	color: #9ca3af;
	margin-top: 4px;
}

.jd-acc-chev {
	color: #9ca3af;
	transition: transform 0.2s;
	flex-shrink: 0;
}

.jd-acc.open .jd-acc-chev { transform: rotate(180deg); }

.jd-acc-bd {
	display: none;
	padding: 0 14px 14px 52px;
	border-top: 1px solid #f1f5f9;
}

.jd-acc.open .jd-acc-bd { display: block; }

.jd-acc-bd ol {
	list-style: none;
	counter-reset: jd;
}

.jd-acc-bd li {
	counter-increment: jd;
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 13px;
	line-height: 1.5;
}

.jd-acc-bd li:last-child { margin-bottom: 0; }

.jd-acc-bd li::before {
	content: counter(jd);
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #eff6ff;
	color: #2563eb;
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jd-acc-bd li strong {
	display: block;
	color: #111827;
	font-weight: 700;
	margin-bottom: 2px;
}

.jd-acc-bd li span {
	color: #6b7280;
	font-size: 12px;
}

.jd-quick {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 16px;
}

.jd-quick-card {
	background: #fff;
	border-radius: 14px;
	padding: 18px 12px;
	text-align: center;
	border: 1px solid rgba(226, 232, 240, 0.85);
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	cursor: pointer;
	font-family: inherit;
	-webkit-tap-highlight-color: transparent;
}

.jd-quick-card:active { opacity: 0.94; }

.jd-quick-card .ico {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jd-quick-card .ico.blue { background: #dbeafe; }
.jd-quick-card .ico.blue svg { stroke: #2563eb; }
.jd-quick-card .ico.green { background: #dcfce7; }
.jd-quick-card .ico.green svg { stroke: #16a34a; }

.jd-quick-card .ico svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke-width: 2;
}

.jd-quick-card span {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
}

.ls-hist-right .status.gen {
	color: #16a34a;
}

/* 大数据查询 */
.dsj-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	padding: 12px 14px 14px;
	margin: -16px -14px 14px;
	background: linear-gradient(180deg, #4d88ff 0%, #6b9fff 40%, #a8c8ff 100%);
}

.dsj-chips span {
	font-size: 11px;
	color: #fff;
	font-weight: 500;
	white-space: nowrap;
}

.dsj-chips span::before {
	content: "✓ ";
	opacity: 0.95;
}

.dsj-form-card {
	background: #fff;
	border-radius: 16px;
	padding: 16px 14px;
	box-shadow: 0 4px 20px rgba(22, 87, 232, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.9);
	margin-bottom: 14px;
}

.dsj-field {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f3f4f6;
	border-radius: 12px;
	padding: 0 12px;
	margin-bottom: 10px;
	min-height: 48px;
}

.dsj-field:last-of-type { margin-bottom: 14px; }

.dsj-field svg {
	width: 20px;
	height: 20px;
	stroke: #9ca3af;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.dsj-field input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 14px;
	font-family: inherit;
	color: #111827;
	min-width: 0;
	outline: none;
}

.dsj-field input::placeholder { color: #9ca3af; }

.dsj-agree {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 11px;
	color: #6b7280;
	line-height: 1.5;
	margin-bottom: 14px;
}

.dsj-agree input {
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #2563eb;
}

.dsj-agree a {
	color: #2563eb;
	text-decoration: none;
}

.dsj-query-btn {
	flex: 1;
	min-width: 0;
	min-height: 48px;
	border: none;
	border-radius: 12px;
	background: linear-gradient(145deg, #3b82f6, #1d4ed8);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.dsj-query-btn:active { opacity: 0.92; }

.dsj-btn-row {
	display: flex;
	align-items: stretch;
	gap: 10px;
}

.dsj-share-btn {
	flex-shrink: 0;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 64px;
	padding: 0 10px;
	min-height: 48px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	color: #374151;
	font-size: 12px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.dsj-share-btn svg {
	width: 18px;
	height: 18px;
	stroke: #64748b;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dsj-share-btn:active { background: #f8fafc; }

.dsj-panel-back {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	padding: 0;
	border: none;
	background: none;
	color: #2563eb;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.dsj-repair-card {
	background: #fff;
	border-radius: 16px;
	padding: 16px 14px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.85);
	margin-bottom: 16px;
}

.dsj-repair-hd {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.dsj-repair-hd .txt strong {
	display: block;
	font-size: 16px;
	font-weight: 800;
	color: #111827;
}

.dsj-repair-hd .txt span {
	display: block;
	font-size: 12px;
	color: #9ca3af;
	margin-top: 4px;
}

.dsj-repair-hd .lock-ico {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #eff6ff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dsj-repair-hd .lock-ico svg {
	width: 20px;
	height: 20px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
}

.dsj-repair-inner {
	background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
	border-radius: 14px;
	padding: 14px 10px 16px;
}

.dsj-repair-inner > h4 {
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: #1e40af;
	margin-bottom: 14px;
}

.dsj-repair-hub {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.dsj-repair-hub .col-left,
.dsj-repair-hub .col-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 10px;
	color: #4b5563;
	line-height: 1.35;
}

.dsj-repair-hub .col-left span { text-align: right; }
.dsj-repair-hub .col-right span { text-align: left; }

.dsj-hub-core {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(145deg, #3b82f6, #1d4ed8);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.15);
}

.dsj-hub-core svg {
	width: 26px;
	height: 26px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

.dsj-repair-btn {
	width: 100%;
	min-height: 44px;
	border: none;
	border-radius: 12px;
	background: #2563eb;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.dsj-repair-btn:active { opacity: 0.92; }

.dsj-sec-tit {
	text-align: center;
	font-size: 16px;
	font-weight: 800;
	color: #111827;
	margin: 4px 0 12px;
}

.dsj-form-card + .dsj-sec-tit {
	margin-top: 14px;
}

.dsj-mini-hist {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.85);
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	margin-bottom: 12px;
}

.dsj-mini-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid #f1f5f9;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}

.dsj-mini-row:last-child { border-bottom: none; }

.dsj-mini-row:active { background: #f8fafc; }

.dsj-mini-row .user-ico {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #dbeafe;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dsj-mini-row .user-ico svg {
	width: 20px;
	height: 20px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
}

.dsj-mini-row .mid { flex: 1; min-width: 0; }

.dsj-mini-row .mid .name {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
}

.dsj-mini-row .mid .time {
	font-size: 11px;
	color: #9ca3af;
	margin-top: 3px;
}

.dsj-mini-row .risk {
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.dsj-mini-row .risk.low { color: #16a34a; }
.dsj-mini-row .risk.mid { color: #ea580c; }
.dsj-mini-row .risk.high { color: #dc2626; }

.ls-hist-right .status.risk-low { color: #16a34a; }
.ls-hist-right .status.risk-mid { color: #ea580c; }
.ls-hist-right .status.risk-high { color: #dc2626; }

/* 大数据修复 */
.ls-head.xf-head .bar {
	flex-direction: column;
	align-items: center;
	padding-bottom: 12px;
	min-height: 52px;
}

.ls-head.xf-head .ls-back { top: 22px; }

.xf-head-titles {
	text-align: center;
	line-height: 1.35;
}

.xf-head-titles strong {
	display: block;
	font-size: 17px;
	font-weight: 800;
}

.xf-head-titles span {
	display: block;
	font-size: 12px;
	opacity: 0.9;
	margin-top: 2px;
	font-weight: 500;
}

.xf-task-banner {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 14px;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}

.xf-task-banner:active { opacity: 0.94; }

.xf-task-banner svg {
	width: 22px;
	height: 22px;
	stroke: #ea580c;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.xf-task-banner .mid { flex: 1; min-width: 0; }

.xf-task-banner .mid strong {
	display: block;
	font-size: 14px;
	color: #9a3412;
	font-weight: 700;
}

.xf-task-banner .mid span {
	display: block;
	font-size: 11px;
	color: #c2410c;
	margin-top: 3px;
}

.xf-task-banner .chev {
	flex-shrink: 0;
	color: #fdba74;
}

.xf-clear-link {
	display: block;
	text-align: center;
	font-size: 13px;
	color: #6b7280;
	margin-top: 10px;
	background: none;
	border: none;
	font-family: inherit;
	cursor: pointer;
	width: 100%;
	padding: 4px;
}

.xf-detail-btn {
	margin-top: 12px;
}

.xf-model-card {
	background: #fff;
	border-radius: 16px;
	padding: 16px 14px;
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	border: 1px solid rgba(226, 232, 240, 0.85);
	margin-bottom: 14px;
}

.xf-model-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
}

.xf-model-hd h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 800;
	color: #111827;
}

.xf-model-hd h3 svg {
	width: 20px;
	height: 20px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
}

.xf-badge-warn {
	font-size: 11px;
	font-weight: 700;
	color: #ea580c;
	background: #ffedd5;
	padding: 4px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

.xf-model-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 12px;
}

.xf-model-grid .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 6px;
	font-size: 12px;
}

.xf-model-grid .item .lbl {
	color: #4b5563;
	flex: 1;
	min-width: 0;
}

.xf-model-grid .item .st {
	font-weight: 700;
	flex-shrink: 0;
}

.xf-model-grid .item .st.ok { color: #16a34a; }
.xf-model-grid .item .st.bad { color: #dc2626; }

.xf-model-foot {
	font-size: 11px;
	color: #9ca3af;
	margin-top: 14px;
	line-height: 1.5;
}

.xf-case-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.xf-case-hd h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 800;
	color: #111827;
}

.xf-case-hd h3 svg {
	width: 20px;
	height: 20px;
	stroke: #2563eb;
	fill: none;
	stroke-width: 2;
}

.xf-case-hd .sum {
	font-size: 12px;
	color: #6b7280;
}

.xf-case-item {
	background: #f8fafc;
	border-radius: 12px;
	padding: 14px;
	border: 1px solid #e2e8f0;
}

.xf-case-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.xf-case-top .who {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
}

.xf-case-top .date {
	font-size: 11px;
	color: #9ca3af;
	margin-top: 4px;
}

.xf-score-up {
	font-size: 15px;
	font-weight: 800;
	color: #16a34a;
	white-space: nowrap;
}

.xf-score-up em {
	font-style: normal;
	font-size: 18px;
}

.xf-case-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.xf-case-tags span {
	font-size: 10px;
	color: #2563eb;
	background: #eff6ff;
	padding: 4px 8px;
	border-radius: 6px;
}

.ls-hist-right .status.progress { color: #ea580c; }
.ls-hist-right .status.score-up { color: #16a34a; font-weight: 800; }

/* 动态活码 */
.hm-maker-tit {
	text-align: center;
	font-size: 18px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 16px;
}

.hm-steps {
	list-style: none;
	margin-bottom: 20px;
}

.hm-steps li {
	display: flex;
	gap: 10px;
	font-size: 13px;
	color: #4b5563;
	line-height: 1.55;
	margin-bottom: 12px;
}

.hm-steps li:last-child { margin-bottom: 0; }

.hm-steps .num {
	flex-shrink: 0;
	font-weight: 800;
	color: #2563eb;
}

.hm-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.hm-action-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(22, 87, 232, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.9);
	cursor: pointer;
	font-family: inherit;
	-webkit-tap-highlight-color: transparent;
}

.hm-action-card:active { opacity: 0.94; }

.hm-action-card .ico {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #ffedd5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	font-size: 28px;
	line-height: 1;
}

.hm-action-card span.label {
	font-size: 15px;
	font-weight: 700;
	color: #2563eb;
}

.ls-hist-right .status.scan {
	color: #16a34a;
	font-weight: 600;
	font-size: 12px;
}

.ls-tag-tpl {
	font-size: 10px;
	font-weight: 700;
	color: #2563eb;
	background: #eff6ff;
	padding: 2px 8px;
	border-radius: 6px;
	flex-shrink: 0;
}

/* 实用小工具 */
.gj-head .bar {
	flex-direction: column;
	align-items: center;
	padding-bottom: 14px;
	min-height: auto;
}

.gj-head .ls-back { top: 22px; }

.gj-head-titles {
	text-align: center;
	line-height: 1.4;
}

.gj-head-titles .main {
	display: block;
	font-size: 18px;
	font-weight: 800;
}

.gj-head-titles .sub {
	display: block;
	font-size: 12px;
	opacity: 0.92;
	margin-top: 4px;
	font-weight: 500;
}

.gj-body {
	padding: 16px 14px 20px;
}

.gj-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 10px;
	margin-bottom: 16px;
}

.gj-tool {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border-radius: 14px;
	padding: 16px 8px 12px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: 0 2px 12px rgba(22, 87, 232, 0.06);
	text-decoration: none;
	color: inherit;
	font-family: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

button.gj-tool {
	width: 100%;
}

.gj-tool:active { opacity: 0.94; }

.gj-badge {
	position: absolute;
	top: 6px;
	right: 6px;
	font-size: 9px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 6px;
	line-height: 1.2;
}

.gj-badge.hot {
	color: #fff;
	background: #ef4444;
}

.gj-badge.new {
	color: #fff;
	background: #22c55e;
}

.gj-ico {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.gj-ico svg {
	width: 26px;
	height: 26px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.gj-ico.c-blue { background: linear-gradient(145deg, #60a5fa, #2563eb); }
.gj-ico.c-orange { background: linear-gradient(145deg, #fb923c, #ea580c); }
.gj-ico.c-teal { background: linear-gradient(145deg, #2dd4bf, #0d9488); }
.gj-ico.c-pink { background: linear-gradient(145deg, #f472b6, #db2777); }
.gj-ico.c-purple { background: linear-gradient(145deg, #c084fc, #7c3aed); }
.gj-ico.c-sky { background: linear-gradient(145deg, #7dd3fc, #0284c7); }
.gj-ico.c-slate { background: linear-gradient(145deg, #64748b, #1e293b); }
.gj-ico.c-rose { background: linear-gradient(145deg, #fb7185, #e11d48); }
.gj-ico.c-green { background: linear-gradient(145deg, #4ade80, #16a34a); }

.gj-tool .name {
	font-size: 12px;
	font-weight: 600;
	color: #374151;
	text-align: center;
	line-height: 1.35;
}

.gj-tip {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 12px;
	color: #1e40af;
	line-height: 1.55;
}

.gj-tip .hash {
	font-weight: 800;
	flex-shrink: 0;
}

.gj-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	background: rgba(15, 23, 42, 0.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
}

.gj-modal.open {
	opacity: 1;
	visibility: visible;
}

.gj-modal-panel {
	width: 100%;
	max-width: 480px;
	max-height: min(88vh, 640px);
	background: #fff;
	border-radius: 20px 20px 0 0;
	box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.15);
	display: flex;
	flex-direction: column;
	transform: translateY(100%);
	transition: transform 0.28s ease;
	overflow: hidden;
}

.gj-modal.open .gj-modal-panel {
	transform: translateY(0);
}

.gj-modal-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 16px 12px;
	border-bottom: 1px solid #f1f5f9;
	flex-shrink: 0;
}

.gj-modal-hd h2 {
	font-size: 17px;
	font-weight: 800;
	color: #111827;
}

.gj-modal-close {
	border: none;
	background: none;
	font-size: 14px;
	color: #6b7280;
	font-family: inherit;
	cursor: pointer;
	padding: 6px 4px;
	-webkit-tap-highlight-color: transparent;
}

.gj-modal-bd {
	padding: 16px;
	overflow-y: auto;
	flex: 1;
}

.gj-field {
	margin-bottom: 14px;
}

.gj-field label {
	display: block;
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 8px;
}

.gj-field input {
	width: 100%;
	min-height: 48px;
	border: none;
	border-radius: 12px;
	background: #f3f4f6;
	padding: 0 14px;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	font-family: inherit;
	outline: none;
}

.gj-field input:focus {
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35);
}

.gj-result {
	background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	padding: 16px 14px;
	margin-top: 4px;
}

.gj-result .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	font-size: 14px;
}

.gj-result .row:not(:last-child) {
	border-bottom: 1px dashed rgba(147, 197, 253, 0.6);
}

.gj-result .row span {
	color: #4b5563;
}

.gj-result .row strong {
	font-size: 16px;
	font-weight: 800;
	color: #1d4ed8;
}

.gj-result .row.total strong {
	font-size: 17px;
}

.gj-field select,
.gj-field textarea,
.gj-field input[type="text"],
.gj-field input[type="date"] {
	width: 100%;
	min-height: 48px;
	border: none;
	border-radius: 12px;
	background: #f3f4f6;
	padding: 0 14px;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	font-family: inherit;
	outline: none;
	appearance: none;
}

.gj-field textarea {
	min-height: 120px;
	padding: 12px 14px;
	resize: vertical;
	font-weight: 500;
	line-height: 1.5;
}

.gj-field select:focus,
.gj-field textarea:focus,
.gj-field input[type="text"]:focus,
.gj-field input[type="date"]:focus {
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35);
}

.gj-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.gj-field-row .gj-field {
	margin-bottom: 0;
}

.gj-result-banner {
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	color: #1d4ed8;
	padding: 18px 14px;
	line-height: 1.5;
}

.gj-result-stack {
	padding: 14px 16px;
}

.gj-result-line {
	margin: 0;
	padding: 10px 0;
	font-size: 14px;
	color: #4b5563;
	border-bottom: 1px dashed rgba(147, 197, 253, 0.6);
}

.gj-result-line:last-child {
	border-bottom: none;
}

.gj-result-line strong {
	font-size: 16px;
	font-weight: 800;
	color: #1d4ed8;
}

.gj-qr-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	padding: 12px 0 4px;
}

.gj-qr-wrap img,
.gj-qr-wrap canvas {
	display: block;
	max-width: 180px;
	height: auto;
}

/* 会员等级 */
.hy-head .bar {
	flex-direction: column;
	align-items: center;
	padding-bottom: 14px;
	min-height: auto;
}

.hy-head .ls-back {
	top: 22px;
}

.hy-head-titles {
	text-align: center;
	line-height: 1.4;
}

.hy-head-titles .main {
	display: block;
	font-size: 18px;
	font-weight: 800;
}

.hy-head-titles .sub {
	display: block;
	font-size: 12px;
	opacity: 0.92;
	margin-top: 4px;
	font-weight: 500;
}

.hy-body {
	padding: 14px 14px 24px;
}

.hy-hero {
	border-radius: 18px;
	padding: 20px 18px 18px;
	color: #fff;
	margin-bottom: 14px;
	box-shadow: 0 12px 28px rgba(22, 87, 232, 0.22);
}

.hy-hero.theme-silver {
	background: linear-gradient(145deg, #94a3b8 0%, #64748b 55%, #475569 100%);
	box-shadow: 0 10px 24px rgba(71, 85, 105, 0.28);
}

.hy-hero.theme-gold {
	background: linear-gradient(145deg, #fde047 0%, #f59e0b 48%, #d97706 100%);
	color: #422006;
	box-shadow: 0 10px 24px rgba(217, 119, 6, 0.3);
}

.hy-hero.theme-gold .hy-hero-tag {
	background: rgba(255, 255, 255, 0.55);
	color: #92400e;
}

.hy-hero.theme-gold .hy-hero-btn {
	color: #92400e;
}

.hy-hero.theme-diamond {
	background: linear-gradient(145deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
}

.hy-hero.theme-platinum {
	background: linear-gradient(145deg, #e2e8f0 0%, #94a3b8 45%, #64748b 100%);
	color: #0f172a;
	box-shadow: 0 10px 24px rgba(100, 116, 139, 0.28);
}

.hy-hero.theme-platinum .hy-hero-tag {
	background: rgba(255, 255, 255, 0.65);
	color: #334155;
}

.hy-hero.theme-platinum .hy-hero-btn {
	color: #1e293b;
}

.hy-hero.theme-black {
	background: linear-gradient(145deg, #334155 0%, #0f172a 55%, #020617 100%);
	box-shadow: 0 12px 28px rgba(2, 6, 23, 0.45);
}

.hy-hero.theme-black .hy-hero-tag {
	background: rgba(251, 191, 36, 0.2);
	border: 1px solid rgba(251, 191, 36, 0.55);
	color: #fde68a;
}

.hy-hero.theme-black .hy-hero-monthly,
.hy-hero.theme-black .hy-hero-year {
	color: #fde68a;
}

.hy-hero-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.hy-hero-crown {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hy-hero-crown svg {
	width: 22px;
	height: 22px;
}

.hy-hero-name {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.hy-hero-name h2 {
	font-size: 20px;
	font-weight: 800;
}

.hy-hero-tag {
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
}

.hy-hero-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px 10px;
	margin-bottom: 14px;
}

.hy-hero-price strong {
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
}

.hy-hero-price .unit {
	font-size: 15px;
	font-weight: 600;
	opacity: 0.9;
}

.hy-hero-year {
	font-size: 13px;
	opacity: 0.88;
	font-weight: 600;
}

.hy-hero-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.hy-hero-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	line-height: 1.45;
	padding: 4px 0;
}

.hy-hero-list .check {
	flex-shrink: 0;
	font-weight: 800;
	opacity: 0.95;
}

.hy-hero-btn {
	border: none;
	background: #fff;
	color: #1d4ed8;
	font-size: 15px;
	font-weight: 800;
	padding: 12px 22px;
	border-radius: 999px;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hy-tabs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px;
	margin-bottom: 14px;
}

.hy-tabs::-webkit-scrollbar {
	display: none;
}

.hy-tab {
	flex-shrink: 0;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #374151;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 14px;
	border-radius: 999px;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
}

.hy-tab.active {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff;
}

.hy-table-wrap {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 12px;
}

.hy-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	table-layout: fixed;
}

.hy-table th,
.hy-table td {
	padding: 11px 6px;
	text-align: center;
	border-bottom: 1px solid #f1f5f9;
}

.hy-table thead th {
	background: #f8fafc;
	font-weight: 700;
	color: #374151;
}

.hy-table tbody th {
	text-align: left;
	padding-left: 12px;
	font-weight: 600;
	color: #4b5563;
	background: #fff;
}

.hy-table tbody tr:last-child th,
.hy-table tbody tr:last-child td {
	border-bottom: none;
}

.hy-table [data-col].col-active {
	background: #eff6ff;
	color: #1d4ed8;
	font-weight: 700;
}

.hy-table .unlimited {
	color: #2563eb;
	font-weight: 700;
}

.hy-note {
	font-size: 11px;
	color: #9ca3af;
	line-height: 1.55;
	margin-bottom: 14px;
}

.hy-tip {
	background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	padding: 14px 16px;
}

.hy-tip strong {
	display: block;
	font-size: 14px;
	color: #1e40af;
	margin-bottom: 6px;
}

.hy-tip p {
	font-size: 13px;
	color: #4b5563;
	line-height: 1.55;
	margin: 0;
}

/* 我的报告 */
.bg-body {
	background: #fff;
	min-height: calc(100dvh - 120px);
}

.bg-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bg-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px;
	border-bottom: 1px solid #f1f5f9;
}

.bg-item:last-child {
	border-bottom: none;
}

.bg-info {
	min-width: 0;
	flex: 1;
}

.bg-name {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
	margin: 0 0 6px;
}

.bg-time {
	font-size: 12px;
	color: #9ca3af;
	margin: 0;
	line-height: 1.3;
}

.bg-btn {
	flex-shrink: 0;
	padding: 6px 16px;
	border-radius: 999px;
	border: 1px solid #2563eb;
	background: #fff;
	color: #2563eb;
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.bg-btn:active {
	opacity: 0.85;
}

.bg-fab {
	position: fixed;
	right: 18px;
	bottom: calc(100px + env(safe-area-inset-bottom, 0));
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(145deg, #3b82f6, #1d4ed8);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
	z-index: 90;
}

.bg-fab-num {
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
}

/* 修复 — 选择客户 */
.xf-select-page { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
.xf-select-tip {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin-bottom: 14px;
}
.xf-select-list { display: flex; flex-direction: column; gap: 10px; }
.xf-select-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 14px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.xf-select-item:has(input:checked) {
	border-color: #2563eb;
	background: #f0f7ff;
	box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}
.xf-select-item input { position: absolute; opacity: 0; pointer-events: none; }
.xf-select-radio {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #cbd5e1;
	background: #fff;
	position: relative;
}
.xf-select-item:has(input:checked) .xf-select-radio {
	border-color: #2563eb;
	background: #2563eb;
}
.xf-select-item:has(input:checked) .xf-select-radio::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	border-radius: 50%;
	background: #fff;
}
.xf-select-body { flex: 1; min-width: 0; }
.xf-select-name { display: block; font-size: 14px; font-weight: 700; color: #1e293b; }
.xf-select-time { display: block; font-size: 12px; color: #94a3b8; margin-top: 4px; }
.xf-select-risk { flex-shrink: 0; font-size: 12px; font-weight: 700; text-align: right; max-width: 38%; }
.xf-select-risk.low { color: #16a34a; }
.xf-select-risk.mid { color: #ea580c; }
.xf-select-risk.high { color: #dc2626; }
.xf-select-foot {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid #e2e8f0;
	z-index: 50;
}
.xf-select-foot .dsj-repair-btn { width: 100%; margin: 0; }
.xf-select-foot .dsj-repair-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* 修复 — 添加客服经理 */
.xf-kefu-customer {
	background: #fff;
	border-radius: 14px;
	padding: 14px 16px;
	margin-bottom: 14px;
	border: 1px solid #e2e8f0;
}
.xf-kefu-customer .lbl { display: block; font-size: 12px; color: #64748b; margin-bottom: 4px; }
.xf-kefu-customer strong { font-size: 16px; color: #1e293b; }
.xf-kefu-customer .sub { display: block; font-size: 11px; color: #94a3b8; margin-top: 6px; word-break: break-all; }
.xf-kefu-card {
	background: linear-gradient(165deg, #eff6ff, #fff);
	border: 1px solid #bfdbfe;
	border-radius: 16px;
	padding: 16px;
	margin-bottom: 14px;
}
.xf-kefu-top {
	font-size: 14px;
	font-weight: 700;
	color: #1e40af;
	margin-bottom: 14px;
}
.xf-kefu-top .spark { margin-right: 4px; }
.xf-kefu-row { display: flex; gap: 14px; align-items: flex-start; }
.xf-kefu-qr {
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(8, 1fr);
	gap: 1px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 6px;
}
.xf-kefu-qr span { background: #f1f5f9; border-radius: 1px; }
.xf-kefu-qr span.on { background: #1e293b; }
.xf-kefu-qr.has-img {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
}
.xf-kefu-qr.has-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 4px;
}
.xf-kefu-wx { flex: 1; min-width: 0; }
.xf-kefu-wx .lbl { font-size: 12px; color: #64748b; margin-bottom: 4px; }
.xf-kefu-wx .id { font-size: 16px; font-weight: 800; color: #1e293b; margin-bottom: 10px; word-break: break-all; }
.xf-kefu-copy {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid #93c5fd;
	background: #fff;
	color: #2563eb;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}
.xf-kefu-copy svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.xf-kefu-actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}
.xf-kefu-phone,
.xf-kefu-addwx {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 42px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
.xf-kefu-phone {
	background: #fff;
	border: 1px solid #cbd5e1;
	color: #334155;
}
.xf-kefu-phone svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.xf-kefu-addwx {
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #fff;
}
.xf-kefu-addwx svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.xf-kefu-steps {
	background: #fff;
	border-radius: 14px;
	padding: 14px 16px;
	border: 1px solid #e2e8f0;
	margin-bottom: 14px;
}
.xf-kefu-steps h3 { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.xf-kefu-steps ol { padding-left: 18px; font-size: 13px; color: #64748b; line-height: 1.7; }
.xf-kefu-done { width: 100%; margin-bottom: 24px; }

/* 微信 H5 上传选择 */
.hy-upload-sheet-mask {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9999;
	display: none;
	align-items: flex-end;
	justify-content: center;
	padding: 0 8px calc(8px + env(safe-area-inset-bottom, 0));
}
.hy-upload-sheet-mask.show {
	display: flex;
}
.hy-upload-sheet-panel {
	width: 100%;
	max-width: 520px;
}
.hy-upload-sheet-group {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 8px;
}
.hy-upload-sheet-btn {
	display: block;
	width: 100%;
	border: none;
	background: #fff;
	font-size: 17px;
	color: #111827;
	padding: 16px;
	font-family: inherit;
	cursor: pointer;
	border-top: 1px solid #f1f5f9;
	-webkit-tap-highlight-color: transparent;
}
.hy-upload-sheet-group .hy-upload-sheet-btn:first-child {
	border-top: none;
}
.hy-upload-sheet-btn:active {
	background: #f8fafc;
}
.hy-upload-sheet-btn.cancel {
	border-radius: 12px;
	margin-bottom: 0;
	font-weight: 600;
}
.hy-upload-sheet-label {
	display: block;
	position: relative;
	margin: 0;
	text-align: center;
}
.hy-upload-sheet-label span {
	pointer-events: none;
}
.hy-upload-sheet-label input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	font-size: 0;
	cursor: pointer;
}

label.ls-upload,
button.ls-upload {
	width: 100%;
	font-family: inherit;
	text-align: center;
	appearance: none;
	-webkit-appearance: none;
}

.hy-upload-inline {
	display: flex;
	gap: 8px;
	margin: 0 0 12px;
}
.hy-upload-inline-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 44px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #dbeafe;
	color: #2563eb;
	font-size: 14px;
	font-weight: 600;
	overflow: hidden;
}
.hy-upload-inline-btn input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	font-size: 0;
}
.hy-upload-inline-btn span {
	pointer-events: none;
}

