/* CSS Document */
html {
	overflow: hidden;
	font-family: Helvetica Neue, Roboto Light, PingFang SC, Lantinghei SC,
		Hiragino Sans GB, Microsoft Yahei, Arial;
	font-size: 62.5%;
}

body {
	min-width: 1120px;
	font-weight: 200;
	overflow: hidden;
}

body,
div,
p,
a,
ul,
li,
img {
	margin: 0;
	padding: 0;
}

div img {
	vertical-align: bottom;
}

html,
body {
	height: 100vh;
}

p {
	margin: 0;
}

ul {
	list-style-type: none;
}

.header {
	position: relative;
	height: 80px;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: min-content;
}

.header_icon_container {
	height: 100%;
	margin-left: 36px;
	display: flex;
	align-items: center;
}

.header_icon {
	width: 38px;
	height: 38px;
}

.header_icon_text {
	width: 88px;
	height: 38px;
	margin-left: 15px;
}

.header-tabs-wrapper {
	display: flex;
	height: 100%;
}

.sys_logo {
	height: 100%;
	margin-right: 70px;
}

.sys_menu {
	display: flex;
	height: 100%;
	    align-items: center;
}

.header_tab {
	position: relative;
	color: #707070;
	font-weight: 400;
	font-size: 20px;
	margin-left: 48px;
	letter-spacing: 2.8px;
	text-decoration: none;
	cursor: pointer;
}

.header_tab:first-child {
	margin-left: 0;
}

.header_tab_active {
	color: black;
	font-weight: 500;
}

.header_tab_active::after {
	position: absolute;
	content: "";
	left: 50%;
	bottom: -13px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 37px;
	height: 5px;
	background: #000;
	border-radius: 3px;
}

.header_download {
	position: absolute;
	right: 60px;
	width: 274px;
	height: 63px;
	background: black;
	border-radius: 32px;
	line-height: 63px;
	text-align: center;
	color: white;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 2.4px;
	word-wrap: break-word;
}

.header-voice {
	width: 30px;
	height: 30px;
	margin-left: 50px;
	background-image: url("../img/voice.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.header-voice-active {
	background-image: url("../img/voice_play.png");
}


.languages-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: hsla(0, 0%, 100%, 0.5);
	z-index: 1000;
}

.languages {
	position: fixed;
	background: #fff;
	margin: 20px;
	padding: 0 20px 50px;
	top: 20px;
	left: 50%;
	width: 400px;
	margin-left: -200px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 425px) {
	.languages {
		width: auto;
		margin: 0;
		left: 0;
	}
}

.languages-title {
	font-weight: 200;
	font-size: 3em;
}

.language-link {
	text-decoration: none;
	display: inline-block;
	margin-top: 18px;
	margin-left: 15px;
}

.language-link:hover .language-name {
	color: #FFAA7A;
}

.language-link:first-child {
	margin-top: 0;
}

.language-flag {
	width: 24px;
	height: 24px;
	vertical-align: middle;
	margin-right: 10px;
}

.language-name {
	/* font-size: 1.6em; */
	text-decoration: none;
	vertical-align: middle;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.4px;
}

.switch-language {
	position: relative;
	width: 160px;
	height: 40px;
	margin-right: 54px;
	border-radius: 15px;
	border: 2px solid #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.switch-language::before {
	position: absolute;
	left: -64px;
	content: "";
	display: inline-block;
	width: 1px;
	height: 70px;
	background: #d3d3d3;
}

.switch-language-drop-down {
	display: none;
	position: absolute;
	top: 60px;
	width: 160px;
	background: #000;
	z-index: 9999;
	border-radius: 15px;
}

.languages-list {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
	padding: 20px 10px;
}

.arrow-down {
	height: 6px;
	margin-left: 10px;
}

.arrow-down-open {
	transform: rotate(180deg);
}

.arrow-down-close {
	transform: rotate(180deg);
}

.switch-language-title {
	color: #000;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.4px;
}

.switch-language-subtitle {
	color: #d3d3d3;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.4px;
}

#shell {
	width: 100vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

#shell li {
	padding: 10px 0px 10px 40px;
	font-size: 1.8em;
	color: #333;
	position: relative;
}

#shell li::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #333;
	position: absolute;
	left: 15px;
	top: 20px;
}

#shell li .light {
	font-size: 1em;
}

.hide_dom {
	display: none !important;
}

.animate-buttom-enter {
	animation: buttom-enter 1s ease-out;
}

@keyframes buttom-enter {
	0% {
		transform: translate3d(0, 50%, 0);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}