/*
 * Copyright (c) 2014, 2023, Chengdu Minto Technology Co.,LTD. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 */

@font-face {
    font-family: myFirstFont;
    src: url('./title.TTF');
}

html,
body {
    background: #f2f4f9;
    height: 100%;
    width: 100%;
}

.on {
    display: none;
}

#screenContainer {
    width: 100vw;
    height: 100vh;
    /*background: url("../images/login-bg-7.5.png") no-repeat;*/
    background-size: 100% 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

#bg-img {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

#default-bg-img {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

#screenContainer h1 {
    color: #000;
    font-size: 30px;
    align-self: center;
    z-index: 1;
    letter-spacing: 2px;
}

#screenContainer h6 {
    color: #000;
    font-size: 1.2rem;
    align-self: center;
    margin-right: 4rem;
    position: absolute;
    bottom: 4rem;
    z-index: 1;
}

h6 a {
    white-space: nowrap;
    text-decoration: none;
    color: #000;
}

.right-content {
    width: 45.8rem;
    height: 59.3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    margin-right: 20rem;
    z-index: 1;
}

.login-text {
    width: 12.2rem;
    font-size: 2.4rem;
    font-family: Source Han Sans CN,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    font-weight: 600;
    color: #31333F;
    line-height: 2.8rem;
    margin: 4.0rem 0 0 6.0rem;
    letter-spacing: 3px;
}

.login-text span {
    color: #0c94ff;
}

.input-content {
    margin: 2.5rem 0 0 6.0rem;
    display: flex;
    flex-direction: column;
}

.input-content-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.input-content-title img {
    margin-right: 0.7rem;
}

.input-content > input {
    border: none;
    outline: none;
    font-size: 1.6rem;
    font-family: Source Han Sans CN,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    font-weight: 400;
    color: #333;
    padding-left: 2rem;
    width: 33.9rem;
    height: 4.2rem;
    background: #F7F8FE;
    border-radius: 0.42rem;
}

.input-content > input::placeholder {
    color: #e9e9e9;
}

.valiCode{
    display: flex;
    width: 33.9rem;justify-content: space-between;
}


.valiCode > input {
    border: none;
    outline: none;
    font-size: 1.6rem;
    font-family: Source Han Sans CN,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    font-weight: 400;
    color: #333;
    padding-left: 2rem;
    width: 23rem;
    height: 4.2rem;
    background: #F7F8FE;
    border-radius: 0.42rem;
}

.valiCode > input::placeholder {
    color: #e9e9e9;
}

.valiCode > img{
    width: 10rem;
}

.tips {
    width: 33.9rem;
    height: 2rem;
    margin: 1rem 0 0 5.6rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.6rem;
    color: red;
}

.checkbox-content {
    width: 33.9rem;
    margin: 0rem 0 0 5.6rem;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.checkbox-content > input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 1.8rem;
    position: relative;
}

.checkbox-content > input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #E7ECF4;
    /* 未选中时的背景颜色 */
    width: 100%;
    height: 100%;
    border: 0rem solid #707281;
    border-radius: .2rem;
    /* 未选中时的边框颜色 */

}

.checkbox-content > input[type="checkbox"]:checked::before {
    content: "\2713";
    /* 对号的转义符 √ \2713 */
    background-color: #E6EBF3;
    /* 选中时的背景颜色 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 0rem solid #0c94ff;
    /* 选中后的边框颜色 */
    color: #0396fb;
    /* 选中后的文字颜色   */
    font-size: 1.6rem;
    font-weight: bold;
}

.remember-password {
    width: 7.5rem;
    font-size: 1.6rem;
    font-family: Source Han Sans CN,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    font-weight: 400;
    color: #707281;
}

.submit {
    width: 33.9rem;
    height: 4.2rem;
    background: #0c94ff;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.6rem;
    font-family: Source Han Sans CN,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    font-weight: 400;
    color: #FFFFFF;
    margin: 3rem 0 0 6.0rem;
    letter-spacing: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-box {
    width: 33.9rem;
    margin: 5rem 0 0 6.0rem;
    display: flex;
    justify-content: space-between;
}

.qr-title {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.qr-title span:last-child {
    width: 95%;
    margin-top: 2rem;
    color: #C2C2C2;
}

.qr-img {
    border: .2rem solid #DEDEDE;
}

.qr-img img {
    width: 6.7rem;
    height: 6.7rem;
    margin: .7rem;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .05);
    z-index: 2;
}

.qr-code-center {
    width: 30rem !important;
    height: 30rem !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}