/**
 * Dragdealer.js 0.9.8
 * http://github.com/skidding/dragdealer
 *
 * (c) 2010+ Ovidiu Cherecheș
 * http://skidding.mit-license.org
 */

.dragdealer {
  position: relative;
  height: 30px;
  background: #EEE;
}
.dragdealer .handle {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.dragdealer .red-bar {
  width: 100px;
  height: 30px;
  background: #CC0000;
  color: #FFF;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}
.dragdealer .disabled {
  background: #898989;
}

/*滑动验证码*/
.slide-out{
    float:left;
    position: relative;
}
.slide-to-unlock {
    left:0;
    top:0;
    width: 280px;
    height: 34px;
}
.slide-to-unlock .dragdealer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: #e9e9e9;
    height: auto;
}
.slide-to-unlock .success {
    background:#7ac23c;
}
.slide-to-unlock .handle {
    height:32px;
    border-radius: 0;
}
.slide-to-unlock .disabled {
    background: none;
}
.slide-to-unlock .slide-text {
    position: absolute;
    top: 0;
    height: 80px;
    font-size: 12px;
    line-height: 80px;
    text-align: left;
}
.old-slider {
    background: #e9e9e9;
}
.old-slider .dragdealer {}
.old-slider .slide-text {
    right: 0;
    width: 213px;
    height: 34px;
    color: #9d9d9d;
    line-height: 34px;
    cursor: default;
}
.old-slider .hover-text{
    color: #fff;
}
.old-slider .handle {
    width: 100px;
    background: #fff;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    width: 40px;
    border: 1px solid #ccc;
}


