.headerContainer {
	width: 100%;
	box-sizing: border-box;
	padding: 0 8.33333vw;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.headerContainer .logo {
	display: block;
	width: 16.375vw;
}

.headerContainer .rightNav {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.headerContainer .rightNav .navA {
	height: 4.89583vw;
	line-height: 4.89583vw;
	padding: 0 1.5625vw;
	display: block;
	color: #fff;
	font-size: 0.9375vw;
	border-bottom: 0.10416vw solid transparent;
}

.headerContainer .rightNav .navA.en {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
}

.headerContainer .rightNav .navA.nen {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.headerContainer .rightNav .navA.en .line {
	width: 0.05208vw;
	height: 0.83333vw;
	background-color: #fff;
	position: absolute;
	left: 0;
}

.headerContainer .rightNav .navA.nen .nline {
	width: 0.05208vw;
	height: 0.83333vw;
	background-color: #fff;
	position: relative;
	left: -1.5vw;
}

.headerContainer .rightNav .active {
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
}

.headerContainer .rightNav .hasDrop {
	cursor: pointer;
}

.headerContainer .rightNav .hasDrop a {
	color: #fff;
}

.headerContainer .rightNav .hasDrop .dropNavBox {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 16.66666vw;
	top: 100%;
	z-index: 3;
	background-color: #fff;
	padding-left: 10.83333vw;
	padding-top: 2.23958vw;
	display: none;
}

.headerContainer .rightNav .hasDrop .ndropNavBox {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 14.79166vw;
	padding: 0 21.30208vw;
	top: 100%;
	z-index: 3;
	background-color: #fff;
	display: none;
}

.headerContainer .rightNav .hasDrop .ndropNavBox .box_inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.headerContainer .rightNav .hasDrop .ndropNavBox .box_inner .input_div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
}

.headerContainer .rightNav .hasDrop .ndropNavBox .box_inner .input_div input {
	/*width: 45.57291vw;*/
	width: 80%;
	height: 4.16666vw;
	border-radius: 2.08333vw;
	border: 0.05208vw solid #EAEAEA;
	padding-left: 2.13541vw;
	box-sizing: border-box;
}

.headerContainer .rightNav .hasDrop .ndropNavBox .box_inner .input_div .search {
	/*width: 9.73958vw;*/
	width: 18%;
	height: 4.16666vw;
	border-radius: 2.08333vw;
	border: 0.05208vw solid #EAEAEA;
	display: flex;
	align-items: center;
	justify-content: center;
}

.headerContainer .rightNav .hasDrop .ndropNavBox .box_inner .input_div .search .search_text {
	margin-left: 0.41666vw;
	font-weight: 400;
	font-size: 0.83333vw;
	color: #A5A5A5;
}

.close_img {
	position: absolute;
	top: 1.66666vw;
	right: 0;
	width: 1.25vw;
	height: 1.25vw;
}

.headerContainer .rightNav .hasDrop .dropNavBox .inside {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
}

.headerContainer .rightNav .hasDrop .dropNavBox .left {
	display: flex;
	flex-direction: column;
}

.headerContainer .rightNav .hasDrop .dropNavBox .left .navName {
	font-size: 1.35416vw;
	color: #2d2d2d;
	margin-bottom: 1.5625vw;
	line-height: 1;
	font-weight: 600;
}

.headerContainer .rightNav .hasDrop .dropNavBox .left .headNavImg {
	width: 11.77083vw;
	height: 4.01041vw;
	margin-bottom: 1.04166vw;
}

.headerContainer .rightNav .hasDrop .dropNavBox .left .navNameEn {
	font-size: 0.625vw;
	color: #979797;
	text-transform: uppercase;
	line-height: 1.7;
}

.headerContainer .rightNav .hasDrop .dropNavBox .dropNavList {
	display: flex;
	flex-direction: row;
	height: 100%;
	margin-left: 5.67708vw;
}

.headerContainer .rightNav .hasDrop .dropNavBox .dropNavList .list {
	width: 200px;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-left: 1px solid #EAEAEA;
}

.headerContainer .rightNav .hasDrop .dropNavBox .dropNavList .list a {
	width: 11.71875vw;
	box-sizing: border-box;
	display: block;
	height: 1.66666vw;
	line-height: 1.66666vw;
	font-size: 0.83333vw;
	color: #A5A5A5;
	margin-bottom: 1.5625vw;
	padding-left: 1.77083vw;
	border-left: 0.15625vw solid transparent;
}

.headerContainer .rightNav .hasDrop .dropNavBox .dropNavList .list a:hover {
	color: #0E0F14;
	font-weight: bold;
	border-color: #0E0F14;
}

.headerContainer .rightNav .hasDrop .dropNavBox .dropNavList .list a.active {
	color: #0E0F14;
	font-weight: bold;
	border-color: #0E0F14;
}

.mobilePart {
	display: none;
}

@media screen and (max-width: 750px) {
	.mobilePart {
		display: flex;
	}

	.pcPart {
		display: none !important;
	}

	.bgWhite {
		background-color: #fff;
	}

	.headerContainer-mobile {
		width: 100%;
		height: 16vw;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 0 5.33333vw;
		box-sizing: border-box;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 30;
	}

	.headerContainer-mobile .logo {
		width: 28.13333vw;
	}

	.headerContainer-mobile .logoBlue {
		/* width: 28.13333vw; */
		height: 7.46666vw;
		display: none;
	}

	.headerContainer-mobile .navIcon {
		width: 5.33333vw;
		height: 5.33333vw;
		background: url(../img/rightIcon-show.png) no-repeat;
		background-size: 100% 100%;
		transition: 0.2s all ease-in;
	}

	.headerContainer-mobile .navIcon.black {
		background: url(../img/rightIcon-black.png) no-repeat;
		background-size: 100% 100%;
	}

	.headerContainer-mobile .navIcon.close {
		background-image: url("../img/nav-close.png");
	}

	.headerContainer-nav-mob {
		position: fixed;
		left: 0;
		top: 16vw;
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 9.3333vw 5.3333vw 5.3333vw;
		overflow-x: hidden;
		overflow-y: auto;
		background: #fff;
		z-index: 999;
		display: none;
	}

	.headerContainer-nav-mob a {
		color: #000;
	}

	.headerContainer-nav-mob .en-m {
		width: 12vw;
		height: 6.66666vw;
		border-radius: 1.33333vw;
		background-color: #F3F5FA;
		font-size: 3.46666vw;
		text-align: center;
		line-height: 6.66666vw;
		color: #262728;
		text-transform: uppercase;
		position: absolute;
		top: 1.66666vw;
		right: 19.2vw;
	}

	.headerContainer-nav-mob .en-m-img {
		width: 5.33333vw;
		height: 5.33333vw;
		position: absolute;
		top: 2.66666vw;
		right: 5.33333vw;
		background: url(../img/blacksearch.png) no-repeat;
		background-size: 100% 100%;
	}

	/* .headerContainer-nav-mob .nav-wrap {
  	margin-bottom: 4vw;
  } */
	.headerContainer-nav-mob .nav-wrap.on h2::before {
		transform: translateY(-50%) rotate(180deg);
	}

	.headerContainer-nav-mob .nav-wrap h2 {
		position: relative;
		font-size: 4vw;
		line-height: 11.7333vw;
		font-weight: bold;
		border-bottom: 0.052vw solid #F3F5FA;
	}

	.headerContainer-nav-mob .nav-wrap h2::before {
		position: absolute;
		content: "";
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 2.6666vw;
		height: 1.6vw;
		background: url("../img/nav-arr-down.png") no-repeat;
		background-size: 100% 100%;
		transition: 0.2s all ease-in;
	}

	.headerContainer-nav-mob .nav-wrap h2.home::before {
		display: none;
	}

	.headerContainer-nav-mob .nav-wrap .nav-list {
		display: none;
		margin-top: 5.3333vw;
		padding-bottom: 4vw;
	}

	.headerContainer-nav-mob .nav-wrap .nav-list a {
		display: block;
		font-size: 3.46666vw;
		color: #848585;
		margin-bottom: 5.3333vw;
	}

	.headerContainer-nav-mob .nav-wrap .nav-list a:last-child {
		margin-bottom: 0;
	}

	.headerContainer-nav-mob .nav-wrap .nav-list a.active {
		color: #0A50B4;
	}

	.tools-wrap {
		display: none;
	}

	.headerContainer {
		display: none;
	}

	.headerContainer-mobile {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		box-sizing: border-box;
		padding: 2.66666vw 4vw;
	}

	.headerContainer-mobile .rightIcon {
		width: 4.8vw;
		height: 4.8vw;
		background: url(../img/menu-head-m.png) no-repeat;
		background-size: 100% 100%;
		transition: 0.2s all ease-in;
	}

	.headerContainer-mobile .rightIcon.close {
		background-image: url("../img/nav-close.png");
	}
}