::-webkit-input-placeholder {
    /* WebKit browsers */
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-weight: 400;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-weight: 400;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-weight: 400;
}

/** 文本输入框的 X  **/
input::-ms-clear {
    display: none;
}

/** 密码输入框的 X  **/
input::-ms-reveal {
    display: none;
}

/** 滚动条   **/
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-thumb {
    background: rgba(28, 28, 28, 0.3);
}

a {
    cursor: pointer;
}

form {
    height: 420px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}




/* 整个页面外面的样式 */

body {
    font-family: Monospaced Number, Chinese Quote, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.password-layout {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
}

.password-container {
    height: 100vh;
    width: 100vw;
    align-items: center;
    background-image: url(../img/bg-3.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.password-container>.password-layout-header,
.password-container>.password-layout-footer {
    width: 100%;
}

.password-container>.password-layout-content {
    flex: auto;
    display: flex;
    align-items: center;
}

/* 内容区域 的样式 */
.password-container>.password-layout-content>.password-tab {
    flex-shrink: 0;
    width: 508px;
    background-color: #fff;
    height: 556px;
    padding: 40px;
    box-shadow: 0 1px 6px 0 #DEDFE2;
    border-radius: 12px;
}

/* Header 的样式 */
.password-layout-header {
    padding: 0 40px;
    height: 100px;
    line-height: 100px;
}

.password-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
}

.password-steps-item {
    display: inline-block;
    margin-right: 8px;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    width: 176px;
}

.password-steps-item:last-child {
    margin-right: 0;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 60px;
}

.password-steps-item-finish .password-steps-item-icon {
    background: white;
    color: #0840F8;
    border: 1px solid #0840F8;
}

.password-steps-item-finish .password-steps-item-icon i {
    font-family: "iconfont" !important;
    font-size: 14px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.password-steps-item-finish .password-steps-item-icon i:before {
    content: "\e60f";
}

.password-steps-item-wait .password-steps-item-icon {
    background-color: white;
    color: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.password-steps-item-icon,
.password-steps-item-content {
    display: inline-block;
    vertical-align: top;
}

.password-steps-item-icon {
    margin-right: 3px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    font-family: PingFangSC-Regular, sans-serif;
    color: white;
    background: #0840F8;
    transition: background-color .3s, border-color .3s;
}


.password-steps-item-process>.password-steps-item-content>.password-steps-item-title {
    font-family: PingFangSC-Medium, sans-serif;
    color: rgba(0, 0, 0, .85);
}

.password-steps-item-wait>.password-steps-item-content>.password-steps-item-title {
    font-family: PingFangSC-Regular, sans-serif;
    color: rgba(0, 0, 0, .45);
}



.password-steps-item-title {
    position: relative;
    padding-right: 8px;
    font-size: 14px;
    line-height: 24px;
}


.password-steps-item-title::after {
    content: "";
    height: 1px;
    width: 9999px;
    background: rgba(0, 0, 0, .06);
    display: block;
    position: absolute;
    top: 14px;
    left: 100%;
}

.password-steps-item:last-of-type .password-steps-item-title::after {
    content: "";
    height: 0;
    width: 0;
}

.password-steps-item:last-child .password-steps-item-title {
    padding-right: 0;
}



/* Footer 的样式 */
.password-layout-footer {
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 20px
}

/* 覆盖表单样式 */
.password-form {
    width: 380px;
}

.password-form .password-form-item-children {
    line-height: 48px;
}

.password-form .password-input-rendered-wrapper .password-input-prefix {
    padding-left: 10px;
}

.password-form .password-input-rendered-wrapper .password-input-rendered {
    padding-left: 10px;
}

.password-form .password-input-rendered-wrapper .password-input-rendered .password-input-placeholder {
    padding-left: 10px;
}

.password-tab .password-form-item-children-input input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    border: 0 solid #CCC !important;
    display: flex;
    justify-content: space-between;
}

/* 通用表单样式 */
.password-form {
    margin: 33px 0;
}

/* 按钮 */
.password-btn {
    width: 100%;
}

.password-btn-cancel {
    border: 1px solid #eee;
    border-radius: 2px;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.65);
    letter-spacing: 6px;
    border: 1px solid rgba(21, 21, 21, 0.10);
    font-family: PingFangSC-Medium, sans-serif;
    font-weight: 500;
    margin-right: 16px;
    width: 182px;
}



.password-btn-cancel:hover {
    border-color: #598BFF !important;
    color: #598BFF !important;
}

.password-btn-cancel:focus {
    border-color: #002AD1 !important;
    color: #002AD1 !important;

}

.password-btn-last {
    border: 1px solid #eee;
    border-radius: 2px;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(21, 21, 21, 0.10);
    font-family: PingFangSC-Medium, sans-serif;
    font-weight: 500;
    margin-right: 16px;
    width: 182px;
}



.password-btn-last:hover {
    border-color: #598BFF !important;
    color: #598BFF !important;
}

.password-btn-last:focus {
    border-color: #002AD1 !important;
    color: #002AD1 !important;

}

.password-btn-confirm-account {
    font-family: PingFangSC-Medium, sans-serif;
    font-weight: 500;
    background: #82ACFF;
    color: #fff;
    font-size: 16px;
    transition: 0.5s;
    border-radius: 2px;
    width: 182px;
    line-height: 28px;
}

.password-btn-confirm-account:hover {
    background: #598BFF !important;
}

.password-btn-confirm-account:focus {
    background: #002AD1 !important;

}


.password-form-item {
    margin-bottom: 30px;
    vertical-align: top;
    height: 36px;
    line-height: 36px;
}

.password-form-item-with-help {
    margin-bottom: 6.5px;
}

.password-form-item-children-input {
    margin: 0 0 0 28px !important;
    width: calc(100% - 28px) !important;
    display: flex;
    align-items: center;
}

.password-form-item-children-prefix {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 3px;
}

.password-form-explain {
    color: #F23A50;
    line-height: normal;
}

.password-input-content {
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.password-form-select {
    height: 50px !important;
}

.password-form-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    height: 48px;
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.password-form-input-prefix {
    position: absolute !important;
    top: 0;
    bottom: 0;
    margin: auto 0;
    color: rgba(0, 0, 0, .26);
}

.password-col-12 {
    padding-right: 6px;
    width: 50%;
    float: left;
}

.password-form-item-control {
    height: 42.75px
}

.password-form-item-control:after,
.password-form-item-control:before {
    content: " ";
    display: table;
}

.password-form-item-children .btn-raised {
    height: 42px;
    font-size: 16px;
    overflow: hidden;
    border-radius: 2px;
    outline: none !important;
}

.password-form-item-children-input .look {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    display: none;
}

.password-form-item-margin-top {
    margin-top: 40px;
}

.password-form-item-children .password-form-button-captcha {
    width: auto;
    background: white;
    font-size: 16px;
    color: #0840F8;
    font-family: PingFangSC-Regular, sans-serif;
    line-height: 24px;
    font-weight: 400;
    padding: 0;
    overflow: initial;
    margin: 0;
    outline: none !important;
    box-shadow: none !important;
}

.password-account-captcha {
    position: relative;
    top: -11px;
}

.password-account-captcha .password-account-captcha-image {
    width: 124px;
    height: 42px;
}

.btn-flat:hover {
    background: rgba(0, 0, 0, .08);
}

.has-error.password-input-content {
    border-color: #F23A50;
}

.has-error-msg {
    right: 0;
    top: 48px;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    font-family: PingFangSC-Regular, sans-serif;
    color: #F23A50;
    line-height: 20px;
}

/* 重置成功界面 */
.password-success {
    text-align: center;
}


#resetPasswordSuccess {
    height: 420px;
}

#resetPasswordSuccess .password-form {
    height: 420px;
    justify-content: flex-end;
    margin-top: 0;
}

.password-success .password-form-success-image {
    width: 60px;
    height: 60px;
    margin-top: 106px;
}

.password-success .finish-fonts {
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
    text-align: center;
    line-height: 24px;
    font-weight: 500;
    margin-top: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

}

.password-success .finish-fonts-extra {
    margin-top: 8px;
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
    text-align: center;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 126px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}



.password-success>p,
.password-success>img,
.password-success>button {
    margin-top: 12px;
}

.password-success .button-login {
    margin-top: 16px;
    font-family: PingFangSC-Medium, sans-serif;
    font-weight: 500;
    background: #82ACFF;
    color: #fff;
    font-size: 16px;
    transition: 0.5s;
    border-radius: 2px;
    width: 380px;
    line-height: 28px;
    letter-spacing: 6px;
}

.password-success .button-login[disabled] {
    background: #0840F8 !important;
}

.password-success .button-login:hover {
    background: #598BFF !important;
}

.password-success .button-login:focus {
    background: #002AD1 !important;

}




/* 覆盖样式 */
.password-notification-notice-close-x:after {
    content: 'x' !important;
    font-size: 16px;
}

.password-notification-notice-icon-error::before {
    content: "\E000";
}

.password-notification-notice-icon-success::before {
    content: "\E876";
}


.password-validate {
    padding: 0;
    margin: 0;
    border: 0;
    position: relative;
    top: -50px;
    line-height: normal;
    width: fit-content;
    left: 475px;
    max-width: 400px;
}

.password-validate-active {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 1px 6px 0 #dedfe2;
    background-color: white;
}

.password-validate-active:after {
    content: '';
    top: 22px;
    left: -4.5px;
    background: white;
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    position: absolute;
    display: block;
    box-shadow: -2px 2px 2px 0px #eff1f7;
}

/* 卡片 的样式 */

.choose-card-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 24px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.choose-card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 24px;
    height: 314px;
    overflow-y: auto;
}



.choose-card-container .well {
    width: 100%;
    height: 84px;
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    margin-bottom: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    display: flex;
    justify-content: flex-start;
    
}


.selected-user {
    background: #EBF0FB !important;
}



.selected-user .choose-card-text .choose-card-text-item-tenant.choose-card-text-item-tenant {
    color: #0840F8 !important;
}

.choose-card-container .well:hover {
    border: 1px solid #598BFF;
    box-shadow: none;
}


.choose-card-container .well .choose-card-img-container {
    height: 100%;
    width: 84px;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: center;
}

.choose-card-container .well .choose-card-img {
    border-radius: 100%;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    /* margin-right: 6px; */
}

.choose-card-container .well .choose-card-text {
    display: inline-block;
    text-align: left;
    padding: 12px 0;
    width: calc(100% - 100px);
}


.choose-card-container .well .choose-card-text .choose-card-text-item-tenant.choose-card-text-item-tenant {
    -webkit-line-clamp: 1;
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    letter-spacing: 0;
    line-height: 26px;
    font-weight: 500;
}


.choose-card-container .well .choose-card-text .choose-card-text-item {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    text-align: left;
    line-height: 22px;
    font-weight: 400;
    white-space: nowrap;
    margin-top: 4px;
}

/* notification */

.password-notification {
    position: fixed;
    right: 0;
    bottom: 60px;
    background-color: transparent
}

.password-alert {
    position: relative;
    padding: 16px 24px;
    margin-right: 24px;
    margin-bottom: 16px;
    width: 384px;
    background-color: #fff;
    font-size: 18px;
    border-radius: .02rem;
    webkit-box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.12);
    animation: notificationMove 0.5s;
    -webkit-animation: notificationMove 0.5s;
}

@keyframes notificationMove {
    0% {
        right: -100px;
    }

    100% {
        right: 0;
    }
}

@-webkit-keyframes notificationMove

/* Safari and Chrome */
    {
    0% {
        right: -100px;
    }

    100% {
        right: 0;
    }
}

.password-alert .glyphicon-ok {
    position: absolute;
    top: 16px;
}

.password-alert .glyphicon-exclamation-sign {
    position: absolute;
    top: 16px;
}

.password-alert .glyphicon-remove {
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
    position: absolute;
    right: 22px;
    top: 16px;
    outline: none;
    cursor: pointer;
}

.password-alert .password-notification-content {
    margin-left: 48px;
}

.password-notification-error {
    color: #F23A50;
    font-size: 24px;
}

.password-notification-success {
    color: #00bf96;
    font-size: 24px;
}

