@charset "utf-8";

*,
:before,
:after {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	word-break: break-all;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header {
	position: relative;
	z-index: 99999;
	width: 100%;
	height: 105px;
	border-bottom: 1px solid transparent;
}

.wrap {
	width: 1200px;
	margin: 0 auto;
	height: 100%;
}

.header-top {
	width: 100%;
	background-color: #F4F4F4;
	position: fixed;
	top: 0
}

.header-top .header-top-content {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	align-items: center;
}

.header-top .header-top-content a.mobile-logo>img {
	display: none;
}

.other-info {
	height: 40px;
	font-size: 12px;
	color: #e1e1e2;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.other-info>a {
	color: #333;
}

.other-info>a:nth-child(2) {
	margin: 0 20px;
}

.other-info>a:nth-child(3) {
	margin-right: 20px;
}

.header-body {
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #e1e4e5;
	height: 65px;
	position: relative;
	position:fixed;
	top: 40px
}

.header-body-content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: 100%;
}

.header-body-content>li {
	display: flex;
	align-items: center;
	color: #333;
	height: 100%;
	font-size: 14px;
	margin-right: 30px;
}

.header-body-content>li.more-menu {
	position: relative;
}

.header-body-content>li.more-menu:hover .second-menus {
	display: block;
}

.second-menus {
	position: absolute;
	background-color: #f9fafd;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	padding: 20px 20px 10px;
	box-sizing: border-box;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}

.second-menus a {
	white-space: nowrap;
	font-size: 12px;
	color: #333;
	margin-bottom: 30px;
	display: flex;
}

.second-menus a:hover {
	color: #2d99eb;
}


.header-body-content>li:last-child {
	margin-right: 0;
}

.header-body-content>li>a {
	color: #333;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.header-body-content>li:not(:first-child)>a::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	border-radius: 5px;
	background-color: #2d99eb;
	left: 0;
	bottom: -1px;
	transform: scaleX(0);
}



.navItems {
	width: 100%;
	background-color: #f9fafd;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	position: absolute;
	top: 65px;
	left: 0;
	right: 0;
	display: none
}

.navItem-content {
	width: 100%;
	padding: 20px 0 50px;
	display: flex;
	justify-content: space-between;
	overflow-y: auto;
	max-height: calc(100vh - 120px);
	box-sizing: border-box;
}


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.navItem-content::-webkit-scrollbar {
	width: 4px;
	background-color: #F5F5F5;
	display: none;
}

/*定义滚动条轨道 内阴影+圆角*/
.navItem-content::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
.navItem-content::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
	background-color: rgba(24, 122, 251, .6);
}

.navItem-content>.second-menu-more {
	display: flex;
	flex-direction: column;
}

.navItem-content>.second-menu-more h3 {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 20px;
}

.navItem-content>.second-menu-more a {
	font-size: 12px;
	color: #333333;
	margin-bottom: 20px;
}

.navItem-content>.second-menu-more span {
	font-size: 12px;
	color: #999;
	margin-bottom: 20px;
}


.navItem-content>.second-menu-more h3>a {
	font-size: 14px;
}

.navItem-content>.second-menu-more a:hover {
	color: #2d99eb;
}

.last-navItem-content>.second-menu-more h3>a {
	color: #2d99eb;
}

.mobile-testing {
	display: none !important;
}


.header-body-content>li:hover>a {
	position: relative;
	color: #2d99eb;
}

.header-body-content>li:hover>a::after {
	transform: scaleX(1);
	transition: .3s;
}

.header-body-content>li:hover>.navItems {
	display: block !important;
}

.navItem-content>a:hover {
	border: 1px solid #fff;
}

.navItem-content>a:hover>img:first-child {
	display: none;
}

.navItem-content>a:hover>img:nth-child(2) {
	display: block;
}

.navItem-content>a:hover>p {
	color: #fff;
}

.header-body-mobile {
	display: none;
}

@media screen and (max-width: 1024px) {
	.pc-testing {
		display: none !important;
	}

	.mobile-testing {
		display: block !important;
	}

	header {
		height: 64px;
	}

	.header-top {
		position: fixed;
		width: 100%;
		height: 64px;
		background-color: #fff;
	}

	.header-top .wrap,
	.header-body .wrap {
		width: 100%;
		box-sizing: border-box;
	}

	.header-top-content {
		padding: 0;
		box-sizing: border-box;
	}

	.header-top-content .tel{
		display: none;
	}

	.header-top .header-top-content a.mobile-logo>img {
		display: block;
	}
	
	.header-top .header-top-content a:first-child {
		display: none;
	}

	.menuBtn {
		width: 35px;
		height: 35px;
	}

	.menuBtn img {
		width: 100%;
	}

	.header-body {
		display: none;
		width: 100%;
		background-color: #373D41;
	}

	.header-body-mobile {
		position: fixed;
		top: 64px;
		left: 0;
		right: 0;
		box-sizing: border-box;
		background-color: #373D41;
		max-height: calc(100vh - 60px);
		overflow-y: scroll;
	}

	.header-body-mobile>li {
		padding: 10px 1rem;
		border-bottom: 1px solid #666;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header-body-mobile>li a {
		font-size: .9rem;
		color: #fff;
		width: 100%;
	}

	.header-body-mobile>.mobile-second-menus {
		display: none;
		background-color: #373D32;
		flex-direction: column;
		border-bottom: 1px solid #666;
		padding: 10px 1.2rem;
	}

	.header-body-mobile>.mobile-second-menus>a {
		font-size: .8rem;
		color: #fff;
		padding: 6px 0;
		display: block;
	}

	.showMenu {
		display: block;
	}

	.hideMeu {
		display: none;
	}

	.footer_zsy {
		width: 100%;
		padding: 22px 5px 55px;
		background: #252628;
		color: #676768;
		text-align: center;
		font-size: 12px;
	}
}