.fe-switch {
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  width: 2em;
  height: 1em;
  background-color: #cccccc;
  border: 1px solid #e5e5e5;
  border-radius: 1em;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #fff;
  font-size: 30px;
  user-select: none;
}
.fe-switch-on {
  background-color: #1890ff;
}
.fe-switch-on .fe-switch-node {
  transform: translateX(1em);
}
.fe-switch-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.fe-switch-disabled .fe-switch-node {
  background-color: #fafafa;
}
.fe-switch-node {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 1em;
  height: 1em;
  background-color: #fff;
  border-radius: 100%;
  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);
  transition: transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
}
.checked {
  line-height: 1em;
  display: flex;
  align-items: center;
  margin-left: 7px;
}
.checked span {
  font-size: 0.6em;
}
.unChecked {
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.unChecked span {
  margin-right: 7px;
  font-size: 0.6em;
}
