 /*导航栏*/
.banner{
    width:100%;
    height:50px;
background: rgb(55,5,131);
    top:-50px;
    box-sizing:border-box;
}
.banner_suspension{
    width:100%;
    max-width:1600px;
    min-width:1366px;
    height:50px;
    background:#370483;
    border-bottom:2px solid #fff;
    box-sizing:border-box;
    position:fixed;
    top:-50px;
    z-index:9999;
    transition:0.6s ease;
}
.banner_ie{
    background:#883c92;
}
.nav_main{
    margin:0 auto;
    width:1200px;
    font-size:16px;
}

.nav_main li.nav_list{
    float:left;
    width:auto;
    min-width:9%;
    height: 50px;
    display:inline-block;
    position:relative;
}
.nav_list_txt{
    cursor:pointer;
    height:31px;
    padding:13px 10px 6px;
}
    
}
ul.nav_info_list a,div.nav_list_txt a{
    text-decoration: none;
}
.nav_list_txt p{
    font-family:'微软雅黑';
    color:#fff;
    font-size:16px;
    letter-spacing:6px;
    font-weight:600;
    text-align:center;
    transition:0.6s ease;
}
.nav_list_txt .nav_list_en{
    font-size:12px;
    letter-spacing:0;
}
    /*导航栏内容*/
.nav_list_info{
    
    opacity:0;
    top:48px;
    width:100%;
   background: rgb(55,5,131);
    position:absolute;
    visibility: hidden;
    z-index:9999;
    
}
.nav_list_info_ie{
    display:none;
}
.nav_info_list li{
    padding:8px 0;
    font-size:14px;
    text-align:center;
   font-family: '微软雅黑';
    color:#fff;
    cursor: pointer
}
.nav_info_list li:hover{
    background-color: #bef4f9;
  color: #38a0d7;
}
.nav_main li:nth-child(5) .nav_list_info{
   width:200px;
   left:-49px;
}
.nav_main li:nth-child(2){
min-width: 5%;
}
/*菜单显隐*/
.nav_list .nav_list_txt:hover{
    background:#bef4f9;
    padding:13px 10px 6px;
}
.nav_list .nav_list_txt:hover p{                
    color:#38a0d7;   
}
.nav_list:hover div.nav_list_info{
    visibility: visible;
    transition:0.6s ease;
    opacity:1;
}
