* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #363636;
    background: #e6d8bd url("./login_newyear.png") center center / cover no-repeat fixed;
}

img {
    border: 0;
}

input,
select {
    font: inherit;
    outline: none;
}

.header {
    display: none;
}

.root {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.content-container {
    width: 100%;
    min-height: 70vh;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.panel {
    width: 420px;
    max-width: 100%;
    height: 136px;
    margin-bottom: 24px;
    border-radius: 10px;
    background: url("./login_head.png") center center / cover no-repeat;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.login {
    width: 420px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.login form {
    margin: 0;
    padding: 36px 32px 28px;
}

.form_t {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.user_t {
    font-size: 22px;
    line-height: 30px;
    color: #2161b3;
    font-weight: 500;
}

.lang_panel {
    margin-left: auto;
}

.lang_panel select {
    min-width: 110px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #c8d7f0;
    border-radius: 4px;
    background: #fff;
    color: #363636;
}

.user_f {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #c8d7f0;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    color: #2161b3;
}

.login .info {
    display: flex;
    align-items: center;
    min-height: 52px;
    border: 1px solid #bbb;
    border-bottom: 0;
    background: #fff;
}

.login .info:first-of-type {
    border-radius: 4px 4px 0 0;
}

.login .info label {
    flex: 0 0 76px;
    padding-left: 14px;
    color: #2161b3;
}

.login .info input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 14px 14px 14px 0;
    border: 0;
    background: transparent;
    color: #363636;
}

.login .info input:focus {
    background: #fff9eb;
}

.login .info.code img {
    width: 88px;
    height: 40px;
    margin-right: 8px;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
}

.login .info.code,
.login .info.facode {
    border-bottom: 1px solid #bbb;
}

.login .info.code {
    border-radius: 0;
}

.login .info.facode {
    display: flex;
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.login .info.facode input {
    padding-right: 14px;
}

.control {
    margin-top: 15px;
}

.control input[type="submit"] {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #2161b3;
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    background: url("./login_btn.png") repeat-x top;
    cursor: pointer;
}

.control input[type="submit"]:hover {
    background-color: #2a6bbe;
}

@media screen and (max-width: 480px) {
    .root {
        padding: 20px 12px;
    }

    .login form {
        padding: 24px 18px 20px;
    }

    .panel {
        height: 112px;
        margin-bottom: 18px;
    }

    .user_t {
        font-size: 20px;
    }

    .login .info label {
        flex-basis: 64px;
        padding-left: 10px;
    }

    .user_f {
        width: 32px;
    }

    .control input[type="submit"] {
        height: 46px;
        font-size: 16px;
    }
}
