/*首页中间菜单*/
 .nav-bg {
    width: 100%;
    /*background: #000;*/
	 display: flex;
	 justify-content: center;
}
.box20240613001536 {
    /*width: 760px;*/
    margin: 0 auto;
    background-color:#000;
    /*border-radius: 50px;*/
	display: inline-block;
}
.box20240613001536 ul {

    z-index:999;
    display:flex;
    justify-content: space-between;
}
.box20240613001536 ul li {
    float: left;
    position: relative;
	margin-left: 25px;
}
.box20240613001536 ul li a {
    font-size: 12px;
	font-weight: bold;
    /*height: 50px;*/
    /*padding: 0px 27px;*/
    line-height: 50px;
    color: #fff;
    display: block;

	text-align: center;
	/*margin: 3px;*/

}
.box20240613001536 ul li a:hover,.current_selected_BD{
    color:#fff;
    transition: 0.3s all;
/*	background-color:#000;*/
	border-radius: 0px;
}
.current_selected_BD{
	border-radius: 50px;
	/*background-color:#000;	*/
}
.mobile-nav {
    display: none;
}
.nav-bottom {
    display:none;
}
.box20240613001536 ul li ul {
    /*box-shadow: 0px 5px 10px #aaa;*/
   /* width: 200px;*/
    display: none;
    background: #000;
    position: absolute;
    top: 50px;
    left: 0px;
	border-radius: 0px;
border-top: 1px solid #d0003a;
}

.box20240613001536 ul li ul li {
    clear: both;
padding: 8px 0px;
	margin-left: 0px;
	border-bottom: 1px solid #292929;
/*    background: #fff;*/
}
.box20240613001536 ul li ul li:first-child {
/*padding-top: 25px;*/
/*    background: #fff;*/
}
.box20240613001536 ul li ul li:last-child {
/*padding-bottom: 25px;*/
/*    background: #fff;*/
}

.box20240613001536 ul li ul li a {
    font-size: 12px;
	font-weight:normal;
	text-align: left;
	padding:6px 10px;
	width: 170px;
	line-height: normal;
}
.box20240613001536 ul li ul li a {
display: flex;
	justify-content: space-between;
}
.box20240613001536 ul li ul li a:hover {
/*background-color: #f1f1f1;*/
}


/*从第三级菜单开始,所有的子级菜单都相对偏移*/
.box20240613001536 ul li ul ul{
	top:-1px;
	left:170px;
} 

/*END 首页中间菜单*/