energy_label.vue 1.54 KB
<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;
                       "
        >中国能效标识&nbsp;&nbsp;</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>