:root {
	--header-height: 90px;
}

.header {
	padding-left: 3.125vw;
	padding-right: 3.125vw;
	width: 100%;
	height: var(--header-height);
	background: white;
	z-index: 999;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: 0.4s;
	/* &.bgn {
		background: transparent;
	}
	&.bgb {
		background: rgba(#fff, 1);
	} */
}

.header-logo {
	width: 11.25vw;
	height: 2.604vw;
}

@media (max-width: 1700px) and (min-width: 1100px) {
	.header-logo {
		transform: scale(0.8);
	}
}

.header-nav {
	height: 100%;
	flex: 1;
	display: flex;
	justify-content: space-between;
}

.header-nav-list {
	height: 100%;
	display: flex;
}

.header-nav-list-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.header-nav-list-item-links {
	position: relative;
}

.header-nav-list-item-links::after {
	content: "";
	position: absolute;
	right: -20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 24px;
	height: 23px;
	background: url("../img/icons/head-down.png") no-repeat;
	background-size: cover;
	transition: 0.3s;
}

.header-nav-list-item:not(.no-child)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: calc(100% - 56px);
	height: 3px;
	transition: all 0.3s;
	background-color: #1452BA;
	transform: translateX(-50%) scale(0);
}

.header-nav-list-item > a {
	font-size: 16px;
	line-height: 20px;
	color: #333;
	font-weight: bold;
	transition: all 0.1s;
	display: flex;
	align-items: center;
	padding: 10px 0;
	margin: 0 1.2vw;
	height: 100%;
}

.header-nav-list-item-child {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: max-content;
	min-width: 100%;
	transform: translateX(-50%) translateY(100%) scaleY(0);
	transform-origin: center top;
	transition: transform 0.3s;
}

.header-nav-list-item-child-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.91);
}

.header-nav-list-item-child-item > a {
	font-size: 14px;
	color: #333333;
	line-height: 22px;
	display: block;
	padding: 14px 10px;
	width: 100%;
}

.header-nav-list-item-child-item:hover {
	background-color: #fff;
}

.header-nav-list-item-child-item:hover::before {
	position: absolute;
	content: "";
	display: block;
	left: 0;
	top: 0;
	height: 100%;
	width: 2px;
	background-color: #1452BA;
}

.header-nav-list-item-child-item:hover > a {
	color: #1452BA;
	font-weight: bold;
}

.header-nav-list-item:hover > a {
	color: #1452BA;
}

.header-nav-list-item:hover::after {
	transform: translateX(-50%) scale(1);
}

.header-nav-list-item:hover .header-nav-list-item-child {
	transform: translateX(-50%) translateY(100%) scaleY(1);
}

.header-nav-list-item:hover .header-nav-list-item-child-item__child {
	opacity: 1;
}

.header-nav-list-item:hover .header-nav-list-item-links::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 24px;
	height: 23px;
	background-size: 100% !important;
	transition: 0.3s;
	background: url("../img/icons/hover_jiantou_icon.png") no-repeat;
}

.header-lang {
	margin-left: 4vw;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-lang-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s;
}

.header-lang-item__img {
	width: 24px;
	height: 23px;
	display: block;
}
.scroll-top-class{
	display: none;
}
.header-lang-item__text {
	margin-left: 9px;
	color: #333;
}

.header-lang-item:not(:last-child) {
	margin-right: 18px;
}

.page-continuity__bottom {
	/* @include calcVh(height, 320); */
	background: #363636;
	color: #ffffff;
}

.page-continuity__bottom-container {
	display: flex;
	justify-content: space-between;
	padding-top: 2.2222222222vh;
	padding-bottom: 1.4814814815vh;
}


.page-continuity__bottom-container-left {
	display: flex;
}

.page-continuity__bottom-container-left-list {
	margin-right: 30px;
}


.page-continuity__bottom-container-left-list-th {
	font-weight: 600;
	font-size: 16px;
	line-height: 23px;
	margin-bottom: 1.4814814815vh;
}


.page-continuity__bottom-container-left-list-item {
	font-size: 14px;
	line-height: 20px;
}


.page-continuity__bottom-container-left-list-item a {
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s;
}

.page-continuity__bottom-container-left-list-item a:hover {
	color: #ffffff;
}

.page-continuity__bottom-container-left-list-item:not(:last-of-type) {
	margin-bottom: 12px;
}

.page-continuity__bottom-container-center {
	padding: 0 20px;
	max-width: 500px;
}

.page-continuity__bottom-container-center-titleDiv {
	display: flex;
	align-items: flex-end;
	margin-bottom: 12px;
}

.page-continuity__bottom-container-center-titleDiv-item {
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	line-height: 29px;
}

.page-continuity__bottom-container-center-titleDiv-itemS {
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.502);
	line-height: 27px;
	margin-left: 20px;
}

.page-continuity__bottom-container-center-list-li {
	display: flex;
	align-items: flex-start;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	line-height: 23px;
	margin-bottom: 17px;
}

.page-continuity__bottom-container-center-list-li-item {
	display: flex;
	align-items: center;
}

.page-continuity__bottom-container-center-list-li-icon {
	width: 16px;
	height: 16px;
	display: block;
	margin-right: 12px;
	flex-shrink: 0;
}

.page-continuity__bottom-container-center-list-li-text {
	flex-shrink: 0;
}

.page-continuity__bottom-container-center-list-li-textItem {
	flex: 1;
}

.page-continuity__bottom-container-right {
	font-size: 16px;
	line-height: 23px;
	padding-top: 4px;
	flex-shrink: 0;
}

.page-continuity__bottom-container-right-header {
	display: flex;
	align-items: center;
}

.page-continuity__bottom-container-right-header-img {
	width: 120px;
	height: 120px;
	margin-right: 20px;
}

.page-continuity__bottom-container-right-header-info-name {
	font-size: 20px;
	font-weight: 600;
	line-height: 29px;
	margin-bottom: 20px;
}

.page-continuity__bottom-footer {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	background: #212121;
}

.page-continuity__bottom-footer-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	overflow: visible !important;
}

.page-continuity__bottom-footer-container-left span:not(:last-child) {
	margin-right: 30px;
}

.page-continuity__bottom-footer-container-right {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
}

.page-continuity__bottom-footer-container-right-label {
	margin-right: 12px;
}

.page-continuity__bottom-footer-container-right-select {
	position: relative;
}

.page-continuity__bottom-footer-container-right-select-item {
	width: 190px;
	height: 36px;
	background: #ffffff;
	border-radius: 2px;
	padding: 0 12px 0 20px;
	color: #666666;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	box-sizing: border-box;
}

.page-continuity__bottom-footer-container-right-select-item-icon {
	width: 24px;
	height: 24px;
	transition: all 0.2s;
}

.page-continuity__bottom-footer-container-right-select-box {
	position: absolute;
	opacity: 0;
	display: none;
	bottom: 0;
	padding-bottom: 0;
	min-width: 100%;
	right: 0;
	transition: all 0.4s;
}

.page-continuity__bottom-footer-container-right-select-list {
	min-width: 100%;
	background: #ffffff;
	border-radius: 2px;
	overflow: hidden;
}

.page-continuity__bottom-footer-container-right-select-list-item {
	min-width: 100%;
}

.page-continuity__bottom-footer-container-right-select-list-item a {
	padding: 0 12px;
	line-height: 40px;
	display: block;
	min-width: 100%;
	height: 100%;
	color: #666666;
	transition: all 0.2s;
}

.page-continuity__bottom-footer-container-right-select-list-item a:hover {
	color: #333;
	background-color: rgba(135, 206, 235, 0.3);
}

.page-continuity__bottom-footer-container-right-select:hover .page-continuity__bottom-footer-container-right-select-item-icon {
	transform: rotate(180deg);
}

.page-continuity__bottom-footer-container-right-select:hover .page-continuity__bottom-footer-container-right-select-box {
	bottom: 100%;
	display: block;
	opacity: 1;
	padding-bottom: 10px;
}

.header-nav-list-item.active > a {
	color: #1452BA;
	position: relative;
}

.header-nav-list-item.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	display: block;
	transition: all 0.3s;
	background-color: #1452BA;
	transform: translateX(-50%);
}

.header-lang-item {
	position: relative;
}

.header-lang-item .search-input {
	border-radius: 8px;
	display: none;
	border: 1px solid white;
	color: white;
	justify-content: space-between;
	padding: 8px 12px;
	margin-right: 30px;
}

.header-lang-item .search-input.not-white {
	border: 1px solid #333333;
	color: #333333;
}

.header-lang-item input {
	background: transparent !important;
}

.BMap_cpyCtrl {
	display: none !important;
}

.anchorBL {
	display: none;
}

.close-box-box {
	display: none;
}

.close-box-box img {
	width: 24px;
	height: 24px;
}

.close-box-box img:first-child {
	display: none;
}

@media (max-width: 1200px) {
	.page-continuity__bottom-container-right {
		display: none;
	}
}

@media (max-width: 992px) {
	header.header {
		display: none;
	}
	
	.page-continuity__bottom-container {
		display: block;
	}
	
	.page-continuity__bottom-container-left {
		display: none !important;
	}
	
	.page-continuity__bottom-container-center {
		padding: 0;
	}
	
	.page-continuity__bottom-footer-container {
		font-size: 14px;
		line-height: 20px;
		text-align: center;
	}
	
	.page-continuity__bottom-footer-container-right {
		display: none;
	}
	
	.page-continuity__bottom-footer-container-left span:not(:last-child) {
		margin: 0;
	}
	
	.page-continuity__bottom-container-right {
		padding-left: 36px;
	}
	
	.tabbar .enpty-box {
		width: 100%;
		height: 50px;
	}
	
	.tabbar .mb-header {
		z-index: 123456;
		background-color: #fff;
	}
	
	.tabbar .list {
		position: fixed;
		top: 50px;
		width: 100%;
		left: 0;
		background-color: #fff;
		z-index: 123456;
		height: calc(100vh - 50px);
		overflow: scroll;
		display: none;
	}
	
	.tabbar .list .item.active.has-child .line::after {
		transform: rotateX(180deg);
	}
	
	.tabbar .list .item.has-child .line {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.tabbar .list .item.has-child .line::after {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url("/static/index/zh/img/icons/tabbar-icon-top.png") no-repeat;
		background-size: 100%;
		transition: 450ms ease;
	}
	
	.tabbar .list .item .line {
		padding: 16px 20px;
		border-bottom: 1px solid #E8E9EC;
	}
	
	.tabbar .list .item .line > a {
		font-weight: bold;
	}
	
	.tabbar .list .item ul {
		padding-left: 20px;
		background-color: white;
		display: none;
	}
	
	.tabbar .list .item ul li {
		padding: 16px 20px;
		border-bottom: 1px solid #E8E9EC;
	}
}
