    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Microsoft YaHei, sans-serif;
    }

    .main-content {

        display: none;

        width: 100%;
        height: 100vh;
        z-index: 1000;
        /* background: url("assets/image/login_bg.png"); */
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.6);
        padding-top: 50px;
        box-sizing: border-box;
    }

    .content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 1146px;
        height: 558px;
        border-radius: 30px 16px 16px 30px;
        /* box-shadow: 0px 4px 30px 0px #d1e3ff; */
        display: flex;
    }

    .img {
        width: 727px;
        height: 558px;
        background-image: url("/pgs/design/login/imgs/bg_dl@1x.png");
        position: relative;
        overflow: hidden;
    }

    .logo_box {
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 16px;
        width: 468px;
        height: 558px;
        position: absolute;
        left: 678px;
        padding: 90px 60px;
    }

    .title_ {
        height: 32px;
        font-size: 24px;
        font-weight: bold;
        position: relative;
        margin-bottom: 42px;
    }

    .title i {
        display: inline-block;
        width: 84px;
        height: 20px;
        background: url("assets/image/qx@1x.png") center no-repeat;
        position: absolute;
        top: 17px;
        left: 0;
        z-index: 1;
        background-size: contain;
    }

    .title span {
        z-index: 2;
        position: relative;
    }

    .input-group img {
        background-color: transparent !important;
    }

    .input-group {
        margin-bottom: 20px;
    }

    .input-wrapper {
        position: relative;
        width: 348px;
        height: 60px;
    }

    .input-field {
        width: 100%;
        height: 100%;
        padding: 20px 16px;
        border: 1px solid #dcdfe6;
        border-radius: 8px !important;
        font-family: Microsoft YaHei;
        font-size: 15px;
        color: #333333;
        outline: none;
        transition: border-color 0.3s;
    }

    .input-field:focus {
        border-color: #1F68FE;
    }

    .input-suffix {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        font-size: 22px;
        color: #909399;
    }

    .checkbox-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .checkbox {
        width: 16px;
        height: 16px;
        margin-right: 8px;
        accent-color: #1F68FE;
        cursor: pointer;
    }

    .checkbox-label {
        color: #333333;
        font-family: Microsoft YaHei;
        font-size: 14px;
        font-weight: normal;
        cursor: pointer;
    }

    .login_btn {
        width: 348px;
        height: 60px;
        border-radius: 6px;
        background: linear-gradient(280deg, rgba(132, 93, 252, 0.6) 3%, rgba(31, 104, 254, 0.6) 97%);
        font-size: 16px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-top: 40px;
        border: none;
        transition: all 0.3s;
    }

    .login_btn.active {
        background: linear-gradient(280deg, #845DFC 3%, #1F68FE 97%);
    }

    .login_btn:hover {
        opacity: 0.9;
    }

    .login_btn:disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }