/* 寮€鍏� switch*/
.switch {
  margin: 0;
  padding: 0;
  color: var(--black);
  font-size: var(--fz_14);
  font-variant: tabular-nums;
  list-style: none;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 44px;
  height: 22px;
  line-height: 22px;
  vertical-align: middle;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: rgba(16, 194, 120, 1);
}

.m_cont_inner > .switch {
  margin-top: 0;
}

.switch_bg {
  background: rgba(224, 224, 224, 1);
}

.switch .switch_dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.switch .switch_dot::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: "";
}

.switch.switch_checked .switch_dot {
  left: calc(100% - 18px - 2px);
}

.switch .switch_inner {
  display: block;
  margin: 0 8px 0 24px;
  color: rgba(102, 102, 102, 1);
  font-size: var(--fz_12);
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
  text-indent: 0;
}

.switch .switch_inner .ic {
  font-size: 14px;
}

.switch.switch_checked .switch_inner {
  margin: 0 24px 0 8px;
  text-indent: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 12px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: top;
  line-height: 22px;
}
