.l-switch-default{
  display: flex;
  align-items: center;
  .l-switch-left-text,.l-switch-right-text{
    font-size:14px;
    transition: all .3s ease;
    color:#909399;
  }
  .l-switch-left-text{
    margin-right:7px;
  }
  .l-switch-right-text{
    margin-left:7px;
  }
  .l-switch-content{
    width: 40px;
    height: 20px;
    background:#BFBFBF;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: all .3s ease;
    .l-switch-round{
      width: 18px;
      height: 18px;
      display: inline-block;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      top:1px;
      transition: all .3s ease;
    }
    .l-switch-flagtext{
      height: 18px;
      display: inline-block;
      border-radius: 50%;
      color: #fff;
      position: absolute;
      top:1px;
      transition: all .3s ease;
      font-size:12px;
      line-height: 18px;
    }
  }
  .l-switch-disabled{
    opacity: .5;
    cursor: no-drop;
  }
}