body {
	margin: 0;
	width: 100%;
	overflow-x: hidden;
	min-width: 1200px;
}

.index-top {
	width: 100%;
	height: 85px;
	position: relative;
	z-index: 10001;
	box-sizing: border-box;
}

.index-top__inner {
	width: 100%;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0;
}

.index-top--light {
	background: var(--color-header, #fff);
	border-bottom: 1px solid rgba(22, 119, 255, 0.2);
}

.index-top__logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 0 12px 0 0;
}

.index-top__logo img {
	height: 58px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	object-position: left center;
}

.index-top__nav {
	flex: 0 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 0;
	min-width: 0;
	height: 85px;
}

.index-top__nav > div:not(.nav-mega-wrap) {
	flex: 0 0 auto;
	min-width: 0;
	height: 85px;
	box-sizing: border-box;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	white-space: nowrap;
	padding: 0 16px;
	color: var(--color-header-text, #1e3a5f);
	transition: color 0.15s ease, background-color 0.15s ease;
}

.index-top__nav > div:not(.nav-mega-wrap):hover,
.index-top--light .index-top__nav > div:not(.nav-mega-wrap):hover {
	color: var(--color-primary, #1677ff);
	background: transparent;
}

.nav-mega-wrap {
	position: relative;
	flex: 0 0 auto;
	min-width: 0;
	height: 85px;
	z-index: 10002;
}

.nav-mega-wrap__label {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	white-space: nowrap;
	padding: 0 16px;
	color: var(--color-header-text, #1e3a5f);
	transition: color 0.15s ease;
}

.nav-mega-wrap:hover .nav-mega-wrap__label {
	color: var(--color-primary, #1677ff);
	background: transparent;
}

.nav-mega-wrap:hover .nav-mega-wrap__label::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 28px;
	height: 3px;
	margin-left: -14px;
	background: var(--color-primary, #1677ff);
	border-radius: 2px 2px 0 0;
}

.nav-mega-wrap__label {
	position: relative;
}

.index-top__utils {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 4px;
	height: 85px;
	padding-left: 12px;
}

.index-top__util {
	font-size: 14px;
	color: var(--color-text, #1a1a1a);
	text-decoration: none;
	padding: 8px 14px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	transition: color 0.15s ease;
}

.index-top__util:hover,
.index-top__util--search:hover {
	color: var(--color-primary, #1677ff);
}

.index-top__util--search::before {
	content: "⌕ ";
	opacity: 0.7;
}

.nav-mega[hidden] {
	display: none !important;
}
