.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.flex-row-end {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
}
.flex-row-top {
	display: flex;
	flex-direction: row;
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.flex-column-center {
	display: flex;
	align-items: center;
}
.flex-justry {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-justry-top {
	display: flex;
	justify-content: space-between;
}
.flex-justry-end {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.flex-wrap {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	flex-direction: row;
}
.flex-row-reverse {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
.flex-1 {
	display: flex;
	flex: 1;
}
.eps-1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.eps-2 {
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	 -webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.eps-3 {
	overflow: hidden;
	display: -webkit-box;
	 -webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

@keyframes scaleOut {
	0% {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 1;
		z-index: 9;
	}
	100% {
		opacity: 0;
		top: -12px;
		left: -12px;
		right: -12px;
		bottom: -12px;
		z-index: -1;
	}
}

.logo-link img {
	width: auto;
	height: 60px;
}

.logo-footer-link img {
	width: auto;
	height: 31px;
}

.lang-btn {
	height: 43px;
	letter-spacing: 1px;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #000;
	border: 1px solid rgba(234,245,240,0.5);
	padding: 0 26px;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	z-index: 9;
	user-select: none;
}
.lang-btn::before {
	content: '';
	position: absolute;
	border: 1px solid rgba(0,0,0,.5);
	opacity: 0;
	z-index: -1;
}
.lang-btn:hover::before {
	z-index: 1;
	animation: scaleOut .6s linear;
}

.header-lang-btn {
	margin-left: 5rem;
}

.mobile-lang-btn {
	margin-right: 1.23rem;
	height: 35px;
	padding: 0 12px;
}

.page-title {
	padding: 140px 0;
}

.news-insights-grid .top-left-section {
	background-color: #fff;
}

.page {
	width: 100%;
}
.page .page-item {
	background: rgb(245, 245, 245);
	border-radius: 8px;
	color: rgb(34, 34, 34);
	margin-left: 8px;
	min-width: 40px;
	height: 40px;
	line-height: 38px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	padding: 0 5px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page .page-prev, .page .page-next {
	padding: 0 18px;
}
.page .page-active {
	background: #000 !important;
	color: #fff !important;
}
.page .page-item:hover {
	background: #000;
	color: #fff;
}
.page .page-item .el-icon-arrow-left {
	font-weight: bold;
}
.page .page-item .el-icon-arrow-right {
	font-weight: bold;
}

.news-page {
	margin-top: 10px;
}

.js_video .video-text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(0,0,0,.43);
	text-align: center;
}

.js_video .video-text .video-text-title {
	color: #FF7800;
	font-size: 118px;
	font-weight: 700;
	padding-top: 15px;
	padding-bottom: 15px;
}

.js_video .video-text .video-text-desc {
	font-size: 58px;
	color: #fff;
	font-weight: 600;
	height: 80.5px;
	margin-top: 25px;
}

.js_video .video-text .typed-cursor {
	font-size: 45px;
	color: #fff;
	font-weight: 600;
	margin-left: 4px;
}

@media (max-width: 768px) {
	.logo-link img {
		width: auto;
		height: 28px;
	}
	.page-title {
		padding: 50px 0;
	}
	
	.js_video .video-text .video-text-title {
		font-size: 50px;
		padding-top: 0;
		padding-bottom: 0;
	}
	.js_video .video-text .video-text-desc {
		font-size: 20px;
		height: 30px;
		margin-top: 20px;
	}
	.js_video .video-text .typed-cursor {
		font-size: 17px;
		margin-left: 3px;
	}
}