*{margin: 0;padding: 0; box-sizing: border-box;}
body{
    background: #646464;
}
.dragSlide{
    width: 400px;
    height: 50px;
    background-color: #ccc;
    border-radius: 5px;
    margin: 10px auto;
    overflow: hidden;
    position: relative;
    line-height: 50px;
    user-select: none;

}
.dragSlide .slide-font{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}
.dragSlide .slider{
    width: 20%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    background: #fff;
    /*color: #ccc;*/
    border-radius: 5px;
    cursor: move;
    z-index: 99;
    border: 1px solid #ccc;
}
.dragSlide .modal{
    width: 20%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: #06ad06;
    /*color: #fff;*/
    border-radius: 5px;
}
