body.yesover{
	overflow: hidden;
}
/* 导航栏容器 */
.navbar {
	position: relative;
	z-index: 999;
	background: linear-gradient(90deg,rgba(32,31,91,1),rgba(37, 109, 230, 1));
}
.navbar.nav-bgc{
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.nvaprodl{
	background-color: #fff;
}

.navbar-container {
	display: flex;
	padding: 0 30px;
	margin: 0 auto;
	height: 70px;
}

/* Logo */
.navbar-brand {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.navbar-brand img{
	display: block;
	width: auto;
	height: 40px;
}

/* 导航菜单 */
.navbar-menu {
	display: flex;
	list-style: none;
	margin-left: 30px;
}

.navbar-item {
	position: relative;
}
.navbar-item.nav-first{
	display: none;
}

.navbar-link {
	display: block;
	color: #fff;
	padding: 15px 20px;
	line-height: 40px;
	text-transform: capitalize;
	font-size: 14px;
}
.navbar-link i{
	display: inline-block;
	margin-left: 5px;
	font-size: 12px;
	vertical-align: middle;
	transition: 0.5s;
	line-height: 20px;
}
.navbar.nav-bgc .navbar-link{
	color: #000;
}
.navbar.nvaprodl .navbar-link{
	color: #000;
}

.navbar-link:hover {
	color: #fff;
}
/* .navbar.nav-bgc .navbar-link.on,
.navbar-link.on{
	color: var(--main-color);
} */
.navbar-link:hover {
	opacity: 0.5
}
.navbar-link:hover i{
	transform: rotate(180deg);
}

/* 下拉菜单 */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	min-width: 100%;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all var(--transition-speed) ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 1001;
}

.dropdown-item {
	position: relative;
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.dropdown-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 12px 15px;
	white-space: nowrap;
}
.dropdown-item.has-dropdown .dropdown-link{
	padding-right: 40px;
}

.dropdown-link:hover {
	color: var(--main-color);
}

/* 三级菜单 */
.dropdown-menu .dropdown-menu {
	top: 0;
	left: 100%;
	background-color:#fff;
	z-index: 1002;
}

/* 四级菜单 */
.dropdown-menu .dropdown-menu .dropdown-menu {
	/* background-color: #fff; */
	z-index: 1003;
}

/* 悬停时显示下拉菜单 */
.navbar-item:hover>.dropdown-menu,
.dropdown-item:hover>.dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 指示器箭头 */
/* .dropdown-item.has-dropdown>.dropdown-link::after {
	content: '\e61d';
	font-family: 'iconfont';
	font-weight: bold;
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
} */

/* 汉堡菜单按钮 */
.navbar-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
}

.navbar-toggle span {
	display: block;
	height: 1px;
	width: 100%;
	background-color: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.mobile-search{
	display: none;
}
.mobile-language{
	display: none;
}

/* 移动端样式 */
@media (max-width: 992px) {
	.navbar-brand img{
		height: 36px;
	}
	.navbar-container{
		height: 52px;
		align-items: center;
		justify-content: space-between;
		padding: 0 20px;
	}
	.navbar-toggle {
		display: flex;
	}
	.navbar-menu {
		position: absolute;
		top: 52px;
		left: 0;
		width: 100%;
		flex-direction: column;
		background: linear-gradient(90deg,rgba(32,31,91,1),rgba(37, 109, 230, 1));
		height: 0;
		overflow: hidden;
		transition: height 0.3s ease;
		padding: 20px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		margin-left: 0;
	}

	.navbar-menu.active {
		height: calc(100vh - 52px);
		overflow-y: auto;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.navbar-item {
		width: 100%;
	}
	.navbar-item.nav-first{
		display: block;
	}
	.navbar-link {
		padding: 5px 20px 5px 0;
		color: #fff;
		font-size: 14px;
		/* border-bottom: 1px solid rgba(255, 255, 255, 0.4); */
		position: relative;
		line-height: 24px;
		text-transform: capitalize;
	}
	.navbar.nav-bgc .navbar-link{
		color: #fff;
	}
	.navbar.nvaprodl .navbar-link{
		color: #fff;
	}
	
	.navbar.nav-bgc .navbar-link.on,
	.navbar-link.on{
		color: #fff;
	}

	/* 移动端下拉菜单 */
	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		height: 0;
		overflow: hidden;
		transition: height 0.3s ease;
		box-shadow: none;
		background-color: transparent;
		width: 100%;
		padding: 0 15px;
	}

	.dropdown-menu.active {
		height: auto;
	}

	.dropdown-item {
		border-bottom: none;
	}
	.dropdown-link{
		padding: 5px 20px 5px 0;
		color: #fff;
		/* border-bottom: 1px solid rgba(255, 255, 255, 0.4); */
		line-height: 24px;
		position: relative;
	}

	/* 多级菜单在移动端的缩进 */
	.dropdown-menu .dropdown-menu {
		background-color: transparent;
	}

	.dropdown-menu .dropdown-menu .dropdown-menu {
		
	}

	/* 箭头指示器 */
	.navbar-item.has-dropdown>.navbar-link::before,
	.dropdown-item.has-dropdown>.dropdown-link::before {
		content: '';
		width: 12px;
		height: 2px;
		position: absolute;
		background-color: #fff;
		right: 2px;
		top: 50%;
		transform: translateY(-50%);
	}
	.navbar-item.has-dropdown>.navbar-link::after,
	.dropdown-item.has-dropdown>.dropdown-link::after {
		content: '';
		width: 2px;
		height: 12px;
		position: absolute;
		background-color: #fff;
		right: 7px;
		top: 50%;
		transform: translateY(-50%);
		transition: 0.3s;
	}

	.navbar-item.has-dropdown.active>.navbar-link::after,
	.dropdown-item.has-dropdown.active>.dropdown-link::after {
		transform: rotate(90deg);
		width: 0;
		opacity: 0;
		visibility: hidden;
	}
	.navbar-item.no-dropdown > .navbar-link::after{
		content: '\e61d';
		font-family: "iconfont" !important;
		color: #fff;
		font-size: 14px;
		position: absolute;
		right: 2px;
		top: 50%;
		transform: translateY(-50%);
		font-weight: bold;
	}
	.mobile-search{
		margin-top: 50px;
		display: block;
		position: relative;
		height: auto;
		overflow: hidden;
		border-bottom: 1px solid #fff;
	}
	.mobile-search input{
		display: block;
		width: 100%;
		height: 44px;
		background-color: transparent;
		font-size: 14px;
		line-height: 44px;
		padding-right: 50px;
		border: none;
		color: #fff;
		font-family: inherit;
	}
	.mobile-search button{
		display: block;
		width: 44px;
		height: 44px;
		background-color: transparent;
		border: none;
		text-align: center;
		line-height: 44px;
		border-radius: 50%;
		cursor: pointer;
		position: absolute;
		top: 0;
		right: 0;
	}
	.mobile-search button i{
		font-size: 26px;
		color: #fff;
	}
	.navbar-link i{
		display: none;
	}
	
}

@media (min-width: 992px) {
	.navbar-item.mega-1{
		position: static;
	}
	.navbar-item.mega-1 > .dropdown-menu{
		width: 100%;
		max-width: 1430px;
		left: 50%;
		transform: translateX(-50%) scaleY(0);
		display: flex;
		padding: 30px 0;
		justify-content: center;
		
		transform-origin: top center;
	}
	.navbar-item.mega-1 > .dropdown-menu::before{
		content: '';
		width: 2500px;
		height: 100%;
		background-color: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 0;
	}
	
	.navbar-item.mega-1 > .dropdown-menu > .dropdown-item{
		width: auto;
		min-width: 120px;
		max-width: 160px;
		margin: 0 15px;
		height: auto;
		overflow: hidden;
	}
	.navbar-item.mega-1 > .dropdown-menu > .dropdown-item >.dropdown-link{
		padding: 15px 0;
		line-height: 20px;
		color: #222;
		font-family: 'Righteous';
		font-size: 16px;
	}
	.navbar-item.mega-1 > .dropdown-menu > .dropdown-item >.dropdown-link:hover{
		opacity: 0.5;
	}
	.navbar-item.mega-1 > .dropdown-menu > .dropdown-item > .dropdown-menu{
		position: relative;
		left: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		top: auto;
		transform: translate(0);
	}
	.navbar-item.mega-1 > .dropdown-menu > .dropdown-item > .dropdown-menu > .dropdown-item  > .dropdown-link{
		padding: 10px 0;
		line-height: 22px;
		color: #555;
		
		white-space: pre-line;
	}
	.navbar-item.mega-1 > .dropdown-menu > .dropdown-item > .dropdown-menu > .dropdown-item  > .dropdown-link:hover{
		opacity: 0.5;
	}
	
	.navbar-menu > .navbar-item.has-dropdown:hover > .dropdown-menu{
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) scaleY(1);
		transition: 0.5s;
	}
	
}