.ac-captcha {
  touch-action: none;
}
.ac-captcha__error {
  padding-top: 20px;
  width: 280px;
  min-height: 140px;
  background-color: #ffffff;
  text-align: center;
}
.ac-captcha__icon {
  margin-top: 15px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.ac-captcha__icon-wrap {
  background-color: #e40808;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.ac-captcha__icon-wrap .ac-icon {
  margin-top: 14px;
  margin-left: 0;
}
.ac-captcha__text {
  padding-top: 15px;
  color: #716e6e;
}
.ac-popup {
  display: none;
  box-sizing: border-box;
}
.ac-popup__mask {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  margin: 0;
}
.ac-popup--visible {
  display: block;
}
.ac-popup__body {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 10000;
  min-height: 200px;
  padding: 15px 15px 0 15px;
  background-color: #f1f1f1;
  box-shadow: 0px -1px 0px -2px rgba(0, 0, 0, 0.2), 0px 2px 9px 0px rgba(0, 0, 0, 0.14), 0px 5px 9px 0px rgba(0, 0, 0, 0.15);
}
.ac-loading {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 140px;
}
@keyframes acIcon-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.ac-icon {
  display: inline-block;
  margin-top: 1px;
  margin-left: 1px;
}
.ac-icon--spin {
  -webkit-animation: acIcon-spin 1s infinite linear;
  animation: acIcon-spin 1s infinite linear;
}
.ac-icon--pulse {
  -webkit-animation: acIcon-spin 1s infinite steps(8);
  animation: acIcon-spin 1s infinite steps(8);
}
.ac-slider {
  user-select: none;
}
.ac-slider__image {
  width: 280px;
  height: 140px;
}
.ac-slider__image > img {
  width: 100%;
}
.ac-slider__puzzle {
  position: absolute;
  top: 0;
  left: 5px;
  width: 40px;
  height: 140px;
  margin-top: 15px;
  margin-left: 15px;
}
.ac-slider__puzzle > img {
  height: 100%;
  background: transparent;
}
.ac-slider__puzzle > img:active {
  background: none;
}
.ac-slider__container {
  position: relative;
  width: 280px;
  height: 44px;
  margin-top: 10px;
}
.ac-slider__track {
  position: absolute;
  top: 3px;
  left: 0;
  width: 280px;
  height: 24px;
  background-color: #d9d9d9;
  border-radius: 24px / 2;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.ac-slider__label {
  position: absolute;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 24px;
  padding-left: 20px;
  color: #716e6e;
  font-weight: 400;
  font-size: 13px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  cursor: default;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.ac-slider__mask {
  position: absolute;
  top: 3px;
  left: 0;
  width: 0;
  height: 24px;
  border-radius: 24px / 2;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.2);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.ac-slider__mask--active,
.ac-slider__mask--default {
  background-color: #3caeff;
}
.ac-slider__mask--success {
  background-color: #83f788;
}
.ac-slider__mask--failure {
  background-color: #ff3c3c;
}
.ac-slider__control {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.ac-slider__control--default {
  background-color: #fafafa;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.ac-slider__control--success,
.ac-slider__control--active,
.ac-slider__control--failure {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.ac-slider__control--active {
  background-color: #3caeff;
}
.ac-slider__control--success {
  background-color: #35dd74;
}
.ac-slider__control--failure {
  background-color: #e40808;
}
.ac-slider__control .ac-icon {
  display: flex;
  justify-content: center;
  align-content: center;
}
@keyframes scaleDr {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
.ac-points__image {
  width: 280px;
  height: 140px;
  cursor: pointer;
}
.ac-points__image > img {
  width: 100%;
}
.ac-points__bar {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 280px;
  height: 30px;
  margin-top: 10px;
  color: #716e6e;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  background: #f7f9fa;
  border: 1px solid #e4e7eb;
}
.ac-points__bar > div {
  margin-left: 4px;
}
.ac-points__bar--success {
  color: #fff;
  background: #35dd74;
}
.ac-points__bar--failure {
  color: #fff;
  background: #e40808;
}
.ac-points__bar--active {
  background: #3caeff;
  color: #fff;
}
.ac-points__point {
  position: absolute;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  overflow: hidden;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  background-color: #3caeff;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation-name: scaleDr;
  animation-duration: 4s;
  /*动画所花费的时间*/
  animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
  animation-iteration-count: infinite;
  /*动画播放的次数*/
}
.ac-points__point > div {
  width: 14px;
  height: 14px;
  line-height: 14px;
}
