@charset "utf-8";


* {
  outline: none;
  border: none;
  appearance: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  font-size  : 16px;
  font-family: Helvetica, Tahoma, Arial, 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC', STXihei, 'Microsoft YaHei', SimHei;
}


body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button {
  margin    : 0;
  padding   : 0;
  outline   : none;
  box-sizing: border-box;
  background: none;
}

body,
button,
input,
select,
textarea {
  font-size: 14px;
}

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-size-adjust: none;
}

input,
select,
textarea {
  font-size         : 100%;
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing : 0;
}

th {
  text-align: inherit;
}

fieldset,
img,
a img {
  border            : 0;
  outline           : none;
  -webkit-appearance: none;
}


img {
  -webkit-touch-callout: default;
}

abbr,
acronym {
  border      : 0;
  font-variant: normal;
}

del {
  text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style : normal;
  font-weight: 500;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size  : 100%;
  font-weight: 500;
}

q:before,
q:after {
  content: '';
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

em {
  font-style: normal;
}

ins,
a {
  text-decoration: none;
}

a,
input {
  -webkit-tap-highlight-color: transparent;
}

input {
  box-shadow        : 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-appearance: none;
}

a {
  -webkit-touch-callout: none;
  color                : inherit;
}

html {
  width    : 100%;
  max-width: 750px;
  margin   : 0 auto;
}

img,
a,
iframe,
label {
  display: block;
}

img {
  max-width   : 100%;
  margin-left : auto;
  margin-right: auto;
}

@-webkit-keyframes rotateN {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotateN {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotateN {
  -webkit-animation-name           : rotateN;
  -webkit-animation-duration       : 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-name                   : rotateN;
  animation-duration               : 4s;
  animation-iteration-count        : infinite;
  animation-timing-function        : linear;
}

@-webkit-keyframes rotateS {
  from {
    -webkit-transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes rotateS {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.rotateS {
  -webkit-animation-name           : rotateS;
  -webkit-animation-duration       : 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-name                   : rotateS;
  animation-duration               : 5s;
  animation-iteration-count        : infinite;
  animation-timing-function        : linear;
}

.pause {
  animation-play-state        : paused;
  -webkit-animation-play-state: paused;
}

#music-icon {
  position: fixed;
  top     : 1rem;
  right   : 1rem;
  z-index : 40;
  display : none;
}

#music-icon .iconfont {
  font-size  : 1.5rem;
  display    : block;
  line-height: 1.5rem;
  width      : 1.5rem;
  text-align : center;
  height     : 1.5rem;
}



#sounds-icon {
  position  : fixed;
  top       : 20px;
  right     : 20px;
  z-index   : 40;
  display   : none;
  width     : 40px;
  height    : 40px;
  padding   : 20px;
  box-sizing: content-box;
  z-index   : 300;
  background: none;
}

#sounds-icon img {
  opacity   : 0;
  transition: all 0.5s;
  position  : absolute;
  top       : 20px;
  right     : 20px;
  width     : 40px;
  height    : 40px;
}

#sounds-icon.play {
  animation-name           : rotateN;
  animation-duration       : 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;


}

#sounds-icon.play img:first-child {
  opacity: 1;
}

#sounds-icon.pause img:last-child {
  opacity: 1;
}


@keyframes bigIn {
  0% {
    transform: scale(1.4);
    opacity  : 0;
  }

  100% {
    transform: scale(1);
    opacity  : 1;
  }
}

@-webkit-keyframes bigIn {
  0% {
    -webkit-transform: scale(1.4);
    opacity          : 0;
  }

  100% {
    -webkit-transform: scale(1);
    opacity          : 1;
  }
}

.bigIn {
  animation-name            : bigIn;
  animation-duration        : 0.7s;
  -webkit-animation-name    : bigIn;
  -webkit-animation-duration: 0.7s;
}

.mask {
  display                   : none;
  position                  : fixed;
  z-index                   : 50;
  top                       : 0;
  left                      : 0;
  width                     : 100%;
  height                    : 100%;
  /*background-color        : rgba(0,0,0,0.5);*/
  background-color          : rgba(0, 0, 0, 0.7);
  animation-name            : bigIn;
  animation-duration        : 0.7s;
  -webkit-animation-name    : bigIn;
  -webkit-animation-duration: 0.7s;
  color                     : #fff;
  font-size                 : 24px;
  will-change               : transform;

}

.page.has-wx-btn,
.mask.has-wx-btn {
  display       : block;
  opacity       : 0;
  animation     : none;
  pointer-events: none;
}

#mask-share:before {
  content          : '';
  position         : absolute;
  right            : 30px;
  top              : 10px;
  width            : 33px;
  height           : 44px;
  background-image : url(https://muyang.hn.cn/h5/img/shareArr.png);
  animation        : 2s rightUp ease-in-out infinite;
  -webkit-animation: 2s rightUp ease-in-out infinite;
}

#mask-share:after {
  content         : '';
  position        : absolute;
  right           : 50px;
  top             : 30px;
  width           : 148px;
  height          : 103px;
  background-image: url(https://muyang.hn.cn/h5/img/shareTxt2.png);
}


#mask-share.wxapp:before {
  right: 160px;
}

#mask-share.wxapp:after {
  right: 180px;
}

.rightup-arr {
  animation        : 2s rightUp ease-in-out infinite;
  -webkit-animation: 2s rightUp ease-in-out infinite;
}

@keyframes rightUp {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(-20px, 20px);
  }
}

@-webkit-keyframes rightUp {
  0% {
    -webkit-transform: translate(0);
  }

  50% {
    -webkit-transform: translate(-20px, 20px);
  }
}

.full-page {
  position: absolute;
  top     : 0;
  left    : 0;
  width   : 100%;
  height  : 100%;
}

.IIV::-webkit-media-controls-play-button,
.IIV::-webkit-media-controls-start-playback-button {
  opacity       : 0;
  pointer-events: none;
  width         : 5px;
}



#help-line {
  position      : fixed;
  width         : 100%;
  height        : 100%;
  top           : 0;
  left          : 0;
  pointer-events: none;
  z-index       : 999;
}

#help-line:before {
  content   : '';
  position  : absolute;
  top       : 50%;
  left      : 0;
  height    : 1px;
  background: #007AFF;
  width     : 100%;
}

#help-line:after {
  content   : '';
  position  : absolute;
  top       : 0%;
  left      : 50%;
  height    : 100%;
  background: #007AFF;
  width     : 1px;
}



#globalLoading {
  position  : fixed;
  top       : 0;
  left      : 0;
  width     : 100%;
  height    : 100%;
  z-index   : 9999;
  background: rgba(0, 0, 0, 0.4);
}

#globalLoading .loader,
#globalLoading .loader:after {
  border-radius: 50%;
  width        : 10em;
  height       : 10em;
}

#globalLoading .loader {
  position         : relative;
  top              : 50%;
  font-size        : 10px;
  margin           : -5em auto 0;
  text-indent      : -9999em;
  border-top       : 1.1em solid rgba(255, 255, 255, 0.2);
  border-right     : 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom    : 1.1em solid rgba(255, 255, 255, 0.2);
  border-left      : 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform    : translateZ(0);
  transform        : translateZ(0);
  -webkit-animation: rotateN 1.1s infinite linear;
  animation        : rotateN 1.1s infinite linear;
}

.fadeOut {
  pointer-events : none;
  animation-delay: 0s !important;
}

#globalAuthTips {
  position  : fixed;
  top       : 0;
  left      : 0;
  width     : 100%;
  height    : 100%;
  z-index   : 9999;
  background: rgba(0, 0, 0, 0.7);
}

#globalAuthTips .text {
  text-align: right;
  font-size : 1.8rem;
  color     : #fff;
  position  : absolute;
  right     : 50px;
  bottom    : 150px;
}

@keyframes rightDown {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(20px, 20px);
  }
}

#globalAuthTips::after {
  content          : '';
  position         : absolute;
  right            : 80px;
  bottom           : 100px;
  width            : 33px;
  height           : 44px;
  background-image : url(https://muyang.hn.cn/h5/img/shareArr2.png);
  animation        : 2s rightDown ease-in-out infinite;
  -webkit-animation: 2s rightDown ease-in-out infinite;
}

html,
body {
  max-width : 750px;
  min-height: 100vh;
  width     : 750px;
}

div {
  background-size    : cover;
  background-position: center center;
}

body {
  position: relative;
  height  : 100vh;
}

body .wrapper {
  position: absolute;
  top     : 0;
  left    : 0;
  width   : 100%;
  height  : 100%;
}

.page {
  overflow: hidden;
  display : none;
  width   : 100%;
  height  : 100vh;
  position: absolute;
  top     : 0;
  left    : 0;
}


.page>.content,
.mask>.content {
  width     : 100%;
  height    : 1172px;
  position  : absolute;
  top       : 50%;
  margin-top: -586px;
  left      : 0;
}

.page>.content img,
.mask>.content img {
  position: absolute;
}

#mask-share {
  z-index: 400;
}

.vc-switch {
  z-index: 99999;
}


.btn-fix-righttop {
  display         : block;
  height          : 50px;
  padding         : 0 30px;
  background-color: rgba(0, 0, 0, .2);
  border-radius   : 25px 0 0 25px;
  font-size       : 24px;
  line-height     : 50px;
  font-weight     : 500;
  color           : #fff;
  position        : absolute;
  right           : 0;
  top             : 120px;
}

.hide-loading-img {
  display       : block;
  opacity       : 0;
  animation     : none;
  pointer-events: none;
  width         : 10px;
  height        : 10px;
  overflow      : hidden;
  position      : absolute;
  top           : 0;
  left          : 0;
}

.scroll-y {
  overflow-y: scroll;
  width     : 100%;
  height    : 100%;
}

#saveQrcode {
  position: absolute;
  left    : -750px;
  top     : 0;
}

#__vconsole .vc-panel {
  min-height: 85vh;
}