.verification-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}

.verification {
  position: relative;
  width: 280px;
  margin: 5rem auto auto auto;
  padding: .2rem;
  border-radius: .1rem;
  background-color: #fff;
}

.verification .close {
  position: absolute;
  z-index: 99;
  right: 0;
  top: 0;
  width: .64rem;
  height: .64rem;
  background: #fff url(../img/close_outline.svg) center no-repeat;
  background-size: 100%;
  border-radius: 50%;
}

.verification h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.verification__wrapper {
  width: 280px;
  height: 150px;
  position: relative;
}

.verification__img {
  position: absolute;
}

/* .verification__img--bg{
    background-image: url(../img/verification/001.jpg);
    background-size: 280px 200px;
    background-repeat: no-repeat;
    border-radius: .06rem;
} */
.verification__img--slice,
.verification__img--slice span,
.verification__img--shadow,
.verification__img--shadow span {
  width: 60px;
  height: 60px;
}

.verification__img--slice,
.verification__img--shadow {
  background: url(../img/verification/mask.png) center no-repeat;
  background-size: 100%;
}

.verification__img--slice span,
.verification__img--shadow span {
  display: block;
  background: url(../img/verification/maskBg.png) center no-repeat;
  background-size: 100%;
  position: relative;
}

.verification__img--bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.verification__img--slice {
  z-index: 1;
  top: 10px;
  left: 60px;
}

.verification__img--shadow {
  top: 100px;
  left: 200px;
  /* filter: drop-shadow(-1px 1px 2px rgb(0, 0, 0)); */
}

.verification__img .verification__img--back {
  position: absolute;
  z-index: -1;
  top: 0;
  display: block;
}

.verification__scroll {
  width: 280px;
  line-height: 38px;
  position: relative;
  border-radius: .08rem;
  margin: 10px 0;
  font-size: .26rem;
  box-sizing: border-box;
  text-align: center;
  background: #e6e7eb;
  color: #788892;
  user-select: none;
  box-sizing: border-box;
}

.verification__ball {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0px;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: .06rem;
  background: #ffffff url("../img/arrow_more.svg") center no-repeat;
  background-size: 60%;
  box-shadow: 0px 1px 3px 0 rgba(120, 136, 146, 0.3);
}

@keyframes verificationhide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.V-hide {
  animation: verificationhide .3s forwards linear;
}

@media screen and (min-width: 750px) {
  .verification__scroll {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
