/*首页中间菜单*/
.box2025050315131053 {
    width: 100%;
}
.box2025050315131053 ul {
    width: 100%;
    z-index:999;
    display:flex;
    justify-content: space-between;
}
.box2025050315131053 ul li:first-child {
	 width: 691px;
	text-align: left;
}

.box2025050315131053 ul li {
	width: 100%;
	height: 60px;
	position: relative;
	padding: 0px 0px;
	display: inline-block;
	display: flex;
	align-items: center;
}
.box2025050315131053 ul li a {
    font-size: 22px;
    font-weight: lighter;
    letter-spacing: 4px;
    /* line-height: 50px; */
    color: #fff;
    display: inline-block;
    width: 100%;
    text-align: center;
    border-right: solid 1px #B3A281;
}
.box2025050315131053 ul li:last-child a{

    border-right:none;
}


/*一级菜单的选中状态,f1f1f1*/
.box2025050315131053 ul li.current_selected_BD{
	background-color: #B3A281;
	margin-left: -1px;
}

/*二级菜单*/
.box2025050315131053 ul li ul {
    box-shadow: 0px 5px 10px #aaa;
    display: none;
    background: #fafafa;
    position: absolute;
    top: 50px;
    left: 0px;
	border-radius: 0px;
	border-top: 2px solid #D3D3D3;
}

.box2025050315131053 ul li ul li {
	border-bottom: 1px solid #EAEAEA;
}

.box2025050315131053 ul li ul li a {
    color: #333;
    font-size: 16px;
	font-weight:normal;
	text-align: left;
	padding:15px;
	width: 200px; /*设置二级菜单的宽度*/
	line-height: normal;
	display: flex;
	justify-content: space-between;
}

.box2025050315131053 ul li ul li a:hover{
    color:#d0003a;
    transition: 0.3s all;
	border-radius: 0px;
	background-color: #f1f1f1;
}

/*二级菜单的选中状态,改背景色*/
.box2025050315131053 ul li ul li.current_selected_BD{
	background-color:#f1f1f1;
}

/*从第三级菜单开始,所有的子级菜单都相对偏移*/
.box2025050315131053 ul li ul ul{
	top:-1px;
	left:200px;/*设置三级菜单的左偏移量,一般跟二级菜单的宽度一致*/
}
/*END 首页中间菜单*/