/* 全局变量 */
.mc-icon {
  display: inline-block;
  position: relative;
  height: 0.128rem;
  width: 0.128rem;
  background-size: 100%;
  background-repeat: no-repeat;
}
.mc-icon svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mc-icon_xs {
  height: 0.04267rem;
  width: 0.04267rem;
}
.mc-icon_s {
  height: 0.064rem;
  width: 0.064rem;
}
.mc-icon_l {
  height: 0.16rem;
  width: 0.16rem;
}
.mc-icon_xl {
  height: 0.192rem;
  width: 0.192rem;
}

/* 全局变量 */
.mc-toast {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 11;
}
.mc-toast-content {
  max-width: 1.28rem;
  margin: 0 auto;
  display: inline-block;
  padding: 0.08rem;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  border-radius: 0.01067rem;
  /* no */
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.07467rem;
  text-align: center;
}
.mc-toast .mc-toast-notice {
  padding: 0.02667rem 0;
  min-width: 0.37333rem;
  min-height: 0.32rem;
}
.mc-toast .mc-toast-notice .icon-content {
  margin-bottom: 0.02667rem;
  height: 0.192rem;
}
.mc-toast .mc-toast-notice .text-content {
  font-size: 0.07467rem;
}

/* 全局变量 */
@-webkit-keyframes center {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes center {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes top {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes top {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes bottom {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes bottom {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
.mc-modal-mask {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
}
.mc-modal-mask::-webkit-scrollbar {
  display: none;
}
.mc-modal {
  background-color: #fff;
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
}
.mc-modal_center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 0.01067rem;
  /* no */
  max-width: 90%;
  max-height: 90%;
  width: auto;
  overflow: auto;
  -webkit-animation: center 0.2s ease;
  animation: center 0.2s ease;
}
.mc-modal_top {
  top: 0;
  -webkit-animation: top 0.2s ease;
  animation: top 0.2s ease;
}
.mc-modal_bottom {
  bottom: 0;
  -webkit-animation: bottom 0.2s ease;
  animation: bottom 0.2s ease;
}
.mc-modal-closeIcon {
  color: #999;
  position: absolute;
  right: 0.08rem;
  top: 0.08rem;
}
.mc-modal-page {
  width: 100%;
  height: 100%;
  -webkit-animation: center 0.2s ease;
  animation: center 0.2s ease;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 8;
  position: fixed;
  background-color: #fff;
}

/* 全局变量 */
.mc-confirm {
  width: 1.44533rem;
  word-break: break-all;
}
.mc-confirm-top {
  padding: 0.10667rem;
  min-height: 0.42667rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mc-confirm-title {
  font-size: 0.10667rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.05333rem;
  color: #333;
}
.mc-confirm-content {
  text-align: center;
  font-size: 0.07467rem;
  max-height: 1.38133rem;
  overflow-y: auto;
  color: #333;
}
/* 多行文字时居左显示 */
.mc-confirm-content_left {
  text-align: left;
}
/* 没有标题时内容文字放大为16px */
.mc-confirm-content_noTitle {
  font-size: 0.08533rem;
}
.mc-confirm-buttons {
  border-bottom-left-radius: 0.01067rem;
  border-bottom-right-radius: 0.01067rem;
  display: block;
  font-size: 0.08533rem;
  text-align: center;
  position: relative;
}
.mc-confirm-buttons:after {
  content: '.';
  color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  border-bottom: 0.00533rem solid #e5e5e5;
  /* no */
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.mc-confirm-cancel,
.mc-confirm-confirm {
  cursor: pointer;
  display: inline-block;
  padding: 0.07467rem;
  text-align: center;
  width: 50%;
}
.mc-confirm-cancel {
  color: #333;
  position: relative;
}
.mc-confirm-cancel:after {
  content: ' ';
  position: absolute;
  right: 0;
  top: 0;
  height: 99%;
  width: 0.00533rem;
  /* no */
  background: #e5e5e5;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.mc-confirm-confirm {
  color: #fe8c00;
  font-weight: 500;
}
.mc-confirm .mc-input {
  font-size: 0.07467rem;
  padding-left: 0.05333rem;
  padding-right: 0.05333rem;
}
.mc-confirm .mc-input:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(200% - 0.00533rem);
  height: calc(200% - 0.00533rem);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border: 0.00533rem solid #ccc !important;
  /* no */
  border-radius: 0;
}
.mc-confirm .mc-input input {
  position: relative;
}

/* 全局变量 */
@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mc-loading {
  color: #999;
  -webkit-animation: loading 1s;
  animation: loading 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.mc-modal-loading {
  color: #fff;
}
.mc-modal-loading .mc-toast-content {
  padding: 0.10667rem 0.08rem;
  min-width: 0.53333rem;
  min-height: 0.53333rem;
}
.mc-modal-loading .mc-loading {
  color: #fff;
}
.mc-modal-loading .wording {
  font-size: 0.07467rem;
  line-height: 0.10667rem;
  margin-top: 0.02667rem;
}
.mc-page-loading {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.mc-page-loading img {
  width: 0.53333rem;
  height: 0.42667rem;
}
.mc-page-loading p {
  font-size: 0.08533rem;
  margin-top: 0.05333rem;
  color: #999;
}

body {
  margin: 0;
  font-family: -apple-system-font, "PingFang SC", "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

