aboutUs.vue 1.51 KB
Newer Older
1 2 3 4
<template>
  <div class="instructions">
    <div class="content">
      <p class="paragraph">
leiqingsong's avatar
leiqingsong committed
5
        <span class="special">
6
          日本西田森制药株式会社坐落在東京都千代田区東神田2丁目6番7号608,以"传递希望,传播爱"为企业理念
全球's avatar
全球 committed
7 8
          ,让健康的"希望之光洒向世界每一寸森田"为愿景,开展企业经营活动。其核心业务包括【食品、医药品、保健品、化妆品等研发事业】
          与【医疗健康消费者商品研发事业】研发并生产有助于人类健康的创新产品。
9
          西田森将始终保持高度的伦理观,以健康产品为基点,创造新的价值为目标不断发展,从而成为"全球性的价值创造企业"。
全球's avatar
全球 committed
10
        </span>
11 12 13 14 15 16 17
      </p>
    </div>
  </div>
</template>

<script>
export default {
leiqingsong's avatar
leiqingsong committed
18
  name: "AboutUs"
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
};
</script>

<style lang="scss" scoped>
.instructions {
  box-sizing: border-box;
  padding: 10px 16px;
  p {
    margin: 0;
  }
  .title {
    font-family: PingFang-SC-Bold;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 20px;
    color: #333333;
    text-align: center;
    margin-bottom: 10px;
  }
leiqingsong's avatar
leiqingsong committed
39 40 41 42
  .special {
    font-size: 18px;
    line-height: 42px;
  }
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  .paragraph {
    font-family: PingFang-SC-Regular;
    font-size: 13px;
    color: #333;
    line-height: 21px;
    text-indent: 2em;
  }
  .content {
    box-sizing: border-box;
    width: 345px;
    min-height: 100vh;
    padding: 10px 16px;
    background-color: #ffffff;
  }
}
</style>