.help-overlay-launcher {
	position: fixed;
	right: 28px;
	bottom: 30px;
	z-index: 999980;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	color: #1f74ff;
	box-shadow: 0 8px 22px rgba(31, 116, 255, 0.38), 0 0 14px rgba(77, 149, 255, 0.24);
	cursor: pointer;
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	isolation: isolate;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	will-change: transform, box-shadow;
	-webkit-animation: help-launcher-breathe 1.8s ease-in-out infinite;
	animation: help-launcher-breathe 1.8s ease-in-out infinite;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.help-overlay-launcher:before {
	content: "?";
	position: relative;
	z-index: 1;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
}

.help-overlay-launcher:after {
	content: "";
	position: absolute;
	inset: -9px;
	z-index: 0;
	border: 3px solid rgba(31, 116, 255, 0.72);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(31, 116, 255, 0.14), 0 0 26px 8px rgba(31, 116, 255, 0.48);
	pointer-events: none;
	-webkit-animation: help-launcher-glow 2.1s ease-in-out infinite;
	animation: help-launcher-glow 2.1s ease-in-out infinite;
}

.help-overlay-launcher:hover {
	filter: drop-shadow(0 0 8px rgba(31, 116, 255, 0.5));
}

.help-overlay-launcher:focus-visible {
	outline: 3px solid rgba(31, 116, 255, 0.34);
	outline-offset: 4px;
}

.help-overlay-launcher:active {
	-webkit-animation: none;
	animation: none;
	-webkit-transform: scale(0.96);
	transform: scale(0.96);
}

@-webkit-keyframes help-launcher-breathe {
	0%,
	100% {
		-webkit-transform: scale(0.92);
		transform: scale(0.92);
		box-shadow: 0 8px 22px rgba(31, 116, 255, 0.38), 0 0 14px rgba(77, 149, 255, 0.24);
	}
	50% {
		-webkit-transform: scale(1.14);
		transform: scale(1.14);
		box-shadow: 0 10px 32px rgba(31, 116, 255, 0.68), 0 0 26px rgba(77, 149, 255, 0.56);
	}
}

@keyframes help-launcher-breathe {
	0%,
	100% {
		transform: scale(0.92);
		box-shadow: 0 8px 22px rgba(31, 116, 255, 0.38), 0 0 14px rgba(77, 149, 255, 0.24);
	}
	50% {
		transform: scale(1.14);
		box-shadow: 0 10px 32px rgba(31, 116, 255, 0.68), 0 0 26px rgba(77, 149, 255, 0.56);
	}
}

@-webkit-keyframes help-launcher-glow {
	0% {
		opacity: 0.9;
		-webkit-transform: scale(0.88);
		transform: scale(0.88);
	}
	50% {
		opacity: 0.42;
		-webkit-transform: scale(1.08);
		transform: scale(1.08);
	}
	100% {
		opacity: 0.16;
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
}

@keyframes help-launcher-glow {
	0% {
		opacity: 0.9;
		transform: scale(0.88);
	}
	50% {
		opacity: 0.42;
		transform: scale(1.08);
	}
	100% {
		opacity: 0.16;
		transform: scale(1.3);
	}
}

.help-overlay-root {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000000;
	font-family: Microsoft YaHei, Arial, sans-serif;
	color: #172033;
	overflow: hidden;
}

.help-overlay-mask {
	position: absolute;
	background: rgba(0, 0, 0, 0.58);
}

.help-overlay-mask-full {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.help-overlay-highlight {
	position: absolute;
	border: 3px solid #ffd166;
	border-radius: 10px;
	box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.58), 0 0 18px rgba(255, 209, 102, 0.9);
	pointer-events: none;
	box-sizing: border-box;
	transition: left 0.18s ease, top 0.18s ease, width 0.18s ease, height 0.18s ease;
}

.help-overlay-highlight.is-hidden {
	display: none;
}

.help-overlay-force-open > .dropdown-menu {
	display: block !important;
}

.help-overlay-card {
	position: absolute;
	width: 380px;
	max-width: calc(100% - 36px);
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
	box-sizing: border-box;
	overflow: hidden;
}

.help-overlay-card-inner {
	padding: 22px 24px 18px;
}

.help-overlay-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-right: 26px;
}

.help-overlay-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	color: #101828;
}

.help-overlay-close {
	position: absolute;
	right: 12px;
	top: 12px;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #667085;
	cursor: pointer;
	font-size: 24px;
	line-height: 28px;
	padding: 0;
}

.help-overlay-close:hover {
	background: #f2f4f7;
	color: #101828;
}

.help-overlay-body {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.72;
	color: #344054;
}

.help-overlay-body p {
	margin: 0 0 8px;
}

.help-overlay-body p:last-child {
	margin-bottom: 0;
}

.help-overlay-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
}

.help-overlay-counter {
	font-size: 13px;
	color: #667085;
	white-space: nowrap;
}

.help-overlay-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.help-overlay-btn {
	min-width: 72px;
	height: 34px;
	border: 1px solid #d0d5dd;
	border-radius: 6px;
	background: #ffffff;
	color: #344054;
	font-size: 14px;
	cursor: pointer;
	padding: 0 14px;
	box-sizing: border-box;
}

.help-overlay-btn:hover {
	background: #f9fafb;
}

.help-overlay-btn-primary {
	border-color: #2f80ff;
	background: #2f80ff;
	color: #ffffff;
}

.help-overlay-btn-primary:hover {
	background: #176ef0;
}

.help-overlay-btn[disabled] {
	cursor: default;
	opacity: 0.45;
}

.help-overlay-selector {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 520px;
	max-width: calc(100% - 36px);
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 24px;
}

.help-overlay-selector-title {
	font-size: 22px;
	font-weight: 700;
	color: #101828;
	margin: 0 36px 6px 0;
}

.help-overlay-selector-desc {
	font-size: 14px;
	color: #667085;
	margin-bottom: 18px;
}

.help-overlay-module-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.help-overlay-module-btn {
	height: 42px;
	border: 1px solid #d9e4ff;
	border-radius: 7px;
	background: #f7fbff;
	color: #174ea6;
	cursor: pointer;
	font-size: 15px;
	text-align: left;
	padding: 0 14px;
	box-sizing: border-box;
}

.help-overlay-module-btn:hover,
.help-overlay-module-btn.is-current {
	border-color: #2f80ff;
	background: #eef5ff;
	color: #0f55c8;
}

@media (prefers-reduced-motion: reduce) {
	.help-overlay-launcher {
		-webkit-animation-duration: 3.6s;
		animation-duration: 3.6s;
	}

	.help-overlay-launcher:after {
		-webkit-animation-duration: 3.6s;
		animation-duration: 3.6s;
	}
}

@media (max-width: 640px) {
	.help-overlay-launcher {
		right: 18px;
		bottom: 18px;
		width: 48px;
		height: 48px;
	}

	.help-overlay-launcher:before {
		font-size: 27px;
	}

	.help-overlay-card-inner {
		padding: 18px 18px 16px;
	}

	.help-overlay-title {
		font-size: 18px;
	}

	.help-overlay-body {
		font-size: 15px;
	}

	.help-overlay-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.help-overlay-actions {
		justify-content: space-between;
	}

	.help-overlay-btn {
		flex: 1;
	}

	.help-overlay-module-list {
		grid-template-columns: 1fr;
	}
}
