/**
 * 开发时间：2016/5/24
 * 开发人员：boxUnll
 * 开发项目：移动端滑动验证代码
 */
.stage{position:relative;padding: 0 0.12rem;height:0.3413rem;width:100%}
.slider{position:absolute;box-shadow:0 0 3px #999;background-color:#ddd;left:0.002rem;right:0.245rem;}
.label {
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #4d4d4d), color-stop(.4, #4d4d4d), color-stop(.5, white), color-stop(.6, #4d4d4d), color-stop(1, #4d4d4d));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: slidetounlock 3s infinite;
    -webkit-text-size-adjust: none;
    line-height:0.35rem;
    text-align: center;
    font-size: 0.1rem;
    width: 100%;
    color: #aaa;
}
@keyframes slidetounlock
{
    0%     {background-position:-200px 0;}
    100%   {background-position:200px 0;}
}
@-webkit-keyframes slidetounlock
{
    0%     {background-position:-200px 0;}
    100%   {background-position:200px 0;}
}
.button_left{
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    transition: left 0s;
    -webkit-transition: left 0s;
    height:0.34rem;
    width:0.34rem;
}
.button-on{
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    transition: left 1s;
    -webkit-transition: left .5s;
    height:0.34rem;
    width:0.34rem;
}
.track{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    overflow: hidden;
    transition: width 0s;
    -webkit-transition: width 0s;
}
.track-on{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    overflow: hidden;
    transition: width 1s;
    -webkit-transition: width .5s;
}
.icon  {
    position: relative;
    top:0.1rem;
    left:0.1rem;
    font-family: sans-serif;
}
.icon:before{
    content:'>>';
    color:#ccc;
    line-height:0.13rem;
}
.spinner {
    position: relative;
    top:0.1rem;
    left:0.13rem;
    display: none;
    font-family: sans-serif;
}
.spinner:before {
    content: '√';
    color: #78c430;
    line-height: 0.13rem;
}
.spinner_f {
    position: relative;
    top:0.1rem;
    left:0.13rem;
    display: none;
    font-family: sans-serif;
}
.spinner_f:before {
    content: 'X';
    color: #78c430;
    line-height: 0.13rem;
}
@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}
.bg-green {
    line-height:0.35rem;
    text-align: center;
    font-size: 0.1rem;
    color: #fff;
    background-color: #78c430;
}