/* 
* =============================================
* Switch  
* https://youzan.github.io/vant/#/zh-CN/stepper
* =============================================
*/
.switch {
  font-size: 24px;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 2em;
  height: 1em;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.switch .dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #fff;
  border-radius: 100%;
  -webkit-box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
  transition: -webkit-transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
  transition: transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
  transition: transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05), -webkit-transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
}
.switch.switch-on {
  background-color: #1989fa;
}
.switch.switch-on .dot {
  -webkit-transform: translateX(1em);
          transform: translateX(1em);
}
.switch.switch-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.switch.switch-sm {
  font-size: 16px;
}
.switch.switch-lg {
  font-size: 30px;
}

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