._menu{
  position:absolute;
  width: 100%;
  background-color:#A8453D ;
  top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  border-top: 0.01rem solid #ffb0b0;
  z-index: 9999999;
}
._menu a{
  width: 100%;
  background-color: #A8453D;
  height: 1rem;
  border-radius: 0.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
  padding-left: 0.2rem;
  color: #fff;
  border-bottom: 0.01rem solid #ffb0b0;
}
._menu a img{
  height: 75%;
  border-radius: 0.2rem 0 0 0.2rem;
}
._menu a span{
  font-size: 0.2rem;
  color: #fff;
  margin-left: 0.2rem;
}
.menu{
  display: none;
}


@media screen and (max-width:1200px){
  nav ul{
    display: none;
  }
  .menu{
    display: inline-block;
  }
  .menu img{
    width: 40px;
  }
}