html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-spacing: 0;
}

html,
body {
    height: 100%;
}

/* ===== 主容器 ===== */
.spu-login {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

/* ===== 左侧背景区域 ===== */
.spu-login .spu-login-left {
    flex: 1;
    position: relative;
    background: url(../img/login_left_bg.png) no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.spu-login .spu-login-left .spu-login-logo {
    position: absolute;
    top: 24px;
    left: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.spu-login .spu-login-left .spu-login-logo img {
    width: 178px;
    height: 28px;
}

.spu-login .spu-login-left .spu-login-logo #logo-name {
    font-size: 28px;
    line-height: 28px;
    font-weight: 400;
    color: #191a24;
    letter-spacing: 0;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 2px solid #191a24;
}

.spu-login .spu-login-left .spu-login-left-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spu-login .spu-login-left .spu-login-left-center img {
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
}

.spu-login .spu-login-left .copyright {
    position: absolute;
    width: 100%;
    bottom: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
    z-index: 10;
}

/* ===== 右侧登录面板 ===== */
.spu-login .spu-login-right {
    width: 480px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.06);
}

.spu-login .spu-login-right .spu-login-content {
    width: 340px;
}

/* ===== 标题 + 分割线 ===== */
.csc-login-title {
    font-size: 20px;
    font-weight: 600;
    color: #191a24;
    text-align: center;
    margin-bottom: 0;
}

.csc-login-hr {
    width: 100%;
    height: 1px;
    background-color: #c5ccdb;
    margin: 20px 0;
}

/* ===== 表单 ===== */
.spu-login .spu-login-right .spu-login-content .spu-login-content-form {
    margin-top: 0;
}

.spu-login-name {
    margin-bottom: 24px;
}

.spu-login-name input,
.spu-login-password input {
    width: 100%;
    height: 40px;
    border: 1px solid #c5ccdb;
    padding: 0 10px;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
}

.spu-login-name input:focus,
.spu-login-password input:focus {
    border-color: #2468f2;
    box-shadow: none;
}

/* ===== 验证码行 ===== */
.pass-form-item-authCode {
    display: none;
    margin-top: 24px;
}

.pass-form-item-authCode.active {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.pass-form-item-authCode input {
    flex: 1;
    height: 40px;
    border: 1px solid #c5ccdb;
    padding: 0 10px;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
}

.pass-form-item-authCode input:focus {
    border-color: #2468f2;
    box-shadow: none;
}

.pass-text-img-authCode {
    flex-shrink: 0;
    width: 100px;
    height: 40px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.pass-text-img-authCode img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

.pass-text-img-authCode p {
    display: none;
}

.pass-captcha-refresh {
    flex-shrink: 0;
    font-size: 13px;
    color: #4080ff;
    cursor: pointer;
    white-space: nowrap;
}

.pass-captcha-refresh:hover {
    color: #2060dd;
}

.pass-text-email-authCode {
    line-height: 42px;
    font-size: 14px;
}

.count-down {
    color: #999;
    font-size: 13px;
}

/* ===== 登录按钮 ===== */
.spu-login-btn {
    width: 100%;
    height: 40px;
    background: #2468f2;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
    outline: none;
    border: none;
    cursor: pointer;
    margin-top: 24px;
}

.spu-login-btn:hover {
    background: #1a5ad9;
}

/* ===== 错误提示 ===== */
.pass-generalErrorWrapper {
    color: #ea2e2e;
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
}
