* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;
}

.header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding-left: 245px;
    padding-right: 245px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.04);
}

.header .logo-link {
    display: flex;
}

.header .logo {
    height: 40px;
}

.header .official-site-link {
    margin-left: auto;
    padding: 8px 16px;
    border: 1px solid #3083eb;
    border-radius: 4px;
    color: #3083eb;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.header .official-site-link:hover {
    background: #3083eb;
    color: #ffffff;
}

.container {
    padding-top: 139px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.container .exception_img {
    height: 326px;
    max-width: 100%;
    height: auto;
}

.container .container_right {
    position: relative;
    left: -37px;
    margin-bottom: -20px;
    display: flex;
    flex-direction: column;
    color: #333333;
    padding: 0 20px;
}

.container_right .text-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.container_right .text-phone {
    margin-top: 10px;
    font-size: 16px;
}

.container_right .text-phone span {
    color: #3083eb;
}

.verify-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.container_right #code {
    padding-left: 12px;
    width: 260px;
    height: 36px;
    line-height: 36px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #cccccc;
    outline: none;
    font-size: 14px;
}

.container_right #code::placeholder {
    color: #999999;
}

.container #submit {
    margin-left: 8px;
    background: #3083eb;
    width: 68px;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
    outline: none;
    border: none;
    color: #ffffff;
}

.container_right .code_img {
    margin: 24px 0 8px 0;
    height: 48px;
}

.container_right .exception_desc {
    margin-bottom: 4px;
}

.code_img, #submit {
    cursor: pointer;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .header {
        padding-left: 20px;
        padding-right: 20px;
        height: 60px;
    }

    .header .logo {
        height: 30px;
    }

    .container {
        padding-top: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .container .exception_img {
        width: 80%;
        max-width: 280px;
    }

    .container .container_right {
        left: 0;
        margin-bottom: 0;
        align-items: center;
        padding: 0 15px;
    }

    .container_right .text-title {
        font-size: 18px;
    }

    .container_right #code {
        width: 180px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
    }

    .container #submit {
        width: 60px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
    }

    .container_right .code_img {
        margin: 20px 0 6px 0;
        height: 40px;
    }

    .container_right .text-phone {
        font-size: 14px;
        margin-top: 8px;
    }

    .container_right .exception_desc {
        font-size: 14px;
    }

    .verify-form {
        justify-content: center;
    }
}

/* 小屏幕手机适配 */
@media screen and (max-width: 375px) {
    .container_right .text-title {
        font-size: 16px;
    }

    .container_right #code {
        width: 160px;
    }

    .container_right .text-phone {
        font-size: 13px;
    }

    .container_right .exception_desc {
        font-size: 13px;
    }
}
