.panel-header {
	--surface-foreground: transparent;
	--surface-background: transparent;
	--surface-mobile-nav: transparent;
	--text: var(--gray-100);
	--text-alt: var(--gray-900);
	
	position: absolute;
	width: 100%;
	color: var(--text);
	z-index: 4;
	transition: background 200ms ease-in;
}

.hamburger-open .panel-header { background: var(--blue); }

.no-hero:not(.details-page) .panel-header {
	position: relative;
	background: var(--blue);
}

@media (min-width: 64em) {
	.hamburger-open .panel-header { background: var(--transparent); }

	.hamburger-open .no-hero .panel-header { background: var(--blue); }
}

.panel-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 20px);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	transition: opacity 200ms ease-in;
}

.hamburger-open .panel-header::before { opacity: 0; }

.no-hero .panel-header::before { content: none; }

@media (min-width: 64em) {
	.hamburger-open .panel-header::before { opacity: 1; }
}

.panel-header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 11px;
	background: url(/includes/public/assets/shared/patterns/huakai.png);
	background-repeat: repeat-x;
	background-size: cover;
	pointer-events: none;
}

.panel-header .header-inner {
	position: relative;
	z-index: 11;
	display: flex;
	flex-direction: column-reverse;
}

.panel-header .secondary-nav-container {
	display: none;
	background-color: var(--surface-background);
}

@media (min-width: 64em) {
	.panel-header .secondary-nav-container { display: block; }
}

.panel-header .primary-content-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: var(--space-8) var(--space-5) 0;
	background-color: transparent;
}

@media (min-width: 64em) {
	.panel-header .primary-content-container {
		padding: 42px var(--space-5) 0;
		background-color: transparent;
	}
}

@media (min-width: 90em) {
	.panel-header .primary-content-container { padding-right: var(--space-10); }
}

.panel-header .primary-content-container .contentRender_name_plugins_common_logo {
	max-width: 136px;
	padding: 0;
}

@media (min-width: 90em) {
	.panel-header .primary-content-container .contentRender_name_plugins_common_logo {
		padding-top: var(--space-1);
		max-width: 213px;
	}
}

.panel-header .primary-content-container .nav-widgets-container {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 10px;
}

.panel-header .primary-content-container .widgets > :not(.contentRender_name_plugins_weather_weather) { display: none; }

@media (min-width: 64em) {
	.panel-header .primary-content-container .nav-widgets-container {
		flex-direction: row;
		gap: var(--space-3);
	}

	.panel-header .primary-content-container .nav-widgets-container .navigation-wrapper {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.panel-header .primary-content-container .widgets {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.panel-header .primary-content-container .widgets > :not(.contentRender_name_plugins_weather_weather) { display: block; }
}

@media (min-width: 90em) {
	.panel-header .primary-content-container .nav-widgets-container { gap: var(--space-8); }
}

.panel-header .mobile-nav-container {
	position: absolute;
	z-index: 10;
	opacity: 0;
	width: 100%;
	pointer-events: none;
	transition: opacity 200ms ease-in;
}

.panel-header .mobile-nav-container.active {
	display: flex;
	justify-content: flex-end;
	opacity: 1;
	pointer-events: all;
}

@media (min-width: 64em) {
	.panel-header .mobile-nav-container.active { display: none; }
}

.panel-header .mobile-nav-container .mobile-nav {
	width: 100%;
	background-color: var(--blue);
	padding-bottom: var(--space-12);
	-webkit-filter: drop-shadow(0 25px 10px rgba(0, 0, 0, 0.45));
	filter: drop-shadow(0 25px 10px rgba(0, 0, 0, 0.45));
	border-bottom: 1px solid var(--gray-70);
}

.panel-header .mobile-nav-container.active .mobile-nav { pointer-events: all; }

.panel-header .mobile-nav .widgets {
	display: block;
	padding: var(--space-5);
	padding-bottom: var(--space-4);
	background: var(--blue);
}

.panel-header .mobile-nav .mobile-secondary-nav { padding-top: var(--space-10); }