@charset "utf-8";

/* 公共响应变量 */
/* 1屏高度 */
/* 百分比计算 */
/* 初始化 */
* {
	padding: 0;
	margin: 0;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scrollbar-width: thin;
	position: relative;
	overflow-x: hidden;
	/*滚动条-滑块*/
	/*滚动条-背景*/
}

html ::-webkit-scrollbar {
	width: 3px;
	/*滚动条整体样式*/
	height: 1px;
	/*高宽分别对应横竖滚动条的尺寸*/
}

html ::-webkit-scrollbar-thumb {
	border-radius: 3px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: var(--color);
}

html ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	background: #ededed;
}

@font-face {
	font-family: 'SF-Pro';
	src: url('../font/SF-Pro-Display-Thin.otf');
	font-weight: 200;
}

@font-face {
	font-family: 'SF-Pro';
	src: url('../font/SF-Pro-Display-Light.otf');
	font-weight: 300;
}

@font-face {
	font-family: 'SF-Pro';
	src: url('../font/SF-Pro-Display-Regular.otf');
}

@font-face {
	font-family: 'SF-Pro';
	src: url('../font/SF-Pro-Display-Medium.otf');
	font-weight: 500;
}

@font-face {
	font-family: 'SF-Pro';
	src: url('../font/SF-Pro-Display-Bold.otf');
	font-weight: 700;
}

body {
	min-height: 100%;
	font-family: 'SF-Pro', 'San Francisco', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
	line-height: 1.5;
	color: #222222;
	background: #FFFFFF;
}

html,
body {
	font-size: 16px;
}

:root {
	--vh: 100vh;
	--head-height: 80px;
	--color: #333333;
	--main-grren: #E51E21;
	--dark-grren: #9F0B0E;
	--green: #12CA64;
	--red: #CC1F40;
	--orange: #F18700;
	--blueinfo: #009CC4;
	--dark-grey-27: #525252;
	--dark-grey-54: #6F5C54;
	--dark-grey-65: #657F93;
	--dark-grey-d1: #D8D6D1;
	--light-grey-e6: #F2F0E6;
	--light-grey-f7: #FBFBF7;
	--gradient-green-transparent: linear-gradient(to bottom, #008C3D, transparent);
	--gradient-green: linear-gradient(to bottom, #E51E21, #9F0B0E);
	--gradient-green-map: linear-gradient(45deg, #E51E21, #9F0B0E, #A60000, #9F0B0E, #E51E21);
	--gradient-green-bar: linear-gradient(to bottom, #E51E21, #F47676);
	--gradient-light-red: linear-gradient(to bottom, #D44B4B, #FFFFFF);
	--vwMax: 1800;
	--vwMin: 1280;
	--font14-min: 13;
	--font14-max: 14;
	--font14: calc((var(--font14-min) / 16 * 1rem) + ((var(--font14-max) - var(--font14-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font16-min: 14;
	--font16-max: 16;
	--font16: calc((var(--font16-min) / 16 * 1rem) + ((var(--font16-max) - var(--font16-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font18-min: 15;
	--font18-max: 18;
	--font18: calc((var(--font18-min) / 16 * 1rem) + ((var(--font18-max) - var(--font18-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font20-min: 16;
	--font20-max: 20;
	--font20: calc((var(--font20-min) / 16 * 1rem) + ((var(--font20-max) - var(--font20-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font22-min: 17;
	--font22-max: 22;
	--font22: calc((var(--font22-min) / 16 * 1rem) + ((var(--font22-max) - var(--font22-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font24-min: 18;
	--font24-max: 24;
	--font24: calc((var(--font24-min) / 16 * 1rem) + ((var(--font24-max) - var(--font24-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font26-min: 19;
	--font26-max: 26;
	--font26: calc((var(--font26-min) / 16 * 1rem) + ((var(--font26-max) - var(--font26-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font28-min: 20;
	--font28-max: 28;
	--font28: calc((var(--font28-min) / 16 * 1rem) + ((var(--font28-max) - var(--font28-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font30-min: 20;
	--font30-max: 30;
	--font30: calc((var(--font30-min) / 16 * 1rem) + ((var(--font30-max) - var(--font30-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font32-min: 22;
	--font32-max: 32;
	--font32: calc((var(--font32-min) / 16 * 1rem) + ((var(--font32-max) - var(--font32-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font34-min: 22;
	--font34-max: 34;
	--font34: calc((var(--font34-min) / 16 * 1rem) + ((var(--font34-max) - var(--font34-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font36-min: 24;
	--font36-max: 36;
	--font36: calc((var(--font36-min) / 16 * 1rem) + ((var(--font36-max) - var(--font36-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font38-min: 24;
	--font38-max: 38;
	--font38: calc((var(--font38-min) / 16 * 1rem) + ((var(--font38-max) - var(--font38-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font40-min: 26;
	--font40-max: 40;
	--font40: calc((var(--font40-min) / 16 * 1rem) + ((var(--font40-max) - var(--font40-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font42-min: 26;
	--font42-max: 42;
	--font42: calc((var(--font42-min) / 16 * 1rem) + ((var(--font42-max) - var(--font42-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font44-min: 28;
	--font44-max: 44;
	--font44: calc((var(--font44-min) / 16 * 1rem) + ((var(--font44-max) - var(--font44-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font46-min: 28;
	--font46-max: 46;
	--font46: calc((var(--font46-min) / 16 * 1rem) + ((var(--font46-max) - var(--font46-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font48-min: 30;
	--font48-max: 48;
	--font48: calc((var(--font48-min) / 16 * 1rem) + ((var(--font48-max) - var(--font48-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font50-min: 30;
	--font50-max: 50;
	--font50: calc((var(--font50-min) / 16 * 1rem) + ((var(--font50-max) - var(--font50-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font52-min: 32;
	--font52-max: 52;
	--font52: calc((var(--font52-min) / 16 * 1rem) + ((var(--font52-max) - var(--font52-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font54-min: 32;
	--font54-max: 54;
	--font54: calc((var(--font54-min) / 16 * 1rem) + ((var(--font54-max) - var(--font54-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font56-min: 34;
	--font56-max: 56;
	--font56: calc((var(--font56-min) / 16 * 1rem) + ((var(--font56-max) - var(--font56-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font58-min: 34;
	--font58-max: 58;
	--font58: calc((var(--font58-min) / 16 * 1rem) + ((var(--font58-max) - var(--font58-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font60-min: 36;
	--font60-max: 60;
	--font60: calc((var(--font60-min) / 16 * 1rem) + ((var(--font60-max) - var(--font60-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font62-min: 36;
	--font62-max: 62;
	--font62: calc((var(--font62-min) / 16 * 1rem) + ((var(--font62-max) - var(--font62-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font64-min: 38;
	--font64-max: 64;
	--font64: calc((var(--font64-min) / 16 * 1rem) + ((var(--font64-max) - var(--font64-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font66-min: 38;
	--font66-max: 66;
	--font66: calc((var(--font66-min) / 16 * 1rem) + ((var(--font66-max) - var(--font66-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font68-min: 40;
	--font68-max: 68;
	--font68: calc((var(--font68-min) / 16 * 1rem) + ((var(--font68-max) - var(--font68-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font70-min: 40;
	--font70-max: 70;
	--font70: calc((var(--font70-min) / 16 * 1rem) + ((var(--font70-max) - var(--font70-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font72-min: 42;
	--font72-max: 72;
	--font72: calc((var(--font72-min) / 16 * 1rem) + ((var(--font72-max) - var(--font72-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font74-min: 42;
	--font74-max: 74;
	--font74: calc((var(--font74-min) / 16 * 1rem) + ((var(--font74-max) - var(--font74-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font76-min: 44;
	--font76-max: 76;
	--font76: calc((var(--font76-min) / 16 * 1rem) + ((var(--font76-max) - var(--font76-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font78-min: 44;
	--font78-max: 78;
	--font78: calc((var(--font78-min) / 16 * 1rem) + ((var(--font78-max) - var(--font78-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font80-min: 44;
	--font80-max: 80;
	--font80: calc((var(--font78-min) / 16 * 1rem) + ((var(--font78-max) - var(--font78-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font82-min: 46;
	--font82-max: 82;
	--font82: calc((var(--font82-min) / 16 * 1rem) + ((var(--font82-max) - var(--font82-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font84-min: 46;
	--font84-max: 84;
	--font84: calc((var(--font84-min) / 16 * 1rem) + ((var(--font84-max) - var(--font84-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font86-min: 48;
	--font86-max: 86;
	--font86: calc((var(--font86-min) / 16 * 1rem) + ((var(--font86-max) - var(--font86-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font88-min: 48;
	--font88-max: 88;
	--font88: calc((var(--font88-min) / 16 * 1rem) + ((var(--font88-max) - var(--font88-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font90-min: 50;
	--font90-max: 90;
	--font90: calc((var(--font90-min) / 16 * 1rem) + ((var(--font90-max) - var(--font90-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font92-min: 50;
	--font92-max: 92;
	--font92: calc((var(--font92-min) / 16 * 1rem) + ((var(--font92-max) - var(--font92-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font94-min: 52;
	--font94-max: 94;
	--font94: calc((var(--font94-min) / 16 * 1rem) + ((var(--font94-max) - var(--font94-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font96-min: 52;
	--font96-max: 96;
	--font96: calc((var(--font96-min) / 16 * 1rem) + ((var(--font96-max) - var(--font96-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font98-min: 54;
	--font98-max: 98;
	--font98: calc((var(--font98-min) / 16 * 1rem) + ((var(--font98-max) - var(--font98-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font100-min: 54;
	--font100-max: 100;
	--font100: calc((var(--font100-min) / 16 * 1rem) + ((var(--font100-max) - var(--font100-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font120-min: calc(var(--font120-max) / var(--vwMax) * var(--vwMin));
	--font120-max: 120;
	--font120: calc((var(--font120-min) / 16 * 1rem) + ((var(--font120-max) - var(--font120-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font130-min: 72;
	--font130-max: 130;
	--font130: calc((var(--font130-min) / 16 * 1rem) + ((var(--font130-max) - var(--font130-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font140-min: calc(var(--font140-max) / var(--vwMax) * var(--vwMin));
	--font140-max: 140;
	--font140: calc((var(--font140-min) / 16 * 1rem) + ((var(--font140-max) - var(--font140-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
	--font300-min: calc(var(--font300-max) / var(--vwMax) * var(--vwMin));
	--font300-max: 300;
	--font300: calc((var(--font300-min) / 16 * 1rem) + ((var(--font300-max) - var(--font300-min)) * ((100vw - var(--vwMin) / 16 * 1rem) / (var(--vwMax) - var(--vwMin)))));
}

@media (min-width: 1800px) {
	:root {
		--font14: calc(var(--font14-max) * 1px);
		--font16: calc(var(--font16-max) * 1px);
		--font18: calc(var(--font18-max) * 1px);
		--font20: calc(var(--font20-max) * 1px);
		--font22: calc(var(--font22-max) * 1px);
		--font24: calc(var(--font24-max) * 1px);
		--font26: calc(var(--font26-max) * 1px);
		--font28: calc(var(--font28-max) * 1px);
		--font30: calc(var(--font30-max) * 1px);
		--font32: calc(var(--font32-max) * 1px);
		--font34: calc(var(--font34-max) * 1px);
		--font36: calc(var(--font36-max) * 1px);
		--font38: calc(var(--font38-max) * 1px);
		--font40: calc(var(--font40-max) * 1px);
		--font42: calc(var(--font42-max) * 1px);
		--font44: calc(var(--font44-max) * 1px);
		--font46: calc(var(--font46-max) * 1px);
		--font48: calc(var(--font48-max) * 1px);
		--font50: calc(var(--font50-max) * 1px);
		--font52: calc(var(--font52-max) * 1px);
		--font54: calc(var(--font54-max) * 1px);
		--font56: calc(var(--font56-max) * 1px);
		--font58: calc(var(--font58-max) * 1px);
		--font60: calc(var(--font60-max) * 1px);
		--font62: calc(var(--font62-max) * 1px);
		--font64: calc(var(--font64-max) * 1px);
		--font66: calc(var(--font66-max) * 1px);
		--font68: calc(var(--font68-max) * 1px);
		--font70: calc(var(--font70-max) * 1px);
		--font72: calc(var(--font72-max) * 1px);
		--font74: calc(var(--font74-max) * 1px);
		--font76: calc(var(--font76-max) * 1px);
		--font78: calc(var(--font78-max) * 1px);
		--font80: calc(var(--font80-max) * 1px);
		--font82: calc(var(--font82-max) * 1px);
		--font84: calc(var(--font84-max) * 1px);
		--font86: calc(var(--font86-max) * 1px);
		--font88: calc(var(--font88-max) * 1px);
		--font90: calc(var(--font90-max) * 1px);
		--font92: calc(var(--font92-max) * 1px);
		--font94: calc(var(--font94-max) * 1px);
		--font96: calc(var(--font96-max) * 1px);
		--font98: calc(var(--font98-max) * 1px);
		--font100: calc(var(--font100-max) * 1px);
		--font120: calc(var(--font120-max) * 1px);
		--font130: calc(var(--font130-max) * 1px);
		--font140: calc(var(--font140-max) * 1px);
		--font300: calc(var(--font300-max) * 1px);
	}
}

@media (max-width: 1280px) {
	:root {
		--font14: calc(var(--font14-min) * 1px);
		--font16: calc(var(--font16-min) * 1px);
		--font18: calc(var(--font18-min) * 1px);
		--font20: calc(var(--font20-min) * 1px);
		--font22: calc(var(--font22-min) * 1px);
		--font24: calc(var(--font24-min) * 1px);
		--font26: calc(var(--font26-min) * 1px);
		--font28: calc(var(--font28-min) * 1px);
		--font30: calc(var(--font30-min) * 1px);
		--font32: calc(var(--font32-min) * 1px);
		--font34: calc(var(--font34-min) * 1px);
		--font36: calc(var(--font36-min) * 1px);
		--font38: calc(var(--font38-min) * 1px);
		--font40: calc(var(--font40-min) * 1px);
		--font42: calc(var(--font42-min) * 1px);
		--font44: calc(var(--font44-min) * 1px);
		--font46: calc(var(--font46-min) * 1px);
		--font48: calc(var(--font48-min) * 1px);
		--font50: calc(var(--font50-min) * 1px);
		--font52: calc(var(--font52-min) * 1px);
		--font54: calc(var(--font54-min) * 1px);
		--font56: calc(var(--font56-min) * 1px);
		--font58: calc(var(--font58-min) * 1px);
		--font60: calc(var(--font60-min) * 1px);
		--font62: calc(var(--font62-min) * 1px);
		--font64: calc(var(--font64-min) * 1px);
		--font66: calc(var(--font66-min) * 1px);
		--font68: calc(var(--font68-min) * 1px);
		--font70: calc(var(--font70-min) * 1px);
		--font72: calc(var(--font72-min) * 1px);
		--font74: calc(var(--font74-min) * 1px);
		--font76: calc(var(--font76-min) * 1px);
		--font78: calc(var(--font78-min) * 1px);
		--font80: calc(var(--font80-min) * 1px);
		--font82: calc(var(--font82-min) * 1px);
		--font84: calc(var(--font84-min) * 1px);
		--font86: calc(var(--font86-min) * 1px);
		--font88: calc(var(--font88-min) * 1px);
		--font90: calc(var(--font90-min) * 1px);
		--font92: calc(var(--font92-min) * 1px);
		--font94: calc(var(--font94-min) * 1px);
		--font96: calc(var(--font96-min) * 1px);
		--font98: calc(var(--font98-min) * 1px);
		--font100: calc(var(--font100-min) * 1px);
		--font120: calc(var(--font120-min) * 1px);
		--font130: calc(var(--font130-min) * 1px);
		--font140: calc(var(--font140-min) * 1px);
		--font300: calc(var(--font300-min) * 1px);
	}
}

@media (max-width:1366px) {
	:root {
		--head-height: 70px;
	}
}

img {
	max-width: 100%;
	border: 0;
	vertical-align: top;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: inherit;
	font-style: inherit;
	font-size: inherit;
	font-weight: normal;
}

a,
a:hover,
a:focus {
	text-decoration: none;
}

input,
button {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}

button {
	cursor: pointer;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	appearance: button;
	cursor: pointer;
}

textarea {
	resize: none;
	overflow: auto;
}

input,
button,
textarea,
select {
	border: 0;
	font-family: inherit;
	font-style: inherit;
	font-size: inherit;
	font-weight: normal;
	color: inherit;
	background: transparent;
}

select {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

table {
	border-collapse: collapse;
}

/* 公共浮动、清浮动 */
.fl {
	float: left;
}

.fr {
	float: right;
}

.clear {
	zoom: 1;
}

.clear:after {
	content: '';
	display: block;
	clear: both;
}

/* Flex 布局 */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.f_column {
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.f_column_right {
	-webkit-box-orient: vertical;
	-ms-flex-direction: column-reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.f_row {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

.f_row_right {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.j_center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.j_end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.j_start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.j_justify {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.j_around {
	-moz-justify-content: space-around;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.a_start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.a_end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.a_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.a_baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
}

.a_stretch {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.a_s_stretch {
	-webkit-box-self: stretch;
	-ms-align-self: stretch;
	-webkit-align-self: stretch;
	align-self: stretch;
}

.a_s_center {
	-webkit-box-self: center;
	-ms-align-self: center;
	-webkit-align-self: center;
	align-self: center;
}

.a_s_end {
	-webkit-box-self: end;
	-ms-align-self: end;
	-webkit-align-self: end;
	align-self: end;
}

.flex_wrap {
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

/* 文字超出隐藏 */
.text-overflow {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 动画 */
.dh {
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

/* 比例 */
.pb {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	position: relative;
	z-index: 5;
	overflow: hidden;
}

.ab {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	text-align: center;
	overflow: hidden;
}

/* 公共内容区 */
.container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 120px;
	position: relative;
	z-index: 5;
}

@media (max-width:1920px) {
	.container {
		padding: 0 5.2vw;
	}
}

@media (max-width:1366px) {
	.container {
		padding: 0 30px;
	}
}

@media (max-width:1024px) {
	.container {
		padding: 0 20px;
	}
}

/* 公共背景色 */
.bg-color1 {
	background-color: #FFFFFF;
}

/* 公共滚动条 */
.public-scrollbar {
	scrollbar-width: thin;
	/*滚动条-滑块*/
	/*滚动条-背景*/
}

.public-scrollbar ::-webkit-scrollbar {
	width: 2px;
	/*滚动条整体样式*/
	height: 1px;
	/*高宽分别对应横竖滚动条的尺寸*/
}

.public-scrollbar ::-webkit-scrollbar-thumb {
	border-radius: 3px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: var(--color);
}

.public-scrollbar ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	background: #ededed;
}

/* 公告标题 */
.idx_title {
	width: 100%;
	height: auto;
}

.idx_title .title {
	width: 100%;
	height: auto;
	font-size: var(--font52);
	font-weight: 500;
	color: #000000;
	line-height: 1.3;
	overflow: hidden;
}

.idx_title .subtitle {
	width: 100%;
	height: auto;
	font-size: var(--font36);
	font-weight: 500;
	color: #82786D;
	line-height: 1.3;
	overflow: hidden;
}

.idx_title .details {
	width: 100%;
	height: auto;
	font-size: var(--font18);
	color: #222222;
	line-height: 1.667;
	overflow: hidden;
}

.idx_title .title+.details {
	margin-top: var(--spacing-20);
}

.idx_title .subtitle+.details {
	margin-top: var(--spacing-20);
}

/* 公共按钮 */
.public-btn {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	overflow: hidden;
}

.public-btn a {
	width: auto;
	min-width: 180px;
	height: 50px;
	position: relative;
	z-index: 1;
	padding: 0 2em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	border-radius: 50px;
	border: 1px solid var(--color);
	font-size: var(--font16);
	font-weight: 500;
	color: var(--color);
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.public-btn a:hover {
	background: var(--color);
	color: #FFFFFF;
}

@media (max-width:1600px) {
	.public-btn a {
		min-width: 150px;
		height: 54px;
	}
}

@media (max-width:1280px) {
	.public-btn a {
		min-width: 140px;
		height: 48px;
		padding: 0 1.5em;
	}
}

@media (max-width:1024px) {
	.public-btn a {
		min-width: 120px;
		height: 44px;
		padding: 0 1em;
	}
}

@media (max-width:991px) {
	.public-btn a {
		min-width: 80px;
		height: 40px;
		font-size: 12px;
		background: var(--color);
		color: #FFFFFF;
	}
}

/* 公共内容 */
.public-content {
	font-size: var(--font18);
	color: #222222;
	line-height: 1.556;
}

.public-content h1,
.public-content h2,
.public-content h3,
.public-content h4,
.public-content h5,
.public-content h6 {
	font-size: var(--font30);
	font-weight: 500;
}

.public-content a {
	color: #222222;
}

.public-content table {
	max-width: 100%;
}

.public-content table td,
.public-content table th {
	padding: 10px 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.public-content li {
	margin-left: 15px;
	list-style: disc;
}

.public-content ol {
	margin-left: 15px;
	list-style: decimal;
}

.public-content img,
.public-content video {
	max-width: 100%;
	height: auto !important;
}

/* ie浏览器提示 */
#hi-upgrade {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: #fff;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
}

#hi-upgrade .hi-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -177px 0 0 -450px;
	width: 900px;
}

#hi-upgrade .hi-wrap .hi-title {
	font-size: 30px;
	line-height: 40px;
	color: #333;
}

#hi-upgrade .hi-wrap .hi-close {
	margin: 10px 0;
	display: inline-block;
	cursor: pointer;
	font-size: 18px;
	color: var(--color);
}

#hi-upgrade .hi-wrap .hi-close:hover {
	text-decoration: underline;
}

#hi-upgrade .hi-wrap .hi-text1 {
	color: #666;
}

#hi-upgrade .hi-wrap .hi-text1 span {
	color: var(--color);
}

#hi-upgrade .hi-wrap .hi-text2 {
	position: relative;
	margin: 60px 0;
	color: #333;
}

#hi-upgrade .hi-wrap .hi-text2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	width: 100%;
	border-top: 1px solid #ddd;
}

#hi-upgrade .hi-wrap .hi-text2 span {
	position: relative;
	z-index: 5;
	padding: 0 30px;
	background: #fff;
}

#hi-upgrade .hi-wrap .hi-list {
	overflow: hidden;
}

#hi-upgrade .hi-wrap .hi-list li {
	display: inline-block;
	width: 16%;
}

#hi-upgrade .hi-wrap .hi-list li div {
	margin: 0 auto 5px;
	width: 50px;
	height: 50px;
}

#hi-upgrade .hi-wrap .hi-list li a {
	color: #666;
}

#hi-upgrade .hi-wrap .hi-list li a:hover {
	color: var(--color);
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
	background: url(../youyidian/images/https://www.xinaotex.com/static/cms/images/hi-llq-1.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
	background: url(../youyidian/images/https://www.xinaotex.com/static/cms/images/hi-llq-2.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
	background: url(../youyidian/images/https://www.xinaotex.com/static/cms/images/hi-llq-3.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
	background: url(../youyidian/images/https://www.xinaotex.com/static/cms/images/hi-llq-4.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
	background: url(../youyidian/images/https://www.xinaotex.com/static/cms/images/hi-llq-5.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
	background: url(../youyidian/images/https://www.xinaotex.com/static/cms/images/hi-llq-6.jpg) no-repeat center / 100%;
}

/* 回到顶部 */
#c-go-top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--color);
	cursor: pointer;
}

@media (max-width:991px) {
	#c-go-top {
		display: none !important;
	}
}

#c-go-top svg {
	width: 50%;
	height: 50%;
}

#c-go-top svg use {
	fill: #FFFFFF;
}

/* 二维码弹窗 */
#c-code-pop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 910;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

#c-code-pop .c-img-box {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 20px;
	width: 200px;
	border-radius: 5px;
	background: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#c-code-pop .c-img-box .c-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	bottom: -60px;
	left: 50%;
	margin-left: -20px;
	cursor: pointer;
	background-color: #fff;
	border-radius: 50%;
	transition: all 0.4s;
}

#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
	margin: 4px;
	width: 18px;
	height: 18px;
}

#c-code-pop .c-img-box .c-close img path,
#c-code-pop .c-img-box .c-close svg path {
	fill: #333;
	transition: all 0.4s;
}

#c-code-pop .c-img-box .c-close:hover {
	background-color: var(--color);
}

#c-code-pop .c-img-box .c-close:hover svg path {
	fill: #fff;
}

#c-code-pop .c-img-box>img {
	width: 100%;
}

#c-code-pop .c-img-box .c-text {
	padding-top: 10px;
	line-height: 1;
	text-align: center;
	color: #333;
}

/* 默认样式 */
.grid-box {
	width: 100%;
	max-width: 1920px;
	height: auto;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 20px;
	overflow: hidden;
}

/* -------------------- */
/*顶部*/
header {
	width: 100%;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	--setColor: #FFFFFF;
	--hoverColor: #000000;
	--linkColor: #333333;
	/* 面包屑导航 */
	/* 语言切换 */
}

header.open-active {
	--setColor: #FFFFFF;
	--linkColor: #FFFFFF;
	--hoverColor: #FFFFFF;
}

header.open-active .h-language {
	opacity: 1;
	visibility: visible;
}

header.open-active .breadcrumb-nav {
	opacity: 0;
	visibility: hidden;
}

header.open-active .logo-box .logo {
	--opacity: 1;
}

header.open-active .column .h-menu .icon .active {
	display: none;
}

header.open-active .column .h-menu .icon .close {
	display: block;
}

header.active {
	background: #FFFFFF;
	--setColor: #525252;
	--linkColor: #000000;
	--hoverColor: #000000;
}

header.active.h-language {
	opacity: 0;
	visibility: visible;
}

header.active .logo-box .logo {
	--cls1: #1D1D1B;
	--cls2: #E42320;
}

header.show-active {
	--setColor: #FFFFFF;
	--linkColor: #FFFFFF;
}

header.show-active .h-language {
	opacity: 1;
	visibility: visible;
}

header.is-show {
	transform: translateY(-100%);
}

header .header-box {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 5;
	padding: 0 100px;
}

header .header-box .header-main {
	width: 100%;
	height: var(--head-height);
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

header .header-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #FFFFFF;
	opacity: 0.2;
	overflow: hidden;
}

header .breadcrumb-nav {
	width: 100%;
	height: var(--head-height);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	pointer-events: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

header .breadcrumb-nav .info-box {
	width: auto;
	height: auto;
	padding: 4px 8px;
	border-radius: 3px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	background: var(--dark-grey-27);
	font-size: 12px;
	color: #FFFFFF;
	line-height: 1.5;
	pointer-events: auto;
	overflow: hidden;
}

header .breadcrumb-nav .info-box a,
header .breadcrumb-nav .info-box span {
	font-size: 12px;
	color: #FFFFFF;
	line-height: 1.5;
	opacity: 0.4;
}

header .breadcrumb-nav .info-box a svg,
header .breadcrumb-nav .info-box span svg {
	vertical-align: top;
}

header .breadcrumb-nav .info-box a svg path,
header .breadcrumb-nav .info-box span svg path {
	fill: #FFFFFF;
}

header .breadcrumb-nav .info-box a {
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

header .breadcrumb-nav .info-box a svg {
	width: 16px;
}

header .breadcrumb-nav .info-box a:hover {
	opacity: 1;
}

header .breadcrumb-nav .info-box span {
	font-size: 0;
	margin: 0 5px;
}

header .breadcrumb-nav .info-box span svg {
	width: 5px;
}

header .h-language {
	width: auto;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
	--a-color: rgba(255, 255, 255, 0.5);
}

header .h-language a {
	position: relative;
	z-index: 1;
	font-size: var(--font14);
	color: var(--setColor);
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

header .h-language a:last-child {
	display: none;
}

header .h-language a+a::after {
	content: '';
	width: 2px;
	height: 80%;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 1;
	transform: translate(-10px, -50%);
	background: var(--setColor);
}

header .h-language a+a {
	margin-left: 20px;
}

header .h-language a.active,
header .h-language a:hover {
	color: var(--linkColor);
}

header .logo-box {
	width: 170px;
	height: 100%;
	position: relative;
	z-index: 1;
}

header .logo-box .logo {
	width: 100%;
	height: 100%;
	font-size: 0;
	position: relative;
	z-index: 1;
	transform-origin: center 30%;
	--cls1: #FFFFFF;
	--cls2: #FFFFFF;
}

header .logo-box .logo svg {
	width: 100%;
	height: 100%;
}

header .logo-box .logo svg .cls-1 {
	fill: var(--cls1);
}

header .logo-box .logo svg .cls-2 {
	fill: var(--cls2);
}

header .column {
	width: auto;
	height: 100%;
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	pointer-events: initial;
	--column-color: #FFFFFF;
	--icon-color: #FFFFFF;
	/* Login */
	/* Menu Nav */
}

header .column .h-login,
header .column .h-search,
header .column .h-menu,
header .column .h-about {
	width: auto;
	height: 100%;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

header .column .h-login .icon,
header .column .h-search .icon,
header .column .h-menu .icon,
header .column .h-about .icon {
	width: 1em;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: var(--font24);
	color: var(--setColor);
	cursor: pointer;
	overflow: hidden;
}

header .column .h-login .icon svg,
header .column .h-search .icon svg,
header .column .h-menu .icon svg,
header .column .h-about .icon svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
}

header .column .h-login .icon svg path,
header .column .h-search .icon svg path,
header .column .h-menu .icon svg path,
header .column .h-about .icon svg path {
	fill: currentColor;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

header .column .h-login:hover .icon,
header .column .h-search:hover .icon,
header .column .h-menu:hover .icon,
header .column .h-about:hover .icon,
header .column .h-login:hover .word,
header .column .h-search:hover .word,
header .column .h-menu:hover .word,
header .column .h-about:hover .word {
	color: var(--hoverColor);
}

header .column .h-login {
	display: none;
}

header .column .h-login .alear-login {
	width: 260px;
	height: auto;
	position: absolute;
	z-index: 1;
	right: -20px;
	top: 100%;
	transform: translateY(10px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

header .column .h-login .alear-login::before {
	content: '';
	width: 0;
	height: 0;
	transform: translateX(-28px);
	display: block;
	border-style: solid;
	border-width: 0 3px 5px 3px;
	border-color: transparent transparent #FFFFFF transparent;
}

header .column .h-login .alear-login .content-box {
	width: 100%;
	height: auto;
	padding: 24px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	background: #FFFFFF;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .headline {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: #434343;
	line-height: 1.5;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box {
	width: 100%;
	height: auto;
	margin-top: 15px;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .item {
	width: 100%;
	height: auto;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .item input {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	border: 1px solid rgba(68, 51, 68, 0.2);
	border-radius: 5px;
	font-size: 14px;
	line-height: 1;
	color: #000000;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .item input:focus {
	border-color: #525252;
}

header .column .h-login .alear-login .content-box .form-box .item+.item {
	margin-top: 20px;
}

header .column .h-login .alear-login .content-box .form-box .tips {
	width: 100%;
	height: auto;
	margin-top: 14px;
	text-align: center;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .tips a {
	font-size: 12px;
	line-height: 1.5;
	color: #657F93;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

header .column .h-login .alear-login .content-box .form-box .tips a:hover {
	color: #000000;
}

header .column .h-login .alear-login .content-box .form-box .submit {
	width: 100%;
	height: auto;
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .submit input,
header .column .h-login .alear-login .content-box .form-box .submit button {
	width: 120px;
	height: 40px;
	border: 0;
	border-radius: 10px;
	background: #434343;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .submit input:hover,
header .column .h-login .alear-login .content-box .form-box .submit button:hover {
	background: #000000;
}

header .column .h-login .alear-login .content-box .form-box .link {
	width: 100%;
	height: auto;
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .link a {
	width: auto;
	height: auto;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #434343;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

header .column .h-login .alear-login .content-box .form-box .link a .word {
	font-size: 14px;
	font-weight: 700;
}

header .column .h-login .alear-login .content-box .form-box .link a .icon {
	width: 8px;
	height: 12px;
	margin-left: 6px;
}

header .column .h-login .alear-login .content-box .form-box .link a .icon svg {
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

header .column .h-login .alear-login .content-box .form-box .link a .icon svg path {
	fill: currentColor;
}

header .column .h-login .alear-login .content-box .form-box .link a::after {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 1;
	transform: translateX(-50%);
	background: #000000;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

header .column .h-login .alear-login .content-box .form-box .link a:hover {
	color: #000000;
}

header .column .h-login .alear-login .content-box .form-box .link a:hover::after {
	width: 100%;
}

header .column .h-login .icon.active {
	color: var(--hoverColor);
}

header .column .h-login .icon.active+.alear-login {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

header .column .h-search {
	margin-left: var(--font30);
	display: none;
}

header .column .h-menu {
	margin-left: var(--font30);
	cursor: pointer;
}

header .column .h-menu .icon {
	position: relative;
	z-index: 1;
}

header .column .h-menu .icon .active {
	width: 1em;
	height: 1em;
	font-size: var(--font22);
}

header .column .h-menu .icon .close {
	width: 1em;
	height: 1em;
	font-size: var(--font16);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--hoverColor);
	display: none;
}

header .column .h-menu .word {
	margin-left: 1em;
	font-weight: 300;
	font-size: 12px;
	color: var(--setColor);
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

header .h-about {
	width: auto;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
}

header .h-about .icon {
	width: 1em;
	height: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: var(--font16);
	color: var(--setColor);
	cursor: pointer;
	overflow: hidden;
}

header .h-about .icon svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
}

header .h-about .icon svg path {
	fill: currentColor;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

@media (max-width:1920px) {
	header .header-box {
		padding: 0 5.2vw;
	}
}

@media (max-width:1366px) {
	header .header-box {
		padding: 0 30px;
	}
}

@media (max-width:1024px) {
	header {
		/* .h-language { opacity: 1; visibility: visible; } */
		/* .logo-box .logo { --opacity: 1; } */
	}

	header.open-active {
		--linkColor: #000000;
		--hoverColor: #000000;
	}

	header.open-active .logo-box .logo {
		--cls1: #1D1D1B;
		--cls2: #E42320;
	}

	header .header-box {
		padding: 0 20px;
	}

	header .column .h-login:hover .icon,
	header .column .h-search:hover .icon,
	header .column .h-menu:hover .icon {
		color: var(--setColor);
	}

	header .breadcrumb-nav {
		opacity: 0;
		visibility: hidden;
	}
}

.header_nbsp {
	width: 100%;
	height: var(--head-height);
	overflow: hidden;
}

/* -------------------- */
/* Nav */
.nav-box {
	width: 100%;
	height: var(--vh);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	padding-top: var(--head-height);
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}

.nav-box .container {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.nav-box .menu-main {
	width: 100%;
	height: auto;
	max-height: 100%;
	padding: 40px 0;
	overflow: hidden;
	overflow-y: auto;
}

.nav-box .menu-main .item {
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 20px;
	overflow: hidden;
}

.nav-box .menu-main .item .menu {
	width: calc(100% + 20px);
	height: auto;
	grid-area: 1 / 7 / 1 / -1;
	font-size: 0;
	overflow: hidden;
}

.nav-box .menu-main .item .menu .one {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	overflow: hidden;
	/* a::after { content: ''; width: 0; height: 1px; position: absolute; right: 0; bottom: 0; z-index: 1; background: #FFFFFF; .dh; } */
	/* a:hover::after { width: 100%; } */
}

.nav-box .menu-main .item .menu .one a {
	position: relative;
	z-index: 1;
	font-size: var(--font18);
	color: #FFFFFF;
	line-height: 1.5;
}

.nav-box .menu-main .item .menu .one a .icon {
	width: 0.4em;
	height: 0.9em;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(0, -50%);
	fill: currentColor;
	opacity: 0;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.nav-box .menu-main .item .menu .one a .icon svg {
	width: 100%;
	height: 100%;
}

.nav-box .menu-main .item .menu .one a:hover .icon {
	transform: translate(10px, -50%);
	opacity: 1;
}

.nav-box .menu-main .item .menu .one+.one {
	margin-top: 7px;
}

.nav-box .menu-main .item .line {
	width: 100%;
	height: auto;
	grid-area: 1 / 6 / 1 / 7;
	position: relative;
	z-index: 1;
}

.nav-box .menu-main .item .line::before {
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 1;
	background: #FFFFFF;
}

.nav-box .menu-main .item .headline {
	width: calc(100% + 20px);
	height: auto;
	grid-area: 1 / 1 / 1 / 6;
	transform: translateX(-20px);
	text-align: right;
	overflow: hidden;
}

.nav-box .menu-main .item .headline .title {
	font-size: var(--font38);
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1;
}

.nav-box .menu-main .item .headline .number {
	margin-top: 24px;
	font-size: var(--font18);
	font-weight: 700;
	color: #FFFFFF;
	opacity: 0.6;
	line-height: 1;
}

.nav-box .menu-main .item+.item {
	margin-top: 8.8vh;
}

.nav-box::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

@media (max-width:767px) {
	.nav-box .container {
		display: block;
	}

	.nav-box .menu-main .item {
		grid-template-columns: 100%;
		grid-gap: 14px;
	}

	.nav-box .menu-main .item .headline {
		width: 100%;
		transform: translate(0);
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		grid-area: 1 / 1 / 1 / -1;
	}

	.nav-box .menu-main .item .headline .title {
		order: 2;
		font-size: 20px;
		color: #333333;
		line-height: 21px;
	}

	.nav-box .menu-main .item .headline .number {
		margin: 0 10px 0 0;
		order: 1;
		display: none;
	}

	.nav-box .menu-main .item .line {
		grid-area: 2 / 1 / 3 / -1;
	}

	.nav-box .menu-main .item .line::before,
	.nav-box .menu-main .item .line::after {
		left: 0;
		top: auto;
		bottom: 0;
		opacity: 0.1;
		background: #000000;
	}

	.nav-box .menu-main .item .line::before {
		width: 100%;
		height: 1px;
	}

	.nav-box .menu-main .item .line::after {
		width: 10vw;
		height: 1px;
		opacity: 1;
	}

	.nav-box .menu-main .item .menu {
		grid-area: 3 / 1 / 4 / -1;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 7px 20px;
	}

	.nav-box .menu-main .item .menu .one {
		text-align: left;
	}

	.nav-box .menu-main .item .menu .one a {
		color: #999999;
	}

	.nav-box .menu-main .item .menu .one+.one {
		margin: 0;
	}

	.nav-box .menu-main .item+.item {
		margin-top: 50px;
	}

	.nav-box::after {
		background: #FFFFFF;
	}
}

/* -------------------- */
/* 首页内容 */
.idx-banner {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	overflow: hidden;
	/* 控制器 */
}

.idx-banner .idx-box {
	width: 100%;
	height: var(--vh);
	position: relative;
	left: 0;
	top: 0;
	z-index: 1;
	overflow: hidden;
}

.idx-banner .idx-box .info-box {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	padding: 0 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

.idx-banner .idx-box .info-box .img {
	width: 70%;
	height: auto;
	font-size: 0;
	margin: 0 auto;
	text-align: center;
}

.idx-banner .idx-box .info-box .img img {
	max-width: 100%;
	max-height: 60vh;
}

.idx-banner .idx-box .info-box .first-info {
	width: 100%;
	height: auto;
	text-align: center;
	line-height: 1;
	color: #FFFFFF;
	display: none;
}

.idx-banner .idx-box .info-box .first-info,
.idx-banner .idx-box .info-box .first-info a {
	line-height: 1;
	color: #FFFFFF;
}

.idx-banner .idx-box .info-box .first-info .title {
	margin: -0.1em 0;
	font-size: calc(var(--font300) / 3);
}

.idx-banner .idx-box .info-box .first-info .active {
	margin: -0.1em 0;
	position: relative;
	z-index: 1;
	font-size: var(--font300);
}

.idx-banner .idx-box .info-box .first-info .active .hot {
	position: absolute;
	right: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-1.8em, -50%);
	font-size: var(--font30);
}

.idx-banner .idx-box .info-box .first-info .active .word {
	font-weight: 700;
	font-size: var(--font300);
}

.idx-banner .idx-box .info-box .first-info .subtitle {
	font-size: var(--font62);
}

.idx-banner .idx-box .info-box .middle-info {
	width: 100%;
	height: auto;
	text-align: center;
	line-height: 1;
	color: #FFFFFF;
	display: none;
}

.idx-banner .idx-box .info-box .middle-info,
.idx-banner .idx-box .info-box .middle-info a {
	line-height: 1;
	color: #FFFFFF;
}

.idx-banner .idx-box .info-box .middle-info .title {
	width: 100%;
	height: auto;
	font-weight: 200;
	font-size: var(--font80);
	white-space: break-spaces;
}

.idx-banner .idx-box .info-box .middle-info .title span {
	font-weight: 500;
	font-size: var(--font140);
	letter-spacing: -0.05em;
}

.idx-banner .idx-box .info-box .middle-info .subtitle {
	width: 100%;
	height: auto;
	font-weight: 200;
	font-size: var(--font34);
	white-space: break-spaces;
}

.idx-banner .idx-box .info-box .middle-info .subtitle span {
	font-size: var(--font44);
}

.idx-banner .idx-box .info-box .last-info {
	width: 100%;
	height: auto;
	text-align: center;
	line-height: 1;
	color: #FFFFFF;
	display: none;
}

.idx-banner .idx-box .info-box .last-info,
.idx-banner .idx-box .info-box .last-info a {
	line-height: 1;
	color: #FFFFFF;
}

.idx-banner .idx-box .info-box .last-info .title {
	width: 100%;
	height: auto;
	font-weight: 200;
	font-size: var(--font48);
	white-space: break-spaces;
}

.idx-banner .idx-box .info-box .last-info .title span {
	font-weight: 500;
	font-size: var(--font72);
	letter-spacing: -0.05em;
}

.idx-banner .idx-box .info-box .last-info .subtitle {
	width: 100%;
	height: auto;
	font-weight: 200;
	font-size: var(--font34);
	white-space: break-spaces;
}

.idx-banner .idx-box .info-box .last-info .subtitle span {
	font-size: var(--font44);
}

.idx-banner .idx-box .info-box .menu {
	width: 80%;
	height: auto;
	margin: 80px auto 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: var(--font24);
	grid-gap: 0.5em 2em;
}

.idx-banner .idx-box .info-box .menu .one {
	width: auto;
	height: auto;
	text-align: center;
	font-size: var(--font24);
	/* a::after { content: ''; width: 0; height: 1px; position: absolute; left: 50%; bottom: 0; z-index: 1; transform: translateX(-50%); background: #FFFFFF; .dh; } */
}

.idx-banner .idx-box .info-box .menu .one a {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	font-weight: 300;
	font-size: var(--font24);
	color: #FFFFFF;
	line-height: 1.2;
}

.idx-banner .idx-box .info-box .menu .one a .icon {
	width: 0.4em;
	height: 0.9em;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(0, -50%);
	fill: currentColor;
	opacity: 0;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.idx-banner .idx-box .info-box .menu .one a .icon svg {
	width: 100%;
	height: 100%;
}

.idx-banner .idx-box .info-box .menu .one a:hover .icon {
	transform: translate(10px, -50%);
	opacity: 1;
}

.idx-banner .idx-box .images {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.idx-banner .idx-box .images::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	background: #000000;
	opacity: 0.2;
}

.idx-banner .idx-box .images img,
.idx-banner .idx-box .images video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.idx-banner .banner-box+* {
	pointer-events: none;
}

.idx-banner .controller-box {
	width: 100%;
	height: 100vh;
	padding: 0 0 6.2125rem;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
	pointer-events: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	overflow: hidden;
}

.idx-banner .controller-box .bottom-line {
	width: 200vw;
	height: 100vh;
	position: absolute;
	left: 0;
	bottom: 12px;
	z-index: 100;
	pointer-events: none;
	background: url('../images/line.svg') repeat-x bottom left / 100vw auto;
	filter: brightness(0) invert(1);
	overflow: hidden;
	visibility: hidden;
}

.idx-banner .controller-box .bottom-line svg {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	display: none;
}

.idx-banner .controller-box .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.idx-banner .controller-box .center-box {
	width: clamp(60px, 5.25rem, 84px);
	height: auto;
}

.idx-banner .controller-box .center-box .pagination {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
}

.idx-banner .controller-box .center-box .pagination span {
	width: 1em;
	height: 1em;
	position: relative;
	z-index: 1;
	font-size: var(--font24);
	border: 1px solid transparent;
	border-radius: 50%;
	cursor: pointer;
	pointer-events: initial;
	background: transparent;
	opacity: 1;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.idx-banner .controller-box .center-box .pagination span::after {
	content: '';
	width: 33.33%;
	height: 33.33%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #D9D9D9;
	opacity: 0.4;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.idx-banner .controller-box .center-box .pagination span.active {
	border-color: #FFFFFF;
}

.idx-banner .controller-box .center-box .pagination span.active::after {
	width: 50%;
	height: 50%;
	opacity: 1;
}

.idx-banner .controller-box .center-box .pagination span:hover::after {
	opacity: 1;
}

.idx-banner .controller-box .center-box .pagination span+span {
	margin-top: 8px;
}

.idx-banner .controller-box .center-box .navigation {
	width: 100%;
	height: auto;
	margin-top: 24px;
}

.idx-banner .controller-box .center-box .navigation .click-btn {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	pointer-events: auto;
	overflow: hidden;
}

.idx-banner .controller-box .center-box .navigation .click-btn::after {
	content: '';
	width: 100%;
	height: 0;
	display: block;
	padding-bottom: 100%;
}

.idx-banner .controller-box .center-box .navigation .click-btn svg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	cursor: pointer;
}

.idx-banner .controller-box .center-box .navigation .click-btn svg circle {
	stroke: #FFFFFF;
	fill: transparent;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.idx-banner .controller-box .center-box .navigation .click-btn svg path {
	fill: #FFFFFF;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.idx-banner .controller-box .center-box .navigation .click-btn:hover svg circle {
	fill: #FFFFFF;
}

.idx-banner .controller-box .center-box .navigation .click-btn:hover svg path {
	fill: #000000;
}

.idx-banner .controller-box .center-box .navigation .click-btn.disabled {
	opacity: 0.25;
	pointer-events: none;
}

.idx-banner .controller-box .center-box .navigation .click-btn+.click-btn {
	margin-top: 22px;
}

@media (max-width:1600px) {
	.idx-banner .idx-box .info-box .menu {
		margin: 60px auto 0;
	}
}

@media (max-width:1280px) {
	.idx-banner .idx-box .info-box .menu {
		margin: 48px auto 0;
	}
}

@media (max-width:1024px) {
	.idx-banner .idx-box:first-child .info-box {
		opacity: 1;
	}

	.idx-banner .controller-box {
		display: none;
	}
}

@media (max-width:991px) {
	.idx-banner .idx-box .info-box .menu {
		width: 100%;
		margin: 48px 0 0;
	}
}

.alert-about {
	width: 100%;
	height: var(--vh);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
	padding-top: var(--head-height);
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
}

.alert-about .about-box {
	width: 100%;
	height: auto;
	max-height: 70vh;
	overflow-y: auto;
}

.alert-about .about-box .details {
	width: 100%;
	max-width: 900px;
	height: auto;
	margin: 0 auto;
	text-align: center;
	font-weight: 300;
	font-size: var(--font24);
	color: #FFFFFF;
	line-height: 1.3;
}

.alert-about .about-box .menu {
	width: 80%;
	height: auto;
	margin: 80px auto 0;
}

.alert-about .about-box .menu .one {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: var(--font18);
}

.alert-about .about-box .menu .one a {
	position: relative;
	z-index: 1;
	font-weight: 300;
	font-size: var(--font18);
	color: #FFFFFF;
	line-height: 1.2;
}

.alert-about .about-box .menu .one a::after {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 1;
	transform: translateX(-50%);
	background: #FFFFFF;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.alert-about .about-box .menu .one a:hover::after {
	width: 100%;
}

.alert-about .about-box .menu .one+.one {
	margin-top: 0.5em;
}

.alert-about::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.6);
}

.alert-about .about-video {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	overflow: hidden;
}

.alert-about .about-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* -------------------- */
.alert-contact {
	width: 100%;
	height: var(--vh);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
	padding-top: var(--head-height);
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
}

.alert-contact .contact-box {
	width: 100%;
	height: auto;
	max-height: 80vh;
	overflow-y: auto;
}

.alert-contact .contact-box .contact-menu {
	width: 100%;
	height: auto;
	max-width: 1580px;
	margin: 0 auto;
}

.alert-contact .contact-box .contact-menu .contact-item {
	width: 100%;
	height: auto;
}

.alert-contact .contact-box .contact-menu .contact-item .title-box {
	width: 100%;
	height: auto;
	text-align: center;
}

.alert-contact .contact-box .contact-menu .contact-item .title-box .headline {
	width: 100%;
	height: auto;
	font-weight: 500;
	font-size: var(--font24);
	color: #FFFFFF;
}

.alert-contact .contact-box .contact-menu .contact-item .title-box .details {
	width: 100%;
	height: auto;
	margin-top: 16px;
	font-weight: 300;
	font-size: var(--font20);
	color: #FFFFFF;
	line-height: 1.3;
}

.alert-contact .contact-box .contact-menu .contact-item .menu {
	width: 100%;
	height: auto;
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2rem 10%;
}

.alert-contact .contact-box .contact-menu .contact-item .menu .item {
	width: 100%;
	height: auto;
}

.alert-contact .contact-box .contact-menu .contact-item .menu .item .headline {
	width: 100%;
	height: auto;
	font-weight: 500;
	font-size: var(--font16);
	color: #FFFFFF;
}

.alert-contact .contact-box .contact-menu .contact-item .menu .item .details {
	width: 100%;
	height: auto;
	margin-top: 8px;
	font-weight: 300;
	font-size: var(--font16);
	color: #FFFFFF;
	line-height: 1.3;
}

.alert-contact .contact-box .contact-menu .contact-item .menu .item .details p+p {
	margin-top: 8px;
}

.alert-contact .contact-box .contact-menu .contact-item+.contact-item {
	margin-top: 5rem;
}

.alert-contact::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.6);
}

.alert-contact .contact-video {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	overflow: hidden;
}

.alert-contact .contact-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* -------------------- */
/* 底部 */
footer {
	width: 100%;
	height: auto;
	background: #FFFFFF;
	overflow: hidden;
}

footer .footer-box {
	width: 100%;
	height: auto;
	padding: 2.5rem 0 3.75rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	overflow: hidden;
}

footer .footer-box .logo-box {
	width: auto;
	height: auto;
	font-size: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
}

footer .footer-box .logo-box a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

footer .footer-box .logo-box a .logo {
	width: auto;
	min-width: 80px;
	max-width: 170px;
}

footer .footer-box .logo-box a .logo svg {
	width: 100%;
}

footer .footer-box .logo-box a .logo svg .cls-1 {
	fill: #1D1D1B;
}

footer .footer-box .logo-box a .logo svg .cls-2 {
	fill: #E42320;
}

footer .footer-box .logo-box a .icon {
	width: 50px;
	margin-left: 24px;
}

footer .footer-box .logo-box a .icon svg {
	width: 100%;
	height: auto;
}

footer .footer-box .address-info {
	width: auto;
	max-width: 50%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	grid-gap: 24px;
	overflow: hidden;
}

footer .footer-box .address-info .item {
	width: 100%;
	height: auto;
}

footer .footer-box .address-info .item .headline {
	width: 100%;
	height: auto;
	font-size: 14px;
	line-height: 1.5;
	color: var(--dark-grey-27);
	white-space: break-spaces;
	overflow: hidden;
}

footer .footer-box .address-info .item .address {
	width: 100%;
	height: auto;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--dark-grey-27);
	filter: opacity(0.4);
	overflow: hidden;
}

footer .footer-box .contact-info {
	width: auto;
	height: auto;
	overflow: hidden;
}

footer .footer-box .contact-info .headline {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	font-size: var(--font14);
	color: #525252;
	white-space: nowrap;
}

footer .footer-box .contact-info .headline a {
	position: relative;
	z-index: 1;
	font-size: var(--font14);
	color: #525252;
}

footer .footer-box .contact-info .headline a::after {
	content: '';
	width: 100%;
	max-width: 2.14em;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -0.5em;
	z-index: 1;
	background: var(--dark-grey-27);
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

footer .footer-box .contact-info .headline a:hover::after {
	max-width: 100%;
}

footer .footer-box .contact-info .headline a+a {
	margin-left: 2em;
}

footer .footer-box .contact-info .share-box {
	width: 100%;
	min-width: 64px;
	height: auto;
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	overflow: hidden;
}

footer .footer-box .contact-info .share-box .icon {
	width: 24px;
	height: 24px;
	overflow: hidden;
}

footer .footer-box .contact-info .share-box .icon svg {
	width: 100%;
	height: 100%;
}

footer .footer-box .contact-info .share-box .icon+.icon {
	margin-left: 16px;
}

@media (max-width:768px) {
	footer .footer-box {
		display: block;
	}

	footer .footer-box .address-info {
		width: 100%;
		max-width: 100%;
		margin-top: 24px;
	}

	footer .footer-box .contact-info {
		width: 100%;
		margin-top: 24px;
	}
}

@media (max-width:480px) {
	footer .footer-box .address-info {
		display: block;
	}

	footer .footer-box .address-info .item+.item {
		margin-top: 24px;
	}
}

/* -------------------- */
/* -------------------- */
/* -------------------- */
/* 内页 */
.inner-box {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

/* -------------------- */
/* Read more */
.inner-more {
	width: 100%;
	height: auto;
	margin-top: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	overflow: hidden;
}

.inner-more a,
.inner-more .more {
	width: auto;
	height: auto;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	overflow: hidden;
	--link-color: var(--dark-grey-27);
}

.inner-more a .word,
.inner-more .more .word {
	font-size: 14px;
	font-weight: 700;
	color: var(--link-color);
}

.inner-more a .icon,
.inner-more .more .icon {
	width: 8px;
	height: 12px;
	margin-left: 6px;
	font-size: 0;
}

.inner-more a .icon svg,
.inner-more .more .icon svg {
	width: 100%;
	height: 100%;
}

.inner-more a .icon svg path,
.inner-more .more .icon svg path {
	fill: var(--link-color);
}

.inner-more a::after,
.inner-more .more::after {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	background: var(--link-color);
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

/* -------------------- */
/* -------------------- */
.inner-parallax-box {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 100;
	--padding: 120px;
	overflow: hidden;
	/* &::after { content: ''; width: 100%; height: 100%; position: absolute; left: 0; top: -40px; z-index: 1; background: url('../svg/../youyidian/images/line.svg') repeat-x left bottom; } */
}

@media (max-width:1920px) {
	.inner-parallax-box {
		--padding: 5.2vw;
	}
}

@media (max-width:1366px) {
	.inner-parallax-box {
		--padding: 30px;
	}
}

@media (max-width:1024px) {
	.inner-parallax-box {
		--padding: 20px;
	}
}

.inner-parallax-box .parallax-box {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 5;
	pointer-events: none;
	overflow: hidden;
}

.inner-parallax-box .parallax-box .parallax-wrapper {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	will-change: transform;
}

.inner-parallax-box .parallax-box .parallax-slide {
	width: 100%;
	height: 100vh;
	flex-shrink: 0;
	overflow: hidden;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	padding: 120px var(--padding) calc(var(--padding) + 40px);
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box {
	width: 50%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	padding-right: 20px;
	--title-color: #000000;
	--details-color: #8E8E8E;
	will-change: transform;
	overflow: hidden;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box .title {
	width: 100%;
	height: auto;
	font-size: var(--font80);
	line-height: 1.15;
	color: var(--title-color);
	white-space: pre-line;
	pointer-events: auto;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box .title span {
	font-weight: 700;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box .info {
	width: 100%;
	height: auto;
	flex: 1;
	overflow-y: auto;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box .details {
	width: 100%;
	height: auto;
	flex: 1;
	margin-top: 24px;
	padding-right: 20px;
	overflow: hidden;
	overflow-y: auto;
	pointer-events: auto;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box .details,
.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box .details * {
	font-size: var(--font18);
	color: var(--details-color);
	line-height: 1.5;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content {
	width: 50%;
	height: 100%;
	position: absolute;
	z-index: 10;
	left: 50%;
	top: 0;
	padding: 120px var(--padding) var(--padding);
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	pointer-events: none;
	overflow: hidden;
	--inset-x: 100%;
	--images-w: 50%;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box {
	width: 70%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	padding: 120px var(--padding) var(--padding);
	display: block;
	opacity: 0;
	visibility: hidden;
	--title-color: #FFFFFF;
	--details-color: #FFFFFF;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .info {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	pointer-events: auto;
	overflow: hidden;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details,
.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details * {
	font-size: var(--font14);
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details h6 {
	font-weight: 700;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details::-webkit-scrollbar-thumb {
	background: #FFFFFF;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.2);
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box {
	width: 100%;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-1 {
	font-weight: 200;
	font-size: var(--font78);
	color: #FFFFFF;
	line-height: 1;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-2 {
	font-weight: 500;
	font-size: var(--font54);
	color: #FFFFFF;
	line-height: 1;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-3 {
	font-weight: 200;
	font-size: var(--font100);
	color: #FFFFFF;
	line-height: 1;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	border-radius: 1rem;
	pointer-events: auto;
	overflow: hidden;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .title {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	font-size: var(--font48);
	font-weight: 700;
	color: #FFFFFF;
	overflow: hidden;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	font-size: 0;
	overflow: hidden;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	background: #000000;
	opacity: 0.2;
	pointer-events: none;
}

.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img img,
.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inner-parallax-box .pager-box {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 20px;
	left: 0;
	z-index: 4;
	overflow: hidden;
}

.inner-parallax-box .pager-box .container {
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 20px;
	padding: 0 var(--padding);
}

.inner-parallax-box .pager-box .container * {
	pointer-events: auto;
}

.inner-parallax-box .pager-box .container .pager {
	width: auto;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 1px;
	overflow: hidden;
}

.inner-parallax-box .pager-box .container .pager span {
	width: 1em;
	height: 1em;
	font-size: var(--font24);
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid transparent;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	pointer-events: initial;
	opacity: 1;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.inner-parallax-box .pager-box .container .pager span::after {
	content: '';
	width: 33.33%;
	height: 33.33%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #000000;
	opacity: 0.4;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.inner-parallax-box .pager-box .container .pager span.active {
	border-color: rgba(0, 0, 0, 0.5);
}

.inner-parallax-box .pager-box .container .pager span.active::after {
	width: 50%;
	height: 50%;
	opacity: 1;
}

.inner-parallax-box .pager-box .container .pager span:hover::after {
	opacity: 1;
}

.inner-parallax-box .pager-box .container .swiper-btn {
	width: 1em;
	height: 1em;
	mix-blend-mode: color-burn;
	cursor: pointer;
	font-size: var(--font84);
}

.inner-parallax-box .pager-box .container .swiper-btn svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
}

.inner-parallax-box .pager-box .container .swiper-btn svg circle {
	opacity: 0.5;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.inner-parallax-box .pager-box .container .swiper-btn:hover svg circle {
	opacity: 1;
}

@media (max-width:1024px) {
	.inner-parallax-box {
		padding: var(--head-height) 0;
	}

	.inner-parallax-box .parallax-box {
		margin-top: 24px;
	}

	.inner-parallax-box .parallax-box .parallax-wrapper {
		display: block;
	}

	.inner-parallax-box .parallax-box .parallax-slide {
		height: auto;
		padding: 60px 0;
		border-bottom: 1px solid #F0F0F0;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box {
		padding: 0 20px;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .info-box {
		width: 100%;
		padding: 0;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content {
		width: 100%;
		position: relative;
		left: 0;
		margin: 24px 0 0;
		padding: 0;
		display: block;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box {
		width: 100%;
		display: block;
		padding: 20px;
		opacity: 1;
		visibility: visible;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .info {
		width: 100%;
		-webkit-clip-path: none;
		clip-path: none;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .title {
		white-space: normal;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details {
		max-height: initial;
		flex: 1;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images {
		width: 100%;
		height: auto;
		border-radius: 0;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .title {
		visibility: hidden;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img {
		height: auto;
		border-radius: 1rem;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img::before {
		content: '';
		width: 100%;
		height: 0;
		display: block;
		padding-bottom: 56.25%;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img img,
	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .images .img video {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}

	.inner-parallax-box .parallax-box .parallax-slide:first-child {
		padding-top: 0;
	}

	.inner-parallax-box .parallax-box .parallax-slide:last-child {
		padding-bottom: 0;
		border: 0;
	}

	.inner-parallax-box::after {
		display: none;
	}

	.inner-parallax-box .pager-box {
		display: none;
	}
}

@media (max-width:768px) {
	.inner-parallax-box .parallax-box .parallax-slide .center-box .content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box {
		position: relative;
		padding: 30px 0 0;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .info {
		display: block;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .title {
		font-size: 30px;
		color: #000000;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details {
		margin-top: 16px;
		max-height: calc(8em * 1.5);
		line-height: 1.5;
		color: #8E8E8E;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content .info-box .details * {
		color: #8E8E8E;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-1,
	.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-2,
	.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-3 {
		color: #000000;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-1 {
		font-size: 30px;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-2 {
		font-size: 24px;
	}

	.inner-parallax-box .parallax-box .parallax-slide .center-box .content.active .info-box .info .title-3 {
		font-size: 36px;
	}
}

/* -------------------- */
/* -------------------- */
/* Our history */
.inner-history {
	width: 100%;
	height: auto;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	padding: calc(var(--head-height) + 2.5rem) 0 8.75rem;
	overflow: hidden;
}

.inner-history .inner-title {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.inner-history .inner-title .title {
	width: 100%;
	height: auto;
	max-height: calc(2em * 1.375);
	font-size: var(--font80);
	line-height: 1.375;
	color: #000000;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.inner-history .inner-title .details {
	margin-top: 16px;
	font-size: var(--font18);
	line-height: 1.5;
	color: #8E8E8E;
}

.inner-history .inner-title .inner-more {
	margin-top: 16px;
	display: none;
}

.inner-history .history-box {
	width: 100%;
	height: auto;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding-top: 40px;
}

.inner-history .history-box .history-menu {
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 20px;
}

.inner-history .history-box .history-menu .history-wrapper {
	width: 100%;
	grid-area: 1 / 2 / 1 / 6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	grid-gap: var(--gap);
	--gap: 5rem;
}

.inner-history .history-box .history-menu .history-item {
	width: 100%;
	height: auto;
	flex-shrink: 0;
	cursor: pointer;
}

.inner-history .history-box .history-menu .history-item .images {
	width: 100%;
	height: auto;
	position: relative;
	left: 0;
	z-index: 1;
}

.inner-history .history-box .history-menu .history-item .images .year {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: var(--font130);
	font-weight: 700;
	color: #FFFFFF;
	transition: opacity 0.9s ease;
	overflow: hidden;
}

.inner-history .history-box .history-menu .history-item .images .pb {
	padding-bottom: 75%;
	overflow: visible;
}

.inner-history .history-box .history-menu .history-item .images .ab {
	width: 100%;
	left: 50%;
	border-radius: 10px;
	transform: translate(-50%, 0);
	transition: width 0.9s ease;
}

.inner-history .history-box .history-menu .history-item .images .img {
	width: 100vw;
	height: 100%;
	background: #000000;
	position: relative;
	z-index: 1;
	left: -25vw;
	background-size: cover !important;
	background-position: center !important;
	overflow: hidden;
	transform: var(--hello-6666);
}

.inner-history .history-box .history-menu .history-item .images .img img,
.inner-history .history-box .history-menu .history-item .images .img video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.inner-history .history-box .history-menu .history-item .info {
	width: 100%;
	height: auto;
	margin-top: 2.5rem;
	overflow: hidden;
}

.inner-history .history-box .history-menu .history-item .info .title {
	width: 100%;
	height: auto;
	font-size: var(--font30);
	color: #000000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.inner-history .history-box .history-menu .history-item .info .details {
	width: 100%;
	height: auto;
	font-size: var(--font14);
	color: #8E8E8E;
	line-height: 1.2;
	overflow: hidden;
}

.inner-history .history-box .history-menu .history-item .inner-more {
	display: none;
}

.inner-history .history-box .history-menu .history-item:hover .images .year {
	opacity: 0.2;
}

.inner-history .history-box .history-menu .history-item:hover .images .img img,
.inner-history .history-box .history-menu .history-item:hover .images .img video {
	opacity: 1;
	transform: scale(1.2);
}

.inner-history .history-box .history-menu .history-item:hover .images .ab {
	width: calc(100% + var(--gap));
}

@media (max-width:1024px) {
	.inner-history .history-box .history-menu {
		display: block;
	}

	.inner-history .history-box .history-menu .history-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 50px 20px;
	}

	.inner-history .history-box .history-menu .history-item .images .year {
		opacity: 1;
	}

	.inner-history .history-box .history-menu .history-item .images .pb {
		padding-bottom: 56.25%;
	}

	.inner-history .history-box .history-menu .history-item .images .img {
		width: 100%;
		left: 0;
	}

	.inner-history .history-box .history-menu .history-item:hover .images {
		width: 100%;
	}
}

@media (max-width:767px) {
	.inner-history .history-box .history-menu .history-wrapper {
		grid-template-columns: 100%;
	}
}

.inner-history .history-box::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	background: url('../images/line.svg') repeat-x left bottom / 100vw auto;
	opacity: 0.3;
}

@media (max-width:1024px) {
	.inner-history {
		display: block;
	}
}

.history-swiper {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	background: #000000;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}

.history-swiper * {
	pointer-events: none !important;
}

.history-swiper .block-header {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	overflow: hidden;
}

.history-swiper .block-header .close {
	width: 100%;
	height: var(--head-height);
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	overflow: hidden;
}

.history-swiper .block-header .close .icon {
	width: 20px;
	height: 20px;
	cursor: pointer;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.history-swiper .block-header .close .icon svg {
	width: 100%;
	height: 100%;
}

.history-swiper .block-header .close .icon svg path {
	fill: #FFFFFF;
}

.history-swiper .block-header .close .icon:hover {
	transform: rotate(90deg);
}

.history-swiper .swiper-box {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.history-swiper .swiper-box .swiper-slide {
	height: var(--vh);
	position: relative;
	z-index: 1;
	padding-top: var(--head-height);
}

.history-swiper .swiper-box .swiper-slide .content {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
	padding: 24px 0 13rem;
	overflow: hidden;
}

.history-swiper .swiper-box .swiper-slide .content .container {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.history-swiper .swiper-box .swiper-slide .content .year,
.history-swiper .swiper-box .swiper-slide .content .title {
	font-size: var(--font80);
	color: #FFFFFF;
	line-height: 1.05;
	pointer-events: initial;
}

.history-swiper .swiper-box .swiper-slide .content .details {
	width: 100%;
	height: auto;
	flex: 1;
	margin-top: 16px;
	pointer-events: initial;
	overflow: hidden;
	overflow-y: auto;
}

.history-swiper .swiper-box .swiper-slide .content .details,
.history-swiper .swiper-box .swiper-slide .content .details * {
	font-size: var(--font30);
	color: #FFFFFF;
	line-height: normal;
}

.history-swiper .swiper-box .swiper-slide .content .details::-webkit-scrollbar-thumb {
	background: #FFFFFF;
}

.history-swiper .swiper-box .swiper-slide .content .details::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.2);
}

.history-swiper .swiper-box .swiper-slide .images {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	background: #000000;
	overflow: hidden;
}

.history-swiper .swiper-box .swiper-slide .images img,
.history-swiper .swiper-box .swiper-slide .images video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.history-swiper .swiper-box .swiper-slide.active {
	z-index: 5;
}

.history-swiper .swiper-box .swiper-slide.active * {
	pointer-events: initial;
}

.history-swiper .pager_box {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 5rem;
	z-index: 10;
}

.history-swiper .pager_box .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 24px;
}

.history-swiper .pager_box .pager {
	width: auto;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 1px;
	overflow: hidden;
}

.history-swiper .pager_box .pager span {
	width: 1em;
	height: 1em;
	font-size: var(--font24);
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid transparent;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	pointer-events: initial;
	opacity: 1;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.history-swiper .pager_box .pager span::after {
	content: '';
	width: 33.33%;
	height: 33.33%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #FFFFFF;
	opacity: 0.4;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.history-swiper .pager_box .pager span.active {
	border-color: #FFFFFF;
}

.history-swiper .pager_box .pager span.active::after {
	width: 50%;
	height: 50%;
	opacity: 1;
}

.history-swiper .pager_box .pager span:hover::after {
	opacity: 1;
}

.history-swiper .pager_box .swiper-btn {
	width: 1em;
	height: 1em;
	font-size: var(--font84);
	cursor: pointer;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.history-swiper .pager_box .swiper-btn svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
}

.history-swiper .pager_box .swiper-btn svg circle {
	stroke: #FFFFFF;
	fill: #FFFFFF;
}

.history-swiper .pager_box .swiper-btn svg path {
	fill: #000000;
}

.history-swiper .pager_box .swiper-btn.prev.active {
	opacity: 0.4;
}

.history-swiper .pager_box .swiper-btn.next.active {
	opacity: 0;
	pointer-events: none;
}

.history-swiper .pager_box .swiper-btn::after {
	content: attr(data-year);
	width: auto;
	height: auto;
	position: absolute;
	left: 50%;
	top: 100%;
	z-index: 10;
	transform: translate(-50%, 16px);
	font-size: 18px;
	color: #FFFFFF;
}

.history-swiper.active {
	pointer-events: auto;
}

.history-swiper.active * {
	pointer-events: auto !important;
}

/* -------------------- */
/* -------------------- */
/* Our philosophy */
/* 第二种切换效果 */
.inner-style-one {
	width: 100%;
	height: var(--vh);
	position: relative;
	z-index: 1;
	padding: 120px 0;
	overflow: hidden;
}

.inner-style-one .swiper-box {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.inner-style-one .swiper-box .swiper-wrapper,
.inner-style-one .swiper-box .swiper-slide,
.inner-style-one .swiper-box .container,
.inner-style-one .swiper-box .grid-box {
	height: 100%;
}

.inner-style-one .swiper-box .swiper-wrapper {
	background: url('../images/line.svg') repeat-x bottom left / 100vw auto;
	transition: none !important;
}

.inner-style-one .swiper-box .center-box {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	grid-gap: 20px;
}

.inner-style-one .swiper-box .center-box .info-box {
	width: 100%;
	height: 100%;
	padding-bottom: 50px;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.inner-style-one .swiper-box .center-box .info-box .title {
	width: 100%;
	height: auto;
	font-size: 80px;
	line-height: 1.05;
	color: #000000;
	white-space: pre-line;
}

.inner-style-one .swiper-box .center-box .info-box .title span {
	font-weight: 700;
}

.inner-style-one .swiper-box .center-box .info-box .info {
	width: 100%;
	height: auto;
	flex: 1;
	margin-top: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.inner-style-one .swiper-box .center-box .info-box .info .details {
	width: 100%;
	height: auto;
	padding-right: 20px;
	font-size: 18px;
	color: #8E8E8E;
	line-height: 1.5;
	overflow: hidden;
	overflow-y: auto;
}

.inner-style-one .swiper-box .center-box .info-box .info .inner-more {
	margin-top: 30px;
}

.inner-style-one .swiper-box .center-box .images {
	width: 50%;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
}

.inner-style-one .swiper-box .center-box .images .img-box {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	background: #000000;
	overflow: hidden;
}

.inner-style-one .swiper-box .center-box .images .img-box .title {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: 48px;
	font-weight: 700;
	color: #FFFFFF;
	overflow: hidden;
}

.inner-style-one .swiper-box .center-box .images .img-box .img {
	width: 100%;
	height: 100%;
	opacity: 0.8;
	overflow: hidden;
}

.inner-style-one .swiper-box .center-box .images .img-box .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inner-style-one .pager_box {
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 10;
	left: 0;
	bottom: 20px;
	overflow: hidden;
}

.inner-style-one .pager_box .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 24px;
}

.inner-style-one .pager_box .pager {
	width: auto;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 1px;
	overflow: hidden;
}

.inner-style-one .pager_box .pager span {
	width: 24px;
	height: 24px;
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid transparent;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	pointer-events: initial;
	opacity: 1;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.inner-style-one .pager_box .pager span::after {
	content: '';
	width: 33.33%;
	height: 33.33%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #000000;
	opacity: 0.4;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.inner-style-one .pager_box .pager span.active {
	border-color: #000000;
}

.inner-style-one .pager_box .pager span.active::after {
	width: 50%;
	height: 50%;
	opacity: 1;
}

.inner-style-one .pager_box .pager span:hover::after {
	opacity: 1;
}

.inner-style-one .pager_box .swiper-btn {
	width: 84px;
	height: 84px;
	cursor: pointer;
}

.inner-style-block {
	width: 100%;
	height: var(--vh);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	pointer-events: none;
	opacity: 0;
	overflow: hidden;
	--delay: 0.5s;
	--time: 0.5s;
}

.inner-style-block * {
	pointer-events: none !important;
}

.inner-style-block .block-header {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	transform: translateY(-100%);
	transition: transform var(--time) ease;
	overflow: hidden;
}

.inner-style-block .block-header .close {
	width: 100%;
	height: var(--head-height);
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	overflow: hidden;
}

.inner-style-block .block-header .close .icon {
	width: 20px;
	height: 20px;
	cursor: pointer;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.inner-style-block .block-header .close .icon svg {
	width: 100%;
	height: 100%;
}

.inner-style-block .block-header .close .icon svg path {
	fill: #FFFFFF;
}

.inner-style-block .block-header .close .icon:hover {
	transform: rotate(90deg);
}

.inner-style-block .swiper-box {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.inner-style-block .swiper-box .swiper-wrapper {
	width: 100%;
	height: 100%;
}

.inner-style-block .swiper-box .swiper-slide {
	width: 100%;
	height: 100%;
}

.inner-style-block .swiper-box .swiper-slide .center-box {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	padding: 104px 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	transition: all var(--time) ease;
	overflow: hidden;
}

.inner-style-block .swiper-box .swiper-slide .center-box .content {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	padding: 104px 120px 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	overflow: hidden;
}

.inner-style-block .swiper-box .swiper-slide .center-box .content .info {
	width: 50%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	transition: all var(--time) ease;
	overflow: hidden;
}

.inner-style-block .swiper-box .swiper-slide .center-box .content .info .title {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

.inner-style-block .swiper-box .swiper-slide .center-box .content .info .title .word {
	width: auto;
	height: auto;
	font-size: var(--font80);
	font-weight: 700;
	color: #FFFFFF;
	transition: all var(--time) ease;
}

.inner-style-block .swiper-box .swiper-slide .center-box .content .info .details {
	width: 100%;
	height: auto;
	flex: 0;
	opacity: 0;
	transition: all var(--time) ease;
	overflow: hidden;
}

.inner-style-block .swiper-box .swiper-slide .center-box .content .info .details,
.inner-style-block .swiper-box .swiper-slide .center-box .content .info .details * {
	font-size: var(--font18);
	color: #FFFFFF;
}

.inner-style-block .swiper-box .swiper-slide .center-box .images {
	width: 50%;
	height: 100%;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	font-size: 0;
	background: #000000;
	transition: all var(--time) ease;
	overflow: hidden;
}

.inner-style-block .swiper-box .swiper-slide .center-box .images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.inner-style-block .pager-box {
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 10;
	left: 0;
	bottom: 0;
	padding-bottom: 24px;
	transform: translateY(100%);
	transition: transform var(--time) ease;
	overflow: hidden;
}

.inner-style-block .pager-box .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 24px;
}

.inner-style-block .pager-box .pager {
	width: auto;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	grid-gap: 1px;
	overflow: hidden;
}

.inner-style-block .pager-box .pager span {
	width: 24px;
	height: 24px;
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid transparent;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	pointer-events: initial;
	opacity: 1;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
	overflow: hidden;
}

.inner-style-block .pager-box .pager span::after {
	content: '';
	width: 33.33%;
	height: 33.33%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #FFFFFF;
	opacity: 0.4;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.inner-style-block .pager-box .pager span.active {
	border-color: #FFFFFF;
}

.inner-style-block .pager-box .pager span.active::after {
	width: 50%;
	height: 50%;
	opacity: 1;
}

.inner-style-block .pager-box .pager span:hover::after {
	opacity: 1;
}

.inner-style-block .pager-box .swiper-btn {
	width: 84px;
	height: 84px;
	cursor: pointer;
}

.inner-style-block .pager-box .swiper-btn svg {
	width: 100%;
	height: 100%;
}

.inner-style-block .pager-box .swiper-btn svg circle {
	stroke: #FFFFFF;
	fill: #FFFFFF;
}

.inner-style-block .pager-box .swiper-btn svg path {
	fill: #000000;
}

.inner-style-block.active {
	pointer-events: auto;
	opacity: 1;
}

.inner-style-block.active * {
	pointer-events: auto !important;
}

.inner-style-block.active .block-header {
	transform: translateY(0);
	transition-delay: var(--delay);
}

.inner-style-block.active .swiper-box {
	background: #000000;
	transition-delay: var(--delay);
}

.inner-style-block.active .swiper-box .swiper-slide .center-box {
	padding: 0;
}

.inner-style-block.active .swiper-box .swiper-slide .center-box .content .info {
	width: 100%;
}

.inner-style-block.active .swiper-box .swiper-slide .center-box .content .info .title .word {
	flex: 1;
}

.inner-style-block.active .swiper-box .swiper-slide .center-box .content .info .details {
	flex: 1;
	opacity: 1;
}

.inner-style-block.active .swiper-box .swiper-slide .center-box .images {
	width: 100%;
	border-radius: 0;
}

.inner-style-block.active .pager-box {
	transform: translateY(0);
	transition-delay: var(--delay);
}

/* -------------------- */
/* -------------------- */
/* -------------------- */
/* --- X JOURNAL --- */
/* Updates */
.inner-news {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	padding: calc(var(--head-height) + 2.5rem) 0 7.5rem;
	overflow: hidden;
}

.inner-news .news-box {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.inner-news .news-box .inner-title {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.inner-news .news-box .inner-title .title {
	font-size: var(--font80);
	line-height: 1.05;
	color: #000000;
}

.inner-news .news-box .filter-box {
	width: 100%;
	height: auto;
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	overflow: hidden;
}

.inner-news .news-box .filter-box .search-box {
	width: auto;
	height: auto;
}

.inner-news .news-box .filter-box .search-box form {
	width: auto;
	height: 40px;
	border-radius: 50px;
	border: 1px solid #EDEDED;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.inner-news .news-box .filter-box .search-box form input {
	width: 100%;
	height: 100%;
	flex: 1;
	padding: 0 20px;
	color: #000000;
}

.inner-news .news-box .filter-box .search-box form button {
	width: 50px;
	height: 100%;
	color: #999999;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.inner-news .news-box .filter-box .search-box form button svg {
	width: 100%;
	height: 100%;
	max-width: 50%;
	max-height: 50%;
}

.inner-news .news-box .filter-box .search-box form button svg path {
	fill: currentColor;
}

.inner-news .news-box .filter-box .search-box form button:hover {
	color: #000000;
}

.inner-news .news-box .filter-box .sort-box {
	width: 26px;
	height: 26px;
	margin-left: 1.5rem;
	padding: 3px;
	cursor: pointer;
}

.inner-news .news-box .filter-box .sort-box svg {
	width: 100%;
	height: 100%;
}

.inner-news .news-box .filter-box .sort-box svg path {
	fill: var(--dark-grey-27);
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.inner-news .news-box .filter-box .sort-box.active svg path {
	fill: #000000;
}

.inner-news .news-box .filter-box .one+.one {
	margin-left: 24px;
}

.inner-news .news-box .filter-box .one:hover svg path,
.inner-news .news-box .filter-box .one.active svg path {
	fill: #000000;
}

.inner-news .news-box .news-list {
	width: 100%;
	height: auto;
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10rem 8.75rem;
	overflow: hidden;
}

.inner-news .news-box .news-list .item {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	cursor: pointer;
	overflow: hidden;
}

.inner-news .news-box .news-list .item .img {
	width: 38%;
	max-width: 208px;
	height: auto;
	overflow: hidden;
}

.inner-news .news-box .news-list .item .img .pb {
	padding-bottom: 153.36538%;
	border-radius: 10px;
	text-align: right;
}

.inner-news .news-box .news-list .item .img img {
	width: 110%;
	max-width: 110%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.45s ease-out;
	-o-transition: all 0.45s ease-out;
	transition: all 0.45s ease-out;
}

.inner-news .news-box .news-list .item .info {
	width: 100%;
	height: auto;
	flex: 1;
	margin-left: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.inner-news .news-box .news-list .item .info .title {
	width: 100%;
	height: auto;
	font-size: var(--font30);
	color: #000000;
	line-height: 1.3;
	overflow: hidden;
}

.inner-news .news-box .news-list .item .info .title a {
	color: #000000;
}

.inner-news .news-box .news-list .item .info .title span {
	font-size: var(--font40);
}

.inner-news .news-box .news-list .item .info .time {
	width: 100%;
	height: auto;
	margin-top: 24px;
	font-size: var(--font20);
	font-weight: 700;
	color: #8E8E8E;
	line-height: 1;
}

.inner-news .news-box .news-list .item .info .details {
	width: 100%;
	height: auto;
	margin-top: 24px;
	max-height: calc(5em * 1.3);
	font-size: var(--font14);
	color: #8E8E8E;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.inner-news .news-box .news-list .item:hover .img img {
	transform: translateX(-5%);
}

.inner-news .news-box .news-list .item:hover .info .inner-more .more::after {
	width: 100%;
}

@media (max-width:1440px) {
	.inner-news .news-box .news-list .item .img {
		width: 208px;
		max-width: 100%;
	}
}

@media (max-width:1024px) {
	.inner-news .news-box .news-list {
		grid-template-columns: 100%;
		grid-gap: 2rem;
	}
}

@media (max-width:640px) {
	.inner-news .news-box .news-list .item {
		display: grid;
		grid-template-columns: 1fr 2fr;
	}

	.inner-news .news-box .news-list .item .img {
		width: 100%;
	}

	.inner-news .news-box .news-list .item .info {
		margin-left: 20px;
	}

	.inner-news .news-box .news-list .item .info .details {
		display: none;
	}
}

@media (max-width:991px) {
	.inner-news {
		padding-bottom: 2.5rem;
	}
}

.inner-news-details {
	width: 100%;
	height: auto;
	padding: 120px 0 var(--head-height);
	overflow: hidden;
}

.inner-news-details .news-box {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	grid-gap: 20px;
	overflow: hidden;
}

.inner-news-details .news-box .info-box {
	width: 100%;
	height: auto;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	grid-gap: 2rem;
	overflow: hidden;
}

.inner-news-details .news-box .info-box .time {
	width: 100%;
	height: auto;
	font-size: var(--font18);
	font-weight: 700;
	color: #8E8E8E;
	line-height: 1;
}

.inner-news-details .news-box .info-box .title {
	width: 100%;
	height: auto;
	font-size: var(--font64);
	color: #000000;
	line-height: 1.3125;
	overflow: hidden;
}

.inner-news-details .news-box .info-box .details {
	width: 100%;
	height: auto;
	font-size: var(--font18);
	color: #8E8E8E;
	line-height: 1.5;
	overflow: hidden;
}

.inner-news-details .news-box .info-box .inner-more a:hover::after {
	width: 100%;
}

.inner-news-details .news-box .info-box .share-box {
	width: 100%;
	height: auto;
	margin-top: 2rem;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	overflow: hidden;
}

.inner-news-details .news-box .info-box .share-box .icon {
	width: 24px;
	height: 24px;
	overflow: hidden;
}

.inner-news-details .news-box .info-box .share-box .icon svg {
	width: 100%;
	height: 100%;
}

.inner-news-details .news-box .info-box .share-box .icon svg path:first-child {
	fill: #936B65;
}

.inner-news-details .news-box .info-box .share-box .icon+.icon {
	margin-left: 2rem;
}

.inner-news-details .news-box .images {
	width: 50%;
	height: auto;
	overflow: hidden;
}

.inner-news-details .news-box .images .pb {
	background: #000000;
	padding-bottom: 98.30508475%;
	border-radius: 2rem;
}

.inner-news-details .news-box .images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

@media (max-width:1024px) {
	.inner-news-details .news-box {
		display: block;
	}

	.inner-news-details .news-box .images {
		width: 100%;
		margin-top: 36px;
	}
}

.Multilingual {
	color: var(--setColor);
	font-size: 12px;
	cursor: pointer;
	font-weight: 300;
}

@media (max-width:1024px) {
	.Multilingual {
		position: fixed;
		left: 10px;
		top: 24px;
	
		
		
	}

}

.Multilingual:hover {
	color: #000;

}

.white {
	font-size: 16px;
	color: #fff;
}

.aic {
	align-items: center;
}

.jcc {
	justify-content: center;
}

.cp {
	cursor: pointer;
}
.op0{
	opacity: 0;
}
.dpno{
	display: none;
}
