/* pages/components/loading/loading.wxss */
/* loading 加载页 */
/**  flex 兼容写法 定义flex布局  **/
.dis-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/**  flex 兼容写法 垂直居中  **/
.flex-vertical-center {
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-align: center;
}
/** .flex-vertical-baseline **/
.flex-vertical-baseline {
  -o-align-items: baseline;
  -ms-align-items: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-align: baseline12;
}
/**  flex 兼容写法 垂直居上  **/
.flex-vertical-start {
  -o-align-items: flex-start;
  -ms-align-items: flex-start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-align: start;
}
/**  flex 兼容写法 垂直居下  **/
.flex-vertical-end {
  -o-align-items: flex-end;
  -ms-align-items: flex-end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-align: end;
}
/**  flex 兼容写法 水平居中  **/
.flex-horizontal-center {
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-pack: center;
}
/**  flex 兼容写法 水平居左  **/
.flex-horizontal-start {
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-pack: start;
}
/**  flex 兼容写法 水平居右  **/
.flex-horizontal-end {
  -o-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-pack: end;
}
/**  flex 兼容写法 水平居两边  **/
.flex-horizontal-between {
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-pack: justify;
}
/** flex 水平垂直居中 **/
.flex-center {
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-box-align: center;
}
/**  flex 兼容写法 纵向排列  **/
.flex-column {
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
}
/**  flex 兼容写法 子元素纵向换行  **/
.flex-vw {
  /* -webkit-box-lines: multiple; */
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/**  flex 兼容写法 子元素纵向换行  **/
.flex-nvw {
  /* -webkit-box-lines: multiple; */
  -o-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-lines: single;
  box-lines: single;
}
/**  flex 兼容写法 子元素不填充剩余位置  **/
.flex-0 {
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  /* IE 10 */
  /* Chrome */
  -moz-box-flex: 0 1 auto;
  -webkit-box-flex: 0 1 auto;
  box-flex: 0 1 auto;
  /* Firefox */
  /* Safari 和 Chrome */
}
/**  flex 兼容写法 子元素填充剩余位置  **/
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.flex-twice {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  flex: 2;
}
.m-loading-page {
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* loading logo 部分 start */
.m-loading-logo-port {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280rpx;
  height: 280rpx;
  border-radius: 8rpx;
  background-color: rgba(55, 55, 55, 0.5);
  transform: translate3d(-50%, -50%, 0);
}
.m-loading-logo {
  width: 80rpx;
  height: 80rpx;
  margin-bottom: 20rpx;
  background: url(https://lifecircle-mina-pay-project.oss-cn-hangzhou.aliyuncs.com/xcxPay/xcx_pay_loadingLogo.png) no-repeat center / cover;
}
.m-loading-text-title {
  color: #fff;
  font-weight: 400;
  font-size: 32rpx;
}
.m-loading-text-dot {
  color: #fff;
  font-weight: 400;
  font-size: 48rpx;
}
.m-anima-one {
  animation: opacity1 1s linear infinite;
}
.m-anima-two {
  animation: opacity2 1s linear infinite;
}
.m-anima-three {
  animation: opacity3 1s linear infinite;
}
@keyframes opacity1 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity2 {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0.67;
  }
  100% {
    opacity: 0.33;
  }
}
@keyframes opacity3 {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.33;
  }
}
/* loading logo 部分 end */
