2026-04-29 23:36:40 +08:00
|
|
|
|
.login-page {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
position: relative;
|
2026-05-12 15:14:34 +00:00
|
|
|
|
min-height: var(--desktop-stage-height, 100dvh);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
display: grid;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
grid-template-columns: minmax(620px, .96fr) minmax(520px, .84fr);
|
|
|
|
|
|
justify-content: center;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
align-items: center;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
gap: clamp(32px, 4.8vw, 76px);
|
|
|
|
|
|
padding: 48px clamp(40px, 5vw, 86px);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
overflow: hidden;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
background:
|
2026-06-02 16:22:59 +08:00
|
|
|
|
linear-gradient(120deg, rgba(var(--theme-primary-rgb, 58, 124, 165), .10), transparent 34%),
|
|
|
|
|
|
linear-gradient(105deg, #f8fafc 0%, #f5faff 44%, #f8fafc 100%);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.login-page::before {
|
|
|
|
|
|
content: "";
|
2026-04-29 23:36:40 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
inset: 0;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
z-index: 0;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
background:
|
2026-06-02 16:22:59 +08:00
|
|
|
|
linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px),
|
|
|
|
|
|
linear-gradient(0deg, rgba(15,23,42,.04) 1px, transparent 1px),
|
|
|
|
|
|
radial-gradient(circle at 28% 72%, rgba(var(--theme-primary-rgb, 58, 124, 165), .10), transparent 28%),
|
|
|
|
|
|
radial-gradient(circle at 75% 22%, rgba(37,99,235,.06), transparent 30%);
|
|
|
|
|
|
background-size: 72px 72px, 72px 72px, auto, auto;
|
|
|
|
|
|
mask-image: linear-gradient(100deg, rgba(0,0,0,.7), rgba(0,0,0,.32) 48%, rgba(0,0,0,.16));
|
2026-04-30 17:09:38 +08:00
|
|
|
|
pointer-events: none;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.login-page::after {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: -9vw;
|
|
|
|
|
|
top: 13vh;
|
|
|
|
|
|
z-index: 0;
|
|
|
|
|
|
width: min(820px, 58vw);
|
|
|
|
|
|
height: min(560px, 64vh);
|
|
|
|
|
|
border: 1px solid rgba(148,163,184,.22);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
background:
|
|
|
|
|
|
linear-gradient(90deg, transparent 0 28%, rgba(15,23,42,.055) 28% calc(28% + 1px), transparent calc(28% + 1px)),
|
|
|
|
|
|
repeating-linear-gradient(0deg, transparent 0 35px, rgba(15,23,42,.05) 36px),
|
|
|
|
|
|
linear-gradient(135deg, rgba(255,255,255,.74), rgba(var(--theme-primary-rgb, 58, 124, 165), .10));
|
|
|
|
|
|
box-shadow: 0 34px 80px rgba(15,23,42,.08);
|
|
|
|
|
|
transform: rotate(-7deg);
|
|
|
|
|
|
pointer-events: none;
|
2026-06-02 14:01:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.page-brand {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 38px;
|
|
|
|
|
|
left: clamp(42px, 6vw, 86px);
|
|
|
|
|
|
z-index: 2;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
display: inline-flex;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
align-items: center;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
gap: 10px;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
color: #111827;
|
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
|
font-weight: 900;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
:deep(.logo-mark) {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
width: 34px;
|
|
|
|
|
|
height: 34px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
display: inline-grid;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
place-items: center;
|
2026-05-27 09:17:57 +08:00
|
|
|
|
color: var(--theme-primary-active);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
2026-04-30 17:09:38 +08:00
|
|
|
|
|
|
|
|
|
|
:deep(.logo-mark svg) {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
width: 34px;
|
|
|
|
|
|
height: 34px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
fill: currentColor;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.hero {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
align-self: stretch;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
align-content: center;
|
|
|
|
|
|
justify-items: start;
|
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
|
transform: translateX(34px);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.eyebrow-text {
|
|
|
|
|
|
color: var(--theme-primary-active);
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
|
letter-spacing: .08em;
|
|
|
|
|
|
text-transform: uppercase;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.hero h1 {
|
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
|
font-size: clamp(38px, 3.8vw, 54px);
|
|
|
|
|
|
line-height: 1.12;
|
|
|
|
|
|
font-weight: 950;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.hero-lead {
|
|
|
|
|
|
margin-top: 14px;
|
|
|
|
|
|
color: #111827;
|
|
|
|
|
|
font-size: clamp(23px, 2.15vw, 31px);
|
|
|
|
|
|
font-weight: 800;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.hero-sub {
|
|
|
|
|
|
margin-top: 14px;
|
|
|
|
|
|
color: #64748b;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero-stage {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: min(760px, 100%);
|
|
|
|
|
|
height: 350px;
|
|
|
|
|
|
margin-top: 22px;
|
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero-stage::before {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 285px;
|
|
|
|
|
|
bottom: 38px;
|
|
|
|
|
|
width: 230px;
|
|
|
|
|
|
height: 62px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: linear-gradient(90deg, rgba(var(--theme-primary-rgb, 58, 124, 165), .14), rgba(37,99,235,.08));
|
|
|
|
|
|
filter: blur(4px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-line {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
z-index: 0;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
display: block;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), .22);
|
|
|
|
|
|
border-left: 0;
|
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
|
border-radius: 0 8px 0 0;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.flow-line::after {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: -3px;
|
|
|
|
|
|
top: -4px;
|
|
|
|
|
|
width: 8px;
|
|
|
|
|
|
height: 8px;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
background: var(--theme-primary);
|
|
|
|
|
|
box-shadow: 0 0 0 5px rgba(var(--theme-primary-rgb, 58, 124, 165), .12);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
2026-04-30 17:09:38 +08:00
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.flow-a {
|
|
|
|
|
|
left: 190px;
|
|
|
|
|
|
top: 76px;
|
|
|
|
|
|
width: 170px;
|
|
|
|
|
|
height: 72px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-b {
|
|
|
|
|
|
left: 190px;
|
|
|
|
|
|
bottom: 96px;
|
|
|
|
|
|
width: 142px;
|
|
|
|
|
|
height: 82px;
|
|
|
|
|
|
transform: scaleY(-1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-c {
|
|
|
|
|
|
right: 182px;
|
|
|
|
|
|
top: 96px;
|
|
|
|
|
|
width: 132px;
|
|
|
|
|
|
height: 70px;
|
|
|
|
|
|
transform: scaleX(-1);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.metric-card,
|
|
|
|
|
|
.document-card,
|
|
|
|
|
|
.round-badge {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
border: 1px solid rgba(215, 224, 234, .86);
|
|
|
|
|
|
background: rgba(255,255,255,.78);
|
|
|
|
|
|
box-shadow: 0 18px 36px rgba(65, 88, 110, .10);
|
|
|
|
|
|
backdrop-filter: blur(16px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metric-card {
|
|
|
|
|
|
z-index: 2;
|
|
|
|
|
|
width: 166px;
|
|
|
|
|
|
min-height: 110px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
display: grid;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
gap: 7px;
|
|
|
|
|
|
padding: 17px 18px;
|
|
|
|
|
|
border-radius: 8px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.metric-card span {
|
|
|
|
|
|
color: #334155;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
font-weight: 800;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.metric-card strong {
|
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
|
font-size: 25px;
|
|
|
|
|
|
line-height: 1;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
font-weight: 900;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.metric-card small {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
color: #64748b;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
font-size: 12px;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
font-weight: 700;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.up { color: var(--success); }
|
|
|
|
|
|
.danger { color: #ef4444; }
|
|
|
|
|
|
|
|
|
|
|
|
.amount { left: 20px; top: 20px; }
|
|
|
|
|
|
.risk { left: 42px; bottom: 24px; }
|
|
|
|
|
|
.audit { right: 22px; top: 24px; }
|
|
|
|
|
|
.sla { right: 40px; bottom: 20px; }
|
|
|
|
|
|
|
|
|
|
|
|
.mini-bars {
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: end;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mini-bars i {
|
|
|
|
|
|
width: 14px;
|
|
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
|
|
background: linear-gradient(180deg, #93c5fd, #dbeafe);
|
|
|
|
|
|
}
|
|
|
|
|
|
.mini-bars i:nth-child(1) { height: 11px; }
|
|
|
|
|
|
.mini-bars i:nth-child(2) { height: 18px; }
|
|
|
|
|
|
.mini-bars i:nth-child(3) { height: 24px; }
|
|
|
|
|
|
.mini-bars i:nth-child(4) { height: 32px; }
|
|
|
|
|
|
|
|
|
|
|
|
.document-card {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
z-index: 1;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
left: 286px;
|
|
|
|
|
|
top: 44px;
|
|
|
|
|
|
width: 220px;
|
|
|
|
|
|
height: 214px;
|
|
|
|
|
|
padding: 28px 28px;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
transform: rotate(2deg);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.document-card span {
|
|
|
|
|
|
color: #1e293b;
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
font-weight: 900;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.document-card > i {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
height: 10px;
|
|
|
|
|
|
margin-top: 22px;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
background: #e4ebf5;
|
|
|
|
|
|
}
|
|
|
|
|
|
.document-card > i:nth-of-type(2) { width: 78%; margin-top: 16px; }
|
|
|
|
|
|
.document-card > i:nth-of-type(3) { width: 54%; margin-top: 16px; }
|
|
|
|
|
|
|
|
|
|
|
|
.doc-check {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
position: absolute;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
right: -16px;
|
|
|
|
|
|
bottom: -12px;
|
|
|
|
|
|
width: 54px;
|
|
|
|
|
|
height: 54px;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-active));
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
font-size: 27px;
|
|
|
|
|
|
box-shadow: 0 14px 28px rgba(var(--theme-primary-rgb, 58, 124, 165), .22);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
2026-04-29 23:36:40 +08:00
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.shield-art {
|
|
|
|
|
|
position: absolute;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
z-index: 3;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
left: 316px;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
width: 155px;
|
|
|
|
|
|
height: 155px;
|
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
|
filter: drop-shadow(0 22px 24px rgba(125, 91, 54, .16));
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.round-badge {
|
|
|
|
|
|
z-index: 4;
|
|
|
|
|
|
width: 58px;
|
|
|
|
|
|
height: 58px;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
color: #3b82f6;
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
font-weight: 950;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.round-badge.ai {
|
|
|
|
|
|
left: 258px;
|
|
|
|
|
|
top: 30px;
|
|
|
|
|
|
width: 52px;
|
|
|
|
|
|
height: 52px;
|
|
|
|
|
|
color: #3b82f6;
|
|
|
|
|
|
font-size: 21px;
|
|
|
|
|
|
box-shadow: 0 14px 30px rgba(59,130,246,.14);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-strip {
|
|
|
|
|
|
width: min(760px, 100%);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
display: grid;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
|
|
gap: 18px;
|
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-strip article {
|
|
|
|
|
|
min-height: 78px;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 42px minmax(0, 1fr);
|
2026-04-29 23:36:40 +08:00
|
|
|
|
align-items: center;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
gap: 12px;
|
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
|
border: 1px solid rgba(215, 224, 234, .82);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
background: rgba(255,255,255,.76);
|
|
|
|
|
|
box-shadow: 0 12px 30px rgba(65, 88, 110, .08);
|
|
|
|
|
|
backdrop-filter: blur(16px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-strip article > span {
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
border-radius: 11px;
|
|
|
|
|
|
font-size: 21px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-strip .primary { background: var(--theme-primary-soft); color: var(--theme-primary-active); }
|
|
|
|
|
|
.feature-strip .red { background: #fee2e2; color: #ef4444; }
|
|
|
|
|
|
.feature-strip .blue { background: #dbeafe; color: #3b82f6; }
|
|
|
|
|
|
|
|
|
|
|
|
.feature-strip strong {
|
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-strip p {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
|
color: #64748b;
|
|
|
|
|
|
font-size: 11.5px;
|
|
|
|
|
|
line-height: 1.45;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
2026-04-29 23:36:40 +08:00
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.login-card {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
width: 100%;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
max-width: 560px;
|
2026-06-02 14:01:51 +08:00
|
|
|
|
justify-self: center;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
display: grid;
|
|
|
|
|
|
padding: 58px 60px 44px;
|
|
|
|
|
|
border: 1px solid rgba(215, 224, 234, .96);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
background: rgba(255,255,255,.86);
|
|
|
|
|
|
box-shadow: 0 24px 64px rgba(65, 88, 110, .16);
|
|
|
|
|
|
backdrop-filter: blur(18px);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
2026-04-29 23:36:40 +08:00
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.card-brand {
|
|
|
|
|
|
display: inline-flex;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
align-items: center;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 12px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
color: #0f172a;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
font-size: 22px;
|
|
|
|
|
|
font-weight: 950;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.card-head {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
margin-top: 24px;
|
|
|
|
|
|
text-align: center;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.card-head h2 {
|
2026-04-29 23:36:40 +08:00
|
|
|
|
color: #0f172a;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
font-size: 34px;
|
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
|
font-weight: 950;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
2026-04-30 17:09:38 +08:00
|
|
|
|
|
|
|
|
|
|
.card-head p {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
margin-top: 12px;
|
|
|
|
|
|
color: #64748b;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
font-size: 16px;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-form {
|
|
|
|
|
|
display: grid;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
gap: 16px;
|
|
|
|
|
|
margin-top: 30px;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.field {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
min-height: 52px;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.field > .mdi {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 16px;
|
|
|
|
|
|
color: #64748b;
|
|
|
|
|
|
font-size: 19px;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.field input,
|
|
|
|
|
|
.field select {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 52px;
|
|
|
|
|
|
padding: 0 50px 0 48px;
|
|
|
|
|
|
border: 1px solid #d7e0ea;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
background: rgba(255,255,255,.86);
|
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.field select {
|
|
|
|
|
|
appearance: none;
|
|
|
|
|
|
cursor: pointer;
|
2026-05-28 12:09:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.field input::placeholder {
|
2026-06-02 14:01:51 +08:00
|
|
|
|
color: #94a3b8;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.field input:focus,
|
|
|
|
|
|
.field select:focus {
|
|
|
|
|
|
border-color: var(--theme-primary);
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
box-shadow: 0 0 0 3px var(--theme-focus-ring, rgba(58, 124, 165, .14));
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.field-select-chevron {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 12px;
|
|
|
|
|
|
width: 34px;
|
|
|
|
|
|
height: 34px;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
color: #64748b;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.field-icon-btn {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 12px;
|
|
|
|
|
|
width: 34px;
|
|
|
|
|
|
height: 34px;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
color: #64748b;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.field-icon-btn:hover {
|
|
|
|
|
|
background: #f1f5f9;
|
|
|
|
|
|
color: var(--theme-primary-active);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-meta {
|
2026-04-29 23:36:40 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 16px;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
margin-top: 2px;
|
2026-05-06 22:23:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.login-error {
|
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
|
border: 1px solid rgba(239, 68, 68, .18);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
background: #fef2f2;
|
|
|
|
|
|
color: #b91c1c;
|
2026-06-02 14:01:51 +08:00
|
|
|
|
font-size: 13px;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
line-height: 1.55;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.remember {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
color: #334155;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.remember input {
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
accent-color: var(--theme-primary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.link-btn {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
border: 0;
|
|
|
|
|
|
background: transparent;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
color: #2563eb;
|
|
|
|
|
|
font-size: 14px;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
font-weight: 700;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.submit-btn,
|
|
|
|
|
|
.sso-btn {
|
|
|
|
|
|
height: 52px;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
|
font-weight: 900;
|
2026-05-06 22:23:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.submit-btn {
|
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-active));
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
box-shadow: 0 16px 30px rgba(var(--theme-primary-rgb, 58, 124, 165), .20);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.submit-btn:hover {
|
|
|
|
|
|
background: linear-gradient(135deg, var(--theme-primary-hover), var(--theme-primary-active));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.submit-btn:disabled,
|
|
|
|
|
|
.sso-btn:disabled {
|
|
|
|
|
|
cursor: not-allowed;
|
2026-06-20 14:42:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 登录中:SSO 按钮置灰,登录按钮保持主色并显示 spinner */
|
|
|
|
|
|
.sso-btn:disabled {
|
|
|
|
|
|
opacity: .6;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-20 14:42:04 +08:00
|
|
|
|
.submit-btn:disabled {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
box-shadow: 0 16px 30px rgba(var(--theme-primary-rgb, 58, 124, 165), .20);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* 登录中表单态:用户名 / 密码 / 租户 / 记住账号 / 忘记密码全部置灰禁用,
|
|
|
|
|
|
* 让视觉焦点集中在正在校验的登录按钮上
|
|
|
|
|
|
*/
|
|
|
|
|
|
.login-form.is-submitting .field input,
|
|
|
|
|
|
.login-form.is-submitting .field select {
|
|
|
|
|
|
background: #f1f5f9;
|
|
|
|
|
|
border-color: #e2e8f0;
|
|
|
|
|
|
color: #94a3b8;
|
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-form.is-submitting .field input::placeholder {
|
|
|
|
|
|
color: #cbd5e1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-form.is-submitting .field > .mdi,
|
|
|
|
|
|
.login-form.is-submitting .field-icon-btn,
|
|
|
|
|
|
.login-form.is-submitting .field-select-chevron {
|
|
|
|
|
|
color: #cbd5e1;
|
|
|
|
|
|
opacity: .5;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-form.is-submitting .remember,
|
|
|
|
|
|
.login-form.is-submitting .link-btn {
|
|
|
|
|
|
opacity: .55;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 登录按钮内的旋转 loading */
|
|
|
|
|
|
.submit-btn__spinner {
|
|
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
border: 2.5px solid rgba(255, 255, 255, .4);
|
|
|
|
|
|
border-top-color: #fff;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
animation: loginSubmitSpin 720ms linear infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes loginSubmitSpin {
|
|
|
|
|
|
to {
|
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
|
|
.submit-btn__spinner {
|
|
|
|
|
|
animation-duration: 1800ms;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.divider {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
height: 28px;
|
|
|
|
|
|
color: #94a3b8;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
font-size: 13px;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.divider::before {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
top: 50%;
|
|
|
|
|
|
height: 1px;
|
|
|
|
|
|
background: #e2e8f0;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
2026-04-30 17:09:38 +08:00
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.divider span {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
|
background: rgba(255,255,255,.9);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.sso-btn {
|
|
|
|
|
|
border: 1px solid var(--theme-primary);
|
|
|
|
|
|
background: rgba(255,255,255,.78);
|
2026-05-27 09:17:57 +08:00
|
|
|
|
color: var(--theme-primary-active);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.sso-btn:hover {
|
|
|
|
|
|
background: var(--theme-primary-soft);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.security-note {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
margin-top: 34px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
color: #64748b;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
font-size: 13px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.security-note .mdi {
|
|
|
|
|
|
color: #94a3b8;
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.sr-only {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 1px;
|
|
|
|
|
|
height: 1px;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
margin: -1px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
clip: rect(0, 0, 0, 0);
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
@media (max-width: 1280px) {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.login-page {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
grid-template-columns: minmax(520px, 1fr) minmax(480px, 540px);
|
|
|
|
|
|
gap: 44px;
|
|
|
|
|
|
padding-inline: 48px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.hero-stage {
|
|
|
|
|
|
transform: scale(.88);
|
|
|
|
|
|
transform-origin: left center;
|
|
|
|
|
|
margin-bottom: -32px;
|
2026-06-02 14:01:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.feature-strip {
|
|
|
|
|
|
width: 520px;
|
|
|
|
|
|
gap: 14px;
|
|
|
|
|
|
margin-left: 0;
|
2026-06-02 14:01:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.login-card { max-width: 500px; }
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
@media (max-height: 840px) and (min-width: 981px) {
|
|
|
|
|
|
.hero {
|
|
|
|
|
|
padding-top: 18px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.hero-stage {
|
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
transform: scale(.9);
|
|
|
|
|
|
transform-origin: left center;
|
|
|
|
|
|
margin-bottom: -22px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-card {
|
|
|
|
|
|
padding-block: 38px 28px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card-head {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
margin-top: 18px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-form {
|
|
|
|
|
|
gap: 14px;
|
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.security-note {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
margin-top: 24px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 980px) {
|
|
|
|
|
|
.login-page {
|
2026-05-12 15:14:34 +00:00
|
|
|
|
min-height: var(--desktop-stage-height, 100dvh);
|
2026-04-30 17:09:38 +08:00
|
|
|
|
grid-template-columns: 1fr;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
padding: 92px 28px 28px;
|
|
|
|
|
|
overflow: auto;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.page-brand {
|
|
|
|
|
|
top: 24px;
|
|
|
|
|
|
left: 24px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
.hero {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
display: none;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
transform: none;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-card {
|
|
|
|
|
|
max-width: 520px;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
padding: 40px 28px 30px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-02 16:22:59 +08:00
|
|
|
|
@media (max-width: 520px) {
|
2026-04-30 17:09:38 +08:00
|
|
|
|
.login-page {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
padding-inline: 22px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.login-card {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
padding: 32px 22px 24px;
|
|
|
|
|
|
border-radius: 8px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card-head h2 {
|
2026-06-02 16:22:59 +08:00
|
|
|
|
font-size: 30px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-meta {
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
flex-direction: column;
|
2026-06-02 16:22:59 +08:00
|
|
|
|
gap: 10px;
|
2026-04-30 17:09:38 +08:00
|
|
|
|
}
|
2026-04-29 23:36:40 +08:00
|
|
|
|
}
|