/* CSS Document */
:root {
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #FAF9F7;
}

.loginmain {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 1366px;
    min-height: 768px;
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(114deg, #D6F5E5 0%, #B4EBCF 100%);
}
.login-btm {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 0;
    padding-top: 13.49%;
    background: url(../images/login_btm.png) no-repeat center / cover ;
}
.login-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72%;
    max-width: 1366px;
    padding: 0;
}
@media screen and (max-width:1535px) {
    .login-content {
        width: 90%;
    }
}

.login-left {
    position: relative;
    width: 100%;
    max-width: 798px;
    font-size: 44px;
    padding-bottom: 4em;
}
.left-img {
    width: 100%;
    height: 0;
    padding-top: 78.32%;
    background: url('../images/login_left.png') no-repeat 0 0 / contain;
}
[class^='slogen'] {
    position: absolute;
    left: 0;
    bottom: 3.5em;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    transform: translateX(-1em);
}
.slogen2 {
    bottom: 2em;
    padding-right: 2em;
    text-align: right;
}
.login-right {
    position: relative;
    flex-shrink: 0;
    width: 33.16%;
    margin-left: 166px;
}
.login-right::after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-top: 139.13%;
}
.login-form {
    position: absolute;
    top: 0;
    left: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 55px 0px;
    background: #fff;
    box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.16);
    border-radius: 8px 8px 8px 8px;
}

.login-content h2 {
    padding: 0 56px;
    font-weight: normal;
    color: #222;
    font-size: 34px;
}

.login-content h3 {
    padding: 0 56px;
    font-weight: normal;
    color: #222;
    font-size: 23px;
}

.login-info {
    display: flex;
    align-items: center;
    width: 80%;
    height: 60px;
    margin: 24px auto;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 8px;
    border: solid 1px #dbdbdb;
}

.no-border {
    height: 30px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.input-active {
    border-color: #00C653;
}

.code-info {
    border-color: transparent;
}

.user, .pwd {
    width: 20px;
    height: 20px;
}

.login-input {
    width: 100%;
    background: #fff;
    border: 0;
    margin-left: 3px;
    outline: medium;
    font-size: 18px;
    color: #333;
    vertical-align: middle;
}

.login-btn {
    display: block;
    width: 80%;
    height: 60px;
    margin: 16px auto;
    font-size: 24px;
    color: #fff;
    background: #00C653;
    background-position: center;
    border-radius: 6px;
    border: none;
    outline: none;
}

.remember {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.remember-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1px solid #d6d6d6;
    border-radius: 3px;
}

.remember-checkbox-check {
    background: #4ca6ff;
    border-color: #4ca6ff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    font-size: 18px;
    box-shadow: 0 0 0 60px #ffffff inset;
    -webkit-text-fill-color: #333333;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #b3b3b3;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #b3b3b3;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #b3b3b3;
}

:-moz-placeholder { /* Firefox 18- */
    color: #b3b3b3;
}