﻿.login-content {
    font-family: 'Microsoft YaHei', Courier, monospace;
    font-size: 12px;
    background-color: aliceblue;
    font-size: 14px;
}
p {
    margin-bottom: 10px;
}
.login-box {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    position: relative;
    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-top: 20px;
}

.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;
    margin: 0;
}

.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;
    border: none;
}

.login-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: 20000;
    top: -100px;
}
.login-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: 
      3s;
}
.login-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: 50px;
    /* animation: showpop 3s forwards; */
}
.login-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 ;
}

.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% - 170px );
    overflow-y: auto;
    
}
.r-pop-show {
    color:  #3192f3;
    cursor: pointer;
}
.register-form .login-form-item {
    margin: 0!important;
}
.login-qr-tag {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius:  0 4px  0 0;
    z-index: 1;
}
.login-qr-tag::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    content: '';
    border-top: 60px solid #287dec;
    border-left: 60px solid transparent;
}
.login-qr-tag-box {
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-image: url(./img/qr-icon.svg);
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
}
.login-pc-tag-box {
    width: 60px;
    height: 50px;
    cursor: pointer;
    background-image: url(./img/pc-icon.svg);
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center right;
}
.login-qr-img {
    text-align: center;
    padding: 20px;
    position: relative;
}
.login-qr-tip {
    color: #f60;
    width: 315px;
    display: none;
    position: absolute;
    text-align: center;
}
.qr-reload {
    display: none;
    position: absolute;
    height: 32px;
    margin: auto;
    z-index: 24;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.login-qr-box {
    display: none;
}
.login-qr-text {
    font-size: .9rem;
    color: #777;
}
.login-qr-text a,.login-qr-text a:hover {
    color: #287dec;
    cursor: pointer;
}
.login-ways-box {
    display: flex;
    justify-content: space-around;
}
.login-ways-box > a {
    font-size: .8rem;
    display: block;
    position: relative;
    height: 60px;
    padding: 10px 0;
    width: 100px;
    background-size: 36px 36px;
    background-repeat: no-repeat;
    background-position: top center;
    border-radius: 4px;
    background-image: url(./img/logoicon1.png);
    color: #777;
    opacity: .5;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
.login-ways-box > a:nth-child(2) {
    background-image: url(./img/logoicon2.png);
}
.login-ways-box > a:nth-child(3) {
    background-image: url(./img/logoicon3.png);
}
.login-ways-box > a:hover {
    background-color: aliceblue;
    color: #777;
    opacity: 1;
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
.login-ways-box > a > span {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0;
}
