development.vue 4.62 KB
<!--
 * @Date: 2024-10-17 11:13:44
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-10-28 18:07:51
 * @FilePath: /hager/src/views/about/development.vue
 * @Description: 关于海格-可持续发展
-->
<template>
  <div class="hager-about-development-page">
    <hager-box>
      <div style="margin-top: 1.5rem;">
        <el-breadcrumb separator="/">
          <el-breadcrumb-item :to="{ path: '/about' }">关于海格</el-breadcrumb-item>
          <el-breadcrumb-item>{{ $route.name }}</el-breadcrumb-item>
        </el-breadcrumb>
      </div>
    </hager-box>
    <hager-box v-if="!is_xs">
      <el-row style="margin: 3rem 0;">
        <el-col :span="8">
          <div class="about-box">
            <div style="top: 30%; transform: translateY(30%);">
              <div class="title">
                <p class="c">可持续发展</p>
                <p class="e">Sustainable<br/>Development</p>
              </div>
              <div class="introduce">
                <p style="margin: 1.5rem 0 1rem; text-align: justify;">“关注人们的需求,关心我们的环境,顺乎道德,合乎责任。”</p>
                <div style="text-align: right;">
                  <p>——Daniel Hager 先生</p>
                  <p>海格集团监事会主席</p>
                </div>
              </div>
              </div>
          </div>
        </el-col>
        <el-col :span="16">
          <div class="about-img"></div>
        </el-col>
      </el-row>
      <div class="about-content">
        <div>作为一家有着明确价值观的家族企业,我们今天就行动起来,以确保未来成功。海格电气一直持续不断地投资我们的员工及其技能开发和培训、优化我们的生态平衡、开发更节能的流程和解决方案。可持续发展是我们获得长期成功的关键。我们所做的每件事都秉承可持续发展的原则,因此我们将整个可持续发展的概念融合成为统一的理念:E3<p class="e3-icon"></p>。E3<p class="e3-icon"></p>是一个广泛的理念,用于指导我们更好地使用地球上有限的资源。三个E分别代表道德(Ethics)、环境(Environment)和能源(Energy)。</div>
      </div>
    </hager-box>
    <div v-else>
      <div class="about-img xs"></div>
      <div class="about-box xs">
        <div>
          <div class="title">
            <p class="c xs">可持续发展</p>
            <p class="e xs">Sustainable<br/>Development</p>
          </div>
          <div class="introduce">
            <p style="margin: 1.5rem 0 1rem;">“关注人们的需求,关心我们的环境,顺乎道德,合乎责任。”</p>
            <div style="text-align: right;">
              <p>——Daniel Hager 先生</p>
              <p>海格集团监事会主席</p>
            </div>
          </div>
          </div>
      </div>
    </div>
  </div>
</template>

<script>
import mixin from 'common/mixin';
import hagerBox from '@/components/common/hagerBox';
import hagerH1 from '@/components/common/hagerH1.vue';

export default {
  components: { hagerBox, hagerH1 },
  mixins: [mixin.init],
  data () {
    return {

    }
  },
  mounted () {

  },
  methods: {

  }
}
</script>

<style lang="less" scoped>
  .hager-about-development-page {
    .about-img {
      width: 100%;
      height: 30rem;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-image: url(https://cdn.ipadbiz.cn/hager/img/about/g20@2x.png);
      &.xs {
        height: 15rem;
        margin-top: 1rem;
      }
    }
    .about-box {
      background-color: #F7F7F7;
      position: relative; /* 父容器设置为相对定位 */
      padding: 2rem;
      height: 30rem; /* 让 .about-box 撑满父容器 */
      box-sizing: border-box;
      &.xs {
        height: auto;
        padding: 2rem;
        background-color: #FFF;
      }
      .title {
        font-weight: bold;
        .c {
          font-size: 2rem;
          color: @secondary-color;
          &.xs {
            font-size: 1.5rem;
          }
        }
        .e {
          font-size: 1.5rem;
          color: @primary-color;
          &.xs {
            font-size: 1.1rem;
          }
        }
      }
      .introduce {
        line-height: 1.75;
        margin-top: 1rem;
      }
    }

    .about-content {
      padding: 0 2rem 2rem;
      div {
        line-height: 2;
        margin-bottom: 1.5rem;
      }
      .e3-icon {
        display: inline-block;
        width: 1rem;
        height: 1rem;
        background-image: url(https://cdn.ipadbiz.cn/hager/img/about/icon/img27@2x.png);
        background-size: cover;
      }
    }
  }
</style>