/*导航栏*/
.mobile-nav{
  display: none;
}
.mobile-text{
  display: none;
  background:#eee;
}
.header{
  position: relative;
}
.header-nav{
  position: fixed;
  left:0px;
  top:0px;
  width:100%;
  z-index: 1000;
}
.header-content{
  height:90px;
  position: relative;
}
.header-content img{
  float:left;
  margin-top: 17px;
}
.header-content p{
  float:right;
  margin-bottom:0px;
  font-size: 0px;
}
.header-content p a{
  font-size: 14px;
  color:#9198a2;
  margin-top: 40px;
  display: inline-block;
  padding-right: 28px;
}
.header-content p a:last-of-type{
  padding-right: 0px;
}
.header-content p a:hover{
  text-decoration: none;
}






/*对头部导航的兼容*/
@media screen and (max-width: 1020px) {
  .header-content p a{
    padding-right: 10px;
  }
}


@media screen and (max-width: 760px) {
  .header-nav{
    display: none;
  }
  .mobile-text{
    background: #131c29;
  }
  .mobile-text a{
    display: block;
    color:#787f89;
    text-align:center;
    padding:8px 0;
  }
  .mobile-text a:hover{
    text-decoration: none;
  }
  .mobile-nav{
    display: block;
    background: #131c29;
    height:50px;
  }
  .mobile-content img:nth-of-type(2){
    width:25px;
    height:25px;
    margin-top: 15px;
    float:right;
  }
  .mobile-content img:nth-of-type(1){
    width:auto;
    height:40px;
    float:left;
    margin-top: 6px;
  }

}