/*用于登录时人机验证*/
.container {
    width: 310px;
    margin: 0 auto;
}

#msg {
    width: 100%;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

a:link,
a:visited,
a:hover,
a:active {
    margin-left: 100px;
    /* color: #0366D6; */
}

.block {
    position: absolute;
    left: 0;
    top: 0;
}

.sliderContainer {
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    width: 290px;
    height: 40px;
    line-height: 40px;
    background: lightgray;
    color: #45494c;
    border: 0px solid lightgray;
    border-radius: 20px;
}

.sliderContainer_active .slider {
    /* height: 55px;
    top: -1px;
    border: 1px solid lightgray; */
}

.sliderContainer_active .sliderMask {
    height: 55px;
    border-width: 1px;
}

.sliderContainer_success .slider {
    /* height: 55px;
    top: -1px;
    border: 1px solid #52CCBA;
    background-color: #52CCBA !important; */
}

.sliderContainer_success .sliderMask {
    /* height: 55px;
    border: 1px solid #52CCBA;
    background-color: #D2F4EF; */
}

.sliderContainer_success .sliderIcon {
    background-position: 0 0 !important;
}

.sliderContainer_fail .slider {
    width: 55px;
    height: 55px;
    /* top: -1px; */
    /* border: 1px solid #f57a7a;
    background-color: #f57a7a !important; */
}

.sliderContainer_fail .sliderMask {
    height: 55px;
    /* border: 1px solid #f57a7a; */
    /* background-color: #fce1e1; */
}

.sliderContainer_fail .sliderIcon {
    background-position: 0 -83px !important;
}

.sliderText{
    color: #88949d;
}

.sliderContainer_active .sliderText,
.sliderContainer_success .sliderText,
.sliderContainer_fail .sliderText {
    display: none;
}

.sliderMask {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    /* border: 0 solid #1991FA; */
    border-radius: 10px;
    /* background: #D1E9FE; */
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 55px;
    height: 55px;
    background: white;
    cursor: pointer;
    transition: background .2s linear;
    border-radius: 35px;
    margin-top: -7px;
    border: 1px solid lightgray;
    background-image: url("../../assets/images/vertical.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
}

.slider:hover {
    /* background: #1991FA; */
    background-image: url("../../assets/images/point.png");
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: 25px; */
}

.slider:hover .sliderIcon {
    background-position: 0 -13px;
}

.sliderIcon {
    position: absolute;
    top: 15px;
    left: 13px;
    width: 14px;
    height: 10px;
    /*background-image: url(../images/synchronize1.png) ;*/
    background-size: 34px 471px;
}

.refreshIcon {
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 34px;
    cursor: pointer;
    /*background-image: url(../images/synchronize1.png) ;*/
    background-size: 34px 471px;
}