.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;
  }

.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)
    }
}
.confirm-container.fail-confirm {
  z-index: 999;
}

  .confirm-container.fail-confirm .confirm-item {
    width: 6.06rem;
    height: 2.48rem;
  }

  .confirm-container.fail-confirm .confirm-item .confirm-title {
      display: none;
    }

  .confirm-container.fail-confirm .confirm-item .confirm-content {
      font-size: .28rem;
      line-height: .38rem;
      padding: .36rem 0 .48rem;
      color: #808080;
      border-bottom: none;
    }

  .confirm-container.fail-confirm .confirm-item .confirm-btn {
      height: .96rem;
      justify-content: center;
    }

  .confirm-container.fail-confirm .confirm-item .confirm-btn .confirm-cancel-btn, .confirm-container.fail-confirm .confirm-item .confirm-btn .confirm-ok-btn {
        flex: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2.64rem;
        height: .96rem;
        border-radius: .18rem;
        background-color: rgba(0, 0, 0, .04);
        border: none;
        font-size: .3rem;
        font-weight: 500;
        color: #0d0d0d;
      }

  .confirm-container.fail-confirm .confirm-item .confirm-btn .confirm-ok-btn {
        margin-left: .18rem;
        background-image: linear-gradient(270deg, #FFBE00 0%, #FFD100 100%);
      }

.confirm-container.fail-confirm.dp-concat-confirm .confirm-item .confirm-btn .confirm-ok-btn {
          background: #FF6633;
          color: #FFF;
        }

.verify-code-wrap{
    display: flex;
    height: 0.8rem;
    box-sizing: border-box;
    padding-bottom: 0.2rem;
    border-bottom: 0.01rem solid #E1E1E1; 
    margin:0.8rem auto 0 ;
    align-items: center;
}
    .verify-code-wrap .phonenumber-input {
        border: none;
    }
    .verify-code-wrap input:focus{
        outline:none;
            }
.verify-code-area{
        display:block;
        color: #777777;
        font-family: PingFangSC-Regular;
        font-size: 0.3rem;
        line-height:0.42rem;
        text-decoration:none;
}
.verify-code-wrap-img{
    margin-left:0.115rem;
}

.phonenumber-input{
    flex:1;
    margin:0 0.10rem;
}

.verify-code-img{
    width:0.28rem;
    height:0.28rem;
}


@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,
.phone-container {
  margin: 0;
}

.phone-container::-webkit-scrollbar {
  display: none;
}

p {
  margin: 0;
}

.phone-container {
  padding: 0 .3rem;
}

.phone-container .phone-title {
  margin: .48rem 0 0 .12rem;
  font-size: .6rem;
  font-weight: 500;
}

.phone-container .phone-explain {
  margin: .48rem 0 0 .12rem;
  font-size: .3rem;
  line-height: .42rem;
  color: #808080;
}

.phone-container .next-step-btn {
  margin: .96rem 0 0;
  border: none;
  width: 100%;
  height: .96rem;
  background-image: linear-gradient(270deg, #FFBE00 0%, #FFD100 100%);
  border-radius: .18rem;
  font-size: .3rem;
  color: #0D0D0D
}

.phone-container .next-step-btn.dianping {
  background: #ff6633;
  color: #FFF;
}

.phone-container .verify-code-wrap {
  margin-top: .18rem;
  height: 1.12rem;
  background-color: #FFF;
  border-radius: .24rem;
  padding: 0 .3rem;
  border-bottom: none;
}

.phone-container .verify-code-wrap .verify-code-area {
    color: #0D0D0D;
  }

.phone-container .verify-code-wrap .phonenumber-input {
  font-size: .3rem;
  margin-left: .2rem;
}
html {
  background: #f4f4f4;
}

body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: .36rem;
  line-height: 1.5;
  color: #333;
  background: #f4f4f4;
}

.new-lock-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 .24rem .48rem;
  box-sizing: border-box;
}

.new-lock-container .user-img-container {
  border: solid .06rem #FFF;
  margin-top: .9rem;
  width: 2rem;
  height: 2rem;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
}

.new-lock-container .user-img {
  width: 100%;
  height: 100%;
}

.new-lock-container .user-phone {
  margin-top: .48rem;
  font-size: .3rem;
  color: #0E0E0E;
  font-weight: 500;
  line-height: .42rem;
}

.new-lock-container .next-step-btn {
  margin: .96rem .24rem 0;
  border: none;
  width: 100%;
  height: .96rem;
  background-image: linear-gradient(270deg, #FFBE00 0%, #FFD100 100%);
  border-radius: .18rem;
  font-size: .3rem;
  color: #0D0D0D
}

.new-lock-container .next-step-btn.dianping {
  background: #ff6633;
  color: #FFF;
}
.yoda-back {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  background-color: rgba(0, 0, 0, .4)
}

.yoda-back.show {
  display: flex;
}

.yoda-back .yoda-container {
    position: relative;
    width: 75%;
    height: 4rem;
}

.yoda-back .yoda-container .yoda-tip, .yoda-back .yoda-container #yodaTip {
      padding: .16rem .32rem;
      border-radius: .08rem;
      font-size: .32rem;
    }

.yoda-back .yoda-container #yodaWrapper {
      font-size: .3rem;
    }

.confirm-cancel-btn, .confirm-ok-btn {
  font-size: .3rem;
  color: #0D0D0D;
  font-weight: 500;
}

.yoda-slider-wrapper.yoda-wrapper {
  width: 6rem;
  height: 2.72rem;
  border-radius: .24rem;
  background-color: #FFFFFF;
}

.yoda-slider-wrapper.yoda-wrapper .yoda-title {
    font-size: .36rem;
    line-height: .5rem;
    margin-top: .36rem;
    margin-bottom: .48rem;
    color: #0D0D0D;
    font-weight: 500;
  }

.yoda-slider-wrapper.yoda-wrapper .yoda-box-wrapper {
    width: 5.1rem;
    height: .9rem;
    padding: 0;
    border-radius: .18rem;
    font-size: .36rem;
    background-color: #F5F5F5
  }

.yoda-slider-wrapper.yoda-wrapper .yoda-box-wrapper::before {
  display: none;
  width: .72rem;
  height: .4rem;
  background: url(//p0.meituan.net/scarlett/46c0ef244e31e272c5c072ac1b000299725.png) no-repeat center;
  background-size: contain;
}

.yoda-slider-wrapper.yoda-wrapper .yoda-box-wrapper::after {
  width: .32rem;
  height: .34rem;
  right: .3rem;
  background: url(//p0.meituan.net/scarlett/a38cba9e0220736e97c3bccaee27bc0e819.png) no-repeat center;
  background-size: contain;
}

.yoda-slider-wrapper.yoda-wrapper .yoda-box-wrapper #yodaBox {
      background-color: #FFBE00;
      border-radius: .18rem;
      box-shadow: none;
}

.yoda-slider-wrapper.yoda-wrapper .yoda-box-wrapper .boxStatic {
      background: url(//p0.meituan.net/scarlett/9e4b9e5485483ac4721903d8974b55d8601.png) no-repeat center center;
      background-size: .44rem .22rem;
}

.yoda-slider-wrapper.yoda-wrapper .moveingBar {
    border-radius: .18rem;
    background-image: linear-gradient(270deg, #FFD100 0%, #FFBE00 100%);
    background-size: contain;
  }

.yoda-slider-wrapper.yoda-wrapper.dp-yoda-slider #yodaBox {
      background-color: #ff6633
}

.yoda-slider-wrapper.yoda-wrapper.dp-yoda-slider #yodaBox.yoda-box-ok {
  background-image: url(//p0.meituan.net/scarlett/e05c8bab98fbac062dde4faa6887c141624.png);
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-position: center center;
}

.yoda-slider-wrapper.yoda-wrapper.dp-yoda-slider .moveingBar, .yoda-slider-wrapper.yoda-wrapper.dp-yoda-slider .yoda-move-bar {
      background: rgba(255, 102, 51, .8);
}

.yoda-slider-wrapper.yoda-wrapper.dp-yoda-slider .moveingBarError, .yoda-slider-wrapper.yoda-wrapper.dp-yoda-slider .yoda-move-bar-error {
      background: rgba(255, 102, 51, .8);
}

.yoda-box-wrapper {
  padding: .12rem .24rem;
  font-size: .28rem;
}
