.drag {
    position: relative;
    width: 100%;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #838395;

    box-shadow: inset 0px 1px 2px 0px rgba(115, 134, 150, 0.3);
    border-radius: 10px;
    background: #E1E6ED;
}

.drag .drag_bg {
    /*background-color: #409eff; !* 假设这是 --el-color-primary 的值 *!*/
    height: 46px;
    width: 0px;
    border-radius: 10px 0 0 10px;

    color: #3FC28A;
    background: rgba(63, 194, 138, 0.1);
    box-shadow: inset 0px 1px 2px 0px rgba(115, 134, 150, 0.3);
}

.drag .drag_text {
    position: absolute;
    top: 0px;
    width: 100%;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
}

.drag .handler {
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;


    border-radius: 4px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #D9DFE8;
}

.drag .handler:hover svg {
    transform: scale(1.2);
    transition: all 0.5s;
}

.drag .handler-success {
    border-radius: 0 10px 10px 0;
}

.drag .handler{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.drag .slide-icon{
    width: 16px;
    height: 16px;
}
.drag .slidesuccess-icon{
    width: 20px;
    height: 20px;
}