jxdnsong
2022-10-25 bf5ba56e8a82f0ef699f2eae413d0dc2c4e4f67d
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<template>
    <div class="container">
        <div class="title">
            <i></i>学校概况
        </div>
        <img src="/zhjg/img/home/school.png" alt />
        <ul>
            <li>
                占地面积:
                <span>1500</span>亩
            </li>
            <li>
                年度用电:
                <span>2389.34</span>KW·h
            </li>
            <li>
                用电同比:
                <span>153.7%</span>↓
            </li>
            <li>
                师生人数:
                <span>50274</span>人
            </li>
            <li>
                管网长度:
                <span>2910</span>KM
            </li>
            <li>
                物联设备:
                <span>4000</span>台
            </li>
            <li>
                管井数量:
                <span>830</span>台
            </li>
        </ul>
    </div>
</template>
 
<script>
export default {
 
}
</script>
 
<style lang="scss" scoped>
.container {
    position: relative;
    width: 400px;
    height: 100%;
    background: url(/zhjg/img/home/juxing2.png);
    background-size: 100% 100%;
    .title {
        position: absolute;
        display: flex;
        top: 16px;
        left: 16px;
        width: 78px;
        height: 18px;
        color: #ffffff;
        font-size: 16px;
        font-weight: 400;
        vertical-align: middle;
        justify-content: space-between;
        align-items: center;
        i {
            display: inline-block;
            width: 3px;
            height: 16px;
            background-color: #28f2ff;
        }
    }
    img {
        position: absolute;
        top: 53px;
        left: 26px;
        border: 1px solid #28f2ff;
        width: 41%;
        height: 65%;
    }
    ul {
        position: absolute;
        top: 44px;
        left: 204px;
        font-size: 14px;
        color: #e9f2f3;
        font-weight: 400;
        line-height: 24px;
 
        span {
            font-size: 16px;
            color: #28f2ff;
            margin-right: 7px;
        }
    }
}
</style>