.vertifyWrap {
  position: relative;
}
.vertifyWrap .block {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
}
.vertifyWrap .block:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.vertifyWrap .sliderContainer {
  position: relative;
  text-align: center;
  width: 310px;
  height: 40px;
  line-height: 40px;
  margin-top: 15px;
  background: #f7f9fa;
  color: #45494c;
  border: 1px solid #e4e7eb;
}
.vertifyWrap .sliderContainer_active .slider {
  height: 38px;
  top: -1px;
  border: 1px solid #486cd6;
}
.vertifyWrap .sliderContainer_active .sliderMask {
  height: 38px;
  border-width: 1px;
}
.vertifyWrap .sliderContainer_success .slider {
  height: 38px;
  top: -1px;
  border: 1px solid #0db87f;
  background-color: #0ca14a !important;
}
.vertifyWrap .sliderContainer_success .sliderMask {
  height: 38px;
  border: 1px solid #0db87f;
  background-color: #d2f4ef;
}
.vertifyWrap .sliderContainer_success .sliderIcon {
  background-position: 0 -26px !important;
}
.vertifyWrap .sliderContainer_fail .slider {
  height: 38px;
  top: -1px;
  border: 1px solid #f57a7a;
  background-color: #f57a7a !important;
}
.vertifyWrap .sliderContainer_fail .sliderMask {
  height: 38px;
  border: 1px solid #f57a7a;
  background-color: #fce1e1;
}
.vertifyWrap .sliderContainer_fail .sliderIcon {
  top: 14px;
  background-position: 0 -82px !important;
}
.vertifyWrap .sliderContainer_active .sliderText,
.vertifyWrap .sliderContainer_success .sliderText,
.vertifyWrap .sliderContainer_fail .sliderText {
  display: none;
}
.vertifyWrap .sliderMask {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  border: 0 solid #486cd6;
  background: #d1e9fe;
}
.vertifyWrap .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
}
.vertifyWrap .slider:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.vertifyWrap .slider:hover {
  background: #486cd6;
}
.vertifyWrap .sliderIcon {
  font-size: 18px;
  color: #000;
}
.vertifyWrap .slider:hover .sliderIcon {
  color: #fff;
}
.vertifyWrap .refreshIcon {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: 32px;
}
.vertifyWrap .loadingContainer {
  position: absolute;
  left: 0;
  top: 0;
  width: 310px;
  height: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #45494c;
  z-index: 2;
  background: #edf0f2;
}
.vertifyWrap .loadingIcon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  background: url(http://cdn.dooring.cn/dr/icon12.png);
  background-size: 32px;
  -webkit-animation: loading-icon-rotate 0.8s linear infinite;
          animation: loading-icon-rotate 0.8s linear infinite;
}
@-webkit-keyframes loading-icon-rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loading-icon-rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
