.lh-input{
  position: relative;
  display: inline-block;
  outline: 0;
  width: 200px;
  .lh-input-cornInput{
    color:@color_b1;
    display: inline-block;
    width: 100%;
    padding: 0 7px 0 7px;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    background-color:#fff;
    border: 1px solid @color_b5;
    border-radius:2px;
    transition: border .2s;
    outline: none;
    &[type="number"] {
      padding-right: 0 !important;
    }
    &:hover {
      border-color: @color_theme5;
    }
    &:focus {
      border-color: @color_theme5;
    }
    /* WebKit, Blink, Edge */
    &::-webkit-input-placeholder {
      color: @color_b4;
    }
    /* Mozilla Firefox 4 to 18 */
    &:-moz-placeholder {
      color: @color_b4;
      //在测试中发现，火狐给的placeholder的颜色始终其真实值要更浅，怀疑火狐给placeholder设置了透明度。然后设置了一下opacity果然成功了。不得不佩服
      opacity: 1;
    }
    /* Mozilla Firefox 19+ */
    &::-moz-placeholder {
      color: @color_b4;
      //在测试中发现，火狐给的placeholder的颜色始终比其真实值要更浅，怀疑火狐给placeholder设置了透明度。然后设置了一下opacity果然成功了。不得不佩服
      opacity: 1;
    }
    /* Internet Explorer 10-11 */
    &:-ms-input-placeholder {
      color: @color_b4;
    }

  }
  .lh-input_icon {
    position: absolute;
    right: 6px;
    align-items: center;
    width: 16px;
    height: 16px;
    top:8px;
    color: @color_warning;
    text-align: center;
    .lds-css{
      display: none;
    }

    &_img{
      display: inline-block;
      width: 16px;
      height: 16px;
      //background: red;
    }
    &:after {
      content: '';
      display: inline-block;
      width: 0;
      height: 100%;
      vertical-align: middle;
    }
  }
  .lh-input__prefix {
    position: absolute;
    left:8px;
    top:0;
    line-height: 32px;
    color:@color_b4;
    i{
      font-size: 14px;
    }
  }
  .lh-input__suffix {
    position: absolute;
    right:8px;
    top:0;
    line-height: 32px;
    color:@color_b4;
    i{
      font-size: 14px;
    }
  }
  .lh-input__suffix-text {
    position: absolute;
    right:8px;
    top:0;
    line-height: 32px;
    color:@color_b2;
    font-size: 14px;
  }
  &.mini {
    .lh-input-cornInput
    {
      height: 24px;
      line-height: 24px;
      font-size: 12px;
      padding: 0 7px 0 7px;
    }
    .lh-input_icon {
      top: 4px;
    }
    .lh-input__prefix {
      line-height: 24px;
      i{
        font-size: 14px;
      }
    }
    .lh-input__suffix {
      line-height: 24px;
      i{
        font-size: 14px;
      }
    }
    .lh-input__suffix-text {
      line-height: 24px;
      font-size: 12px;
    }
  }
  &.big {
    .lh-input-cornInput
    {
      height: 40px;
      line-height: 40px;
      font-size: 16px;
      padding: 0 11px 0 11px;
    }
    .lh-input_icon {
      top: 12px;
    }
    .lh-input__prefix {
      line-height: 40px;
      left:11px;
      i {
        font-size: 20px;
      }
    }
    .lh-input__suffix {
      line-height: 40px;
      right:11px;
      i {
        font-size: 20px;
      }
    }
    .lh-input__suffix-text {
      line-height: 40px;
      font-size: 20px;
    }
  }
  &.is-prefix {
    .lh-input-cornInput {
      padding-left: 28px;
    }
    &.big {
      .lh-input-cornInput {
        padding-left: 40px;
      }
    }
    &.mini {
      .lh-input-cornInput {
        padding-left: 26px;
      }
    }
  }
  &.is-suffix {
    .lh-input-cornInput {
      padding-right: 28px;
    }
    &.big {
      .lh-input-cornInput {
        padding-right: 40px;
      }
    }
    &.mini {
      .lh-input-cornInput {
        padding-right: 26px;
      }
    }
  }
  &-disabled{
    .lh-input-cornInput{
      color: @color_b4;
      background-color: @color_b7;
      border: solid 1px @color_b5 !important;
      cursor: not-allowed;
    }
  }
}
@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.lds-dual-ring {
  position: relative;
}
.lds-dual-ring div {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 20px;
  left: 20px;
  border-radius: 50%;
  border: 8px solid #000;
  -webkit-animation: lds-dual-ring 1s linear infinite;
  animation: lds-dual-ring 1s linear infinite;
}
.lds-dual-ring {
  width: 16px !important;
  height: 16px !important;
  -webkit-transform: translate(-8px, -8px) scale(0.08) translate(8px, 8px);
  transform: translate(-8px, -8px) scale(0.08) translate(8px, 8px);
}
