﻿.login-content {
    font-family: 'Microsoft YaHei', Courier, monospace;
    font-size: 12px;
    background-color: aliceblue;
}

.login-box {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    padding: 30px;
    width: 400px;
    min-height: 480px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(22, 128, 255, .1);
}

.login-logo {
    height: 80px;
    line-height: 80px;
    text-align: center;
}

.login-title {
    color:#59a6f5;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    /* text-shadow: 0 1px 2px rgba(22, 128, 255, .1); */
}

.login-form {
    text-align: center;
    padding: 20px 0;
}

.login-form-item {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
}

.login-form-item label {
    font-weight: 400!important;
    min-width: 60px;
    flex-shrink: 0;
    color: #555;
}

.login-form-item input {
    flex-grow: 1;
    padding: 4px 10px;
    border: none;
    outline: none;
    border-bottom: 1px solid #eee;
}
.login-form-item ::placeholder {
    color:#ddd;
    font-size: 1em;
  }

.login-form-item input:focus {
    border-bottom: 1px solid#59a6f5;
}
.login-form-footer {
    padding-top: 20px;
}
.login-btn {
    width: 100%;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: none;
    background-color: #59a6f5;
    box-shadow: 0 1px 2px rgba(9, 57, 116, 0.1);
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    color: #fff;
}
.login-btn:hover {
    background-color: #3192f3;
}
.longin-a {
    color:  #777;
    text-decoration: none;
}
.longin-a:hover {
    color:  #3192f3;
    text-decoration: none;
}

.login-validate {
    padding: 0!important;
    height: 26px;
    position: absolute;
    right: 25px;
    top: 8px;
    border: none!important;
}

.login-message {
    position: absolute;
    padding: 4px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(255, 7, 28, 0.1),0 4px 8px rgba(255, 8, 24, 0.1);
    background-color: rgba(255, 181, 193, .9);
    color: #ec2852!important;
    width: 340px;
    margin: 0 auto;
    top: 8px;
}

.r-getmsg {
    position: absolute;
    right: 20px;
    background-color: transparent;
    color: #0075ff;
}

.r-pop-msg {
    position: fixed;
    padding: 4px 20px;
    border-radius: 4px;
    font-size: .9rem;
    width: 340px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 60px;
    z-index: 1050;
    top: -100px;
}
.r-pop-msg-success {
    box-shadow: 0 2px 4px rgba(15, 255, 7, 0.1),0 4px 8px rgba(15, 255, 7, 0.1);
    background-color: rgba(173, 250, 196, 0.9);
    color: #10be1f!important;
    animation: showpop 3s;
}
.r-pop-msg-error {
    box-shadow: 0 2px 4px rgba(255, 7, 28, 0.1),0 4px 8px rgba(255, 8, 24, 0.1);
    background-color: rgba(255, 181, 193, .9);
    color: #ec2852!important;
    top: 100px;
    /* animation: showpop 3s forwards; */
}
.r-pop-msg-info {
    box-shadow: 0 2px 4px rgba(7, 143, 255, 0.1),0 4px 8px rgba(7, 143, 255, 0.1);
    background-color: rgba(181, 234, 255, 0.9);
    color: #287dec!important;
    animation: showpop 3s ;
}
@keyframes showpop {
    0% {
        top: -100px
    }
    20% {
        top: 100px
    }
    80% {
        top: 100px
    }
    100% {
        top: 100px
    }
}

.r-pop-model {
    position: absolute;
    display: none;
    width: 800px;
    height: 90%;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto auto;
    z-index: 999;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(22, 128, 255, .1);
    
}
.r-pop-model .r-pop-model-title {
    padding: 2rem;
    text-align: center;
    font-size: 1.4rem;
}
.r-pop-model .r-pop-model-body {
    padding: 2rem;
    height: calc( 100% - 150px );
    overflow-y: auto;
    
}
.r-pop-show {
    color:  #3192f3;
    cursor: pointer;
}