@media screen{
	.right-logo{
		display:none;
	}
}

@media screen and (min-width:1698px){
	.right-logo{
		display: block;
		float:right;
	}
}


.banner-menu {
     position: absolute; /* 使用绝对定位 */
     top: 0;
     left: 0;
     width: 100%;
     min-width:1080px;
     height: 108px;
     background: linear-gradient(360deg, rgba(13, 50, 131, 0.9) 0%, #0D3283 100%);
     opacity: 0.9;	
     display: flex;
     z-index: 100;
     justify-content:space-between;
 }
 
.logo-wrap{
	float:left;
	margin-top:23px;
	margin-left:45px;
}
.left-logo{
	float:left;
	width: 58;
	height: 58;
	top: 25px;
	left: 45px;
	angle: 0 deg;
	opacity: 1;
	
}

#logo-title1{
	font-family: Source Han Serif CN;
	/*font-weight: 500;*/
	font-size: 26px;
	line-height: 140%;
	color:white;
	line-height: 1;
}
#logo-title2{
	font-family: Source Han Serif CN;
	font-weight:bold;
	font-size: 12px;
	line-height: 140%;
	color:white;
	line-height: 1;
}
#navbar{
	margin-top:23px;
	margin-right:30px;
	display:flex;
}

.nav .open>a,.nav .open>a:focus,.nav .open>a:hover .nav>li>a:hover, .nav>li>a:focus{
    font-family: Microsoft YaHei;
	color:white;
	font-weight: 700;
	font-style: Bold;
	font-size: 18px;
	line-height: 100%;
    background: linear-gradient(360deg, rgba(13, 50, 131, 0.9) 0%, #0D3283 100%);
    border-bottom-color: rgba(199, 217, 255, 1);
}

.dropdown-toggle{
	font-family: Microsoft YaHei;
	color:white;
	font-weight: 700;
	font-style: Bold;
	font-size: 18px;
	line-height: 100%;
	position: relative; 
  	border-bottom: 3px solid transparent;
  	transition: border-bottom-color 0.3s ease;
}
 /* 二级菜单样式 */
 .dropdown-menu {
     position: absolute;
     width: 240px;
     background: linear-gradient(360deg, rgba(13, 50, 131, 0.9) 0%, #0D3283 100%);
     backdrop-filter: blur(10px);
     border-radius: 0 0 8px 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     
 }
 .dropdown-menu > li > a{
 	 width:220px;
 	 margin-left:10px;
 	 margin-right:10px;
 	 padding:3px 0px;
 	 border-bottom: 2px solid transparent;
 	 white-space: nowrap;
     overflow: hidden;
     line-height:2;
 }
.dropdown-menu > li > a:hover{
     background: linear-gradient(360deg, rgba(13, 50, 131, 0.9) 0%, #0D3283 100%);
     border-bottom-color: rgba(199, 217, 255, 1);
}