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
<template>
<div class="instructions">
<div class="content">
<p class="paragraph">
<span class="special">
日本西田森制药株式会社坐落在東京都千代田区東神田2丁目6番7号608,以"传递希望,传播爱"为企业理念
,让健康的"希望之光洒向世界每一寸森田"为愿景,开展企业经营活动。其核心业务包括【食品、医药品、保健品、化妆品等研发事业】
与【医疗健康消费者商品研发事业】研发并生产有助于人类健康的创新产品。
西田森将始终保持高度的伦理观,以健康产品为基点,创造新的价值为目标不断发展,从而成为"全球性的价值创造企业"。
</span>
</p>
</div>
</div>
</template>
<script>
export default {
name: "AboutUs"
};
</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;
}
.special {
font-size: 18px;
line-height: 42px;
}
.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>