<template>
|
<div class="container">
|
<div class="t">请选择要进入的系统</div>
|
<div class="list">
|
<router-link to="/temp" class="item">水温监测系统</router-link>
|
<router-link to="/flow" class="item">生态流量监测系统</router-link>
|
</div>
|
</div>
|
</template>
|
|
<script setup>
|
|
</script>
|
|
<style scoped lang="scss">
|
.container{
|
width: 100%;
|
height: 100%;
|
background: url("@/assets/images/screen_home_bg.png") no-repeat;
|
background-size: cover;
|
.t{
|
height: 100px;
|
line-height: 100px;
|
font-size: 63px;
|
color: #2F97CC;
|
text-align: center;
|
}
|
.list{
|
width: 100%;
|
height: calc(100% - 100px);
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
gap: 30px;
|
background: url("@/assets/images/screen_home.png") no-repeat 0 50%;
|
background-size: 100%;
|
}
|
.item{
|
width: 44%;
|
height: 300px;
|
text-align: center;
|
line-height: 480px;
|
font-size: 44px;
|
letter-spacing: 3px;
|
color: #5DBDED;
|
border-radius: 10px;
|
font-weight: 700;
|
}
|
}
|
</style>
|