2023-07-24 10:05:07 +08:00
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
background-color: var(--color-bg-1);
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-15 00:44:03 +08:00
|
|
|
// flex
|
|
|
|
|
.flex-center {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-28 23:28:23 +08:00
|
|
|
.flex-content-end {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
// -- click-icon
|
2023-10-26 17:12:17 +08:00
|
|
|
.click-icon-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: var(--color-text-2);
|
|
|
|
|
background: var(--color-fill-2);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 1px solid transparent;
|
2024-08-06 00:01:27 +08:00
|
|
|
transition: background-color 0.15s cubic-bezier(0, 0, 1, 1);
|
2023-10-26 17:12:17 +08:00
|
|
|
|
2023-11-14 00:57:15 +08:00
|
|
|
&:hover {
|
|
|
|
|
background: var(--color-fill-3);
|
|
|
|
|
}
|
2023-10-26 17:12:17 +08:00
|
|
|
}
|
|
|
|
|
|
2024-09-29 10:20:45 +08:00
|
|
|
// -- icon-button
|
|
|
|
|
.icon-button {
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
// -- element
|
|
|
|
|
.split-line {
|
|
|
|
|
border-color: rgb(var(--gray-2));
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-17 18:50:18 +08:00
|
|
|
// 垂直 label
|
|
|
|
|
.vertical-form-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
color: var(--color-text-2);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
line-height: 1.5715;
|
|
|
|
|
white-space: normal;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-25 19:03:24 +08:00
|
|
|
.full {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-15 16:35:11 +08:00
|
|
|
.disabled {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
.usn {
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hide {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pointer {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-29 10:20:45 +08:00
|
|
|
.p0 {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.px0 {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.py0 {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.px2 {
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
padding-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.px4 {
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
padding-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pl4 {
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pr4 {
|
|
|
|
|
padding-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pt4 {
|
|
|
|
|
padding-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pb4 {
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.px4 {
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
padding-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.py4 {
|
|
|
|
|
padding-top: 4px;
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pl8 {
|
|
|
|
|
padding-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pr8 {
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pt8 {
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pb8 {
|
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-25 14:49:36 +08:00
|
|
|
.pb12 {
|
|
|
|
|
padding-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-29 10:20:45 +08:00
|
|
|
.px8 {
|
|
|
|
|
padding-left: 8px;
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.py8 {
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pl12 {
|
|
|
|
|
padding-left: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.px12 {
|
|
|
|
|
padding-left: 12px;
|
|
|
|
|
padding-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pl16 {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pr16 {
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pt16 {
|
|
|
|
|
padding-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pb16 {
|
|
|
|
|
padding-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.px16 {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.py16 {
|
|
|
|
|
padding-top: 16px;
|
|
|
|
|
padding-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-15 16:35:11 +08:00
|
|
|
.m0 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
.mx0 {
|
2023-12-15 16:35:11 +08:00
|
|
|
margin-left: 0;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my0 {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
2023-11-10 19:02:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx2 {
|
2023-12-15 16:35:11 +08:00
|
|
|
margin-left: 2px;
|
|
|
|
|
margin-right: 2px;
|
2023-11-10 19:02:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx4 {
|
2023-12-15 16:35:11 +08:00
|
|
|
margin-left: 4px;
|
|
|
|
|
margin-right: 4px;
|
2023-11-10 19:02:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml4 {
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-09 21:25:44 +08:00
|
|
|
.mr2 {
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
.mr4 {
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-09 21:25:44 +08:00
|
|
|
.mt2 {
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
.mt4 {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mb4 {
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx4 {
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my4 {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml8 {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr8 {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mt8 {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mb8 {
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx8 {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my8 {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-29 10:20:45 +08:00
|
|
|
.ml12 {
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
.ml16 {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr16 {
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mt16 {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mb16 {
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx16 {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my16 {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-05 09:11:54 +08:00
|
|
|
.fs12 {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fs13 {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fs14 {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fs15 {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fs16 {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-07 10:46:17 +08:00
|
|
|
.fs17 {
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fs18 {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fs19 {
|
|
|
|
|
font-size: 19px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fs20 {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-05 18:07:26 +08:00
|
|
|
.text-ellipsis {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-copy {
|
|
|
|
|
&:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
color: rgb(var(--arcoblue-6))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-08 19:27:44 +08:00
|
|
|
.copy-left, .copy-right {
|
2023-10-26 17:12:17 +08:00
|
|
|
color: rgb(var(--arcoblue-6));
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-08 19:27:44 +08:00
|
|
|
.copy-left {
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copy-right {
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-17 00:14:23 +08:00
|
|
|
.question-right {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
color: rgb(var(--gray-6));
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-13 10:28:35 +08:00
|
|
|
.span-green {
|
|
|
|
|
color: rgb(var(--green-6));
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-21 13:50:42 +08:00
|
|
|
.span-blue {
|
|
|
|
|
color: rgb(var(--arcoblue-6));
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-05 00:50:15 +08:00
|
|
|
.span-red {
|
|
|
|
|
color: rgb(var(--red-6));
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-14 00:09:20 +08:00
|
|
|
.table-cell-value {
|
|
|
|
|
color: var(--color-text-2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-cell-sub-value {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
color: var(--color-text-3);
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 19:02:38 +08:00
|
|
|
// -- 滚动条
|
2023-07-29 13:11:19 +08:00
|
|
|
#app {
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
-webkit-appearance: none;
|
2023-12-14 16:00:17 +08:00
|
|
|
width: 6px;
|
2023-12-14 19:17:25 +08:00
|
|
|
height: 6px;
|
2023-12-14 16:00:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2024-01-09 01:19:51 +08:00
|
|
|
background-color: var(--color-fill-1);
|
2024-08-05 09:11:54 +08:00
|
|
|
border-radius: 4px;
|
2023-07-29 13:11:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2023-12-14 16:00:17 +08:00
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background-clip: padding-box;
|
2024-08-05 09:11:54 +08:00
|
|
|
border-radius: 4px;
|
2024-01-09 01:19:51 +08:00
|
|
|
background-color: var(--color-fill-4);
|
2023-12-14 16:00:17 +08:00
|
|
|
|
2024-01-09 01:19:51 +08:00
|
|
|
//&:hover {
|
|
|
|
|
// background-color: var(--color-neutral-6);
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
|
display: none;
|
2023-07-29 13:11:19 +08:00
|
|
|
}
|