/* flex布局 */
/* 子元素-平均分栏 */
.flex1 {
  /* #ifndef APP-PLUS */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  /* #endif */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex2 {
  /* #ifndef APP-PLUS */
  -webkit-box-flex: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 2;
  /* OLD - Firefox 19- */
  -webkit-flex: 2;
  /* Chrome */
  -ms-flex: 2;
  /* IE 10 */
  /* #endif */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  flex: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列（主轴） */
.flex-h {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  /* #endif */
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  /* #ifndef APP-PLUS */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  /* #endif */
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  /* #endif */
  justify-content: center;
  /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
     */
}
.flex-sa {
  /* #ifndef APP-PLUS */
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  /* #endif */
  justify-content: space-around;
}
.flex-sb {
  /* #ifndef APP-PLUS */
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  /* #endif */
  justify-content: space-between;
}
.flex-aic {
  /* #ifndef APP-PLUS */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  /* #endif */
  align-items: center;
}
/* 父元素-纵向排列（主轴） */
.flex-v {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  /* #endif */
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
  /* #ifndef APP-PLUS */
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  /* #endif */
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  /* #endif */
  align-items: center;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
  /* #ifndef APP-PLUS */
  -webkit-box-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  /* #endif */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
  /* #ifndef APP-PLUS */
  -webkit-box-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  /* #endif */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
* {
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
@-webkit-keyframes stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /*margin: 100px auto;*/
  width: 1rem;
  height: 1.2rem;
  text-align: center;
  font-size: 0.1rem;
}
.spinner > div {
  background-color: gold;
  height: 100%;
  width: 0.08rem;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
ul li {
  list-style-type: none;
}
body,
html {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  overflow: hidden;
  font-size: 0.2rem;
}
body,
html {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
  overscroll-behavior: none;
  -webkit-overflow-scrolling: auto;
}
.hide {
  display: none;
}
.flax {
  display: flex;
}
.point-none {
  pointer-events: none;
}
.op {
  opacity: 0;
}
.rel {
  position: relative;
}
.h100 {
  height: 100%;
}
.w100 {
  width: 100%;
}
.hw100 {
  width: 100%;
  height: 100%;
}
.abs {
  position: absolute;
}
.abs.center {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.abs.top {
  top: 0;
}
.abs.bottom {
  bottom: 0;
}
.abs.left {
  left: 0;
}
.abs.right {
  right: 0;
}
img,
div,
p {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  flex-shrink: 0;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
.loadings {
  position: fixed;
  width: 6.4rem;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3000;
  display: none;
  overscroll-behavior: none;
  /* 阻止回弹 */
  -webkit-overflow-scrolling: touch;
  /* 保持iOS的滚动性能 */
}
.loadings div {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.9rem 0 0 -0.9rem;
  background: url("../img/loading.png") no-repeat center center;
  background-size: contain;
  -webkit-animation: rotate 2s linear 0s infinite;
}
.pnone {
  pointer-events: none;
}
.hint,
.alert-view {
  position: fixed;
  width: 6.4rem;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  display: none;
  z-index: 1;
}
.hint .clickall,
.alert-view .clickall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hint > div:not(.clickall),
.alert-view > div:not(.clickall) {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.hint .alert,
.alert-view .alert,
.hint .alert-comfirm,
.alert-view .alert-comfirm {
  width: 70%;
  height: 3rem;
  border-radius: 0.2rem;
  background: white;
}
.hint .alert .txt,
.alert-view .alert .txt,
.hint .alert-comfirm .txt,
.alert-view .alert-comfirm .txt {
  color: black;
  font-size: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 100%;
  overflow: hidden;
}
.hint .alert .sure,
.alert-view .alert .sure,
.hint .alert-comfirm .sure,
.alert-view .alert-comfirm .sure {
  padding: 0.3rem 0;
  color: black;
  font-size: 0.3rem;
  position: absolute;
  bottom: 0;
  border-top: 0.02rem solid #dcdcdc;
  width: 100%;
}
.hint .alert .c-view,
.alert-view .alert .c-view,
.hint .alert-comfirm .c-view,
.alert-view .alert-comfirm .c-view {
  border-top: 0.02rem solid #dcdcdc;
  height: 0.95rem;
}
.hint .alert .sureOk,
.alert-view .alert .sureOk,
.hint .alert-comfirm .sureOk,
.alert-view .alert-comfirm .sureOk,
.hint .alert .cancel,
.alert-view .alert .cancel,
.hint .alert-comfirm .cancel,
.alert-view .alert-comfirm .cancel {
  width: 50%;
  height: 100%;
  text-align: center;
  font-size: 0.3rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hint .alert .cancel,
.alert-view .alert .cancel,
.hint .alert-comfirm .cancel,
.alert-view .alert-comfirm .cancel {
  border-right: 0.02rem solid #dcdcdc;
}
.hint .btnAgain,
.alert-view .btnAgain,
.hint .btnNext,
.alert-view .btnNext,
.hint .btnRightNext,
.alert-view .btnRightNext,
.hint .btnRun,
.alert-view .btnRun {
  bottom: 0.5rem;
}
.xy50 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation: pulse 1.2s infinite;
}
/*# sourceMappingURL=common.css.map */
.hint,
.alert-view,
.loadings {
  width: 7.5rem;
}
.wrapper {
  width: 7.5rem;
  height: 100%;
  overflow: hidden;
  position: fixed;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}
.wrapper > .page {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  text-align: center;
  overflow: hidden;
  word-wrap: break-word;
  top: 50%;
  -webkit-transform: translateY(-50%);
}
img {
  pointer-events: none;
}
.vs {
  pointer-events: auto;
}
@keyframes lungs {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*# sourceMappingURL=h5-yyqx.css.map */