b86a9c2af2
CI/CD Pipeline / Deploy Staging (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Failing after 75h41m6s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 75h41m16s
58 lines
1.5 KiB
CSS
Executable File
58 lines
1.5 KiB
CSS
Executable File
/**
|
|
* 登录页样式 — V21 Design System
|
|
* 共享样式在 Auth.shared.css,此处仅保留登录页特有样式
|
|
*/
|
|
@import "./Auth.shared.css";
|
|
|
|
/* ── 品牌展示 ─────────────────────────────────────────────── */
|
|
.xx-auth-brand {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
font-weight: 900;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.xx-auth-logo {
|
|
font-size: 28px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.xx-auth-brand-name {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
/* ── 登录按钮 ───────────────────────────────────────────── */
|
|
.xx-auth-card .xx-btn-primary {
|
|
width: 100%;
|
|
height: 48px;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
border-radius: var(--radius-sm);
|
|
background: linear-gradient(135deg, #6366f1, #4f46e5);
|
|
border: none;
|
|
box-shadow: 0 4px 14px
|
|
color-mix(in srgb, var(--primary-color) 30%, transparent);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.xx-auth-card .xx-btn-primary:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 6px 20px
|
|
color-mix(in srgb, var(--primary-color) 40%, transparent);
|
|
}
|
|
|
|
/* ── 忘记密码链接 ───────────────────────────────────────── */
|
|
.xx-auth-forgot {
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.xx-auth-forgot:hover {
|
|
color: var(--primary-dark);
|
|
}
|