You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
568 lines
6.5 KiB
568 lines
6.5 KiB
// @font-face { |
|
// font-family: 'SourceHanSansCN'; |
|
// src: url('/fonts/SourceHanSansCN-Normal.ttf'); |
|
// } |
|
|
|
:root { |
|
--header-height: 9.26vh; |
|
--aside-width: 15.6vw; |
|
--multiple-tabs-height: 50px; |
|
--primary-color: #162582; |
|
--success-color: #064D00; |
|
--danger-color: #F60000; |
|
--warning-color: #D05200; |
|
} |
|
|
|
body { |
|
margin: 0; |
|
overflow: hidden; |
|
color: #333; |
|
font-family: SourceHanSansCN; |
|
line-height: 1.4; |
|
width: 100% !important; |
|
} |
|
|
|
h2 { |
|
color: var(--primary-color); |
|
font-size: 24px; |
|
font-weight: 500; |
|
} |
|
|
|
h3 { |
|
color: var(--primary-color); |
|
font-size: 20px; |
|
font-weight: 500; |
|
margin: 20px 0; |
|
} |
|
|
|
h4 { |
|
font-size: 18px; |
|
font-weight: 500; |
|
} |
|
|
|
h5 { |
|
color: var(--primary-color); |
|
font-size: 16px; |
|
font-weight: 500; |
|
} |
|
|
|
p { |
|
margin: 0.5em 0; |
|
} |
|
|
|
img { |
|
max-width: 100%; |
|
} |
|
|
|
svg+span { |
|
margin-left: .5em; |
|
} |
|
|
|
.none { |
|
display: none; |
|
} |
|
|
|
.inline-block { |
|
display: inline-block; |
|
} |
|
|
|
.flex { |
|
display: flex; |
|
} |
|
|
|
.flex-inline { |
|
display: inline-flex; |
|
} |
|
|
|
.flex.v-center, |
|
.flex-inline.v-center { |
|
align-items: center; |
|
} |
|
|
|
.flex.center, |
|
.flex-inline.center { |
|
justify-content: center; |
|
} |
|
|
|
.flex.between, |
|
.flex-inline.between { |
|
justify-content: space-between; |
|
} |
|
|
|
.flex.end, |
|
.flex-inline.end { |
|
justify-content: flex-end; |
|
} |
|
|
|
.flex.wrap, |
|
.flex-inline.wrap, |
|
.flex-wrap { |
|
flex-wrap: wrap; |
|
} |
|
|
|
.flex.max-content, |
|
.flex-inline.max-content { |
|
width: max-content; |
|
} |
|
|
|
.flex.column, |
|
.flex-inline.column { |
|
flex-direction: column; |
|
} |
|
|
|
.flex.gap-4, |
|
.flex-inline.gap-4 { |
|
>* { |
|
margin-right: 4px; |
|
|
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
} |
|
|
|
.flex.gap, |
|
.flex-inline.gap { |
|
>* { |
|
margin-right: 8px; |
|
|
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
} |
|
|
|
.flex.gap-10 { |
|
>* { |
|
margin-right: 10px; |
|
|
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
} |
|
|
|
.flex.gap-12 { |
|
>* { |
|
margin-right: 12px; |
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
} |
|
|
|
.flex.gap-16 { |
|
margin-right: 16px; |
|
|
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
|
|
.flex.gap-20 { |
|
margin-right: 20px; |
|
|
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
|
|
.text-small { |
|
font-size: 12px; |
|
} |
|
|
|
.text-center { |
|
text-align: center; |
|
} |
|
|
|
.text-right { |
|
text-align: right; |
|
} |
|
|
|
.text-nowrap { |
|
white-space: nowrap; |
|
text-overflow: ellipsis; |
|
overflow: hidden; |
|
} |
|
|
|
.text-wrap { |
|
white-space: pre-wrap; |
|
} |
|
|
|
.text-primary { |
|
color: var(--primary-color); |
|
} |
|
|
|
.text-danger { |
|
color: var(--danger-color); |
|
} |
|
|
|
.text-success { |
|
color: var(--success-color); |
|
} |
|
|
|
.text-warning { |
|
color: var(--warning-color); |
|
} |
|
|
|
.text-bold { |
|
font-weight: 700; |
|
} |
|
|
|
.container { |
|
padding: 20px; |
|
box-sizing: border-box; |
|
} |
|
|
|
.pointer:hover { |
|
cursor: pointer; |
|
} |
|
|
|
.relative { |
|
position: relative; |
|
} |
|
|
|
.pt-20 { |
|
padding-top: 20px; |
|
} |
|
|
|
.m-1 { |
|
margin: 1px; |
|
} |
|
|
|
.ml-2 { |
|
margin-left: 2px; |
|
} |
|
|
|
.ml-4 { |
|
margin-left: 4px; |
|
} |
|
|
|
.ml-8 { |
|
margin-left: 8px; |
|
} |
|
|
|
.ml-10 { |
|
margin-left: 10px; |
|
} |
|
|
|
.ml-16 { |
|
margin-left: 16px; |
|
} |
|
|
|
.ml-20 { |
|
margin-left: 20px; |
|
} |
|
|
|
.mr-4 { |
|
margin-right: 4px; |
|
} |
|
|
|
.mr-8 { |
|
margin-right: 8px; |
|
} |
|
|
|
.mr-10 { |
|
margin-right: 10px; |
|
} |
|
|
|
.mr-16 { |
|
margin-right: 16px; |
|
} |
|
|
|
.mr-18 { |
|
margin-right: 18px; |
|
} |
|
|
|
.mr-20 { |
|
margin-right: 20px; |
|
} |
|
|
|
.mr-40 { |
|
margin-right: 40px; |
|
} |
|
|
|
.mt-4 { |
|
margin-top: 4px; |
|
} |
|
|
|
.mt-8 { |
|
margin-top: 8px; |
|
} |
|
|
|
.mt-10 { |
|
margin-top: 10px; |
|
} |
|
|
|
|
|
.mt-16 { |
|
margin-top: 16px; |
|
} |
|
|
|
.mt-18 { |
|
margin-top: 18px; |
|
} |
|
|
|
.mt-20 { |
|
margin-top: 20px; |
|
} |
|
|
|
.mt-30 { |
|
margin-top: 30px; |
|
} |
|
|
|
.mt-40 { |
|
margin-top: 40px; |
|
} |
|
|
|
.mt-60 { |
|
margin-top: 60px; |
|
} |
|
|
|
.mb-0 { |
|
margin-bottom: 0; |
|
} |
|
|
|
.mb-3 { |
|
margin-bottom: 3px; |
|
} |
|
|
|
.mb-4 { |
|
margin-bottom: 4px; |
|
} |
|
|
|
.mb-8 { |
|
margin-bottom: 8px; |
|
} |
|
|
|
.mb-10 { |
|
margin-bottom: 10px; |
|
} |
|
|
|
.mb-12 { |
|
margin-bottom: 12px; |
|
} |
|
|
|
.mb-16 { |
|
margin-bottom: 16px; |
|
} |
|
|
|
.mb-18 { |
|
margin-bottom: 18px; |
|
} |
|
|
|
.mb-20 { |
|
margin-bottom: 20px; |
|
} |
|
|
|
.mb-25 { |
|
margin-bottom: 25px; |
|
} |
|
|
|
.mb-26 { |
|
margin-bottom: 26px; |
|
} |
|
|
|
.mb-32 { |
|
margin-bottom: 32px; |
|
} |
|
|
|
.mb-40 { |
|
margin-bottom: 40px; |
|
} |
|
|
|
.h100 { |
|
height: 100%; |
|
} |
|
|
|
.row { |
|
display: flex; |
|
flex-wrap: wrap; |
|
--label-width: 100px; |
|
|
|
.col { |
|
margin-bottom: 12px; |
|
} |
|
} |
|
|
|
.col { |
|
|
|
--gap-width: 10px; |
|
display: flex; |
|
|
|
|
|
&.col-4 { |
|
width: 16.6%; |
|
} |
|
|
|
&.col-6 { |
|
width: 25%; |
|
} |
|
|
|
&.col-8 { |
|
width: 33.3%; |
|
} |
|
|
|
&.col-12 { |
|
width: 50%; |
|
} |
|
|
|
&.col-18 { |
|
width: 75%; |
|
} |
|
|
|
&.col-24 { |
|
width: 100%; |
|
} |
|
|
|
label { |
|
width: var(--label-width); |
|
text-align: right; |
|
color: #999; |
|
margin-right: var(--gap-width); |
|
} |
|
|
|
>span { |
|
width: calc(100% - var(--label-width) - var(--gap-width)); |
|
color: #333; |
|
} |
|
|
|
&.short { |
|
width: 140px; |
|
} |
|
} |
|
|
|
.link { |
|
color: #004EFF; |
|
text-decoration: none; |
|
display: inline; |
|
padding: 12px; |
|
|
|
&:hover { |
|
font-weight: 700; |
|
} |
|
} |
|
|
|
.table-container { |
|
border: 1px solid rgba(198, 208, 251, 1); |
|
} |
|
|
|
.overlay { |
|
position: fixed; |
|
left: 0; |
|
top: 0; |
|
right: 0; |
|
bottom: 0; |
|
background-color: #4d515d80; |
|
-webkit-backdrop-filter: blur(10px); |
|
backdrop-filter: blur(10px); |
|
z-index: 9999999; |
|
} |
|
|
|
.position-center { |
|
position: absolute; |
|
top: 50%; |
|
left: 50%; |
|
transform: translate(-50%, -50%); |
|
} |
|
|
|
.h100 { |
|
height: 100%; |
|
} |
|
|
|
.h-280 { |
|
height: 280px; |
|
} |
|
|
|
.tips { |
|
p { |
|
line-height: 20px; |
|
margin: 0; |
|
color: #888; |
|
} |
|
} |
|
|
|
.content { |
|
padding: 16px; |
|
white-space: pre-wrap; |
|
} |
|
|
|
.step { |
|
--setp-background-color: #fff; |
|
--setp-font-color: #666; |
|
--setp-border-color: rgba(195, 202, 245, 1); |
|
--setp-font-size: 20px; |
|
height: 45px; |
|
padding-left: 6px; |
|
background-color: var(--setp-background-color); |
|
border: 1px solid var(--setp-border-color); |
|
box-sizing: border-box; |
|
color: var(--setp-font-color); |
|
position: relative; |
|
font-size: var(--setp-font-size); |
|
|
|
&:last-child::before { |
|
display: none; |
|
} |
|
|
|
&::before { |
|
display: block; |
|
content: ""; |
|
position: absolute; |
|
right: -17px; |
|
top: 50%; |
|
width: 31px; |
|
height: 31px; |
|
background-color: var(--setp-background-color); |
|
border-top: 1px solid var(--setp-border-color); |
|
border-right: 1px solid var(--setp-border-color); |
|
transform: translateY(-50%) rotate(45deg); |
|
z-index: 1; |
|
} |
|
|
|
&::after { |
|
display: block; |
|
content: ""; |
|
position: absolute; |
|
left: 26%; |
|
top: 50%; |
|
width: 16px; |
|
height: 16px; |
|
background-color: #fff; |
|
border: 1px solid var(--setp-border-color); |
|
border-radius: 50%; |
|
transform: translateY(-50%); |
|
} |
|
} |
|
|
|
.form-row { |
|
margin-bottom: 8px; |
|
font-size: 14px; |
|
|
|
label { |
|
width: 120px; |
|
line-height: 32px; |
|
padding-right: 12px; |
|
box-sizing: border-box; |
|
text-align: right; |
|
|
|
&+* { |
|
width: calc(100% - 126px); |
|
} |
|
} |
|
|
|
.btn-box { |
|
width: 70px; |
|
} |
|
|
|
.el-form-item { |
|
margin-bottom: 0; |
|
} |
|
} |
|
|
|
.query-box { |
|
> * { |
|
margin-right: 10px; |
|
margin-bottom: 10px; |
|
} |
|
} |