﻿body {
   
    font-family: "微软雅黑";
    font-size: 14px;
}

.wrap1 {
    position: absolute;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 10px;
    text-align: center;
    color: #fff;
    background: url(/WebContents/Images/main_bg.png) repeat;
    border-radius: 8px;
    left: 25%;
    top: 27%;
}
/*把整个屏幕真正撑开--而且能自己实现居中*/
.main_content {
 
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    float: none;
    border-radius: 8px;
}
.text-center {
    text-align: center;
}
.form-group {
    position: relative;
}

.login_btn {
    display: block;
     background: #3872f6;
    color: #fff;
    font-size: 15px;
    width: 109%;
    line-height: 50px;
    border-radius: 3px;
    border: none;
}

.login_input {
    width: 100%;
    border: 1px solid #3872f6;
    border-radius: 3px;
    line-height: 40px;
    padding: 2px 5px 2px 30px;
    background: none;
    color:white;
}

.icon_font {
    position: absolute;
    bottom: 15px;
    left: 10px;
    font-size: 18px;
    color: #3872f6;
}



.font16 {
    font-size: 16px;
}

.mg-t20 {
    margin-top: 20px;
}

@media (min-width:200px) {
    .pd-xs-20 {
        padding: 20px;
    }
}

@media (min-width:768px) {
    .pd-sm-50 {
        padding: 0px 40px 40px 40px;
    }
}


#grad {
    background: -webkit-linear-gradient(#4990c1, #52a3d2, #6186a3); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#4990c1, #52a3d2, #6186a3); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#4990c1, #52a3d2, #6186a3); /* Firefox 3.6 - 15 */
    background: linear-gradient(#4990c1, #52a3d2, #6186a3); /* 标准的语法 */
}


.fullscreen-bg {
    background-image: url(/WebContents/Images/abc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
}

.tabs {
    width: 65px;
    height: 65px;
    background-color: #6186a3;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 10px;
    cursor: pointer;
    background: url('/WebContents/Images/qrCode.png') ;
}

.tabs_a {
    width: 92px;
    height: 70px;
    position: absolute;
    border-radius: 5px;
    right: 10px;
    top: 20px;
    transform: rotate(47deg);
   
    cursor: pointer;
}


.scan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .scan .qrcode {
        position: relative;
        width: 200px;
        height: 200px;
        border-radius:5px;
    }

@keyframes animate {
    0%,100% {
        height: 20px;
    }

    50% {
        height: calc(100% - 20px);
    }
}

.scan .qrcode::after {
    content: '';
    position: absolute;
    inset: 20px;
    width: calc(100% - 20px);
    height: 2px;
    background: #35fd5c;
    filter: drop-shadow(0 0 20px #35fd5c) drop-shadow(0 0 60px #35fd5c);
    animation: animate_line 4s ease-in-out infinite;
}

@keyframes animate_line {
    0%,100% {
        top: 20px;
    }

    50% {
        top: calc(100% - 20px);
    }
}

.border {
    position: absolute;
    inset: 0px;
    animation: animate_text 2s linear infinite;
}

@keyframes animate_text {
    0%,100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.qrstatus {
    text-transform: uppercase;
    font-size: 2em;
    letter-spacing: 2px;
    margin-top: 20px;
    color: #fff;
    filter: drop-shadow(0 0 20px #fff) drop-shadow(0 0 60px #fff);
    animation: animate_text 2s steps(1) infinite;
}

.login-footer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    font-size: 14px;
    color: #fff;
}