html {
	font-size: 100px;
}
.header-wrap {
	width: 100%;
	background: #fff;
	/* box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.1); */
	/* box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.1); */
}

.header-top {
	height: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 .5rem;
}

.header-logo {
	width: 1.99rem;
	height: 0.43rem;
}

.header-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.header-nav {
	/* height: .4rem; */
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-menu .active {
	color: #0081CC;
}

.header-menu:hover {
	color: #0081CC;
}

.header-menu {
	font-size: 0.16rem;
	color: #333333;

	padding: 0 .2rem;
	position: relative;
}

.header-first {
	cursor: pointer;
}

.header-first:hover .header-menu-a {
	color: #0081CC;
}

.header-first:hover .header-level-box {
	display: flex;
	animation: myfirst 0.5s;
	-webkit-animation: myfirst 0.5s;
	opacity: 1;
}

.header-menu-a {
	font-size: 0.18rem;
	color: #333333;
	height: 1rem;
	line-height: 1rem;
}

.header-menu-a.active {
	color: #0081CC;
}

.header-level-box {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-top: 2px solid #0081cc;
	width: 100%;
	border-radius: 0 0 .1rem .1rem;
	overflow: hidden;
	position: absolute;
	top: 1rem;
	left: 0;
	z-index: 9999;
	background: #fff;
	opacity: 0;
}

.header-level {
	width: 100%;
	text-align: center;
	font-size: 0.18rem;
	color: #333333;
	padding: 0.1rem 0;
	border-bottom: 1px #F5F7FA solid;
	transition: .5s;
}

.header-level-active {
	color: #0081CC;
	border-bottom: 1px solid #007bff;
}

.header-level:hover {
	color: #0081CC;
	border-bottom: 1px solid #007bff;
}

@keyframes myfirst {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes myfirst

/* Safari and Chrome */
	{
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@media only screen and (max-width: 1024px) {
	body {
		padding: 0.9rem 0 0rem !important;
	}
}


@media(min-width: 1280px) {
	html {
		font-size: 66px;
	}
}
@media(min-width: 1366px) {
	html {
		font-size: 71px;
	}
}
@media(min-width: 1440px) {
	html {
		font-size: 75px;
	}
}
@media(min-width: 1600px) {
	html {
		font-size: 83.33px;
	}
}
@media(min-width: 1680px) {
	html {
		font-size: 87.5px;
	}
}

@media(min-width: 1920px) {
	html {
		font-size: 100px;
	}
}


