/*移动端头部*/
.m-header {
  display: none;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 1);
  z-index: 9999996;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.05);
  border-bottom:solid 1px rgba(0,0,0,0.05);
}


.m-header a {
  display: block;
}

a:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  /* Safari, Chrome, Opera, Firefox */
  -moz-tap-highlight-color: transparent;
  /* Firefox */
  -ms-tap-highlight-color: transparent;
  /* IE 10+ */
  tap-highlight-color: transparent;
  /* 新版浏览器 */
}

.m-header img {
  vertical-align: middle;
}

.m-logo {
  width: auto;
  height: 30px;
  padding: 0 10px 0px 15px;
}

.m-menu-icon {
  padding: 0 15px;
  height: 20px;
  width: auto;
}

.m-mask {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999997;
}

.m-nav {
  width: 80%;
  height: 100%;
  background: #fff;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 9999998;
  transition: 0.5s;
  overflow-y: scroll;
}

.m-nav .nav-logo {
  text-align:center;
  padding:15px;
}

.m-mask.on {
  display: block;
}

.m-nav.on {
  left: 0;
}

.m-nav-item {
  margin-left:15px;
  margin-right:15px;
  height: 46px;
  line-height: 46px;
  display: block;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.2);
  font-size: 15px;
  font-weight: bold;
  margin-bottom:15px;
  border-radius:999px;
}


.m-nav-item.on {
  color: #898989;
}

.m-header .m-logobox {
  display: flex;
  align-items: center;
}

.m-nav-content {
  padding: 15px;
}

.flex-m {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-m {
  clear: both;
  height: 30px;
}

.m-social {
  font-size: 22px;
}

.m-social a,
.m-social a:visited {
  color: rgba(0, 0, 0, 0.4);
  margin-left: 5px;
  margin-right: 5px;
}

.m-btn {
  display:inline-block;
  padding:10px 15px 10px 15px;
  background: rgba(180, 12, 192, 1);
  color:#ffffff;
  font-size:12px;
  /* border-radius:999px; */
  line-height:1;
}

@media screen and (max-width: 760px) {
  .header {
    display: none;
  }

  body {
    padding-top: 50px;
  }

  .m-header {
    display: flex;
  }
}
