@include b(input) {
    /*input样式覆盖*/
    @include e(inner) {
        height: 32px;
        line-height: 32px;
        font-size: 12px;
        padding-right: 30px;
    }
    /*input-icon 样式覆盖*/
    @include e(icon) {
        line-height: 32px;
    }

    @include m(miniW) {
        width: 80px;
    }
    @include m(smallW) {
        width: 160px;
    }
    @include m(mediumW) {
        width: 300px;
    }
}

@include b(input-number) {
  width: 100%;
  line-height: 32px;

  @include m(medium) { 
    @include e((increase, decrease)) {
      height: 34px;
    }
  }
  @include m(mini) { 
    @include e((increase, decrease)) {
      height: 26px;
      line-height: 26px;
      margin-top: 2px;
    }
  }
  @include e((increase, decrease)) {
    position: absolute;
    z-index: 1;
    top: 1px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  @include when(without-controls) {
    .el-input__inner {
      text-align: left;
    }
  }
  @include when(controls-right) {
    .el-input-number__decrease,
    .el-input-number__increase {
      line-height: 15px;
    }
  }
}
