|
|
|
@ -102,32 +102,35 @@ export default { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
<style scoped> |
|
|
|
|
.query-form { |
|
|
|
|
margin-top: var(--space); |
|
|
|
|
margin-bottom: calc(var(--space) * 2); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.balance>div { |
|
|
|
|
background-color: rgba(22, 132, 252, 0.2); |
|
|
|
|
height: 80px; |
|
|
|
|
color: rgba(16, 16, 16, 1); |
|
|
|
|
font-size: 16px; |
|
|
|
|
text-align: left; |
|
|
|
|
font-family: SourceHanSansSC-medium; |
|
|
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
$space: 20px; |
|
|
|
|
|
|
|
|
|
.query-form { |
|
|
|
|
margin-top: $space; |
|
|
|
|
margin-bottom: #{$space * 2}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.balance>div>div:first-child { |
|
|
|
|
margin-bottom: 5px; |
|
|
|
|
} |
|
|
|
|
.balance { |
|
|
|
|
&>div { |
|
|
|
|
background-color: rgba(22, 132, 252, 0.2); |
|
|
|
|
height: 80px; |
|
|
|
|
color: rgba(16, 16, 16, 1); |
|
|
|
|
font-size: 16px; |
|
|
|
|
text-align: left; |
|
|
|
|
font-family: SourceHanSansSC-medium; |
|
|
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
|
&>div:first-child { |
|
|
|
|
margin-bottom: 5px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.balance>div:not(:first-child) { |
|
|
|
|
margin-left: 20px; |
|
|
|
|
&>div:not(:first-child) { |
|
|
|
|
margin-left: 20px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |