首次上传
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,874 @@
|
||||
/* Gate Order Executor — refined dark console */
|
||||
:root {
|
||||
--exec-bg-deep: #070708;
|
||||
--exec-bg-raised: #0c0c10;
|
||||
--exec-bg-card: #101118;
|
||||
--exec-bg-card-hover: #16161f;
|
||||
--exec-border: rgba(255, 255, 255, 0.055);
|
||||
--exec-border-strong: rgba(255, 255, 255, 0.12);
|
||||
--exec-text: #f7f7fb;
|
||||
--exec-text-muted: #a8a8b8;
|
||||
--exec-text-dim: #6d6d7c;
|
||||
--exec-accent: #ececf4;
|
||||
--exec-accent-soft: rgba(236, 236, 244, 0.09);
|
||||
--exec-line: rgba(255, 255, 255, 0.038);
|
||||
--exec-glow: rgba(120, 160, 255, 0.08);
|
||||
--exec-radius: 17px;
|
||||
--exec-radius-sm: 12px;
|
||||
--exec-font: "Plus Jakarta Sans", "SF Pro Text", "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
|
||||
--exec-mono: "JetBrains Mono", "SF Mono", ui-monospace, "Cascadia Code", monospace;
|
||||
--exec-shadow:
|
||||
0 0 0 1px rgba(255, 255, 255, 0.045),
|
||||
0 2px 4px rgba(0, 0, 0, 0.35),
|
||||
0 28px 56px rgba(0, 0, 0, 0.5),
|
||||
0 64px 128px rgba(0, 0, 0, 0.28);
|
||||
--exec-shadow-hover:
|
||||
0 0 0 1px rgba(255, 255, 255, 0.07),
|
||||
0 36px 72px rgba(0, 0, 0, 0.55);
|
||||
--exec-header-h: 78px;
|
||||
}
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* —— Shell(登录 + 控制台共用底层) —— */
|
||||
.exec-shell {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
font-family: var(--exec-font);
|
||||
background: var(--exec-bg-deep);
|
||||
color: var(--exec-text);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-rendering: optimizeLegibility;
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
.exec-ambient {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
background:
|
||||
radial-gradient(ellipse 110% 85% at 50% -35%, rgba(115, 155, 255, 0.11), transparent 52%),
|
||||
radial-gradient(ellipse 55% 42% at 100% 8%, rgba(255, 255, 255, 0.045), transparent 48%),
|
||||
radial-gradient(ellipse 50% 38% at 0% 88%, rgba(72, 200, 190, 0.05), transparent 46%),
|
||||
linear-gradient(180deg, #0b0b0f 0%, var(--exec-bg-deep) 38%, #050506 100%);
|
||||
}
|
||||
.exec-noise {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 0;
|
||||
opacity: 0.035;
|
||||
pointer-events: none;
|
||||
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.exec-grid-faint {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 0;
|
||||
pointer-events: none;
|
||||
background-size: 48px 48px;
|
||||
background-image:
|
||||
linear-gradient(var(--exec-line) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--exec-line) 1px, transparent 1px);
|
||||
mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* —— 顶栏模块 —— */
|
||||
.exec-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 20;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 20px;
|
||||
min-height: var(--exec-header-h);
|
||||
padding: 0 clamp(22px, 4.5vw, 44px);
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
||||
background: linear-gradient(180deg, rgba(14, 14, 18, 0.92) 0%, rgba(8, 8, 11, 0.82) 100%);
|
||||
backdrop-filter: blur(22px) saturate(1.45);
|
||||
-webkit-backdrop-filter: blur(22px) saturate(1.45);
|
||||
box-shadow:
|
||||
0 1px 0 rgba(255, 255, 255, 0.05) inset,
|
||||
0 20px 48px rgba(0, 0, 0, 0.45);
|
||||
}
|
||||
.exec-header__brand {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.exec-header__text {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.exec-mark {
|
||||
flex-shrink: 0;
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
border-radius: 14px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.08em;
|
||||
color: var(--exec-text);
|
||||
background: linear-gradient(152deg, #222632 0%, #12141d 48%, #161a24 100%);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
||||
0 0 0 1px rgba(0, 0, 0, 0.4),
|
||||
0 10px 28px rgba(0, 0, 0, 0.45);
|
||||
}
|
||||
|
||||
.exec-title {
|
||||
margin: 0;
|
||||
font-size: clamp(1.08rem, 2.1vw, 1.32rem);
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.028em;
|
||||
color: var(--exec-text);
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.exec-title__sep {
|
||||
margin: 0 0.12em;
|
||||
font-weight: 500;
|
||||
color: var(--exec-text-dim);
|
||||
}
|
||||
|
||||
.exec-subtitle {
|
||||
margin: 6px 0 0;
|
||||
font-size: 0.8rem;
|
||||
color: var(--exec-text-dim);
|
||||
letter-spacing: 0.03em;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.exec-header__actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.exec-clock {
|
||||
font-family: var(--exec-mono);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 500;
|
||||
font-variant-numeric: tabular-nums;
|
||||
color: var(--exec-text-muted);
|
||||
padding: 9px 16px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
|
||||
.exec-user {
|
||||
font-size: 0.78rem;
|
||||
color: var(--exec-text-muted);
|
||||
padding: 9px 16px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.exec-user strong {
|
||||
color: var(--exec-text);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* —— 主内容区:模块化栅格 —— */
|
||||
.exec-main {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 1360px;
|
||||
margin: 0 auto;
|
||||
padding: clamp(20px, 3vw, 32px) clamp(20px, 4vw, 40px) 48px;
|
||||
}
|
||||
|
||||
/* 标签页布局:顶部分区切换,内容区各自滚动(高度 ≈ 视口 − 顶栏) */
|
||||
.exec-main--tabbed {
|
||||
min-height: calc(100vh - var(--exec-header-h));
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
max-width: 1360px;
|
||||
margin: 0 auto;
|
||||
padding: clamp(14px, 2.2vw, 22px) clamp(22px, 4.5vw, 44px) 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.exec-tabs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 5px;
|
||||
margin-bottom: 22px;
|
||||
flex-shrink: 0;
|
||||
padding: 6px 7px;
|
||||
border-radius: 14px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
background: rgba(255, 255, 255, 0.025);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.exec-tab {
|
||||
appearance: none;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
font-size: 0.83rem;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.01em;
|
||||
color: var(--exec-text-muted);
|
||||
background: transparent;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 11px;
|
||||
padding: 10px 17px;
|
||||
transition:
|
||||
color 0.18s ease,
|
||||
background 0.18s ease,
|
||||
border-color 0.18s ease,
|
||||
box-shadow 0.18s ease;
|
||||
}
|
||||
|
||||
.exec-tab:hover {
|
||||
color: var(--exec-text);
|
||||
background: rgba(255, 255, 255, 0.055);
|
||||
}
|
||||
|
||||
.exec-tab:focus-visible {
|
||||
outline: 2px solid rgba(130, 165, 255, 0.35);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
.exec-tab--active {
|
||||
color: var(--exec-text);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.035) 100%);
|
||||
border-color: rgba(255, 255, 255, 0.1);
|
||||
box-shadow:
|
||||
0 0 28px rgba(100, 140, 255, 0.1),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
.exec-tab-panels {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
position: relative;
|
||||
margin-bottom: clamp(16px, 2vw, 28px);
|
||||
}
|
||||
|
||||
.exec-tab-panel {
|
||||
display: none;
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
padding-bottom: 32px;
|
||||
scrollbar-gutter: stable;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgba(255, 255, 255, 0.14) transparent;
|
||||
}
|
||||
|
||||
.exec-tab-panel::-webkit-scrollbar {
|
||||
width: 9px;
|
||||
}
|
||||
|
||||
.exec-tab-panel::-webkit-scrollbar-thumb {
|
||||
background: rgba(255, 255, 255, 0.12);
|
||||
border-radius: 99px;
|
||||
border: 2px solid transparent;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.exec-tab-panel::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(255, 255, 255, 0.18);
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.exec-tab-panel--active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.exec-modal {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 100;
|
||||
display: none;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.exec-modal.exec-modal--open {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.exec-modal__backdrop {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.68);
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.exec-modal__card {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
max-width: 440px;
|
||||
padding: 24px 24px 22px;
|
||||
border-radius: calc(var(--exec-radius) + 2px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
background: linear-gradient(180deg, rgba(24, 24, 32, 0.98) 0%, rgba(14, 14, 18, 0.99) 100%);
|
||||
box-shadow: var(--exec-shadow), 0 0 80px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.exec-modal__title {
|
||||
margin: 0 0 10px;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
color: var(--exec-text);
|
||||
}
|
||||
|
||||
.exec-btn--sm {
|
||||
font-size: 0.72rem;
|
||||
padding: 5px 10px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.exec-pos-actions {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.exec-section-label {
|
||||
font-size: 0.64rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.18em;
|
||||
text-transform: uppercase;
|
||||
color: var(--exec-text-dim);
|
||||
margin: 0 0 14px 4px;
|
||||
opacity: 0.92;
|
||||
}
|
||||
.exec-module-row {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.exec-module-row--3 {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
@media (max-width: 1020px) {
|
||||
.exec-module-row--3 {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
/* 单模块卡片 */
|
||||
.exec-module {
|
||||
background: linear-gradient(165deg, rgba(22, 22, 30, 0.92) 0%, rgba(12, 12, 16, 0.96) 55%, rgba(10, 10, 14, 0.98) 100%);
|
||||
border: 1px solid rgba(255, 255, 255, 0.065);
|
||||
border-radius: var(--exec-radius);
|
||||
box-shadow: var(--exec-shadow);
|
||||
overflow: hidden;
|
||||
transition:
|
||||
border-color 0.22s ease,
|
||||
box-shadow 0.22s ease,
|
||||
transform 0.22s ease;
|
||||
}
|
||||
|
||||
.exec-module:hover {
|
||||
border-color: rgba(255, 255, 255, 0.1);
|
||||
box-shadow: var(--exec-shadow-hover);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
.exec-module--wide {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.exec-module-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
padding: 17px 22px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.055);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0) 100%);
|
||||
}
|
||||
|
||||
.exec-module-title {
|
||||
margin: 0;
|
||||
font-size: 0.94rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.015em;
|
||||
color: var(--exec-text);
|
||||
}
|
||||
|
||||
.exec-module-meta {
|
||||
font-size: 0.7rem;
|
||||
color: var(--exec-text-dim);
|
||||
letter-spacing: 0.06em;
|
||||
font-weight: 500;
|
||||
text-align: right;
|
||||
max-width: 52%;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.exec-module-body {
|
||||
padding: 20px 22px 22px;
|
||||
}
|
||||
/* 指标栅格(子模块) */
|
||||
.exec-metric-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.exec-metric {
|
||||
padding: 15px 15px 13px;
|
||||
border-radius: var(--exec-radius-sm);
|
||||
border: 1px solid rgba(255, 255, 255, 0.055);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
||||
}
|
||||
|
||||
.exec-metric-label {
|
||||
display: block;
|
||||
font-size: 0.65rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
color: var(--exec-text-dim);
|
||||
margin-bottom: 9px;
|
||||
}
|
||||
|
||||
.exec-metric-value {
|
||||
font-size: 0.96rem;
|
||||
font-weight: 500;
|
||||
color: var(--exec-text);
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.exec-metric-value--mono {
|
||||
font-family: var(--exec-mono);
|
||||
font-size: 0.83rem;
|
||||
font-weight: 500;
|
||||
font-variant-numeric: tabular-nums;
|
||||
word-break: break-all;
|
||||
color: var(--exec-text-muted);
|
||||
}
|
||||
/* 状态芯片 */
|
||||
.exec-chip {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
padding: 5px 11px;
|
||||
border-radius: 8px;
|
||||
font-size: 0.76rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
.exec-chip::before {
|
||||
content: "";
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 50%;
|
||||
background: currentColor;
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.exec-chip--neutral {
|
||||
color: var(--exec-text-muted);
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
border: 1px solid var(--exec-border);
|
||||
}
|
||||
|
||||
.exec-chip--ok {
|
||||
color: #86efac;
|
||||
background: rgba(34, 197, 94, 0.1);
|
||||
border: 1px solid rgba(34, 197, 94, 0.22);
|
||||
}
|
||||
|
||||
.exec-chip--warn {
|
||||
color: #fcd34d;
|
||||
background: rgba(245, 158, 11, 0.1);
|
||||
border: 1px solid rgba(245, 158, 11, 0.22);
|
||||
}
|
||||
|
||||
.exec-chip--live {
|
||||
color: #fca5a5;
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
border: 1px solid rgba(239, 68, 68, 0.22);
|
||||
}
|
||||
|
||||
/* 持仓:交易所张数符号 = 方向;未实现盈亏着色 */
|
||||
.exec-dir {
|
||||
display: inline-block;
|
||||
margin-left: 8px;
|
||||
padding: 2px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 600;
|
||||
text-transform: lowercase;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.exec-dir--long {
|
||||
color: #86efac;
|
||||
background: rgba(34, 197, 94, 0.12);
|
||||
border: 1px solid rgba(34, 197, 94, 0.25);
|
||||
}
|
||||
|
||||
.exec-dir--short {
|
||||
color: #fca5a5;
|
||||
background: rgba(239, 68, 68, 0.12);
|
||||
border: 1px solid rgba(239, 68, 68, 0.25);
|
||||
}
|
||||
|
||||
.exec-pnl--profit {
|
||||
color: #86efac;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.exec-pnl--loss {
|
||||
color: #fca5a5;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.exec-pnl--flat {
|
||||
color: var(--exec-text-muted);
|
||||
}
|
||||
|
||||
.exec-prose {
|
||||
margin: 16px 0 0;
|
||||
font-size: 0.78rem;
|
||||
line-height: 1.65;
|
||||
color: var(--exec-text-dim);
|
||||
}
|
||||
|
||||
.exec-prose code {
|
||||
font-family: var(--exec-mono);
|
||||
font-size: 0.73rem;
|
||||
color: var(--exec-text-muted);
|
||||
padding: 3px 7px;
|
||||
border-radius: 6px;
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
/* 表格模块 */
|
||||
.exec-table-toolbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.exec-table-hint {
|
||||
margin: 0;
|
||||
font-size: 0.75rem;
|
||||
color: var(--exec-text-dim);
|
||||
flex: 1 1 280px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.exec-sig-export {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.exec-sig-export-label {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-size: 0.78rem;
|
||||
color: var(--exec-text-muted);
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.exec-sig-export-label input {
|
||||
accent-color: #22c55e;
|
||||
}
|
||||
|
||||
.exec-sig-persist {
|
||||
margin: 0 0 14px;
|
||||
padding: 9px 14px;
|
||||
font-size: 0.74rem;
|
||||
line-height: 1.5;
|
||||
border-radius: var(--exec-radius-sm);
|
||||
border: 1px solid var(--exec-border);
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
color: var(--exec-text-muted);
|
||||
}
|
||||
|
||||
.exec-sig-persist--ok {
|
||||
border-color: rgba(34, 197, 94, 0.35);
|
||||
background: rgba(34, 197, 94, 0.08);
|
||||
color: #86efac;
|
||||
}
|
||||
|
||||
.exec-sig-persist--warn {
|
||||
border-color: rgba(245, 158, 11, 0.45);
|
||||
background: rgba(245, 158, 11, 0.1);
|
||||
color: #fcd34d;
|
||||
}
|
||||
|
||||
.exec-table-scroll {
|
||||
overflow-x: auto;
|
||||
margin: 0 -2px;
|
||||
padding: 0;
|
||||
border-radius: calc(var(--exec-radius-sm) + 2px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.07);
|
||||
background: linear-gradient(180deg, rgba(8, 8, 11, 0.95) 0%, rgba(5, 5, 8, 0.98) 100%);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
||||
}
|
||||
|
||||
.exec-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 0.83rem;
|
||||
}
|
||||
|
||||
.exec-table th {
|
||||
text-align: left;
|
||||
padding: 13px 16px;
|
||||
font-size: 0.64rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
color: var(--exec-text-dim);
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.exec-table td {
|
||||
padding: 13px 16px;
|
||||
border-bottom: 1px solid var(--exec-line);
|
||||
color: var(--exec-text-muted);
|
||||
}
|
||||
|
||||
.exec-table tbody tr {
|
||||
transition: background 0.16s ease;
|
||||
}
|
||||
|
||||
.exec-table tbody tr:hover {
|
||||
background: rgba(120, 155, 255, 0.045);
|
||||
}
|
||||
.exec-table tbody tr:last-child td {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.exec-table .exec-mono {
|
||||
font-family: var(--exec-mono);
|
||||
font-size: 0.8rem;
|
||||
color: var(--exec-text);
|
||||
}
|
||||
|
||||
.exec-cell-status {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.exec-cell-status--ok {
|
||||
color: #86efac;
|
||||
}
|
||||
|
||||
.exec-cell-status--skip {
|
||||
color: var(--exec-text-muted);
|
||||
}
|
||||
|
||||
.exec-cell-status--err {
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.exec-muted {
|
||||
color: var(--exec-text-dim);
|
||||
text-align: center;
|
||||
padding: 28px 16px !important;
|
||||
}
|
||||
|
||||
/* 按钮 */
|
||||
.exec-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 10px 19px;
|
||||
border-radius: 11px;
|
||||
font-weight: 600;
|
||||
font-size: 0.8rem;
|
||||
letter-spacing: 0.02em;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
|
||||
color: var(--exec-text);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
|
||||
transition:
|
||||
background 0.18s ease,
|
||||
border-color 0.18s ease,
|
||||
box-shadow 0.18s ease,
|
||||
transform 0.15s ease;
|
||||
}
|
||||
|
||||
.exec-btn:hover {
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
|
||||
border-color: rgba(255, 255, 255, 0.18);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
||||
0 8px 24px rgba(0, 0, 0, 0.35);
|
||||
transform: translateY(-0.5px);
|
||||
}
|
||||
|
||||
.exec-btn--primary {
|
||||
border: 1px solid rgba(255, 255, 255, 0.28);
|
||||
background: linear-gradient(185deg, #ffffff 0%, #e4e4ea 48%, #c8c8d4 100%);
|
||||
color: #0a0a0f;
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.65),
|
||||
0 10px 28px rgba(0, 0, 0, 0.35);
|
||||
}
|
||||
|
||||
.exec-btn--primary:hover {
|
||||
background: linear-gradient(185deg, #ffffff 0%, #f0f0f6 50%, #dcdce6 100%);
|
||||
border-color: rgba(255, 255, 255, 0.38);
|
||||
}
|
||||
/* —— 登录页(模块化单卡) —— */
|
||||
.exec-login-body.exec-shell {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.exec-login-stage {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
max-width: 420px;
|
||||
}
|
||||
|
||||
.exec-login-card {
|
||||
border-radius: calc(var(--exec-radius) + 2px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
background: linear-gradient(165deg, rgba(22, 22, 30, 0.95) 0%, rgba(12, 12, 16, 0.98) 100%);
|
||||
box-shadow: var(--exec-shadow);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.exec-login-card::before {
|
||||
content: "";
|
||||
display: block;
|
||||
height: 3px;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
transparent,
|
||||
rgba(130, 165, 255, 0.45),
|
||||
rgba(255, 255, 255, 0.35),
|
||||
rgba(130, 165, 255, 0.45),
|
||||
transparent
|
||||
);
|
||||
}
|
||||
.exec-login-inner {
|
||||
padding: 36px 32px 32px;
|
||||
}
|
||||
|
||||
.exec-login-kicker {
|
||||
font-size: 0.65rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.2em;
|
||||
color: var(--exec-text-dim);
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.exec-login-title {
|
||||
margin: 0 0 10px;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.03em;
|
||||
color: var(--exec-text);
|
||||
}
|
||||
|
||||
.exec-login-desc {
|
||||
margin: 0 0 28px;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.55;
|
||||
color: var(--exec-text-muted);
|
||||
}
|
||||
|
||||
.exec-field {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.exec-label {
|
||||
display: block;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
color: var(--exec-text-dim);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.exec-input {
|
||||
width: 100%;
|
||||
padding: 12px 14px;
|
||||
border-radius: var(--exec-radius-sm);
|
||||
border: 1px solid var(--exec-border);
|
||||
background: var(--exec-bg-deep);
|
||||
color: var(--exec-text);
|
||||
font-size: 0.95rem;
|
||||
transition: border-color 0.15s ease, box-shadow 0.15s ease;
|
||||
}
|
||||
|
||||
.exec-input:focus {
|
||||
outline: none;
|
||||
border-color: rgba(255, 255, 255, 0.22);
|
||||
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.exec-login-form .exec-btn--primary {
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.exec-error {
|
||||
min-height: 22px;
|
||||
margin-top: 16px;
|
||||
font-size: 0.82rem;
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.exec-shell ::selection {
|
||||
background: rgba(130, 165, 255, 0.28);
|
||||
color: var(--exec-text);
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.exec-module,
|
||||
.exec-btn,
|
||||
.exec-tab {
|
||||
transition: none !important;
|
||||
}
|
||||
|
||||
.exec-module:hover,
|
||||
.exec-btn:hover {
|
||||
transform: none !important;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,664 @@
|
||||
/**
|
||||
* MATRIX 式交易终端:黑底 · 霓虹青 · 洋红点缀 · 等宽信息密度
|
||||
* 仅当 body 含 .exec-theme-matrix 时由 dashboard / login 引入
|
||||
*/
|
||||
body.exec-theme-matrix.exec-shell {
|
||||
font-family: "JetBrains Mono", ui-monospace, "Cascadia Code", monospace;
|
||||
background: #000;
|
||||
color: rgba(126, 232, 234, 0.92);
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-ambient {
|
||||
background:
|
||||
radial-gradient(ellipse 90% 55% at 50% -10%, rgba(0, 255, 234, 0.12), transparent 52%),
|
||||
radial-gradient(ellipse 45% 35% at 100% 80%, rgba(255, 46, 166, 0.06), transparent 50%),
|
||||
linear-gradient(180deg, #030308 0%, #000 45%, #020204 100%);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-noise {
|
||||
opacity: 0.045;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-grid-faint {
|
||||
background-size: 28px 28px;
|
||||
background-image:
|
||||
linear-gradient(rgba(0, 255, 234, 0.07) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(0, 255, 234, 0.07) 1px, transparent 1px);
|
||||
mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 15%, transparent 75%);
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
/* —— 顶栏:状态条 + 主标题行 —— */
|
||||
body.exec-theme-matrix .exec-header {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
gap: 0;
|
||||
min-height: auto;
|
||||
padding: 0;
|
||||
border-bottom: 1px solid rgba(0, 255, 234, 0.45);
|
||||
background: linear-gradient(180deg, rgba(0, 8, 10, 0.97) 0%, rgba(0, 0, 0, 0.92) 100%);
|
||||
box-shadow:
|
||||
0 0 32px rgba(0, 255, 234, 0.12),
|
||||
0 1px 0 rgba(255, 46, 166, 0.15) inset;
|
||||
backdrop-filter: blur(12px);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-terminal-bar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 8px 10px;
|
||||
padding: 8px clamp(14px, 3vw, 28px);
|
||||
border-bottom: 1px solid rgba(0, 255, 234, 0.2);
|
||||
background: rgba(0, 0, 0, 0.55);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tx-chip {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 4px 10px;
|
||||
font-size: 0.65rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
color: rgba(126, 232, 234, 0.75);
|
||||
border: 1px solid rgba(0, 255, 234, 0.35);
|
||||
border-radius: 2px;
|
||||
background: rgba(0, 20, 22, 0.9);
|
||||
box-shadow: 0 0 12px rgba(0, 255, 234, 0.08);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tx-chip strong,
|
||||
body.exec-theme-matrix .exec-tx-chip .exec-tx-mono {
|
||||
color: #bfffff;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tx-chip--live {
|
||||
border-color: rgba(0, 255, 234, 0.55);
|
||||
color: #7ee8ea;
|
||||
text-shadow: 0 0 12px rgba(0, 255, 234, 0.45);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tx-dot {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 50%;
|
||||
background: #00ffe0;
|
||||
box-shadow: 0 0 10px #00ffe0;
|
||||
animation: mtx-pulse 1.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes mtx-pulse {
|
||||
0%,
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.35;
|
||||
}
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tx-chip--time .exec-tx-mono {
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-terminal-head {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 14px 20px;
|
||||
padding: 14px clamp(14px, 3vw, 28px) 16px;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-terminal-logo {
|
||||
flex-shrink: 0;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-size: 0.62rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.1em;
|
||||
color: #000;
|
||||
background: linear-gradient(145deg, #00ffe0 0%, #00b8a8 100%);
|
||||
border: 1px solid rgba(0, 255, 234, 0.8);
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 0 20px rgba(0, 255, 234, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-terminal-center {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-title-terminal {
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px 14px;
|
||||
font-family: "Share Tech Mono", "JetBrains Mono", ui-monospace, monospace;
|
||||
font-size: clamp(1.35rem, 4.2vw, 2.15rem);
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.14em;
|
||||
text-transform: uppercase;
|
||||
line-height: 1.1;
|
||||
color: #9ff;
|
||||
text-shadow:
|
||||
0 0 20px rgba(0, 255, 234, 0.55),
|
||||
0 0 40px rgba(0, 255, 234, 0.2);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tt-part {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-title-slash {
|
||||
margin: 0 0.02em;
|
||||
opacity: 0.55;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.2em;
|
||||
}
|
||||
|
||||
/* 雷达装饰 */
|
||||
body.exec-theme-matrix .exec-radar {
|
||||
position: relative;
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-radar__ring {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: 50%;
|
||||
border: 1px solid rgba(0, 255, 234, 0.5);
|
||||
box-shadow:
|
||||
0 0 14px rgba(0, 255, 234, 0.25),
|
||||
inset 0 0 18px rgba(0, 255, 234, 0.06);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-radar__sweep {
|
||||
position: absolute;
|
||||
inset: 3px;
|
||||
border-radius: 50%;
|
||||
background: conic-gradient(from -36deg, transparent 0deg, rgba(0, 255, 234, 0.22) 52deg, transparent 52deg);
|
||||
animation: mtx-radar 2.8s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes mtx-radar {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-radar__blip {
|
||||
position: absolute;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
top: 32%;
|
||||
right: 18%;
|
||||
border-radius: 50%;
|
||||
background: #ff2ea6;
|
||||
box-shadow: 0 0 12px #ff2ea6;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tagline-terminal {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
max-width: min(100%, 720px);
|
||||
padding: 6px 14px;
|
||||
font-size: 0.62rem;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.16em;
|
||||
text-transform: uppercase;
|
||||
color: rgba(255, 180, 220, 0.95);
|
||||
border: 1px solid rgba(255, 46, 166, 0.55);
|
||||
border-radius: 2px;
|
||||
background: rgba(40, 0, 28, 0.45);
|
||||
box-shadow: 0 0 18px rgba(255, 46, 166, 0.12);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-terminal-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* —— Tab —— */
|
||||
body.exec-theme-matrix .exec-tabs {
|
||||
gap: 4px;
|
||||
padding: 5px 6px;
|
||||
margin-bottom: 18px;
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.28);
|
||||
background: rgba(0, 12, 14, 0.75);
|
||||
box-shadow: inset 0 0 24px rgba(0, 255, 234, 0.04);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tab {
|
||||
border-radius: 2px;
|
||||
padding: 9px 14px;
|
||||
font-size: 0.72rem;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
color: rgba(126, 232, 234, 0.55);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tab:hover {
|
||||
color: #bfffff;
|
||||
background: rgba(0, 255, 234, 0.08);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tab--active {
|
||||
color: #000;
|
||||
background: linear-gradient(180deg, #00ffe0 0%, #00c9b0 100%);
|
||||
border-color: rgba(0, 255, 234, 0.7);
|
||||
box-shadow: 0 0 22px rgba(0, 255, 234, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tab:focus-visible {
|
||||
outline: 2px solid #ff2ea6;
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
/* —— 分区标签 —— */
|
||||
body.exec-theme-matrix .exec-section-label {
|
||||
letter-spacing: 0.22em;
|
||||
color: rgba(0, 255, 234, 0.45);
|
||||
text-shadow: 0 0 8px rgba(0, 255, 234, 0.25);
|
||||
}
|
||||
|
||||
/* —— 卡片 —— */
|
||||
body.exec-theme-matrix .exec-module {
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.38);
|
||||
background: linear-gradient(165deg, rgba(0, 18, 20, 0.92) 0%, rgba(0, 0, 0, 0.94) 100%);
|
||||
box-shadow:
|
||||
0 0 0 1px rgba(0, 0, 0, 0.5),
|
||||
0 0 28px rgba(0, 255, 234, 0.06);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-module:hover {
|
||||
border-color: rgba(0, 255, 234, 0.55);
|
||||
box-shadow:
|
||||
0 0 0 1px rgba(255, 46, 166, 0.12),
|
||||
0 0 36px rgba(0, 255, 234, 0.12);
|
||||
transform: none;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-module-head {
|
||||
padding: 12px 16px;
|
||||
border-bottom: 1px solid rgba(0, 255, 234, 0.22);
|
||||
background: linear-gradient(90deg, rgba(0, 255, 234, 0.08) 0%, transparent 55%);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-module-title {
|
||||
font-size: 0.78rem;
|
||||
letter-spacing: 0.14em;
|
||||
text-transform: uppercase;
|
||||
color: #bfffff;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-module-meta {
|
||||
font-size: 0.58rem;
|
||||
letter-spacing: 0.12em;
|
||||
color: rgba(126, 232, 234, 0.45);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-module-body {
|
||||
padding: 14px 16px 16px;
|
||||
}
|
||||
|
||||
/* —— 指标格 —— */
|
||||
body.exec-theme-matrix .exec-metric {
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.22);
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
box-shadow: inset 0 0 20px rgba(0, 255, 234, 0.03);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-metric-label {
|
||||
font-size: 0.58rem;
|
||||
letter-spacing: 0.14em;
|
||||
color: rgba(126, 232, 234, 0.5);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-metric-value {
|
||||
font-size: 0.84rem;
|
||||
color: #dff;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-metric-value--mono {
|
||||
font-size: 0.78rem;
|
||||
color: rgba(191, 255, 255, 0.88);
|
||||
}
|
||||
|
||||
/* —— 芯片 / 方向 / 盈亏色(保持语义,套霓虹) —— */
|
||||
body.exec-theme-matrix .exec-chip--neutral {
|
||||
border-color: rgba(0, 255, 234, 0.25);
|
||||
color: rgba(126, 232, 234, 0.75);
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-chip--ok {
|
||||
color: #5fffd0;
|
||||
border-color: rgba(0, 255, 200, 0.45);
|
||||
background: rgba(0, 40, 32, 0.5);
|
||||
text-shadow: 0 0 10px rgba(0, 255, 200, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-chip--warn {
|
||||
color: #ffe066;
|
||||
border-color: rgba(255, 200, 80, 0.45);
|
||||
background: rgba(40, 28, 0, 0.45);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-chip--live {
|
||||
color: #ff7ab8;
|
||||
border-color: rgba(255, 46, 166, 0.5);
|
||||
background: rgba(36, 0, 24, 0.45);
|
||||
text-shadow: 0 0 10px rgba(255, 46, 166, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-dir--long {
|
||||
color: #5fffd0;
|
||||
border-color: rgba(0, 255, 200, 0.45);
|
||||
background: rgba(0, 32, 28, 0.55);
|
||||
text-shadow: 0 0 8px rgba(0, 255, 200, 0.3);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-dir--short {
|
||||
color: #ff7ab8;
|
||||
border-color: rgba(255, 46, 166, 0.45);
|
||||
background: rgba(36, 0, 22, 0.55);
|
||||
text-shadow: 0 0 8px rgba(255, 46, 166, 0.3);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-pnl--profit {
|
||||
color: #5fffd0;
|
||||
text-shadow: 0 0 12px rgba(0, 255, 200, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-pnl--loss {
|
||||
color: #ff6eb0;
|
||||
text-shadow: 0 0 12px rgba(255, 46, 166, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-pnl--flat {
|
||||
color: rgba(126, 232, 234, 0.55);
|
||||
}
|
||||
|
||||
/* —— 表格 —— */
|
||||
body.exec-theme-matrix .exec-table-scroll {
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.28);
|
||||
background: rgba(0, 0, 0, 0.55);
|
||||
box-shadow: inset 0 0 32px rgba(0, 255, 234, 0.04);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-table th {
|
||||
font-size: 0.58rem;
|
||||
letter-spacing: 0.14em;
|
||||
color: rgba(0, 255, 234, 0.55);
|
||||
border-bottom: 1px solid rgba(0, 255, 234, 0.25);
|
||||
background: rgba(0, 20, 22, 0.85);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-table td {
|
||||
color: rgba(191, 255, 255, 0.78);
|
||||
border-bottom: 1px solid rgba(0, 255, 234, 0.08);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-table tbody tr:hover {
|
||||
background: rgba(0, 255, 234, 0.06);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-table .exec-mono {
|
||||
color: #dff;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-muted {
|
||||
color: rgba(126, 232, 234, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-cell-status--ok {
|
||||
color: #5fffd0;
|
||||
text-shadow: 0 0 8px rgba(0, 255, 200, 0.3);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-cell-status--skip {
|
||||
color: rgba(126, 232, 234, 0.45);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-cell-status--err {
|
||||
color: #ff6eb0;
|
||||
text-shadow: 0 0 8px rgba(255, 46, 166, 0.35);
|
||||
}
|
||||
|
||||
/* —— 按钮 —— */
|
||||
body.exec-theme-matrix .exec-btn {
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.45);
|
||||
background: rgba(0, 24, 26, 0.85);
|
||||
color: #bfffff;
|
||||
box-shadow: 0 0 14px rgba(0, 255, 234, 0.12);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
font-size: 0.68rem;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-btn:hover {
|
||||
border-color: rgba(255, 46, 166, 0.55);
|
||||
color: #ffd0ec;
|
||||
background: rgba(32, 0, 22, 0.75);
|
||||
box-shadow: 0 0 20px rgba(255, 46, 166, 0.2);
|
||||
transform: none;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-btn--primary {
|
||||
border-color: rgba(255, 46, 166, 0.55);
|
||||
background: linear-gradient(180deg, #ff5ec8 0%, #c21e6e 100%);
|
||||
color: #fff;
|
||||
text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 0 24px rgba(255, 46, 166, 0.25);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-btn--primary:hover {
|
||||
background: linear-gradient(180deg, #ff7ad4 0%, #d02878 100%);
|
||||
border-color: rgba(255, 46, 166, 0.75);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-btn--sm {
|
||||
border-radius: 2px;
|
||||
font-size: 0.62rem;
|
||||
padding: 4px 9px;
|
||||
}
|
||||
|
||||
/* —— 说明文字 —— */
|
||||
body.exec-theme-matrix .exec-prose {
|
||||
color: rgba(126, 232, 234, 0.5);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-prose code {
|
||||
border-color: rgba(0, 255, 234, 0.25);
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
color: rgba(191, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-table-hint {
|
||||
color: rgba(126, 232, 234, 0.45);
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-table-hint code {
|
||||
font-family: inherit;
|
||||
color: #7ee8ea;
|
||||
border: 1px solid rgba(0, 255, 234, 0.3);
|
||||
padding: 1px 5px;
|
||||
border-radius: 2px;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-sig-export-label {
|
||||
color: rgba(126, 232, 234, 0.65);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-sig-export-label input {
|
||||
accent-color: #ff2ea6;
|
||||
}
|
||||
|
||||
/* —— 弹窗 —— */
|
||||
body.exec-theme-matrix .exec-modal__backdrop {
|
||||
background: rgba(0, 0, 0, 0.82);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-modal__card {
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.4);
|
||||
background: linear-gradient(180deg, rgba(0, 22, 24, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
|
||||
box-shadow: 0 0 48px rgba(0, 255, 234, 0.15);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-modal__title {
|
||||
color: #bfffff;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
/* —— 滚动条 —— */
|
||||
body.exec-theme-matrix .exec-tab-panel {
|
||||
scrollbar-color: rgba(0, 255, 234, 0.25) transparent;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-tab-panel::-webkit-scrollbar-thumb {
|
||||
background: rgba(0, 255, 234, 0.2);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-shell ::selection {
|
||||
background: rgba(255, 46, 166, 0.35);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* —— 登录页 —— */
|
||||
body.exec-theme-matrix.exec-login-body .exec-mark {
|
||||
display: grid !important;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
place-items: center;
|
||||
font-size: 0.62rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.1em;
|
||||
color: #000;
|
||||
background: linear-gradient(145deg, #00ffe0 0%, #00b8a8 100%);
|
||||
border: 1px solid rgba(0, 255, 234, 0.8);
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 0 20px rgba(0, 255, 234, 0.35);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix.exec-login-body .exec-login-card {
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.4);
|
||||
background: linear-gradient(165deg, rgba(0, 18, 20, 0.95) 0%, rgba(0, 0, 0, 0.97) 100%);
|
||||
box-shadow: 0 0 40px rgba(0, 255, 234, 0.12);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-login-card::before {
|
||||
height: 3px;
|
||||
background: linear-gradient(90deg, transparent, #00ffe0, #ff2ea6, #00ffe0, transparent);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-login-kicker {
|
||||
color: rgba(0, 255, 234, 0.55);
|
||||
letter-spacing: 0.24em;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-login-title {
|
||||
font-family: "Share Tech Mono", "JetBrains Mono", monospace;
|
||||
color: #9ff;
|
||||
text-shadow: 0 0 20px rgba(0, 255, 234, 0.45);
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-login-desc {
|
||||
color: rgba(126, 232, 234, 0.55);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-label {
|
||||
color: rgba(0, 255, 234, 0.45);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-input {
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(0, 255, 234, 0.35);
|
||||
background: #000;
|
||||
color: #dff;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-input:focus {
|
||||
border-color: rgba(255, 46, 166, 0.55);
|
||||
box-shadow: 0 0 0 2px rgba(255, 46, 166, 0.15);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-error {
|
||||
color: #ff8ec4;
|
||||
text-shadow: 0 0 10px rgba(255, 46, 166, 0.3);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-sig-persist {
|
||||
border-radius: 2px;
|
||||
border-color: rgba(0, 255, 234, 0.25);
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
color: rgba(191, 255, 255, 0.75);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-sig-persist--ok {
|
||||
border-color: rgba(0, 255, 200, 0.45);
|
||||
background: rgba(0, 32, 28, 0.55);
|
||||
color: #5fffd0;
|
||||
text-shadow: 0 0 10px rgba(0, 255, 200, 0.2);
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-sig-persist--warn {
|
||||
border-color: rgba(255, 46, 166, 0.5);
|
||||
background: rgba(40, 0, 28, 0.5);
|
||||
color: #ffb8e0;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
body.exec-theme-matrix .exec-radar__sweep,
|
||||
body.exec-theme-matrix .exec-tx-dot {
|
||||
animation: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
body.exec-theme-matrix .exec-terminal-head {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-terminal-actions {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
body.exec-theme-matrix .exec-title-terminal {
|
||||
font-size: clamp(1.05rem, 6vw, 1.65rem);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user