@charset "UTF-8";
html,body {
    width: 100%;
    height: 100%;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.main-wrap {
    width: 100%;
    height: 100vh;
    background: #12d698 url(../images/bg-login.png) center no-repeat;
    background-size: auto;
    background-size: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-wrap .main-content {
    width: 960px;
    height: 600px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
}
.main-wrap .main-content .banner {
    width: 400px;
    height: 100%;
    background: url(../images/login-banner.png) center no-repeat;
    background-size: cover;
    border-radius: 8px 0 0 8px;
}
.main-wrap .main-content .login-box {
    height: 600px;
    flex: 1;
    padding: 0 70px;
}
.main-wrap .login-box .login-form {
    height: 560px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-wrap .login-box .login-form .logo > a {
    display: block;
    width: auto;
    height: 70px;
}
.main-wrap .login-box .login-title {
    font-size: 20px;
    font-weight: 500;
    color: #515050;
    margin-top: 12px;
    width: 100%;
    text-align: center;
}
.main-wrap .login-form .login-input {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
}
.main-wrap .login-form .login-input-item {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    color: rgba(0, 0, 0, 0.88);
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s;
    margin-bottom: 10px;
    height: 100%;
    align-items: center;
}
.main-wrap .login-form .login-input-item input {
    height: 36px;
    padding: 4px 11px;
    border-width: 1px;
    border-style: solid;
    border-color: #d9d9d9;
    border-radius: 4px;
}
.layui-unselect.layui-form-select {
    flex: 1;
    width: 100%;
    height: 100%;
}
.layui-unselect.layui-form-select .layui-select-title {
    height: 100%;
}
.main-wrap .login-form .login-input-item .icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 8px;
    top: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.main-wrap .login-form .login-input-item .icon-username {
    background-image: url(../../common/images/username.png);
}
.main-wrap .login-form .login-input-item .icon-password {
    background-image: url(../../common/images/password.png);
}
.main-wrap .login-form .login-input-item .icon-yzm {
    background-image: url(../../common/images/yzm.png);
}
#validatePanel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#refreshCaptcha {
    height: 38px;
    border-radius: 0 3px 3px 0;
    border: 1px solid #e8f0fe;
}
.login-form-submit {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.login-btn {
    width: 100%;
    height: 45px;
    font-size: 17px;
    letter-spacing: 4px;
    font-weight: 600;
    background-image: linear-gradient(270deg,#31db99 0%,#22c787 100%);
}
.main-wrap .login-box .login-other {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    font-size: 14px;
    color: #989090;
    align-items: flex-end;
}
.main-wrap .login-box .login-other a {
    font-size: 14px;
    color: #00bf84;
    font-weight: 700;
    cursor: pointer;
    text-decoration-line: underline;
    margin-top: 15px;
    margin-left: 10px;
}
.banner .logo {margin-top: 40px;text-align: center;}
.banner .logo > a {display: block;}
.banner .logo img {height: 50px;}
/*发送验证码*/
.send-sms {
    position: relative;
}
.send-sms .layui-input {
    padding-left: 60px !important;
    padding-right: 100px !important;
}
.send-sms .area-code {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #212121;
    cursor: pointer;
}
.send-sms .login-sms-send {
    display: block;
    text-align: center;
    cursor: pointer;
    color: #8a9ff3;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 34px;
    line-height: 34px;
    border-left: 1px solid #e3e5e7;
}
.error-message {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.code-group {
    display: flex;
    gap: 10px;
}
#code {
    flex: 1;
}
#sendCodeBtn {
    width: 160px;
    height: 36px;
    padding: 0 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
#sendCodeBtn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}