html,
body {
  background: #eee;
  margin: 0;
  touch-action: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: fixed;
}
.mask {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 569;
  display: none;
}
.mask-tips {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 49%;
  font-size: 1.12rem;
  color: #fff;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
}
@media all and (orientation: portrait) {
  #orientation-mask {
    display: none;
  }
}
@media all and (orientation: landscape) {
  #orientation-mask {
    display: block;
  }
}
.container {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#flipbook {
  width: 100%;
  height: 32rem;
  position: relative;
}
#flipbook .turn-page {
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
#flipbook img {
  display: block;
  width: 92%;
  height: auto;
  border: none;
}
.current-page {
  width: 2.93333333rem;
  line-height: 1.17333333rem;
  font-size: 0.64rem;
  color: #000;
  background: rgba(216, 216, 216, 0.5);
  text-align: center;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
}
#queueContainer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.2rem;
  margin: auto;
  width: 13.33333333rem;
  height: 2.4rem;
}
#queueContainer #gotoQueue {
  display: block;
  width: 100%;
  font-family: PingFangSC-Regular;
  font-size: 0.90666667rem;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  height: 2.4rem;
  line-height: 2.4rem;
  padding: 0 0.53333333rem;
  background: #ff800c url(../img/arrow-right.png) no-repeat;
  background-position: 91% center;
}
.gray {
  color: #aaa;
}
.white {
  color: #fff;
}
