html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans SC", "-apple-system","Helvetica Neue","Roboto","Segoe UI",sans-serif;
  font-size: 14px;
  text-rendering: optimizeLegibility;
}
.school-login {
    width: 100%;
    height: 100%;
    min-width: 1200px;
    background: url('../images/banner.png') no-repeat center/cover;
    display: flex;
    flex-direction: column;
}
.school-login-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: auto;
    box-sizing: border-box;
    width: 100%;
    padding-left: 18%;
}
.school-login-container .login-body {
    flex: auto;
}
.school-login-container .login-header {
    position: absolute;
    top: 40px;
    left: 18%;
    right: 18%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-content: center;
}
.school-login-container .login-header .logo {
    width: 300px;
    height: 100%;
    background: url('../images/logo.png') no-repeat center/cover;
}
.school-login-container .login-header .find-account {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #438C17;
    background: #FEFEFE;
}
.school-login-container .login-body  {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.school-login-container .login-body .title,
.school-login-container .login-body .desc {
    font-size: 54px;
    font-weight: 500;
    color: #fff;
}
.school-login-container .login-body .desc {
    margin-top: 30px;
}
.school-login-container .login-body .btn {
    width: fit-content;
    margin-top: 60px;
    height: 50px;
    display: flex;
    background-color: #F09338;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    padding: 0 30px;
    align-items: center;
}
.school-login-container .login-body .btn .btn-left {
    width: 100px;
    height: 100%;
    padding-left: 20px;
    line-height: 50px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}
.school-login-container .login-body .btn>img {
    width: 24px;
    height: 24px;
}
.school-login-container .login-body .btn .btn-right {
    position: relative;
    width: 60px;
    height: 100%;
    background: url('../images/login-btn-right.png') no-repeat center/cover;
}
.school-login-container .login-body .btn-right::after {
    position: absolute;
    top: 13px;
    left: 30px;
    content: '';
    width: 14px;
    height: 24px;
    background: url('../images/login-btn-icon.png') no-repeat center/contain;
}
.school-login .login-footer {
    flex: 0;
    height: 60px;
    line-height: 60px;
    width: 100%;
    /* background-color: #fff; */
    background-color: #122034;
    text-align: center;
}
.school-login .login-footer a {
    text-decoration: none;
    color: #A7A6A3;
    font-size: 12px;
    cursor: pointer;
}
.school-login .login-footer .safety-preparation {
    margin-left: 15px;
}
.school-login .login-footer .safety-preparation .icon {
    vertical-align: -3px;
    display: inline-block;
    height: 15px;
    width: 15px;
    background: url('../images/login-footer-icon.png') no-repeat center/contain;
}
