.drawer-right {
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    .drawer-mask {
        width: 100%;
        position: fixed;
        background: rgba(0, 0, 0, .65);
        opacity: .3;
    }
    .drawer-content-wrapper {
        width: 300px;
        height: 100%;
        position: fixed;
        right: 0;
        transform: translateX(100%);
        transition: all .2s;
        box-shadow: -2px 0 8px rgba(0, 0, 0, .15);
    }
    .drawer-content {
        width: 100%;
        height: 100%;
        background: #fff;
        .drawer-close {
            width: 50px;
            height: 50px;
            position: absolute;
            top: 5px;
            right: 5px;
            text-align: center;
            line-height: 50px;
        }
        .drawer-body {
            height: 100%;
            line-height: 1.5;
            font-size: 14px;
            padding: 24px;
        }
        .drawer-title {
            margin-bottom: 12px;
            line-height: 22px;
            font-size: 14px;
            font-weight: 500px;
            color: rgba(0, 0, 0, .85);
        }
        .divider {
            clear: both;
            display: block;
            width: 100%;
            height: 1px;
            margin: 24px 0;
            background: #e8e8e8;
        }
        .mr-b24 {
            overflow: hidden;
            margin-bottom: 24px;
        }
        .primary-color {
            width: 20px;
            height: 20px;
            float: left;
            cursor: pointer;
            margin-right: 8px;
            border-radius: 2px;
            text-align: center;
            color: #fff;
        }
        .drawer-blockcheck {
            .item {
                outline: none;
            }
            .icon-box {
                position: relative;
                display: inline-block;
                margin-right: 20px;
                cursor: pointer;
                img {
                    width: 48px;
                }
                i {
                    position: absolute;
                    bottom: 10px;
                    right: 6px;
                    font-size: 20px;
                }
            }
        }
        .setting-list {
            line-height: 1.5;
            .list-item {
                overflow: hidden;
                padding: 12px 0;
            }
            .item-name {
                float: left;
                line-height: 28px;
            }
            .item-action {
                float: right;
                width: 80px;
            }
            .el-switch {
                float: right;
            }
        }
    }
    .drawer-handle {
        width: 48px;
        height: 48px;
        position: absolute;
        top: 240px;
        right: 300px;
        font-size: 20px;
        text-align: center;
        line-height: 48px;
        border-radius: 4px 0 0 4px;
        color: #fff;
    }
}
.drawer-open {
    width: 100%;
    .drawer-mask {
        height: 100%;
    }
    .drawer-content-wrapper {
        transform: translateX(0);
    }
}