.lh-switch{
    font-size: 14px;
    height: 22px;
    line-height: 22px;
    position: relative;
    .lh-switch-input {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        visibility: hidden;
    }
    .lh-switch-core {
        height: 22px;
        width: 44px;
        border:none;
        margin: 0;
        display: inline-block;
        position: relative;
        outline: none;
        border-radius: 11px;
        box-sizing: border-box;
        background-color: @color_b4;
        cursor: pointer;
        vertical-align: top;
        transition: all 0.3s ease;
        &::after {
            content: "";
            position: absolute;
            border-radius: 100%;
            width: 18px;
            height: 18px;
            top: 2px;
            left: 2px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.16);
            background-color: #fff;
            transition: all 0.3s ease;
        }
    }
    .lh-switch-checked {
        .lh-switch-core {
            border:none;
            background-color: @color_theme6;
            &::after {
                left:24px;
            }
        }
    }
    .lh-switch-disabled{
        cursor: not-allowed;
        .lh-switch-core {
            background-color: @color_b7;
        }
        &.lh-switch-checked {
            .lh-switch-core {
                background-color: @color_theme3;
            }

        }
    }

        
    &.mini {
        height: 16px;
        line-height: 16px;

        .lh-switch-core {
            height: 16px;
            width: 28px;
            border-radius: 8px;
            &::after {
                width: 12px;
                height: 12px;
            }
        }

        .lh-switch-checked {
            .lh-switch-core {
                &::after {
                    left:14px;
                }
            }
        }
    }
}
