/**
 * ########################################################################################################################
 * ### Header - Pc
 * ########################################################################################################################
 */
#header {
	display: none;
}

.header-pc-wrapper {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 60;
	color: #FFFFFF;
	font-size: var(--medium-size);
	transition: all 0.6s, color 0s, font-size 0.1s;
}

/* 隐藏 */
.header-pc-wrapper.hide {
	opacity: 0;
}

/* 第一屏 */
.header-pc-wrapper.first-screen {
	background: #333333;
}

/* 内页Header */
.header-pc-wrapper.header-inner-page {
	background: #FFFFFF;
	color: #000000;
}

/* 媒体查询 */
/*@media screen and (max-width: 1366px) {*/
/*  .header-pc-wrapper { font-size: 16px; }*/
/*}*/
/*@media screen and (max-width: 1024px) {*/
/*  .header-pc-wrapper { font-size: 15px; }*/
/*}*/
/*@media screen and (max-width: 860px) {*/
/*  .header-pc-wrapper { font-size: 13px; }*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*  .header-pc-wrapper { display: none; }*/
/*}*/



/* Logo */
/* 首页：显示白色Logo，隐藏黑色Logo */
.header-pc-wrapper .logo {
	width: 100%;
	display: block;
	transition: all 0.6s, color 0s, font-size 0.1s;
}

.header-pc-wrapper .logo-black {
	display: none;
}

/* 内页：显示黑色Logo，隐藏白色Logo */
.header-pc-wrapper.header-inner-page .logo {
	display: none;
}

.header-pc-wrapper.header-inner-page h1 {
	display: none;
}

.header-pc-wrapper.header-inner-page .logo-black {
	display: block;
}

/* Header收起 */
.header-pc-wrapper.shrink .logo-link {
	width: 100px;
	/* top: 24px; */
}

/* 菜单为偶数 */
.header-pc-wrapper .logo-link-fixed {
	position: absolute;
	width: 128px;
	left: 50%;
	/* top: 36px; */
	z-index: 9;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transform: translateX(-50%) scale(1);
	transition: all 0.6s, color 0s, font-size 0.1s;
}

/* 菜单为奇数 */
.header-pc-wrapper .logo-link-clone {
	width: 0px;
	overflow: hidden;
	transition: all 0.6s, color 0s, font-size 0.1s;
}

.header-pc-wrapper .logo-link-clone .logo {
	width: 80px;
	transform: scale(0);
	opacity: 0;
}

/* 媒体查询 */
@media screen and (max-width: 1366px) {
	.header-pc-wrapper .logo-link {
		width: 85px !important;
	}
}

@media screen and (max-width: 1024px) {
	.header-pc-wrapper .logo-link {
		width: 80px !important;
		;
	}
}

@media screen and (max-width: 860px) {
	.header-pc-wrapper .logo-link {
		width: 65px !important;
		;
	}
}



/* 导航菜单 */
/* 一级菜单 */
.header-pc-wrapper .nav-wrap-first {
	height: 180px;
	padding-top: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.6s, color 0s, font-size 0.1s;
}

.header-pc-wrapper .nav-list-first {
	flex: 1;
	flex-shrink: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.6s, color 0s, font-size 0.1s;
}

.header-pc-wrapper .item-first {
	padding: 0 0.36rem;
	height: 100%;
	display: flex;
	align-items: center;
	transition: all 0.6s, color 0s;
}

.header-pc-wrapper .link-first {
	transition: all 0.6s, color 0s, font-size 0.1s;
	letter-spacing: 1px;
}

.header-pc-wrapper .dropdown-icon {
	font-size: 16px;
}

/* Header收起 */
.header-pc-wrapper.shrink .nav-wrap-first {
	height: 110px;
	padding-top: 0;
}

/* 菜单为偶数 */
.header-pc-wrapper .nav-list-first_left {
	justify-content: flex-end;
}

.header-pc-wrapper .nav-list-first_right {
	justify-content: flex-start;
}

/* 菜单为奇数 */
.header-pc-wrapper.odd .item-first_logo-item {
	padding: 0;
}

/* Header收起 + 菜单为偶数 */
.header-pc-wrapper.shrink.even .nav-list-first_left {
	padding: 0 100px;
}

.header-pc-wrapper.shrink.even .nav-list-first_right {
	padding: 0 100px;
}

/* Header收起 + 菜单为奇数 */
.header-pc-wrapper.shrink.odd .logo-link-fixed {
	transform: translateX(-50%) scale(0);
	opacity: 0;
}

.header-pc-wrapper.shrink.odd .logo-link-clone {
	width: 80px;
}

.header-pc-wrapper.shrink.odd .logo-link-clone .logo {
	transform: scale(1);
	opacity: 1;
}

.header-pc-wrapper.shrink.odd .item-first_logo-item {
	padding: 0 0.36rem;
}

/* 中间logo右边的布局为二级导航在右边，图片在左边 */
.header-pc-wrapper.even .nav-list-first_right .child-nav-wrap {
	flex-direction: row-reverse;
}

/* 媒体查询 */
@media screen and (max-width: 1366px) {
	.header-pc-wrapper .nav-wrap-first {
		height: 150px;
		padding-top: 60px;
	}

	.header-pc-wrapper.shrink .nav-wrap-first {
		height: 90px;
	}

	.header-pc-wrapper.shrink.even .nav-list-first_left {
		padding: 0 80px;
	}

	.header-pc-wrapper.shrink.even .nav-list-first_right {
		padding: 0 80px;
	}
}

@media screen and (max-width: 1024px) {
	.header-pc-wrapper .nav-wrap-first {
		height: 130px;
		padding-top: 50px;
	}

	.header-pc-wrapper.shrink .nav-wrap-first {
		height: 85px;
	}

	.header-pc-wrapper.shrink.even .nav-list-first_left {
		padding: 0 46px;
	}

	.header-pc-wrapper.shrink.even .nav-list-first_right {
		padding: 0 46px;
	}
}

@media screen and (max-width: 860px) {
	.header-pc-wrapper .nav-wrap-first {
		padding-top: 40px;
	}

	.header-pc-wrapper.shrink .nav-wrap-first {
		height: 70px;
	}

	.header-pc-wrapper.shrink.even .nav-list-first_left {
		padding: 0 30px;
	}

	.header-pc-wrapper.shrink.even .nav-list-first_right {
		padding: 0 30px;
	}
}



/* 子导航菜单 */
.header-pc-wrapper .child-nav-wrap {
	position: fixed;
	z-index: -1;
	width: 100%;
	top: -100vh;
	background: #666666;
	left: 0;
	display: flex;
	opacity: 0;
	transition: opacity 0.6s 0.3s;
	color: #FFFFFF;
}

.header-pc-wrapper .child-nav-wrap.show {
	top: 180px;
	opacity: 1;
}

/* 左侧盒子 */
.header-pc-wrapper .left-group {
	flex: 1;
	flex-shrink: 0;
	position: relative;
	background: #1B1B1B;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 二级菜单 */
.header-pc-wrapper .nav-wrap-second {
	width: auto;
	max-width: 2rem;
	display: flex;
	justify-content: flex-end;
	padding: 0;
	font-size: 16px;
	height: 100%;
	position: relative;
	padding-top: 0.4rem;
}

/* .header-pc-wrapper.even .nav-list-first_right .nav-wrap-second { padding: 40px 0 40px 2.2rem; justify-content: flex-start; } */
.header-pc-wrapper .nav-list-second {
	display: flex;
	flex-direction: column;
}

.header-pc-wrapper .nav-list-second+.nav-list-second {
	margin-left: 60px;
}


.header-pc-wrapper .item-second {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

/* .header-pc-wrapper.even .nav-list-first_right .item-second { flex-direction: row-reverse; } */
/* .header-pc-wrapper.even .nav-list-first_right .item-second .arrow-icon-right { transform: rotate(180deg); } */
.header-pc-wrapper .item-second:nth-child(even) .link-second::after {
	left: 100%;
}

.header-pc-wrapper .item-second:nth-child(odd) .link-second::after {
	right: 100%;
}

.header-pc-wrapper .item-second.active:nth-child(even) .link-second::after {
	left: 0;
}

.header-pc-wrapper .item-second.active:nth-child(odd) .link-second::after {
	right: 0;
}

.header-pc-wrapper .link-second {
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 3px 0;
	white-space: nowrap;
}

.header-pc-wrapper .link-second::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	bottom: 0;
	transition: all 0.6s;
}

.header-pc-wrapper .arrow-icon-right {
	font-size: 12px;
	margin-left: 3px;
}

/* 三级菜单 */
.header-pc-wrapper .nav-wrap-third {
	position: absolute;
	z-index: 9;
	transition: opacity 0.6s;
	font-size: 15px;
	line-height: 1.2;
	opacity: 0;
	left: calc(100% + 0.2rem);
	width: 0;
	height: calc(100% - 0.86rem);
	top: 0.43rem;
	display: flex;
	justify-content: space-between;
	overflow-y: auto;
}

.header-pc-wrapper .nav-wrap-third::-webkit-scrollbar {
	width: 2px;
	background-color: rgba(255, 255, 255, .5);
}

.header-pc-wrapper .nav-wrap-third::-webkit-scrollbar-thumb {
	background: #fff;
}

/* .header-pc-wrapper.even .nav-list-first_right .nav-wrap-third { right: auto; left: -500px; text-align: right; } */
.header-pc-wrapper .item-second.active .nav-wrap-third {
	opacity: 1;
	width: 2rem;
}

/* .header-pc-wrapper.even .nav-list-first_right .item-second.active .nav-wrap-third { right: auto; left: 4.2rem; } */
/*.header-pc-wrapper .nav-wrap-third::-webkit-scrollbar{ width: 5px; height: 5px; background-color: #F5F5F5; }*/
/*.header-pc-wrapper .nav-wrap-third::-webkit-scrollbar-track{-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 10px; background-color: #F5F5F5; }*/
/*.header-pc-wrapper .nav-wrap-third::-webkit-scrollbar-thumb {border-radius: 5px;-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #bdbdbd; }*/
/*.header-pc-wrapper .nav-wrap-third::-webkit-scrollbar-thumb:hover{border-radius: 5px;-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);background: rgba(0,0,0,0.4);}*/
.header-pc-wrapper .item-third {
	padding: 4px 0;
}

.header-pc-wrapper .link-third {
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 3px 0;
}

.header-pc-wrapper .link-third::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	bottom: 0;
	transition: all 0.6s;
}

.header-pc-wrapper .item-third:nth-child(even) .link-third::after {
	left: 100%;
}

.header-pc-wrapper .item-third:nth-child(odd) .link-third::after {
	right: 100%;
}

.header-pc-wrapper .item-third.active:nth-child(even) .link-third::after {
	left: 0;
}

.header-pc-wrapper .item-third.active:nth-child(odd) .link-third::after {
	right: 0;
}

.header-pc-wrapper .item-third.more {
	cursor: pointer;
}

.header-pc-wrapper .item-third.hidden {
	display: none;
}

.header-pc-wrapper .item-third.show {
	display: block;
}

/* 右侧盒子 */
.header-pc-wrapper .right-group {
	flex: 1;
	flex-shrink: 0;
}

.header-pc-wrapper .imgs-wrap {
	background: #333333;
	padding: 60px 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-pc-wrapper .img-box {
	display: block;
	width: 80%;
}

.header-pc-wrapper .img-outer {
	width: 100%;
	padding-bottom: 50%;
	position: relative;
}

.header-pc-wrapper .img-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.header-pc-wrapper .img {
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(1);
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	z-index: 9;
	left: 0;
	top: -100%;
	transition: all 0.6s;
}

.header-pc-wrapper .img.show {
	transform: scale(1);
	opacity: 1;
	top: 0;
}

/* Header收起时 */
.header-pc-wrapper.shrink .child-nav-wrap {
	top: -100vh;
}

.header-pc-wrapper.shrink .child-nav-wrap.show {
	/* top: 80px; */
	top: 110px;
}

/* 媒体查询 */
@media screen and (max-width: 1366px) {
	.header-pc-wrapper .child-nav-wrap.show {
		top: 150px;
	}

	.header-pc-wrapper.shrink .child-nav-wrap.show {
		top: 70px;
	}

	.header-pc-wrapper .nav-wrap-second {
		font-size: 14px;
		padding-bottom: 80px;
	}

	.header-pc-wrapper .item-second {
		padding: 3px 0;
	}

	.header-pc-wrapper .nav-wrap-third {
		font-size: 14px;
	}

	.header-pc-wrapper .item-third {
		padding: 3px 0;
	}
}

@media screen and (max-width: 1024px) {
	.header-pc-wrapper .child-nav-wrap.show {
		top: 130px;
	}

	.header-pc-wrapper.shrink .child-nav-wrap.show {
		top: 68px;
	}

	.header-pc-wrapper .nav-wrap-second {
		font-size: 13px;
		padding-bottom: 80px;
	}

	.header-pc-wrapper .item-second {
		padding: 3px 0;
	}

	.header-pc-wrapper .nav-wrap-third {
		font-size: 13px;
	}

	.header-pc-wrapper .item-third {
		padding: 3px 0;
	}
}

@media screen and (max-width: 860px) {
	.header-pc-wrapper .child-nav-wrap.show {
		top: 100px;
	}

	.header-pc-wrapper.shrink .child-nav-wrap.show {
		top: 58px;
	}

	.header-pc-wrapper .nav-wrap-second {
		font-size: 12px;
		padding-bottom: 80px;
	}

	.header-pc-wrapper .item-second {
		padding: 2px 0;
	}

	.header-pc-wrapper .nav-wrap-third {
		font-size: 12px;
	}

	.header-pc-wrapper .item-third {
		padding: 2px 0;
	}
}



/* 鼠标移动到菜单上时添加底色 */
.header-pc-wrapper:not(.first-screen):hover .logo-link-fixed {
	background: #333333;
}

.header-pc-wrapper:not(.first-screen):hover .nav-wrap-first {
	background: #333333;
}



/**
 * ########################################################################################################################
 * ### Header - Mo
 * ########################################################################################################################
 */
/* Wrap */
.header-mo-wrapper .header-mo-wrap {
	position: fixed;
	z-index: 15;
	width: 100%;
	height: 58px;
	left: 0;
	top: -100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #FFFFFF;
	padding: 0 0.72rem;
	transition: all 0.6s;
	background: #000000;
}

/* 内页 */
.header-mo-wrapper.header-inner-page .header-mo-wrap {
	background: #FFFFFF;
	color: #000000;
}

/* Logo */
/* 首页：显示白色Logo，隐藏黑色Logo */
.header-mo-wrapper .header-mo-wrap .logo {
	width: 96px;
}

.header-mo-wrapper .header-mo-wrap .logo-black {
	display: none;
}

/* 内页：显示黑色Logo，隐藏白色Logo */
.header-mo-wrapper.header-inner-page .header-mo-wrap .logo {
	display: none;
}

.header-mo-wrapper.header-inner-page .header-mo-wrap .logo-black {
	display: block;
}

/* 菜单按钮 */
.header-mo-wrapper .header-mo-wrap .menus-icon {
	font-size: 44px;
}



/* Mask */
.header-mo-wrapper .header-mo-content {
	position: fixed;
	z-index: 180;
	width: 100%;
	height: 100%;
	left: -100%;
	top: 0;
	background: #333333;
	transition: all 0.3s;
	opacity: 0;
	display: flex;
	flex-direction: column;
}

.header-mo-wrapper .header-mo-content.show {
	opacity: 1;
	left: 0;
}

.header-mo-wrapper .header-mo-content.hidden {
	opacity: 0;
	transition: all 0.6s;
}



/* Top */
.header-mo-wrapper .header-mo-content .top-wrap {
	width: 100%;
	height: 120px;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #FFFFFF;
	padding: 0 0.72rem;
	flex-shrink: 0;
}

.header-mo-wrapper .header-mo-content .logo {
	width: 96px;
}

.header-mo-wrapper .header-mo-content .close-icon {
	font-size: 20px;
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

/* 导航菜单 */
.header-mo-wrapper .header-mo-navs {
	flex: 1;
	overflow-y: auto;
}

.header-mo-wrapper .header-mo-navs-content {
	color: #FFFFFF;
	font-size: 0.24rem;
	padding: 0.72rem 0.72rem 1rem;
}

/* 一级菜单 */
.header-mo-wrapper .item-first {
	font-size: 18px;
	padding: 6px 0;
}

.header-mo-wrapper .link-first {
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 4px 0;
}

.header-mo-wrapper .link-first::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	bottom: 0;
	z-index: 9;
	transition: all 0.6s;
}

.header-mo-wrapper .item-first:nth-child(even) .link-first::after {
	left: 100%;
}

.header-mo-wrapper .item-first:nth-child(odd) .link-first::after {
	right: 100%;
}

.header-mo-wrapper .item-first.active:nth-child(even) .link-first::after {
	left: 0;
}

.header-mo-wrapper .item-first.active:nth-child(odd) .link-first::after {
	right: 0;
}

.header-mo-wrapper .arrow-icon-right {
	transition: all 0.6s;
}

.header-mo-wrapper .item-first.active .arrow-icon-right-first {
	transform: rotate(90deg);
}

/* 二级菜单 */
.header-mo-wrapper .nav-wrap-second {
	height: 0;
	overflow: hidden;
	font-size: 15px;
	transition: all 0.6s;
}

.header-mo-wrapper .nav-list-second {
	padding: 10px 10px 0;
}

.header-mo-wrapper .item-second {
	padding: 6px;
}

.header-mo-wrapper .link-second {
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 4px 0;
}

.header-mo-wrapper .link-second::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	bottom: 0;
	z-index: 9;
	transition: all 0.6s;
}

.header-mo-wrapper .item-second:nth-child(even) .link-second::after {
	left: 100%;
}

.header-mo-wrapper .item-second:nth-child(odd) .link-second::after {
	right: 100%;
}

.header-mo-wrapper .item-second.active:nth-child(even) .link-second::after {
	left: 0;
}

.header-mo-wrapper .item-second.active:nth-child(odd) .link-second::after {
	right: 0;
}

.header-mo-wrapper .item-second.active .arrow-icon-right-second {
	transform: rotate(90deg);
}

/* 三级菜单 */
.header-mo-wrapper .nav-wrap-third {
	height: 0;
	overflow: hidden;
	font-size: 12px;
	transition: all 0.6s;
}

.header-mo-wrapper .nav-list-third {
	padding: 10px 10px 0;
}

.header-mo-wrapper .item-third {
	padding: 4px;
}

.header-mo-wrapper .link-third {
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 4px 0;
}

.header-mo-wrapper .link-third::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	bottom: 0;
	z-index: 9;
	transition: all 0.6s;
}

.header-mo-wrapper .item-third:nth-child(even) .link-third::after {
	left: 100%;
}

.header-mo-wrapper .item-third:nth-child(odd) .link-third::after {
	right: 100%;
}

.header-mo-wrapper .item-third.active:nth-child(even) .link-third::after {
	left: 0;
}

.header-mo-wrapper .item-third.active:nth-child(odd) .link-third::after {
	right: 0;
}

/* 媒体查询 */
@media screen and (max-width: 768px) {
	.header-mo-wrapper .header-mo-wrap {
		top: 0;
	}
	.header-pc-wrapper{
		display: none;
	}
}