.captcha {
  position: relative;
}

.captcha::before {
  width: 15px;
  height: 15px;
  right: 10px;
  background-image: url("svg(UTF8)/shield.svg");
}

#CaptchaImageCode {
  background-color: white;
  width: 300px;
  height: auto;
  position: absolute;
  display: none;
  z-index: 999;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

#CaptchaImageCode > div {
  position: relative;
  height: 100%;
}

#CaptchaImageCode #CapCode {
  cursor: pointer;
}

#CaptchaImageCode .function {
  background-color: #327ccb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

#CaptchaImageCode .function .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: auto;
}

#CaptchaImageCode .function .right > div {
  margin-right: 10px;
  cursor: pointer;
}

#CaptchaImageCode .function .text {
  padding-left: 10px;
  font-weight: bolder;
  letter-spacing: 1px;
  color: white;
}

#CaptchaImageCode .function .audio,
#CaptchaImageCode .function .refresh {
  cursor: pointer;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  -o-background-size: contain;
     background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#CaptchaImageCode .function .audio {
  background-image: url("./svg(UTF8)/volume.svg");
}

#CaptchaImageCode .function .audio.on {
  background-image: url("./svg(UTF8)/volume-on.svg");
  position: relative;
}

#CaptchaImageCode .function .audio.on::after {
  content: "";
  width: 3px;
  height: 8px;
  position: absolute;
  background-color: #0cb800;
  right: -3px;
  top: 4px;
}

#CaptchaImageCode .function .refresh {
  background-image: url("./svg(UTF8)/refresh.svg");
}

#CaptchaImageCode {
  display: none;
}

#CaptchaImageCode.show {
  display: block;
  -webkit-transform: translate(0%, -100%);
     -moz-transform: translate(0%, -100%);
      -ms-transform: translate(0%, -100%);
       -o-transform: translate(0%, -100%);
          transform: translate(0%, -100%);
  top: 0;
  bottom: auto;
}

#CaptchaImageCode.show i {
  top: 100%;
}

#CaptchaImageCode.show i::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
     -moz-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
       -o-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

#CaptchaImageCode.show.bottom {
  -webkit-transform: translate(0%, 100%);
     -moz-transform: translate(0%, 100%);
      -ms-transform: translate(0%, 100%);
       -o-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  bottom: 0;
  top: auto;
}

#CaptchaImageCode.show.bottom i {
  top: auto;
}

#CaptchaImageCode.show.bottom i::after {
  background-color: #327ccb;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
     -moz-transform: translate(-50%, 50%) rotate(45deg);
      -ms-transform: translate(-50%, 50%) rotate(45deg);
       -o-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
}

#CaptchaImageCode i {
  position: absolute;
  bottom: 100%;
  left: 10px;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

#CaptchaImageCode i::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
     -moz-transform: translate(-50%, 50%) rotate(45deg);
      -ms-transform: translate(-50%, 50%) rotate(45deg);
       -o-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
  background-color: white;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.x-btn {
  width: 15px;
  height: 15px;
  position: relative;
  border-radius: 6px;
}

.x-btn:before, .x-btn:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  top: 7px;
  -webkit-box-shadow: 0 0 2px 0 #ccc;
          box-shadow: 0 0 2px 0 #ccc;
}

.x-btn:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
   -o-transform: rotate(45deg);
      transform: rotate(45deg);
}

.x-btn:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

input[type="submit"]:disabled {
  background-color: #a9a9a9;
}

input[type="submit"]:disabled:hover {
  background-color: #a9a9a9;
}
/*# sourceMappingURL=captcha.css.map */