body.mobile .menu-modal{
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.95);
  color: #fff;
  text-align: center;
  overflow: hidden;
  overflow-y: auto;
  z-index: -1;
  opacity: 0;
  font-size: .36rem;
}
body.mobile .menu-modal.on{
  z-index: 999;
  opacity: 1;
  pointer-events: inherit;
}
body.mobile .menu-modal .container{
  width:100% !important;
  height:100% !important;
  overflow-y: auto !important;
  padding: 0.9rem 0.4rem .4rem !important;
}
body.mobile .menu-modal .close{
  position: absolute;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  right: 0.4rem;
  top: 0.4rem;
  background: url(../images/ico-close.png) center center no-repeat;
  background-size: 0.36rem 0.36rem;
}
body.mobile .menu-modal .container ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
body.mobile .menu-modal .container ul li{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: .8rem;
}

body.mobile .menu-modal .container .qr{
  border-top: 1px dashed #fff;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
}
body.mobile .menu-modal .container .qr img{
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  margin: 0 auto;
  margin-top: .3rem;
}

body.mobile .menu-modal .container a{color:inherit;}

body.overflow-hidden{
  overflow: hidden;
  height: 100vh;
}

