﻿html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    color: #666;
}
:focus-visible {
    outline: none;
    outline-width: 1px;
    outline-style: auto;
    outline-color: #459eda;
}
.main {
    display: flex;
    min-width: 1660px;
    width: 100%;
    height: 100%;
}
.login_wrap {
    min-width: 500px;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    position:relative;
}
    .login_wrap .logo {
        width: 313px;
        margin: 0 auto 105px auto;
    }
    .login_wrap .login_panel {
        margin:0 auto;
    }
.img_wrap {
    width: 935px;
    height: 100%;
}
    .img_wrap > div {
        width: 100%;
        height: 100%;
        background-size:100% auto;
        background-position:center;
        background-repeat:no-repeat;
    }
        .img_wrap > div::after {
            content: '';
        }
    .img_wrap img {
        width: 100%;
        display:none;
    }
.login_panel .form-item {
    margin-bottom: 20px;
    display: flex;
    border: 1px solid #787879;
    border-radius: 5px;
    overflow:hidden;
    justify-items: center;
}
    .login_panel .form-item label {
        background: #e3e3e3;
        width: 50px;
        text-align: center;
        padding: 10px 0;
        font-size: 20px;
    }
    .login_panel .form-item .input-wrap {
        flex-grow: 1;
        background: #f2f2f2;
    }
    .login_panel .form-item input {
        border: none;
        background: none;
        width: 95%;
        height: 94%;
        font-size: 24px;
        padding-left:12px;
    }
.login_panel .btnGroup button {
    border: none;
    background: #208BE9;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    color:#fff;
    font-size:24px;
    padding:10px 0;
}
.login_panel .btnGroup2  {
    display:flex;
    justify-content:space-between;
    margin-top:12px;
    padding:0 12px;
}

.login_panel .btnGroup3 {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 24px 0;
    border-top: 1px solid #adaaaa;
    font-size: 16px;
}
    .login_panel .btnGroup3 a {
        color: #fff;
        background: #6AAEEA;
        width:154px;
        height: 35px;
        border-radius: 5px;
        display: flex;
        justify-content:center;
        align-items: center;
    }

    .login_panel .btnGroup3 img {
        vertical-align: middle;
        margin-right: 5px;
        height:22px;
    }
    .login_panel .btnGroup3 .btnQuery {
        background: #FFB157;
    }
        .login_panel .btnGroup3 .btnQuery img {
            background: #FFB157;
            height: 25px;
        }
.copyright {
    color: #343434;
    display:block;
    width:100%;
    position:absolute;
    bottom:20px;
    font-size:12px;
    text-align:center;
}
@media (max-width: 1000px) {
    .main {
        flex-direction:column;
        min-width:initial;
    }
    .login_wrap {
        padding: 35px 25px 12px 25px;
        box-sizing: border-box;
    }
    .login_wrap, .img_wrap {
        min-width: initial;
        width: 100%;
        height:initial;
    }
        .img_wrap div {
            display: none;
        }
        .img_wrap div {
            display: none;
        }
        .img_wrap img {
            display: block;
            width:100%;
        }
    .copyright {
        bottom:5px;
    }

}