.login {
    display: table-cell;
    vertical-align: middle;
    /* padding-bottom: 50px; */
    /* text-align: center; */
}

    .login .logo {
        text-align: center;
        margin-bottom: 40px;
    }

    .login .loginMain {
        display: flex;
        margin: 0 auto;
        background: rgb(255 255 255 / 0.8);
        /* padding: 38px 46px 40px; */
        border-radius: 40px;
        width: 1100px;
        overflow: hidden;
    }

    .login .logo img {
        width: 236px;
    }

    .login .loginBanner {
        width: 43%;
        padding: 60px 56px;
        background: linear-gradient(to bottom right, #2563eb, #4338ca);
    }

    .login h3 {
        text-align: left;
        color: #fff;
        font-size: 24px;
        line-height: 32px;
        font-weight: 700;
        letter-spacing: -0.6px;
        display: flex;
        gap: 12px;
        margin-bottom: 38px;
        width: 420px;
    }

        .login h3 img {
            height: 40px;
        }

    .login .loginBanner .banner {
    }

    .login .banner ul {
    }

    .login .banner li {
        display: none;
        list-style: none;
        text-align: left;
    }

        .login .banner li.on {
            display: block;
        }

        .login .banner li strong {
            display: block;
            font-size: 48px;
            line-height: 48px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 24px;
            padding-top: 80px;
        }

            .login .banner li strong b {
                display: block;
            }

        .login .banner li small {
            font-size: 18px;
            color: rgb(219 234 254)
        }

        .login .banner li .inner {
            display: block;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 100px auto;
            width: 256px;
            /* flex: 1 1 0%; */
        }

            .login .banner li .inner .rotate {
                box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
                padding: 16px;
                background: rgb(255 255 255 / 0.1);
                border: 1px solid rgb(255 255 255 / 0.2);
                border-radius: 16px;
                transform: rotate(-6deg);
                /* backdrop-filter: blur(24px); */
                position: relative;
                width: 256px;
                box-sizing: border-box;
                transition: all .3s linear;
                cursor: pointer;
            }

                .login .banner li .inner .rotate:hover {
                    transform: rotate(0deg);
                }

                .login .banner li .inner .rotate h5 {
                    margin-bottom: 12px;
                }

                    .login .banner li .inner .rotate h5 label {
                        display: flex;
                        font-size: 14px;
                        font-weight: normal;
                        color: #fff;
                        gap: 8px;
                        align-items: center;
                    }

                        .login .banner li .inner .rotate h5 label i {
                            width: 32px;
                            height: 32px;
                            display: flex;
                            border-radius: 50%;
                            color: #fff;
                            background: rgb(255 255 255 / 0.1);
                            font-weight: normal;
                            align-items: center;
                            justify-content: center;
                            font-size: 15px;
                        }

                .login .banner li .inner .rotate span {
                    font-size: 12px;
                    line-height: 16px;
                    padding: 4px 8px;
                    border-radius: 6px;
                    font-weight: 700;
                    position: absolute;
                    right: 16px;
                    top: 16px;
                }

                .login .banner li .inner .rotate .progress {
                }

                    .login .banner li .inner .rotate .progress p {
                        height: 8px;
                        background: rgb(255 255 255 / 0.1);
                        border-radius: 4px;
                        overflow: hidden;
                    }

                        .login .banner li .inner .rotate .progress p em {
                            background: rgb(74 222 128);
                            display: block;
                            height: 8px;
                        }

        .login .banner li:nth-child(1) strong b {
            color: #bfdbfe
        }

        .login .banner li:nth-child(1) .inner .rotate span {
            color: #052e16;
            background: #4ade80;
        }

        .login .banner li:nth-child(1) .inner .rotate .progress p em {
            background: #4ade80;
        }

        .login .banner li:nth-child(2) strong b {
            color: #fef08a
        }

        .login .banner li:nth-child(2) .inner .rotate span {
            color: #422006;
            background: #facc15;
        }

        .login .banner li:nth-child(2) .inner .rotate .progress p em {
            background: #facc15;
        }

        .login .banner li:nth-child(3) strong b {
            color: #fbcfe8
        }

        .login .banner li:nth-child(3) .inner .rotate span {
            color: rgb(5 46 22);
            background: #f472b6;
        }

        .login .banner li:nth-child(3) .inner .rotate .progress p em {
            background: #f472b6;
        }

        .login .banner li:nth-child(4) strong b {
            color: #e9d5ff;
        }

        .login .banner li:nth-child(4) .inner .rotate span {
            color: #3b0764;
            background: #c084fc;
        }

        .login .banner li:nth-child(4) .inner .rotate .progress p em {
            background: #c084fc;
        }



        .login .banner li .inner .rotate .progress label {
            font-size: 12px;
            line-height: 16px;
            color: rgb(219 234 254);
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
        }

            .login .banner li .inner .rotate .progress label b {
                color: rgb(219 234 254);
            }

        .login .banner li .inner .translate {
            position: absolute;
            background: #fff;
            bottom: -24px;
            right: -32px;
            padding: 12px;
            color: rgb(30 58 138);
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            gap: 8px;
            align-items: center;
            animation: bounce 2s infinite;
        }

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.login .banner li .inner .translate label {
    display: flex;
    align-items: center;
}

    .login .banner li .inner .translate label i {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid rgb(255 255 255);
        box-sizing: border-box;
        margin-left: -4px;
    }

        .login .banner li .inner .translate label i.op1 {
            background: rgb(147 197 253);
            margin-left: 0;
        }

        .login .banner li .inner .translate label i.op2 {
            background: rgb(59 130 246);
        }

        .login .banner li .inner .translate label i.op3 {
            background: rgb(29 78 216);
        }

.login .banner li .inner .translate b {
    font-weight: 550;
    font-size: 12px;
}

.login .loginBanner .backIndex {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 24px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

    .login .loginBanner .backIndex label {
        font-size: 14px;
        color: rgb(219 234 254);
        line-height: 20px;
        display: flex;
        align-items: center;
    }

        .login .loginBanner .backIndex label i {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgb(255 255 255 / 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            cursor: pointer;
        }

            .login .loginBanner .backIndex label i:hover {
                background: rgb(255 255 255 / 0.2);
            }

    .login .loginBanner .backIndex p {
        display: flex;
        gap: 8px;
    }

        .login .loginBanner .backIndex p i {
            width: 8px;
            height: 8px;
            border-radius: 4px;
            background: rgb(255 255 255 / 0.4);
            cursor: pointer;
            transition: all .15s linear;
        }

            .login .loginBanner .backIndex p i:hover {
                background: rgb(255 255 255 / 0.6);
            }

            .login .loginBanner .backIndex p i.on {
                width: 24px;
                background: #fff;
            }

.login .main_box {
    width: 55%;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* padding: 38px 46px 40px; */
    border-radius: 40px;
    /* border: 1px solid rgba(0, 0, 0, .13); */
    /* box-shadow: 0 25px 50px -12px rgb(30 58 138 / 0.1); */
    /* border: 1px solid rgb(255 255 255 / 0.5); */
    padding: 44px 56px;
    position: relative;
}

    .login .main_box .logintab {
        padding-bottom: 37px;
        gap: 24px;
        display: flex;
        /* justify-content: space-between; */
        /* border-bottom: 1px solid #f1f5f9; */
        font-size: 0;
        width: 420px;
        align-items: center;
    }

.loginBack {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

    .loginBack .back {
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
        width: 42px;
        height: 42px;
        background: transparent;
        text-align: center;
        border-radius: 50%;
        line-height: 42px;
        cursor: pointer;
    }

        .loginBack .back:hover {
            background: #f1f5f9;
        }

        /* .loginBack .back:hover i{color:#2563eb;} */
        .loginBack .back i {
            font-size: 22px;
            color: #728095;
        }

    .loginBack label {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        text-align: center;
        line-height: 50px;
        display: inline-block;
        vertical-align: middle;
        background: #ffeed6;
        margin: 0 10px;
    }

        .loginBack label i {
            color: #e95520;
            font-size: 25px;
        }

    .loginBack h2 {
        font-size: 18px;
        display: inline-block;
        vertical-align: middle;
    }

        .loginBack h2 span {
            display: block;
            font-weight: normal;
            color: #66748a;
            font-size: 13px;
            padding-top: 2px;
        }

.login .main_box .logintab span {
    margin-right: 0;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    position: relative;
    cursor: pointer;
    color: #94a3b8;
    border-radius: 12px;
    'Noto Sans SC', font-family: sans-serif;
}

    .login .main_box .logintab span.on {
        color: #0f172a;
        font-weight: 700;
        padding-bottom: 10px;
    }

    .login .main_box .logintab span:hover {
        color: rgb(71, 85, 105);
        background: rgb(248, 250, 252);
    }

    .login .main_box .logintab span:after {
        display: block;
        content: '';
        clear: both;
        background-color: transparent;
        width: 24px;
        height: 4px;
        position: absolute;
        left: 0;
        bottom: 0;
        border-radius: 2px;
        /* font-family: "PingFang SC", "Microsoft YaHei", SimHei; */
    }

    .login .main_box .logintab span.on:after {
        background-color: #2563eb;
    }

.login .main_box .loginContent {
    /* margin-bottom: 40px; */
    width: 420px;
}

    .login .main_box .loginContent .content {
        /* margin-top: 40px; */
        /* margin-bottom: 40px; */
        position: relative;
        height: 340px;
    }

.login .content {
    display: none;
}

    .login .content.on {
        display: block;
    }

    .login .content .code {
        /* height: 320px; */
    }

        .login .content .code label {
            display: flex;
            border: 2px dashed #e2e8f0;
            align-items: center;
            background: #f8fafc;
            height: 224px;
            flex-direction: column;
            width: 224px;
            box-sizing: border-box;
            border-radius: 16px;
            justify-content: center;
            margin: 0 auto;
            cursor: pointer;
            margin-bottom: 24px;
        }

            .login .content .code label:hover {
                border-color: rgb(96 165 250);
            }

                .login .content .code label:hover a {
                    color: rgb(37 99 235);
                }

            .login .content .code label i {
                font-size: 40px;
                color: rgb(5 150 105 / 80%);
                box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
                background: #fff;
                padding: 20px 16px;
                font-size: 33px;
                border-radius: 12px;
                margin-bottom: 12px;
            }

            .login .content .code label a {
                display: none;
                font-style: normal;
                color: #697a9f;
                font-size: 14px;
                /* padding-top: 16px; */
                line-height: 25px;
                margin-top: 40px;
            }

            .login .content .code label img {
                width: 210px;
                padding: 5px;
                border: 1px solid #f3f3f3;
                border-radius: 2px;
                display: block;
                margin: 0 auto 40px;
            }

        .login .content .code p {
            display: block;
            font-size: 15px;
            text-align: center;
            color: rgb(55, 55, 55);
            line-height: 22px;
            padding-top: 48px;
            /* padding: 71px 0; */
        }

            .login .content .code p i.icon-suo {
                width: 80px;
                height: 80px;
                font-size: 35px;
                display: block;
                margin: 0 auto;
                background: rgb(248 250 252);
                line-height: 80px;
                border-radius: 50%;
                color: rgb(203 213 225);
            }

            .login .content .code p img {
                display: block;
                margin: 0 auto;
                border-radius: 5px;
                background: #f8f7f7;
                margin-bottom: 10px;
                height: 60px;
            }

            .login .content .code p a {
                display: block;
                /* width: 160px; */
                text-align: center;
                margin: 0 auto;
                /* margin-top: 24px; */
                /* background: #1fc164; */
                color: #64748b;
                /* line-height: 28px; */
                font-size: 14px;
            }

            .login .content .code p em {
                display: block;
                font-style: normal;
                color: #64748b;
                font-size: 14px;
                cursor: pointer;
                letter-spacing: 1px;
            }

                .login .content .code p em:hover {
                    opacity: .92;
                }

    .login .content .form {
        position: relative;
        /* height: 320px; */
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

        .login .content .form p {
            position: relative;
            /* margin-bottom: 26px; */
        }

            .login .content .form p em {
                position: absolute;
                left: 46px;
                width: 58px;
                display: block;
                line-height: 10px;
                font-style: normal;
                text-align: left;
                border-right: 1px solid #e2e8f0;
                top: 50%;
                margin-top: -10px;
                height: 16px;
            }

                .login .content .form p em i {
                    border: none;
                    /* width: auto; */
                    font-size: 22px;
                    /* position: absolute; */
                    /* right: 3px; */
                    /* top: 50%; */
                    transition: all .2s linear;
                    /* margin-top: -7px; */
                    color: rgb(51 65 85);
                    opacity: .5;
                    display: inline-block;
                    vertical-align: middle;
                    margin-left: 3px;
                    position: relative;
                    top: 1px;
                }

                .login .content .form p em small {
                    font-size: 16px;
                    font-weight: 500;
                    display: inline-block;
                    vertical-align: middle;
                }

                .login .content .form p em.on i {
                    transform: rotate(180deg);
                }

            .login .content .form p input {
                /* border: 1px solid rgba(0, 0, 0, .13); */
                width: 100%;
                outline: 2px solid transparent;
                /*padding: 0 100px 0 0px;*/
                outline-offset: 1px;
                box-sizing: border-box;
                line-height: 49px;
                border-radius: 12px;
                background: rgb(248 250 252);
                font-size: 15px;
                color: rgb(15 23 42);
                transition: all .2s linear;
                padding-left: 15px;
                border: 1px solid rgb(226 232 240);
                /* box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); */
            }

                .login .content .form p input::placeholder {
                    color: #94a3b7;
                    font-weight: 330;
                }

                .login .content .form p input:focus {
                    border: 1px solid rgb(59 130 246);
                    outline: 2px solid rgb(59 130 246 / 0.1);
                }

            .login .content .form p label {
                color: rgb(51 65 85);
                line-height: 20px;
                font-size: 13px;
                text-align: left;
                display: block;
                font-weight: normal;
                margin-bottom: 8px;
                margin-left: 4px;
                font-weight: 550;
            }

            .login .content .form p a {
                position: absolute;
                right: 20px;
                /* width: 95px; */
                text-align: center;
                color: rgb(37 99 235);
                right: 8px;
                line-height: 20px;
                font-size: 13px;
                background: rgb(239 246 255);
                bottom: 50%;
                margin-bottom: -30px;
                border-radius: 8px;
                padding: 6px 16px;
                font-weight: 550;
            }

            .login .content .form p span {
                position: absolute;
                /* right: 20px; */
                /* width: 24px; */
                font-style: normal;
                /* text-align: center; */
                display: flex;
                color: rgb(100 116 139);
                left: 16px;
                align-items: center;
                line-height: 20px;
                font-size: 16px;
                height: 20px;
                top: 42px;
                padding-right: 12px;
                font-weight: 350;
                border-right: 1px solid rgb(226 232 240);
            }

        .login .content .form button {
            background: rgb(37 99 235);
            color: #fff;
            width: 100%;
            line-height: 28px;
            padding: 14px 0;
            font-size: 17px;
            cursor: pointer;
            font-weight: 700;
            border-radius: 14px;
            letter-spacing: 1px;
            transition: all .1s linear;
            box-shadow: 0 10px 20px -10px rgba(37,99,235,0.5);
        }

            .login .content .form button:hover {
                background: rgb(29 78 216);
                transform: translate3D(0, -2px, -3px);
                opacity: .95;
                /* box-shadow: 0 20px 25px -5px rgb(59 130 246 / 0.4), 0 8px 10px -6px rgb(59 130 246 / 0.4); */
            }

.login .form-control {
    /* display: none; */
    margin-top: 29px;
}

    .login .form-control input {
        display: inline-block;
        vertical-align: middle;
    }

    .login .form-control span {
        color: rgb(100 116 139);
        font-size: 13px;
        width: calc(100% - 32px);
        margin-left: 5px;
        text-align: left;
        display: inline-block;
        vertical-align: top;
        font-weight: 400;
        line-height: 20px;
    }

        .login .form-control span a {
            cursor: pointer;
            color: rgb(37 99 235);
            margin: 0 4px;
        }

        .login .form-control span small {
            display: block;
            font-size: 12px;
            padding-top: 4px;
            color: rgb(148 163 184);
        }

        .login .form-control span a:hover {
            text-decoration: underline;
            color: #1783ff;
        }

        .login .form-control span em {
            color: #334155;
            font-style: normal;
        }

    .login .form-control label {
        border: 1px solid rgb(203 213 225);
        display: inline-block;
        vertical-align: top;
        width: 15px;
        border-radius: 6px;
        height: 15px;
        position: relative;
        top: 2px;
        cursor: pointer;
        overflow: hidden;
        transition: all .2s linear;
    }

    .login .form-control.on label {
        background: rgb(59 130 246);
        font-size: 20px;
        border-color: rgb(59 130 246);
    }

    .login .form-control label i {
        color: #fff;
        font-size: 15px;
        position: absolute;
        top: 0;
        display: none;
        left: 0px;
        transition: all .2s linear;
    }

    .login .form-control.on label i {
        display: block;
    }

.drop {
    border: 1px solid #E5E5E5;
    padding: 1px 5px;
    width: 198px;
    height: 298px;
    position: absolute;
    background: #fff;
    top: 44px;
    border-radius: 10px;
    display: none;
    overflow-y: auto;
    z-index: 11;
}

    .drop::-webkit-scrollbar {
        width: 3px;
        /* ????????????? */
    }

    /* ????????? */
    .drop::-webkit-scrollbar-thumb {
        background-color: #a4a1a1;
        border-radius: 2px;
    }

    /* ???????? */
    .drop::-webkit-scrollbar-track {
        background-color: #f2f2f2;
        border-radius: 5px;
    }

    .drop span {
        display: block;
        color: rgba(0, 0, 0, .9);
        text-align: left;
        padding: 8px;
        border-radius: 5px;
        line-height: 20px;
        margin: 4px 0;
        cursor: pointer;
        font-size: 14px;
    }

        .drop span i {
            float: right;
            font-style: normal;
        }

        .drop span.on,
        .drop span:hover {
            background: #f2f2f2;
        }

.logincopyright {
    position: absolute;
    bottom: 44px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 112px);
    font-size: 12px;
}

    .logincopyright label {
        color: #94a3b8;
        letter-spacing: 1px;
    }

    .logincopyright p {
        gap: 16px;
        display: flex;
    }

        .logincopyright p a {
            color: #94a3b8;
            letter-spacing: 2px;
        }

            .logincopyright p a:hover {
                color: #333;
            }

.loginBottom {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    z-index: 1111;
    left: 0;
    letter-spacing: 1px;
}

.bg {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,.3);
    left: 0;
    top: 0;
}

    .bg.on {
        display: block;
    }

.service {
    transform: scale(0);
    position: fixed;
    width: 440px;
    padding: 32px;
    height: 310px;
    background: #fff;
    border-radius: 15px;
    left: 50%;
    top: 50%;
    margin-left: -220px;
    margin-top: -160px;
    transition: all .15s linear;
}

    .service.on {
        transform: scale(1);
    }

    .service h5 {
        font-size: 20px;
        color: #000;
        /* line-height: 44px; */
        padding-bottom: 14px;
    }

    .service p {
        background: #f9fafc;
        border-radius: 12px;
        border: 1px solid #f5f8fb;
        padding: 14px;
        text-align: left;
    }

        .service p label {
            display: block;
            font-size: 15px;
            font-weight: 550;
            color: #586881;
            line-height: 26px;
            letter-spacing: 1px;
        }

            .service p label a {
                color: #2563eb;
                cursor: pointer;
            }

                .service p label a:hover {
                    color: #0643c9;
                }

        .service p span {
            display: block;
            color: #94a2b6;
            font-size: 15px;
            margin-top: 8px;
        }

    .service button {
        background: #2563eb;
        color: #fff;
        width: 100%;
        line-height: 28px;
        padding: 14px 0;
        margin-top: 26px;
        font-size: 17px;
        cursor: pointer;
        font-weight: 700;
        border-radius: 14px;
        letter-spacing: 1px;
        transition: all .1s linear;
        box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.5);
    }

        .service button.cancel {
            color: rgb(75 76 78);
            background: #fff;
            border: 2px solid #efefef;
            box-shadow: 0px 0px 0px 0px;
            margin-top: 20px;
        }

        .service button:hover {
            transform: translateY(-3px)
        }

        .service button.cancel:hover {
            background: #f9f9f963;
        }
