|
@ -131,12 +131,14 @@ const nowLiquid = computed(() => { |
|
|
<style lang="scss" scoped> |
|
|
<style lang="scss" scoped> |
|
|
$input-height: 3rem; |
|
|
$input-height: 3rem; |
|
|
.home{ |
|
|
.home{ |
|
|
min-height: $main-container-height; |
|
|
|
|
|
|
|
|
width: 100%; |
|
|
|
|
|
height: 100%; |
|
|
} |
|
|
} |
|
|
.home-grid-container { |
|
|
.home-grid-container { |
|
|
|
|
|
width: 100%; |
|
|
display: grid; |
|
|
display: grid; |
|
|
grid-template-columns: repeat(3, 1fr); |
|
|
grid-template-columns: repeat(3, 1fr); |
|
|
gap: 1rem; |
|
|
|
|
|
|
|
|
gap: 20px; |
|
|
} |
|
|
} |
|
|
.home-merged-cell { |
|
|
.home-merged-cell { |
|
|
grid-column: 1 / 2; |
|
|
grid-column: 1 / 2; |
|
@ -146,16 +148,16 @@ const nowLiquid = computed(() => { |
|
|
display: grid; |
|
|
display: grid; |
|
|
grid-template-columns: repeat(2, 1fr); |
|
|
grid-template-columns: repeat(2, 1fr); |
|
|
grid-template-rows: repeat(2, auto); |
|
|
grid-template-rows: repeat(2, auto); |
|
|
gap:.5rem; |
|
|
|
|
|
|
|
|
gap: 20px; |
|
|
.card { |
|
|
.card { |
|
|
text-align: center; |
|
|
text-align: center; |
|
|
height: 41.5vh; |
|
|
|
|
|
|
|
|
height: 40vh; |
|
|
width: 30.5vw; |
|
|
width: 30.5vw; |
|
|
border: 1px solid rgb(225, 225, 225); |
|
|
border: 1px solid rgb(225, 225, 225); |
|
|
position: relative; |
|
|
position: relative; |
|
|
border-radius: 10px 10px 10px 10px; |
|
|
border-radius: 10px 10px 10px 10px; |
|
|
background: #FFFFFF; |
|
|
background: #FFFFFF; |
|
|
background: $gradient-color; |
|
|
|
|
|
|
|
|
background: linear-gradient(180deg, rgba(147, 203, 255,1) -190%, #FFFFFF 24%); |
|
|
.title-line{ |
|
|
.title-line{ |
|
|
height: 1vw; |
|
|
height: 1vw; |
|
|
background-color: #b3d9ff; |
|
|
background-color: #b3d9ff; |
|
@ -188,10 +190,11 @@ const nowLiquid = computed(() => { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.home-right{ |
|
|
.home-right{ |
|
|
width: 36vw; |
|
|
|
|
|
background: $gradient-color; |
|
|
|
|
|
|
|
|
width: 32.8vw; |
|
|
|
|
|
background: linear-gradient(180deg, rgba(147, 203, 255,1) -190%, #FFFFFF 24%); |
|
|
position: relative; |
|
|
position: relative; |
|
|
border-radius: 10px |
|
|
|
|
|
|
|
|
border-radius: 10px; |
|
|
|
|
|
box-shadow: 0 1px 5px 0 rgba(9, 39, 62, 0.15); |
|
|
} |
|
|
} |
|
|
.el-button { |
|
|
.el-button { |
|
|
background-color: #2892F3 !important; |
|
|
background-color: #2892F3 !important; |
|
|