/* CSS Document */

html,
body {
    margin: 0px;
    height: 100%;
    background-color: #ebebeb;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
}

body {
    background-image: url("../../images/login/bg.png");
    background-size: 100% 100%;
    position: relative;
}

li {
    list-style: none;
}

img {
    border: none 0;
}

.frcenter {
    width: 850px;
}

a {
    text-decoration: none;
}

input,
textarea {
    font-family: tahoma, '\5fae\8f6f\96c5\9ed1', simsun;
    font-size: 12px;
    color: #333;
    border: 0;
}

.page {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.title {
    width: 100%;
    margin: 0 auto;
    height: 62px;
    text-align: center;
    padding-top: 25px;
}

.title img {
    height: 62px;
}

.content {
    /* width: 960px; */
    width: 860px;
    background: #ffffff;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* padding: 20px 0; */
    border-radius: 12px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.school-code {
    visibility: hidden;
    position: absolute;
    top: 0;
}

.content-left {
    width: 380px;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: #DBF3E9;
    padding: 30px 0;
    position: relative;
}

.content-left .chahua {
    width: 100%;
}

.content-left .qrcode {
    width: 92px;
    position: absolute;
    z-index: 99;
    left: 154px;
    top: 134px;
}

.content-left .left-title {
    color: #1EB3FF;
    font-size: 20px;
    font-weight: bold;
}

.content-left .left-desc {
    /* font-size: 16px; */
    font-size: 12px;
    color: #06B56D;
    margin-top: 16px;
}

.content-right {
    flex: 1;
    height: 100%;
    box-sizing: border-box;
    padding: 30px 50px 0 50px;
}

.change-login {
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.change-mode {
    font-size: 20px;
    /* font-size: 24px; */
    padding-bottom: 10px;
    color: #999999;
    position: relative;
}

.active {
    color: #06B56D;
    font-weight: bold;
}

.active:after {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #06B56D;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.login-form {
    padding-top: 30px;
    display: none;
}

.login-input {
    position: relative;
    width: 100%;
    /* height: 25px; */
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background: #F9F9F9;
    padding: 20px 16px;
    border-radius: 4px;
}

.login-input .img {
    width: 20px;
    height: 20px;
}

.input {
    margin-left: 16px;
    background-color: #F9F9F9;
    /* font-size: 20px; */
    font-size: 16px;
    flex: 1;
}

.login-input .verification {
    position: absolute;
    width: 85px;
    height: 30px;
    right: 0;
}

.display-show {
    display: block;
}

.sms-code {
    position: absolute;
    border: none;
    color: #06B56D;
    right: 0;
    outline: none;
    padding: 5px 15px;
    font-size: 16px;
}

.error-message {
    color: red;
    font-size: 12px;
    padding-left: 20px;
}

.login-btn {
    background: linear-gradient(90deg, rgba(6, 181, 109, 1) 0%, rgba(29, 204, 132, 1) 100%);
    width: 100%;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 4px;
    /* font-size: 20px; */
    font-size: 18px;
    height: 48px;
    line-height: 48px;
    /* padding: 15px 0; */
}

.footer {
    color: #222222;
    text-align: center;
    position: absolute;
    bottom: 16px;
    /* left: 50%; */
    display: flex;
    justify-content: center;
    width: 100%;
}
.footer .link{
    color: #222222;
    font-size: 14px;
    padding: 0 5px;
    position: relative;
}
.footer .link:first-child:before{
    content: '';
    width: 1px;
    height: 80%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #222222;
}