/**  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;
}
.fs-payment-component {
  width: 100vw;
  height: 100vh;
  line-height: 1;
  background-color: #f1f1f1;
  color: #333;
  font-size: 0;
}
.bg-white {
  background-color: #666;
}
.bg-white {
  background-color: #fff;
}
/* 内容部分 start */
.m-container {
  padding: 0 30rpx;
}
/* 门店名称 start */
.m-store-name-content {
  width: 100%;
  height: 118rpx;
}
.m-store-icon-bg {
  width: 48rpx;
  height: 48rpx;
  border-radius: 50%;
}
.m-store-icon {
  width: 28rpx;
  height: 25rpx;
  background: url(https://lifecircle-mina-pay-project.oss-cn-hangzhou.aliyuncs.com/xcxPay/icon_store_top.png) no-repeat center / cover;
}
.m-store-name {
  max-width: 88%;
  margin-left: 18rpx;
  font-size: 32rpx;
}
/* 门店名称 end */
/* 输入金额部分 start */
.m-input-money-box {
  border-radius: 16rpx;
  background-color: #fff;
}
.m-input-money-content {
  height: 136rpx;
  position: relative;
}
.m-input-money-content > text {
  letter-spacing: 0;
}
.m-input-money-icon {
  display: inline-block;
  margin-top: 8rpx;
  padding-left: 10rpx;
  font-size: 56rpx;
  line-height: 0.8;
  vertical-align: middle;
}
.m-input-money-hint {
  display: inline-block;
  font-size: 76rpx;
  line-height: 0.8;
  vertical-align: middle;
}
.m-input-cursor {
  display: inline-block;
  width: 5rpx;
  height: 60rpx;
  font-weight: bold;
  vertical-align: middle;
  animation: fade 1s infinite steps(1, start);
}
.m-input-placeholder {
  display: inline-block;
  position: absolute;
  top: 32rpx;
  left: 80rpx;
  font-size: 48rpx;
  line-height: 76rpx;
  opacity: 0.2;
  color: #333;
}
.m-no-part-input-money-content {
  padding: 16rpx 0 17rpx 20rpx;
}
.m-no-part-input-money-icon {
  font-weight: 400;
  vertical-align: middle;
}
.m-no-part-input-cursor {
  width: 5rpx;
  height: 30rpx;
  background-color: #6d6d6d;
  font-weight: bold;
  vertical-align: middle;
  animation: fade 1.5s infinite linear;
}
.m-btn {
  height: 88rpx;
  position: absolute;
  bottom: 60rpx;
  left: 30rpx;
  right: 30rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 8rpx;
  color: #fff !important;
  font-size: 32rpx;
}
.m-btn:active {
  border: 0;
}
.m-active-btn {
  margin-top: 30rpx;
}
@keyframes fade {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.del-money {
  position: absolute;
  top: 50%;
  height: 32rpx;
  right: 24rpx;
  transform: translate(0, -50%);
}
.del-money image {
  display: block;
  width: 32rpx;
  height: 32rpx;
}
/* 输入金额部分 end */
/* 支付结果 */
.m-pay-success .result {
  display: flex;
  flex-direction: column;
  padding: 40rpx 30rpx 26rpx 30rpx;
  background: #fff;
  color: #333;
}
.m-pay-success .result .icon {
  font-size: 56rpx;
}
.m-pay-success .result .success-title {
  font-size: 32rpx;
}
.m-pay-success .result .vip-icon {
  width: 70rpx;
  height: 50rpx;
}
.m-pay-success .result .wechat-icon {
  width: 80rpx;
  height: 70rpx;
}
.m-pay-success .success-text {
  font-weight: bold;
  font-size: 32rpx;
}
.m-pay-success .result .col {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30rpx;
  line-height: 1;
}
.m-pay-success .result .col .final-money {
  font-size: 68rpx;
}
.m-pay-success .result .col .origin-money {
  font-size: 28rpx;
  text-decoration: line-through;
}
.m-pay-success .result .col .row-right,
.m-pay-success .result .col .row-left {
  flex-grow: 1;
  font-size: 28rpx;
}
.m-pay-success .result .col .row-left {
  text-align: left;
}
.m-pay-success .result .col .row-right {
  font-weight: bold;
}
.m-pay-success .result .col .row-right {
  text-align: right;
}
.text-red {
  color: #ff4552;
}
/* 支付结果 end */
