.header {
	height: 80px;
	background: linear-gradient( 90deg, #1F3C31 0%, #16644A 100%);
	position: sticky;
	top: 0;
	z-index: 10;
}

.header>.inner {
	height: 100%;
}

.header_left>.logo {
	width: 52px;
	height: 52px;
}

.header_left>.title {
	margin-left: 12px;
	font-weight: 900;
	font-size: 24px;
	color: #ffffff;
}

.header_left>.title>.active {
	color: #F05C00;
	margin-left: 4px;
}
.header_left>.title>.active1 {
	color: #00FFAA;
}


.header_right>.menu {
	display: none;
}

.header_right>.menu>img {
	width: 24px;
	height: 24px;
}

.header_right>.nav>.item>a {
	display: block;
	font-size: 14px;
	color: #A8D8B4;
	height: 52px;
	line-height: 52px;
	padding: 0 12px;
	box-sizing: border-box;
	white-space: nowrap;
	margin: 0 3px;
	transition: color .3s ease-in-out;
	position: relative;
}

.header_right>.nav>.item>.active {
	color: #00FFAA;
	font-weight: 700;
}
.header_right>.nav>.item>.active::before {
	content: "";
	display: block;
	height: 6px;
	width: 100%;
	background-color: #00FFAA;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
}

.header_right>.nav>.item>a:hover {
	color: #00FFAA;
}
.header_right>.nav>.item>a:hover::before {
	color: #00FFAA;
	content: "";
	display: block;
	height: 6px;
	width: 100%;
	background-color: #00FFAA;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
}

/* footer */
.footer {
	background-color: #1F1F1F;
}

.footer .bottom {
	padding: 60px 0 14px 0;
	box-sizing: border-box;
}

.footer .bottom>.info {
	gap: 140px;
	border-bottom: 1px solid #3F3F47;
	padding-bottom: 50px;
	box-sizing: border-box;
}

.footer .bottom .left {
	flex: 7;
}

.footer .bottom .right {
	flex: 6;
	gap: 120px;
}

.footer .bottom .left .logo {
	width: 72px;
	height: 72px;
}

.footer .bottom .left .name {
	margin-left: 30px;
}
.footer .bottom .left .name > span {
	font-weight: 900;
	font-size: 28px;
	color: #FFFFFF;
	display: inline-block;
}

.footer .bottom .left .name>.active {
	color: #F05C00;
	margin-left: 10px;
}
.footer .bottom .left .name>.active1 {
	color: #00FFAA;
}

.footer .bottom .left>.desc {
	font-weight: 500;
	font-size: 16px;
	color: #71717B;
	margin-top: 30px;
}
.footer .bottom .left>.desc > .label {
	color: #00FFB6;
}

.footer .bottom .right>.item>.label {
	font-weight: bold;
	font-size: 20px;
	color: #FFFFFF;
	margin-bottom: 20px;
}

.footer .bottom .right>.item>.nav .link {
	font-weight: 500;
	font-size: 14px;
	color: #9F9FA9;
	padding: 8px 0;
	box-sizing: border-box;
	display: block;
}


.footer>.desc {
	padding: 22px 0 40px 0;
	box-sizing: border-box;
}

.footer>.desc p {
	font-weight: 500;
	font-size: 16px;
	color: #9C9C9C;
	text-align: center;
}

.menu_close {
	display: none;
}

@media only screen and (max-width: 1200px) {
	.header {
		height: 56px;
		padding: 0 16px;
		box-sizing: border-box;
	}

	.header_left>.logo {
		width: 40px;
		height: 40px;
	}
	
	.header_left>.title {
		margin-left: 8px;
		font-size: 16px;
	}
	

	.header>.inner>a {
		max-width: 70%;
	}

	.title_left {
		font-size: 14px;
	}

	.title>p {
		font-size: 10px;
	}

	.header_right>.menu {
		display: block;
	}

	.header_right>.nav {
		display: none;
		position: absolute;
		top: 56px;
		flex-direction: column;
		left: 0;
		background-color: #002202;
		width: 100%;
		right: 0;
		z-index: 10;
		padding: 0 16px;
		box-sizing: border-box;
		/* box-shadow: 0px 1px 0px 0px #5C5B6D; */
	}

	.header_right>.nav>.item {
		border-bottom: 1px solid #284E2F;
	}

	.header_right>.nav>.item:last-child {
		border: none;
	}
	.header_right>.nav>.item>.active::before {
		display: none;
	}

	.header_right>.nav>.item>a {
		font-size: 12px;
		font-weight: 700;
		padding: 0;
	}

	/* footer */
	.footer .bottom {
		padding: 40px 16px 60px 16px;
	}

	.footer .bottom>.info {
		gap: 0;
		flex-direction: column;
	}

	.footer .bottom .left {
		flex: 1;
	}

	.footer .bottom .right {
		flex: 1;
		gap: 0;
		flex-direction: column;
		margin-top: 26px;
	}

	.footer .bottom .left .logo {
		width: 40px;
		height: 40px;
	}

	.footer .bottom .left .name {
		font-size: 16px;
		margin-left: 12px;
	}

	.footer .bottom .left>.desc {
		font-size: 11px;
		margin-top: 23px;
	}

	.footer .bottom .right>.item>.label {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.footer .bottom .right>.item>.nav .link {
		font-size: 12px;
		padding: 8px 0;
	}


	.footer .desc_info {
		padding: 16px 0;
		height: initial;
	}

	.footer>.desc {
		padding: 0 24px;
		box-sizing: border-box;
	}

	.footer>.desc p {
		font-size: 10px;
	}

}