#slider {
    width: 100%;
    height: 34px;
    position: relative;
    border-radius: 2px;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
     -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
#slider_bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #7AC23C;
    z-index: 1;
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
}
#label {
    width: 40px;
    position: absolute;
    left: 0;
    top: 0;
    height: 34px;
    line-height: 34px;
    border-right: 1px solid #cccccc;
    background: #eee;
    z-index: 3;
    cursor: move;
    color: #27b6b5;
    font-size: 14px;
    /*border-radius: 3px;*/
}
#labelTip {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-family: 'Microsoft Yahei', serif;
    color: #787878;
    line-height: 34px;
    text-align: center;
    z-index: 2;
}
