595 lines
12 KiB
CSS
595 lines
12 KiB
CSS
:root {
|
|
color-scheme: light;
|
|
color: #171614;
|
|
background: #f6f4ef;
|
|
font-family: "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
|
|
|
|
--bg-base: #f6f4ef;
|
|
--bg-soft: #fbfaf7;
|
|
--surface: rgba(255, 255, 255, 0.82);
|
|
--surface-strong: #fffcf7;
|
|
--surface-muted: #f3f0ea;
|
|
--border-light: rgba(82, 74, 63, 0.08);
|
|
--border-base: rgba(82, 74, 63, 0.12);
|
|
--border-strong: rgba(82, 74, 63, 0.18);
|
|
--text-primary: #171614;
|
|
--text-secondary: #6d675f;
|
|
--text-tertiary: #948d83;
|
|
--accent: #3e5f7c;
|
|
--accent-strong: #2f4c66;
|
|
--accent-soft: rgba(62, 95, 124, 0.12);
|
|
--danger-soft: rgba(183, 80, 70, 0.1);
|
|
--shadow-soft: 0 10px 28px rgba(31, 24, 18, 0.05);
|
|
--shadow-card: 0 18px 48px rgba(31, 24, 18, 0.07);
|
|
--shadow-hover: 0 20px 40px rgba(31, 24, 18, 0.1);
|
|
|
|
--el-color-primary: var(--accent);
|
|
--el-color-primary-light-3: #6683a0;
|
|
--el-color-primary-light-5: #8da4ba;
|
|
--el-color-primary-light-7: #bcc9d7;
|
|
--el-color-primary-light-8: #d8e0e8;
|
|
--el-color-primary-light-9: #edf2f6;
|
|
--el-color-primary-dark-2: var(--accent-strong);
|
|
--el-text-color-primary: var(--text-primary);
|
|
--el-text-color-regular: var(--text-secondary);
|
|
--el-text-color-secondary: var(--text-tertiary);
|
|
--el-border-color: var(--border-base);
|
|
--el-border-color-light: var(--border-light);
|
|
--el-border-radius-base: 10px;
|
|
--el-bg-color: transparent;
|
|
--el-fill-color-blank: rgba(255, 255, 255, 0.72);
|
|
--el-fill-color-light: rgba(244, 241, 236, 0.94);
|
|
--el-mask-color: rgba(17, 19, 17, 0.35);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*::selection {
|
|
color: #ffffff;
|
|
background: rgba(62, 95, 124, 0.75);
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
margin: 0;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: var(--text-primary);
|
|
background:
|
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0) 32%),
|
|
radial-gradient(circle at top right, rgba(62, 95, 124, 0.08) 0, rgba(62, 95, 124, 0) 28%),
|
|
linear-gradient(180deg, #faf8f3 0%, #f6f4ef 42%, #f1eee9 100%);
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body,
|
|
button,
|
|
input,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button:focus-visible,
|
|
input:focus-visible,
|
|
textarea:focus-visible,
|
|
select:focus-visible {
|
|
outline: none;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.page-header > div:first-child {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.page-title {
|
|
margin: 0;
|
|
font-size: clamp(28px, 3vw, 38px);
|
|
font-weight: 700;
|
|
letter-spacing: -0.04em;
|
|
line-height: 1.06;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.page-subtitle {
|
|
max-width: 760px;
|
|
margin: 12px 0 0;
|
|
color: var(--text-secondary);
|
|
font-size: 14px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.surface-card {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border-base);
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 252, 247, 0.84) 100%);
|
|
box-shadow: var(--shadow-soft);
|
|
backdrop-filter: blur(14px);
|
|
transition:
|
|
transform 0.22s ease,
|
|
box-shadow 0.22s ease,
|
|
border-color 0.22s ease;
|
|
}
|
|
|
|
.surface-card::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0 0 auto;
|
|
height: 1px;
|
|
background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
|
|
pointer-events: none;
|
|
}
|
|
|
|
.surface-card:hover {
|
|
transform: translateY(-2px);
|
|
border-color: var(--border-strong);
|
|
box-shadow: var(--shadow-card);
|
|
}
|
|
|
|
.surface-card .el-card__body {
|
|
padding: 22px;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
|
|
gap: 16px;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.stat-card {
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding: 18px 18px 16px;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--border-light);
|
|
background:
|
|
radial-gradient(circle at top right, rgba(62, 95, 124, 0.08) 0, rgba(62, 95, 124, 0) 48%),
|
|
linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(250, 248, 244, 0.92) 100%);
|
|
box-shadow: 0 12px 26px rgba(31, 24, 18, 0.05);
|
|
transition:
|
|
transform 0.22s ease,
|
|
box-shadow 0.22s ease,
|
|
border-color 0.22s ease;
|
|
}
|
|
|
|
.stat-card::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 14px;
|
|
right: 14px;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: rgba(62, 95, 124, 0.12);
|
|
box-shadow: 0 0 0 6px rgba(62, 95, 124, 0.05);
|
|
}
|
|
|
|
.stat-card:hover {
|
|
transform: translateY(-3px);
|
|
border-color: var(--border-base);
|
|
box-shadow: 0 18px 32px rgba(31, 24, 18, 0.08);
|
|
}
|
|
|
|
.stat-card__label {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-tertiary);
|
|
}
|
|
|
|
.stat-card__value {
|
|
margin-top: 14px;
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
letter-spacing: -0.05em;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.stat-card__hint {
|
|
margin-top: 8px;
|
|
color: var(--text-secondary);
|
|
font-size: 13px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.section-title {
|
|
margin: 0 0 6px;
|
|
font-size: 17px;
|
|
font-weight: 650;
|
|
letter-spacing: -0.02em;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.section-subtitle {
|
|
margin: 0 0 18px;
|
|
color: var(--text-secondary);
|
|
font-size: 13px;
|
|
line-height: 1.75;
|
|
}
|
|
|
|
.token-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.token-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 7px 11px;
|
|
border-radius: 999px;
|
|
background: var(--accent-soft);
|
|
color: var(--accent);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.monospace {
|
|
font-family: "SF Mono", "Cascadia Code", "JetBrains Mono", "Consolas", monospace;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.table-scroll-shell {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.el-card {
|
|
--el-card-border-color: transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
.el-button {
|
|
height: 38px;
|
|
padding: 0 15px;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
letter-spacing: -0.01em;
|
|
transition:
|
|
transform 0.18s ease,
|
|
box-shadow 0.18s ease,
|
|
border-color 0.18s ease,
|
|
background-color 0.18s ease,
|
|
color 0.18s ease;
|
|
}
|
|
|
|
.el-button.el-button--default:not(.is-text):not(.is-link) {
|
|
border-color: rgba(91, 110, 129, 0.16);
|
|
background: rgba(255, 255, 255, 0.86);
|
|
color: #22303e;
|
|
}
|
|
|
|
.el-button:not(.is-disabled):hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 10px 20px rgba(31, 24, 18, 0.08);
|
|
}
|
|
|
|
.el-button:not(.is-disabled):active {
|
|
transform: translateY(0);
|
|
box-shadow: 0 6px 14px rgba(31, 24, 18, 0.06);
|
|
}
|
|
|
|
.el-button.el-button--primary {
|
|
background: linear-gradient(180deg, #4a6984 0%, #3e5f7c 100%) !important;
|
|
border-color: #35516a !important;
|
|
color: #f7fafc !important;
|
|
box-shadow: 0 12px 22px rgba(62, 95, 124, 0.2);
|
|
}
|
|
|
|
.el-button.el-button--primary:not(.is-disabled):hover {
|
|
background: linear-gradient(180deg, #3d5b75 0%, #2f4c66 100%) !important;
|
|
border-color: #2f4c66 !important;
|
|
color: #f7fafc !important;
|
|
}
|
|
|
|
.el-button.el-button--primary:not(.is-disabled):active {
|
|
background: #2f4c66 !important;
|
|
border-color: #29445c !important;
|
|
}
|
|
|
|
.el-button.is-plain:not(.el-button--danger):not(.el-button--primary) {
|
|
background: rgba(62, 95, 124, 0.08) !important;
|
|
border-color: rgba(62, 95, 124, 0.18) !important;
|
|
color: #35536d !important;
|
|
}
|
|
|
|
.el-button.el-button--danger.is-plain {
|
|
background: rgba(183, 80, 70, 0.08) !important;
|
|
border-color: rgba(183, 80, 70, 0.22) !important;
|
|
color: #a1473d !important;
|
|
}
|
|
|
|
.el-button.is-disabled,
|
|
.el-button.is-disabled:hover,
|
|
.el-button.is-disabled:active {
|
|
background: rgba(233, 237, 241, 0.92) !important;
|
|
border-color: rgba(91, 110, 129, 0.12) !important;
|
|
color: #9aa5b1 !important;
|
|
box-shadow: none !important;
|
|
transform: none !important;
|
|
}
|
|
|
|
.el-button.is-text {
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.el-input,
|
|
.el-select,
|
|
.el-date-editor,
|
|
.el-input-number {
|
|
width: 100%;
|
|
}
|
|
|
|
.el-input__wrapper,
|
|
.el-select__wrapper,
|
|
.el-textarea__inner,
|
|
.el-input-number,
|
|
.el-input-number__decrease,
|
|
.el-input-number__increase {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.el-input__wrapper,
|
|
.el-select__wrapper,
|
|
.el-textarea__inner,
|
|
.el-input-number {
|
|
background: rgba(255, 255, 255, 0.72);
|
|
box-shadow: inset 0 0 0 1px rgba(82, 74, 63, 0.1) !important;
|
|
transition:
|
|
box-shadow 0.18s ease,
|
|
background-color 0.18s ease,
|
|
transform 0.18s ease;
|
|
}
|
|
|
|
.el-input__wrapper:hover,
|
|
.el-select__wrapper:hover,
|
|
.el-textarea__inner:hover,
|
|
.el-input-number:hover {
|
|
box-shadow: inset 0 0 0 1px rgba(82, 74, 63, 0.16) !important;
|
|
}
|
|
|
|
.el-input__wrapper.is-focus,
|
|
.el-select__wrapper.is-focused,
|
|
.el-textarea__inner:focus,
|
|
.el-input-number:focus-within {
|
|
background: rgba(255, 255, 255, 0.92);
|
|
box-shadow:
|
|
inset 0 0 0 1px rgba(62, 95, 124, 0.34),
|
|
0 0 0 4px rgba(62, 95, 124, 0.08) !important;
|
|
}
|
|
|
|
.el-textarea__inner {
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.el-form-item {
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.el-form-item__label {
|
|
padding-bottom: 8px;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-primary) !important;
|
|
}
|
|
|
|
.el-switch {
|
|
--el-switch-on-color: var(--accent);
|
|
--el-switch-off-color: rgba(120, 114, 105, 0.28);
|
|
}
|
|
|
|
.el-tag {
|
|
border: none;
|
|
border-radius: 999px;
|
|
height: 28px;
|
|
padding: 0 10px;
|
|
font-weight: 600;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.el-tag--success {
|
|
background: rgba(40, 132, 95, 0.12);
|
|
color: #1d6d53;
|
|
}
|
|
|
|
.el-tag--warning {
|
|
background: rgba(189, 131, 37, 0.12);
|
|
color: #8a6221;
|
|
}
|
|
|
|
.el-tag--danger {
|
|
background: rgba(183, 80, 70, 0.12);
|
|
color: #9c4036;
|
|
}
|
|
|
|
.el-tag--info,
|
|
.el-tag.el-tag--primary {
|
|
background: rgba(101, 95, 86, 0.12);
|
|
color: #5d554d;
|
|
}
|
|
|
|
.el-table {
|
|
--el-table-border-color: transparent;
|
|
--el-table-row-hover-bg-color: rgba(62, 95, 124, 0.05);
|
|
--el-table-current-row-bg-color: rgba(62, 95, 124, 0.07);
|
|
--el-table-header-bg-color: transparent;
|
|
--el-table-bg-color: transparent;
|
|
--el-fill-color-blank: transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
.el-table::before,
|
|
.el-table__inner-wrapper::before {
|
|
display: none;
|
|
}
|
|
|
|
.el-table th.el-table__cell {
|
|
padding: 4px 0 12px;
|
|
border-bottom: 1px solid var(--border-base);
|
|
background: transparent;
|
|
}
|
|
|
|
.el-table th.el-table__cell > .cell {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-tertiary);
|
|
}
|
|
|
|
.el-table td.el-table__cell {
|
|
padding: 16px 0;
|
|
border-bottom: 1px solid rgba(82, 74, 63, 0.06);
|
|
background: transparent;
|
|
}
|
|
|
|
.el-table .cell {
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.el-table tr {
|
|
background: transparent;
|
|
}
|
|
|
|
.el-descriptions {
|
|
--el-descriptions-table-border: 1px solid rgba(82, 74, 63, 0.08);
|
|
}
|
|
|
|
.el-descriptions__body .el-descriptions__table {
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.el-descriptions__body .el-descriptions__label.el-descriptions__cell.is-bordered-label {
|
|
background: var(--surface-muted);
|
|
color: var(--text-tertiary);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.el-descriptions__body .el-descriptions__content.el-descriptions__cell.is-bordered-content {
|
|
background: rgba(255, 255, 255, 0.72);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.el-dialog {
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border-base);
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(252, 249, 244, 0.94));
|
|
box-shadow: var(--shadow-hover);
|
|
}
|
|
|
|
.el-dialog__header {
|
|
margin: 0;
|
|
padding: 22px 24px 10px;
|
|
}
|
|
|
|
.el-dialog__title {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
letter-spacing: -0.02em;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.el-dialog__body {
|
|
padding: 12px 24px 6px;
|
|
}
|
|
|
|
.el-dialog__footer {
|
|
padding: 12px 24px 22px;
|
|
}
|
|
|
|
.el-empty__description,
|
|
.el-result__subtitle,
|
|
.el-empty__description p {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
.stats-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.page-header {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 14px;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: clamp(22px, 7vw, 28px);
|
|
line-height: 1.08;
|
|
}
|
|
|
|
.stats-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.surface-card .el-card__body {
|
|
padding: 18px;
|
|
}
|
|
|
|
.page-subtitle {
|
|
margin-top: 10px;
|
|
font-size: 12px;
|
|
line-height: 1.62;
|
|
}
|
|
|
|
.el-dialog {
|
|
width: min(100vw - 20px, 560px) !important;
|
|
margin: 6vh auto 0 !important;
|
|
}
|
|
|
|
.el-dialog__header {
|
|
padding: 18px 18px 8px;
|
|
}
|
|
|
|
.el-dialog__body {
|
|
padding: 10px 18px 4px;
|
|
}
|
|
|
|
.el-dialog__footer {
|
|
padding: 12px 18px 18px;
|
|
}
|
|
|
|
.el-space {
|
|
width: 100%;
|
|
}
|
|
|
|
.el-space__item {
|
|
max-width: 100%;
|
|
}
|
|
}
|