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.
255 lines
3.6 KiB
255 lines
3.6 KiB
|
|
body { |
|
font-size: 14px; |
|
margin: 0; |
|
overflow: hidden; |
|
color: #333; |
|
} |
|
|
|
p { |
|
margin: 0.5em 0; |
|
} |
|
|
|
img { |
|
max-width: 100%; |
|
} |
|
|
|
svg+span { |
|
margin-left: .5em; |
|
} |
|
|
|
.none { |
|
display: none; |
|
} |
|
|
|
.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, |
|
.flex-inline.gap { |
|
gap: 0 8px; |
|
} |
|
|
|
.flex.gap-10 { |
|
gap: 0 10px; |
|
} |
|
|
|
.flex.gap-16 { |
|
gap: 0 16px; |
|
} |
|
|
|
.flex.gap-20 { |
|
gap: 0 20px; |
|
} |
|
|
|
.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; |
|
} |
|
|
|
.container { |
|
padding: 16px; |
|
} |
|
|
|
.pointer:hover { |
|
cursor: pointer; |
|
} |
|
|
|
.relative { |
|
position: relative; |
|
} |
|
|
|
.m-1 { |
|
margin: 1px; |
|
} |
|
.ml-4 { |
|
margin-left: 4px; |
|
} |
|
|
|
.ml-8 { |
|
margin-left: 8px; |
|
} |
|
|
|
.ml-10 { |
|
margin-left: 10px; |
|
} |
|
|
|
.ml-16 { |
|
margin-left: 16px; |
|
} |
|
|
|
.mr-4 { |
|
margin-right: 4px; |
|
} |
|
|
|
.mr-8 { |
|
margin-right: 8px; |
|
} |
|
|
|
.mr-10 { |
|
margin-right: 10px; |
|
} |
|
.mr-18 { |
|
margin-right: 18px; |
|
} |
|
.mr-20 { |
|
margin-right: 20px; |
|
} |
|
|
|
.mt-4 { |
|
margin-top: 4px; |
|
} |
|
.mt-8 { |
|
margin-top: 8px; |
|
} |
|
|
|
.mt-10 { |
|
margin-top: 10px; |
|
} |
|
.mt-16 { |
|
margin-top: 16px; |
|
} |
|
.mt-20 { |
|
margin-top: 20px; |
|
} |
|
|
|
.mt-30 { |
|
margin-top: 30px; |
|
} |
|
|
|
.mt-40 { |
|
margin-top: 40px; |
|
} |
|
|
|
.mb-4 { |
|
margin-bottom: 4px; |
|
} |
|
.mb-8 { |
|
margin-bottom: 8px; |
|
} |
|
|
|
.mb-10 { |
|
margin-bottom: 10px; |
|
} |
|
|
|
.mb-16 { |
|
margin-bottom: 16px; |
|
} |
|
|
|
.mb-20 { |
|
margin-bottom: 20px; |
|
} |
|
|
|
.mb-40 { |
|
margin-bottom: 40px; |
|
} |
|
|
|
.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%); |
|
} |
|
} |
|
|
|
.col { |
|
display: flex; |
|
width: 280px; |
|
&.short { |
|
width: 140px; |
|
} |
|
label { |
|
margin-right: 18px; |
|
} |
|
span { |
|
color: #333; |
|
} |
|
} |