.passport-toast {
  position: fixed;
  width: 250px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 40%;
  padding: 10px;
  border-radius: 2px;
  background: rgba(0,0,0,.7);
  color: #fff;
  z-index: 3;
  text-align: center;
  font-size: 20px;
}
.passport-toast-mobile {
  position: fixed;
  width: 55%;
  min-height: .5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 40%;
  padding: .2rem .2rem;
  background: rgba(0,0,0,.7);
  color: #fff;
  z-index: 3;
  text-align: center;
  font-size: 0.3rem;
  border-radius: .1rem;
}
.passport-toast-mobile .toast-content {
    vertical-align: middle;
  }

.input-area {
  border-bottom: 1px solid #999;
  margin: 0 auto .5rem;
  width: 5.5rem;
  padding-bottom: .2rem;
  display: flex;
}
  .input-area .loc-select {
    position: relative;
    font-size: .24rem;
    color: #414244;
    padding-right: .15rem;
    line-height: .4rem;
    height: .4rem;
    max-width: 45%;
    top: .05rem
  }
  .input-area .loc-select::after {
  content: "";
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  margin-top: -.05rem;
  width: .1rem;
  height: .1rem;
  transform: rotate(45deg);
}
  .input-area input{
    background-color: transparent;
  }
  .input-area input:focus {
    outline: none;
  }
  .input-area .phone-num-input {
    height: 100%;
    flex: 1;
    border: 0;
    min-width: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    padding: 0 0 0 .3rem;
    font-size: .4rem;
    line-height: .4rem;
    caret-color: #FFC300;
    color: #333333;
    font-family: "Avenir-Roman";
  }
  .input-area .clear-hide {
    display: none;
  }
  .input-area .clear-show{
    position: relative;
    width: 0.255rem;
    height: 0.33rem;
  }
  .input-area .clear-show .icon-cross {
      position: absolute;
      left: 0;
      width: 0.255rem;
      height: 0.3rem;
    }
  .input-area .clear-show .icon-cross::before, .input-area .clear-show .icon-cross::after {
      position: absolute;
      content: ' ';
      height: 0.33rem;
      width: 0.03rem;
      top: 0;
      background-color: #C5C6CB;
    }
  .input-area .clear-show .icon-cross::before {
      transform: rotate(45deg);
    }
  .input-area .clear-show .icon-cross::after {
      transform: rotate(-45deg);
    }

.confirm-container {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}
    .confirm-container .confirm-css-animation {
        width: 100%;
        height: 100%;
        animation: zoom .3s;
    }
    .confirm-container .confirm-item {
        position: absolute;
        top: 45%;
        left: 50%;
        width: 62%;
        -webkit-transform: translate(-50%,-45%);
        background: #ffffff;
        color: #000;
        text-align: center;
        border-radius: 0.2rem;
    }
    .confirm-container .confirm-item .confirm-title {
            font-size: 0.35rem;
            font-weight: 500;
            padding: 0.4rem 0 0.2rem 0;
        }
    .confirm-container .confirm-item .confirm-content {
            font-size: 0.27rem;
            padding: 0 0.3rem 0.2rem 0.3rem;
            line-height: 0.35rem;
            border-bottom: 1px solid #ccc;
        }
    .confirm-container .confirm-item .confirm-btn {
            width: 100%;
            height: 0.8rem;
            line-height: 0.8rem;
            display: flex;
            color: #1890ff;
            font-weight: 500;
        }
    .confirm-container .confirm-item .confirm-btn .confirm-ok-btn {
                flex: 1;
            }
    .confirm-container .confirm-item .confirm-btn .confirm-ok-btn.hide {
                display: none;
            }
    .confirm-container .confirm-item .confirm-btn .confirm-cancel-btn {
                flex: 1;
                border-right: 1px solid #ccc;
            }
    .confirm-container .confirm-item .confirm-btn .confirm-cancel-btn.hide {
                display: none;
            }
@-webkit-keyframes zoom{
    0% {
        /* IOS 有一个奇怪的 bug，如果这里不加 opacity，那么弹窗会先显示出来没有执行 animation 的效果，然后再执行 animation 效果，没有找到合适的解决办法, 发现 opacity:0，然后在用户视觉感知不到的情况下显示出来从而解决该问题 */
        opacity: 0;
        -webkit-transform:scale(0)
    }
    5% {
        opacity: 1;
    }
    50% {
        -webkit-transform:scale(1.1)
    }
    100% {
        -webkit-transform:scale(1.0)
    }
}
@-moz-keyframes zoom{
    0% {
        /* IOS 有一个奇怪的 bug，如果这里不加 opacity，那么弹窗会先显示出来没有执行 animation 的效果，然后再执行 animation 效果，没有找到合适的解决办法, 发现 opacity:0，然后在用户视觉感知不到的情况下显示出来从而解决该问题 */
        opacity: 0;
        -moz-transform:scale(0)
    }
    5% {
        opacity: 1;
    }
    50% {
        -moz-transform:scale(1.1)
    }
    100% {
        -moz-transform:scale(1.0)
    }
}
@-ms-keyframes zoom{
    0% {
        /* IOS 有一个奇怪的 bug，如果这里不加 opacity，那么弹窗会先显示出来没有执行 animation 的效果，然后再执行 animation 效果，没有找到合适的解决办法, 发现 opacity:0，然后在用户视觉感知不到的情况下显示出来从而解决该问题 */
        opacity: 0;
        -ms-transform:scale(0)
    }
    5% {
        opacity: 1;
    }
    50% {
        -ms-transform:scale(1.1)
    }
    100% {
        -ms-transform:scale(1.0)
    }
}
@-o-keyframes zoom{
    0% {
        /* IOS 有一个奇怪的 bug，如果这里不加 opacity，那么弹窗会先显示出来没有执行 animation 的效果，然后再执行 animation 效果，没有找到合适的解决办法, 发现 opacity:0，然后在用户视觉感知不到的情况下显示出来从而解决该问题 */
        opacity: 0;
        -o-transform:scale(0)
    }
    5% {
        opacity: 1;
    }
    50% {
        -o-transform:scale(1.1)
    }
    100% {
        -o-transform:scale(1.0)
    }
}
@keyframes zoom{
    0% {
        /* IOS 有一个奇怪的 bug，如果这里不加 opacity，那么弹窗会先显示出来没有执行 animation 的效果，然后再执行 animation 效果，没有找到合适的解决办法, 发现 opacity:0，然后在用户视觉感知不到的情况下显示出来从而解决该问题 */
        opacity: 0;
        -webkit-transform:scale(0)
    }
    5% {
        opacity: 1;
    }
    50% {
        -webkit-transform:scale(1.1)
    }
    100% {
        -webkit-transform:scale(1.0)
    }
}
@charset "UTF-8";
body {
  margin: 0;
}
a:active,
a:hover {
  outline: 0;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
img {
  vertical-align: middle;
  border: 0;
}
@-ms-viewport {
  width: device-width;
}
html {
  font-size: 50px;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
  min-width: 320px;
  overflow-x: hidden;
}
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.28em;
  line-height: 1;
  color: #333;
  background-color: #f0efed;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 500;
  line-height: 1.1;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 0.28rem;
  margin-bottom: 0.14rem;
}
h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0.14rem;
  margin-bottom: 0.14rem;
}
h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 0.364rem;
}
h2,
.h2 {
  font-size: 0.2996rem;
}
h3,
.h3 {
  font-size: 0.238rem;
}
h4,
.h4 {
  font-size: 0.175rem;
}
h5,
.h5 {
  font-size: 0.14rem;
}
h6,
.h6 {
  font-size: 0.119rem;
}
h6 {
  margin-top: 0;
  margin-bottom: 0;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #2bb2a3;
  text-decoration: none;
  outline: 0;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a.react,
label.react {
  display: block;
  color: inherit;
  height: 100%;
}
a.react:active,
a.react.react-active,
label.react:active {
  background: rgba(0, 0, 0, 0.1);
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
hr {
  margin-top: 0.28rem;
  margin-bottom: 0.28rem;
  border: 0;
  border-top: 1px solid #ddd8ce;
}
p,
h6 {
  line-height: 1.41;
  text-align: justify;
  margin: -0.2em 0;
  word-break: break-all;
}
weak,
small {
  color: #666;
}
.color-weak {
  color: #666 !important;
}
.color-weaker {
  color: #999 !important;
}
.color-strong {
  color: #2bb2a3 !important;
}
.color-stronger {
  color: #fca006 !important;
}
.color-ok {
  color: #6bbd00 !important;
}
.color-warning {
  color: #fa7251 !important;
}
space {
  display: inline-block;
  width: 0.12rem;
}
.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}
.clearfix:after {
  clear: both;
}
input,button,select,textarea{
    outline:none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  background-color: #f4f4f4;
  margin: 0;
  /*overflow-x: hidden;*/
  width: 100%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

html,
body,
#app,
.page {
  height: 100%;
  margin: 0;
  background: #fff
}

html::-webkit-scrollbar, body::-webkit-scrollbar, #app::-webkit-scrollbar, .page::-webkit-scrollbar {
  display: none;
}
p {
  margin: 0;
}

.page {
  padding: 0 .48rem;
  font-family: 'PingFang SC'

}

.page.hide {
  display: none;
}

.page .title {
    font-size: .4rem;
    color: #191919;
    line-height: .4rem;
    margin: 1.4rem 0 1.15rem;
    font-weight: 500;
}

.page .input-area {
    margin-bottom: .48rem;
    width: auto;
    border-bottom: 1px solid #e6e6e6;
    font-family: 'PingFang SC';
}

.page .input-area .loc-select {
      font-size: .4rem;
      color: #191919;
      font-family: 'PingFang SC';
      font-weight: 500
    }

.page .input-area .loc-select::after {
  border-bottom: 3px solid #191919;
  border-top: 0;
  border-right: 3px solid #191919;
  top: 44%;
  left: 100%;
}

.page .input-area .phone-num-input {
      font-size: .4rem;
      font-weight: 500;
      font-family: 'PingFang SC'
    }

.page .input-area .phone-num-input::placeholder {
  color: rgba(0, 0, 0, 0.24);
  font-size: .36rem;
  font-weight: normal;
}

.page .action-area {
    margin: 0 auto;
}

.page .action-area .l-btn {
      display: block;
      width: 100%;
      height: .88rem;
      line-height: .88rem;
      text-align: center;
      font-size: .32rem;
      color: #C2C2C2;
      background-image: linear-gradient(135deg, #FFF5CA 0%, #FFF2CC 100%);
      border-radius: 1rem
    }

.page .action-area .l-btn.available {
  color: #191919;
  background-image: linear-gradient(135deg, #FFD000 0%, #FFBD00 100%);
}

.page .mtfe-smscodeyoda-mtfe-wrapper {
    display: none;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color:#000000;
    top: 40%;
    position: absolute;
    z-index: 30;
}

.page .mtfe-smscodeyoda-mtfe-wrapper .sliderTitle {
      font-size: .3rem;
    }

.page .mtfe-smscodeyoda-mtfe-wrapper .boxWrapper {
      font-size: .3rem;
    }

.page .mtfe-smscodeyoda-mtfe-wrapper #yodaWrapper {
      font-size: .3rem;
    }

.page .mtfe-smscodeyoda-mtfe-wrapper #yodaSliderTip, .page .mtfe-smscodeyoda-mtfe-wrapper #yodaTip {
      font-size: .3rem;
    }

.page .mtfe-mask-mtfe-wrapper {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.confirm-container.confirm .confirm-item {
    width: 83.2%;
    border-radius: .24rem;
  }

.confirm-container.confirm .confirm-item .confirm-title {
      opacity: 0.9;
      font-size: .38rem;
      color: #000;
      font-weight: 600;
      text-align: center;
      line-height: .52rem;
    }

.confirm-container.confirm .confirm-item .confirm-content {
      font-size: .32rem;
      color: rgba(0,0,0,0.50);
      text-align: center;
      line-height: .38rem;
      padding: 0 .36rem .18rem;
      border: 0;
    }

.confirm-container.confirm .confirm-item .confirm-btn {
      height: auto;
      padding: .3rem 5%;
      width: 90%;
      display: flex;
      justify-content: space-between;
    }

.confirm-container.confirm .confirm-item .confirm-btn .confirm-ok-btn {
        margin: 0 auto;
        border: 0;
        background: linear-gradient(270deg, #FFBE00 0%, #FFD000 100%);
        border-radius: .18rem;
        font-size: .28rem;
        color: #000000;
        text-align: center;
        line-height: .9rem;
        font-weight: 700;
      }
