#login {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 138px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    overflow: hidden;
    width: 400px;
    height: 640px;
    background-color: #fff;
    box-shadow: rgba(12, 12, 19, 0.1) 0px 0px 16px;
    border-radius: 17px;
}

#login .topText {
    display: flex;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    position: relative;
}

.topText .text {
    font-size: 26px;
    height: 50px;
    margin-top: 30px;
    margin-left: 30px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.topText .hintBut {
    width: 98px;
    height: 30px;
    border: 1px solid #0bc09f;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    background-color: #0bc09f;
    position: absolute;
    top: 18px;
    right: 82px;
    text-align: center;
    line-height: 30px;
}

.topText .trianglesBox {
    width: 9px;
    height: 9px;
    border-top: 1px solid #0bc09f;
    border-right: 1px solid #0bc09f;
    background-color: #0bc09f;
    position: absolute;
    top: 28.5px;
    right: 79px;
    z-index: 205;
    transform: rotate(45deg);
}

#login .svgBox {
    position: absolute;
    width: 72px;
    height: 72px;
    top: 3px;
    right: 3px;
    z-index: 101;
    display: flex;
    background-color: #0bc09f;
    border-radius: 0 17px 0 0;
}

#login .svgBox svg {
    width: 45px;
    height: 45px;
    padding: 7px 7px 20px 20px;
    cursor: pointer;
    background-color: #0bc09f;
    border-radius: 0 17px 0 0;
}

#login .svgBox img:hover {
    background-color: #0cb394;
}

#login .svgBox .triangles {
    position: absolute;
    z-index: 200;
    bottom: -57px;
    left: -57px;
    width: 0;
    height: 0;
    border: 56px solid transparent;
    border-left-color: white;
    transform: rotate(135deg);
}

#login #qrcode {
    z-index: 201;
    background-color: #fff;
    height: 300px;
    box-sizing: border-box;
    margin-top: 10px;
    margin: 10px auto 0 auto;
    padding-top: 80px;
    position: relative;
    user-select: none;
    transition: display 0.8s linear;
}

#login .qrcodeHintBox {
    position: absolute;
    z-index: 310;
    top: 70px;
    left: 110px;
    user-select: none;
}

#login .qrcodeHintBox .shadeBox {
    position: absolute;
    top: 99px;
    left: -19px;
    width: 218px;
    height: 218px;
    background-color: rgba(68, 65, 65, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 73px;
    box-sizing: border-box;
    border-radius: 4px;
}

#login .qrcodeHintBox .shadeBox svg,
#login .qrcodeHintBox .shadeBox span {
    cursor: pointer;
    user-select: none;
    font-weight: 600;
}

#login .qrcodeHintBox .hint {
    position: absolute;
    top: 320px;
    left: -15px;
    font-size: 14px;
    width: 240px;
    color: rgb(153, 152, 152);
}

.active-hint-detail {
    color: #0bad90 !important;
}

#login .hint-detail {
    box-sizing: border-box;
    padding: 8px 12px;
    font-size: 16px;
    color: #72c9ba;
    position: absolute;
    left: 35px;
    bottom: 24px;
    cursor: pointer;
}

#login .hint-detail .detail-box {
    box-sizing: border-box;
    padding: 7px 9.5px;
    width: 330px;
    height: 210px;
    font-size: 15.5px;
    position: absolute;
    top: -180px;
    left: 2px;
    line-height: 24px;
    letter-spacing: 1px;
    overflow-y: auto;
    border-radius: 2px;
    box-shadow: #c8faf0 0px 2.5px 15px;
}

#login .mobileLoginFromBox {
    width: 340px;
    height: 500px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: display 0.8s linear;
}

#login .mobileLoginFromBox .submitBtnBox {
    margin-top: 34px;
}

#login .mobileLoginFromBox .submitBtnBox button {
    width: 100%;
    height: 44px;
    border-radius: 6px;
    border: none;
    background-color: #0bc09f;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

#login .mobileLoginFromBox .submitBtnBox button:hover {
    background-color: #3eddc0;
}

#login .mobileLoginFromBox .submitBtnBox button:disabled {
    background-color: #9ea5a4 !important;
    cursor: not-allowed !important;
    opacity: .7;
    box-shadow: none !important;
}

#login .mobileLoginFromBox .submitBtnBox button:active {
    background-color: #0bad90;
    box-shadow: rgba(59, 59, 66, 0.25) 0px 10px 30px -10px inset, rgba(29, 28, 28, 0.3) 0px 8px 16px -15px inset;
}

#login .mobileLoginFromBox .account {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    transition: all .8s;
}

#login .mobileLoginFromBox .account span {
    font-size: 21px;
    margin-bottom: 8px;
    color: rgb(46, 45, 45);
}

#login .mobileLoginFromBox .account input {
    height: 42px;
    border: 1px solid #d1d5da;
    font-size: 20px;
    border-radius: 6px;
    text-indent: 14px;
    outline: none;
}

#login .mobileLoginFromBox .account input:hover {
    border-color: #0bc09f;
}

#login .mobileLoginFromBox .account input:focus {
    box-shadow: #0bc09f 0px 0px 5px;
    border-color: #0bc09f;
}

#login .hintModuleBox {
    width: 100%;
    height: 40px;
    position: absolute;
    top: 80px;
    z-index: 1000;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: 600;
}

.mobileLoginFromBox .verification-code-box {
    display: flex;
    flex-direction: column;
    transition: all .8s linear;
}

.mobileLoginFromBox .verification-code-box .return {
    font-size: 18px;
    display: flex;
    justify-content: center;
    padding-top: 2px;
    box-sizing: border-box;
    margin-bottom: 26px;
    margin-left: -8px;
    cursor: pointer;
    user-select: none;
    width: 64px;
    height: 28px;
    border-radius: 6px;
}

.mobileLoginFromBox .verification-code-box .return:hover {
    background-color: #e4e7e7;
}

.mobileLoginFromBox .verification-code-box .return:active {
    background-color: #c3cccc;
}

.mobileLoginFromBox .verification-code-box .return svg {
    margin-top: 2px;
}

.mobileLoginFromBox .verification-code-box .hint-title {
    font-size: 22px;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.mobileLoginFromBox .verification-code-box .hint-text {
    margin-top: 7px;
    color: #a2a4a7;
    font-size: 16px;
    padding-left: 4px;
}

.mobileLoginFromBox .verification-code-box .hint-text .mobile {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 17px;
}

.mobileLoginFromBox .verification-code-box .input-list {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 20px 0;
}

.mobileLoginFromBox .verification-code-box .input-list .input-item {
    width: 49px;
    height: 55px;
    border-radius: 8px;
    border: 1px solid #d1d5da;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
    outline: none;
    outline-offset: 0;
}

.mobileLoginFromBox .verification-code-box .input-list .input-item:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: #0bc09f 0px 0px 3px;
    border-color: #0bc09f;
}

.mobileLoginFromBox .verification-code-box .new-verification-hint {
    color: #a2a4a7;
    font-size: 16px;
    padding-left: 4px;
}

.mobileLoginFromBox .verification-code-box .new-get-verification {
    color: #18c2a3;
    width: 120px;
    font-size: 16px;
    text-align: center;
    padding: 4px 0 4px 4px;
    box-sizing: border-box;
    border-radius: 4px;
    line-height: 21px;
    cursor: pointer;
    user-select: none;
}

.mobileLoginFromBox .verification-code-box .new-get-verification:hover {
    background-color: #ececec;
}

.mobileLoginFromBox .verification-code-box .new-get-verification:active {
    background-color: #cddbdb;
}

.activeVerificationInput {
    border-color: #0bc09f !important;
}

.errVerificationInput {
    border-color: #f54a45 !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
