/********************************	 导航栏样式	********************************/

.classy-nav-container{
	position: fixed;
    margin: auto;
    left: 0;
    right: 0;
	width: 100%;
	height: 1.6rem;
    background-color: rgb(0 0 0 / 30%);
    filter: drop-shadow(rgba(43, 51, 65, 0.12) 0px -2px 32px);
    z-index: 99;
    /*使元素变为不可选中*/
	user-select:none;
    -moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
}
.mobile_nav_bg{
	background-color: #FFF;
}
:root{
	--mobile_nav_display:none;
	--mobile_nav_height:0;
	--mobile_nav_padding_top:0;
	--mobile_nav_btn: url("/CyberGlobal/images/index3/navigation/icon_menu_white.png");
}

/* PC端导航栏 */
.nav_container{
    width: 0;
    flex: 1;
    display: flex;
}
/* 导航栏选中后背景虚化 */
.nav_container .nav_bg_loading{
	width: 100%;
	height:0;
    /* height: calc(100vh - 11.6rem); */
    position: fixed;
    left: 0;
    top: 11.6rem;
    background-color: rgb(18 24 33 / 50%);
    pointer-events: none;
}
/* 一级菜单 */
.nav_container ul li.level_first{
    padding-right: 10px;
    flex: none;
}
.nav_container ul li .level_first_tagname{
    opacity: 0.8;
    padding: 0 .3rem;
    display: flex;
    font-size: .28rem;
    font-weight:600;
    color: #fff;
    align-items: center;
    height: 100%;
}
.nav_container ul li .level_first_tagname i{
	display: inline-block;
    line-height: 12px;
    transition: 0.1s;
    font-size: .24rem;
    margin-left: 4px;
    transition: 0.2s;
}
.level_first_tagname a{
	color: #fff;
}
.nav_container li.level_first:hover:before{
	content: '';
    position: absolute;
    width: 16px;
    height: 3px;
    background-color: var(--font-color);
    display: block;
    bottom: 3px;
    margin-left: 21px;
}
.nav_container li.level_first:hover>.level_first_tagname{
	opacity: 1;
}
.nav_container li.level_first:hover>.level_first_tagname i{
	transform: rotate(180deg);
}
.nav_container li.level_first:hover>.custom-service{
	height: 10rem;
}
.nav_container li.level_first:hover>.nav_bg_loading{
	height: calc(100vh - 11.6rem);
}
.nav_container .level_first:hover .custom-service .custom-service-wrap{
	height: calc(100% - 143px);
}

/* 二级菜单 */
.level_second_content{
	position: absolute;
    top: 1.6rem;
    overflow: hidden;
    /* transition: 0.15s; */
    background: white;
    width: 100%;
    left: 0;
    background-color: #FFF;
    /* z-index: 1; */
    box-shadow: 0px 20px 20px 0px rgb(121 126 166 / 10%);
}
.level_first .custom-service{
	height: 0;
}
.level_first .level_second_content h2{
    font-size: 20px;
    color: #152144;
    /* max-width: 1320px; */
    margin: 0 auto;
    margin-top:60px;
    margin-bottom:60px;
    font-weight: 700;
    padding: 0 15px !important;
}
.level_first .custom-service .custom-service-wrap{
    position: relative;
    /* max-width: 1300px; */
    height: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
    transition: 0.15s
}
.level_first .custom-service .custom-service-wrap>div{
	display: flex;
    /* width: 33.3%; */
    width: 36.4%;
    height: auto;
}
.level_first .custom-service .custom-service-wrap.multi_line_style>div:nth-child(3n+2){
	width: 25%;
    margin-left: 2%;
}
.level_second_content.custom-service .custom-service-wrap h3{
    font-size:  .32rem;
    color: #152144;
    margin: 0 0 30px 0;
    font-weight: 700;
    position: relative;
    width: 100px;
}
.level_second_content.custom-service .custom-service-wrap h3:before{
	content: '';
    position: absolute;
    top: 30px;
    left: -4px;
    width: 75px;
    height: 2px;
    background-color: #008cff;
}
.custom-service .custom-service-wrap>div>.right_side,
.custom-service .custom-service-wrap>div>.left_side{
	/* margin-left: 3%; */
    display: flex;
    width: calc(97% - 2px);
}
.custom-service .custom-service-wrap>div>.right_side{
    flex-direction: column;
    width: 100%;
    margin-left: 0;
}
.custom-service .custom-service-wrap>div>.left_side>.right_side{
	margin-left: 3%;
	width: 100%;
}
.custom-service .custom-service-wrap .right_side .level_third_content{
    height: calc(100% - 60px);
}
.custom-service .custom-service-wrap .right_side .level_third_content>ul{
	width: 100%;
    height: 100%;
}
.custom-service .custom-service-wrap .right_side .level_third{
	margin: 0 35px 20px 0px;
}
.custom-service .custom-service-wrap .right_side .level_third>span{
    font-size: .28rem;
	font-weight: 700;
}
.custom-service .custom-service-wrap .right_side .level_third>span>a{
	color: #152144;
}
.custom-service .custom-service-wrap .right_side .level_third>span>a:hover {
	color: #0052d9;
}

/* 带图片风格的导航栏 */
.level_first .custom-service .custom-service-wrap.multi_img_style{
	justify-content: flex-start;
}
.level_first .custom-service .custom-service-wrap.multi_img_style>div{
	flex-direction: column;
	width: auto;
   	margin-right: .99rem;
}
.level_first .custom-service .custom-service-wrap.multi_img_style>div>.left_side{
	margin-left:0; 
}
.level_first .custom-service .custom-service-wrap.multi_img_style>div>.right_side{
    flex-direction: row;
    align-items: center;
}
.level_first .custom-service .custom-service-wrap.multi_img_style>div:nth-child(6n){
	margin-right: 0;
}
.level_second_content.custom-service .custom-service-wrap.multi_img_style h3{
	margin: .3rem 0;
    font-size: .28rem;
}
.level_second_content.custom-service .custom-service-wrap.multi_img_style a{
	font-size: .24rem;
    color: rgb(56 166 255 / 80%);
    letter-spacing: 1px;
}
.level_second_content.custom-service .custom-service-wrap.multi_img_style a:hover{
	color: rgb(56 166 255 / 100%);
}
.level_second_content.custom-service .custom-service-wrap.multi_img_style h3:before{
	display: none;
}
.custom-service .custom-service-wrap .left_side img{
	height: 100px;
}

/* 移动端导航栏 */
.mobile_nav_container{
	display: var(--mobile_nav_display);
	width: 100%;
    height: 1.6rem;
    line-height: 1.6rem;
}
.mobile_nav_container .mobile_nav_active{
	color: #3a89fe;
}
.mobile_nav_btn{
    width: 25px;
    height: 25px;
    margin-right: 20px;
    float:right;
    position: relative;
    top: 50%;
    transform: translateY(-40%);
}
.mobile_nav_btn>i{
	width:25px;
	height:25px;
	display: block;
}
.mobile_nav_btn>i:first-child{
	background-image: var(--mobile_nav_btn);
	background-size: 100%;
}
.mobile_nav_btn>i:last-child{
	display: none;
	background: url("/CyberGlobal/images/index3/navigation/icon_close.png") no-repeat;
	background-size: 100%;
}

.mobile_nav_content {
    width: 100vw;
    height : var(--mobile_nav_height);
    position: fixed;
    top: 1.2rem;
    left: 0;
    background-color: #FFF;
    overflow: hidden;
}
.mobile_nav_container .mobile_nav_content .mobile_level_first {
    line-height: 35px;
    padding: 0px 30px 10px 30px;
}
.mobile_nav_content .mobile_level_first .mobile_navList_first,
.mobile_nav_content  .mobile_level_second .mobile_second_content{
	display: flex;
    justify-content: space-between;
}
.mobile_nav_content .mobile_level_first .mobile_level_second,
.mobile_nav_container .mobile_navList_second .mobile_level_third{
    padding-left: 30px;
    border-left: 1px solid #ddd;
    overflow: hidden;
}
#mobile_nav_content .custom-service{
	max-height: 0;
   	transition: max-height .3s .2s;
	transition: max-height .3s;
}
#mobile_nav_content .mobile_custom_service{
	max-height: 10rem;
}

#mobile_nav_content .mobile_level_tagname{
	color: rgb(38, 44, 51);
	font-size: .28rem;
}


@media screen and (max-width: 750px){
	:root{
		--mobile_nav_display:block;
	}
	.classy-nav-container,
	.classy-nav-container .mobile_nav_container{
	    height: 1.2rem;
	}
	.classy-nav-container .mobile_nav_container{
	    line-height: 1.3rem;
	}
	
	.nav_container{
		display: none;
		height: 0;
	}
}

