/* 
* =============================================
* Stepper  
* https://youzan.github.io/vant/#/zh-CN/stepper
* =============================================
*/
.stepper {
  font-size: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.stepper .stepper-minus {
  border-radius: 4px 0 0 4px;
}
.stepper .stepper-plus {
  border-radius: 0 4px 4px 0;
}
.stepper .stepper-plus:after {
  width: 1px;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
}
.stepper .stepper-minus,
.stepper .stepper-plus {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  color: #323233;
  vertical-align: middle;
  background-color: #f2f3f5;
  border: 0;
  cursor: pointer;
}
.stepper .stepper-minus:before,
.stepper .stepper-plus:before {
  width: 50%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
}
.stepper .stepper-minus:disabled,
.stepper .stepper-minus .disabled,
.stepper .stepper-plus:disabled,
.stepper .stepper-plus .disabled {
  color: #c8c9cc;
  background-color: #f7f8fa;
  cursor: not-allowed;
}
.stepper .stepper-minus:disabled:active,
.stepper .stepper-minus .disabled:active,
.stepper .stepper-plus:disabled:active,
.stepper .stepper-plus .disabled:active {
  background-color: #f7f8fa;
}
.stepper .stepper-minus:active,
.stepper .stepper-plus:active {
  background-color: #e8e8e8;
}
.stepper .stepper-input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 32px;
  height: 28px;
  margin: 0 2px;
  padding: 0;
  color: #323233;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
  background-color: #f2f3f5;
  border: 0;
  border-width: 1px 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.stepper .stepper-input:disabled {
  color: #c8c9cc;
  background-color: #f2f3f5;
  -webkit-text-fill-color: #c8c9cc;
  opacity: 1;
}
.stepper .stepper-input:focus {
  outline: none;
}
.stepper .stepper-input:-moz-read-only {
  cursor: default;
}
.stepper .stepper-input:read-only {
  cursor: default;
}

.stepper-block {
  width: 58px;
  height: 44px;
  overflow: hidden;
  border: 1px solid #ccc;
  position: relative;
  margin-right: 10px;
  float: left;
}
.stepper-block input {
  display: block;
  width: 43px;
  height: 42px;
  line-height: 42px;
  position: absolute;
  top: 1px;
  left: 0;
  border: none;
  border: 0;
  text-align: center;
}
.stepper-block input:focus {
  outline: none;
}
.stepper-block a {
  display: block;
  width: 15px;
  text-align: center;
  height: 23px;
  line-height: 23px;
  overflow: hidden;
  background: #f1f1f1;
  color: #666;
  position: absolute;
  right: -1px;
  border: 1px solid #ccc;
  text-decoration: none;
}
.stepper-block a.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.stepper-block a.stepper-minus {
  bottom: -1px;
}
.stepper-block a.stepper-plus {
  top: -1px;
}

/*# sourceMappingURL=stepper.css.map */