energy_label.vue
1.54 KB
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
<template>
<div class="top">
<div class="top-d">
<div class="top-d-w">
<label
class="lab-left"
style="font-weight: 800;
margin-left: 0.6vw;
font-size: 4.3vw;
"
>中国能效标识 </label
>
</div>
<div class="top-d-bottom">
<div>生产者名称:SEW-EURODRIVE GmbH & Co KG</div>
</div>
</div>
<div
style=" width: 13vw;
position: absolute;
top: 1vw;
left: 80vw;"
>
<img style="width: 100%;height: 100%;" src="../../assets/enery.png" alt=""/>
</div>
</div>
</template>
<script>
export default {
data() {
return {}
},
methods: {},
}
</script>
<style lang="less" scoped>
.top-d {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
margin: 1vh 0;
//border: 1px solid red;
.top-d-w {
display: flex;
height: 25%;
}
}
.lab-left {
text-align: center;
width: 31%;
font-weight: 600;
color: #ffff;
}
.top {
position: relative;
width: 95%;
height: 13vh;
border: 1px solid #eee;
border-radius: 10px;
background: #215ffe;
text-align: center;
margin: 0 auto;
margin-top: 10px;
}
.top-d-bottom {
display: flex;
flex-direction: column;
justify-content: flex-end;
width: 84%;
height: 70%;
// border: 1px solid red;
text-align: left;
margin-left: 2.6vw;
color: #75acfa;
font-size: 3.6vw;
div {
height: 3.3vh;
font-size: 3.4vw;
}
}
</style>