web
2025-03-26 98247bb0b4da9a322c97867262c1a76c53ace520
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<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>