.language{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: black;
	display: flex;
	justify-content: center;
	padding-top: 11vh;
	box-sizing: border-box;
}
.language-con{
	width: 750px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.language-title{
	color: #FFF;
	text-align: center;
	font-family: Arial;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.language-region{
	position: relative;
	display: flex;
	width:620px;
	padding: 90px 15px 0px 15px;
	box-sizing: border-box;
	justify-content: space-between;
}
.language-region-txt{
	color: #FFF;
	text-align: center;
	font-family: Arial;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	cursor: pointer;
	padding: 0px 32px;
}
.language-region-txt-s{
	color: #D80C24;
}
.language-region-line{
	position: relative;
	margin-top: 17px;
	width: 620px;
	height: 1px;
	background-color: #999;
	z-index: 0;
}
.language-region-move{
	position: absolute;
	bottom: -19px;
	left: 0px;
	width: 140px;
	height: 3px;
	background-color: #D80C24;
	z-index: 2;
}
.language-descrip{
	padding-top: 80px;
	color: #999;
	font-family: Arial;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.language-descrip img{
	padding-right: 20px;
}
.language-descrip:hover{
	color: #FFF;
}
.region{
	width: 420px;
	display: none;
}
.language-select{
	padding-top: 40px;
	padding-bottom: 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.language-select a{
	width: 25%;
}
.language-item{
	cursor: pointer;
}
.language-item:hover .language-item-txt1,
.language-item:hover .language-item-txt2{
	color: #FFF;
}
.language-item-txt1{
	color: #999;
	font-family: Arial;
	font-size: 20px;
	white-space: nowrap;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}
.language-item-txt1 img{
	padding-right: 13px;
	height: 25px;
	object-fit: contain;
}
.language-item-txt2{
	color: #999;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	line-height: 19px;	text-transform: uppercase;
	width: 60px;
	height: 19px;
	border-radius: 5px;
	border: 0.5px solid #999;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 14px;
	display:inline-block;
	white-space: nowrap;  
	overflow: hidden;
	text-overflow: ellipsis;
}

.close{
	position: absolute;
	top: 40px;
	right: 63px;
	cursor: pointer;
	transition: transform .5s ease-out;
}
.close:hover{
	transform: rotate(90deg);
}