/* 导航栏样式 */

.header .navs {
	transition: all 0.5s ease-out 0s;
	height: 80px;
}

.header .nav_main {
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .nav_main .meun {
	margin: 0;
	display: flex;
	flex: 1;
	justify-content: center;
	border-bottom: 0px solid #FFF;
	min-width: 0;
}

.header .nav_main .meun:hover {
	border-bottom: 0px solid #FFF;
}

.header .nav_main .meun:hover a {
	font-weight: bold;
}

.header .nav_main .meun a {
	font-size: 18px;
	line-height: 83px;
}

.ul_100 {
	margin-left: 0px !important;
}

.ul_700 {
	margin-left: -174px !important;
}

.header .nav_main .meun ul {
	z-index: 100;
	float: left;
	width: 300px;
	position: absolute;
	display: none;
	margin-top: 0px;
	margin-left: -83px;
	padding: 10px 0px;
	border-radius: 0px 0px 5px 5px;
}

.header .nav_main .navs ul a {
	font-size: 16px;
	display: block;
	width: 50%;
	float: left;
	line-height: 50px;
	color: #FFF;
	font-weight: normal !important;
}

.header .nav_main .meun ul a:hover {
	font-weight: bold !important;
}

/* 移动端导航样式 */
@media screen and (max-width: 768px) {
	.navs {
		display: none;
	}

	.m-navs {
		display: flex;
		background: #FFF;
		height: 3.125rem;
		line-height: 3.125rem;
		align-items: center;
	}

	.meun-first {
		height: 3.125rem;
	}

	.meun-last {
		width: 1.875rem !important;
		height: 1.875rem;
		flex-shrink: 0;
		border: 0.0625rem solid rgba(0, 0, 0, 0.1);
		border-radius: 0.3125rem;
		line-height: 1.875rem;
		margin-right: 0.125rem;
		cursor: pointer;
		min-width: unset !important;
		text-align: center;
	}

	.m-navs .fl {
		flex: 1;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.m-navs .fl .m-scroll {
		min-width: 25rem;
		display: inline-block;
		white-space: nowrap;
	}

	.m-navs .meun {
		float: none;
		display: inline-block;
		vertical-align: middle;
		min-width: 4.3rem;
		text-align: center;
		margin: 0 0.5rem;
	}

	.m-navs .meun a {
		font-family: '黑体';
		font-weight: bold;
		font-size: 0.875rem; /* 14px -> 0.875rem */
	}

	#m_more_menus {
		display: block;
		padding: 1rem;
		width: calc(100% - 2rem);
		background: #F4F4F4;
	}

	#m_more_menus .nav_1 {
		/* display: none; */
	}

	#m_more_menus .meun {
		line-height: 1.375rem;
		margin-bottom: 0.625rem;
		background: #F8F8F8;
		line-height: 1.875rem;
		border: 0.0625rem solid #ECEFF7;
		border-radius: 1rem;
		box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important;
	}

	#m_more_menus .meun ul {
		border-radius: 0 0 1rem 1rem;
		padding: 1rem;
	}

	#m_more_menus .meun a {
		margin-left: 1rem;
		line-height: 2.375rem;
	}

	#m_more_menus .meun ul {
		background: #FFF !important;
		height: auto !important;
		display: block !important;
	}

	#m_more_menus .meun ul a {
		font-size: 0.875rem;
		font-weight: normal;
		margin-left: 0.3125rem;
		line-height: 1.375rem;
		white-space: nowrap;
		color: #666 !important;
	}

	#m_more_menus .ul_700 {
		margin-left: 0 !important;
	}
}