﻿/*密码强度*/
.pw-strength {
    /*clear: both;
            width: 10px;*/
    position: relative;
    top: 3px;
}

.pw-bar {
    /*background: url("/nssys/sysnew/images/pwd-1.png") no-repeat;*/
    background-color: #f3e9e9;
    height: 3px;
    overflow: hidden;
    width: 161px;
    border-radius: 15px;
    position: absolute;
    top: 8px;
    left: 0px;
}

.pw-bar-on {
    /*background: url("/nssys/sysnew/images/pwd-2.png") no-repeat;*/
    background-color: #9530ee;
    width: 0px;
    height: 3px;
    position: absolute;
    top: 8px;
    left: 0px;
    border-radius: 15px;
    transition: width .5s ease-in;
    -moz-transition: width .5s ease-in;
    -webkit-transition: width .5s ease-in;
    -o-transition: width .5s ease-in;
}

.pw-weak .pw-defule {
    width: 0px;
}

.pw-weak .pw-bar-on {
    width: 60px;
}

.pw-medium .pw-bar-on {
    width: 120px;
}

.pw-strong .pw-bar-on {
    width: 161px;
}

.pw-txt {
    padding-top: 2px;
    width: 180px;
    overflow: hidden;
}

    .pw-txt span {
        color: #707070;
        float: left;
        font-size: 12px;
        text-align: center;
        width: 58px;
    }
