$color: #666;
$gray: #777;
$green: #65c178;
$blue: #557cff;
.manager {
  display: flex;
  color: $color;
  font-size: 14px;
  .switch {
    margin-right: 6px;
  }
}
.plan {
  display: flex;
  color: $color;
  font-size: 14px;
  align-items: center;
  .switch {
    margin-left: 6px;
    margin-right: 20px;
  }
  .ratio {
    color: $gray;
    font-size: 12px;
    display: flex;
    align-items: center;
  }
  .inputNumber {
    margin-left: 6px;
    width: 90px;
  }
}
:global {
  .rc-switch-checked {
    border-color: $green;
    background-color: $green;
  }
}
