/* 密码提示弹框样式*/
.arrow_box {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    left: 340px;
    top: -60px;
    padding: 15px;
    width: 320px;
}

.arrow_box:after, .arrow_box:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 11px;
    margin-top: -11px;
}

.arrow_box:before {
    border-color: rgba(204, 204, 204, 0);
    border-right-color: #ccc;
    border-width: 12px;
    margin-top: -12px;
}

.arrow_box_reset {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    left: 600px;
    top: -60px;
    padding: 15px;
    width: 200px;
}

.arrow_box_reset:after, .arrow_box_reset:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box_reset:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 11px;
    margin-top: -11px;
}

.arrow_box_reset:before {
    border-color: rgba(204, 204, 204, 0);
    border-right-color: #ccc;
    border-width: 12px;
    margin-top: -12px;
}

.logo {
    color: #818181;
    margin-left: -20px;
}

.control-password {
    height: 56px;
}

.control-password-pop {
    height: 206px;
}

.fa-exclamation-circle {
    color: red;
    font-size: 15px;
    padding-right: 6px;
}

.display-hide {
    display: none !important;
}

.password-group {
    position: relative;
}

.password-div {
    position: absolute;
    right: 0;
    top: -5px;
    z-index: 99;
    height: 100%;
    width: 20%;
    background-repeat: no-repeat;
    background-position: center right 30%;
    background-size: 40%;
    cursor: pointer;
}

.show-password {
    background-size: 60%;
}