zhongshujie
2025-08-08 401ed176c9f1bdd97ccdf827d9454b11a3891f79
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<template>
  <div class="footerBox">
    <div class="footerBox-main">
      <ul class="main-left">
        <li class="footer-title">{{ t('message.About') }}</li>
        <li>{{ t('message.webPolicies') }}</li>
        <li>{{ t('message.Help') }}</li>
      </ul>
      <ul class="main-center">
        <li class="footer-title">{{ t('message.FriendlyLinks') }}</li>
        <li>
          {{ t('message.ChinaAcademyofChineseMedicalSciences') }}
        </li>
        <li>
          {{ t('message.NationalGenomicsDataCenter') }}
        </li>
      </ul>
      <ul class="main-center">
        <li class="footer-title"><br></li>
        <li>
          {{ t('message.NationalAdministrationofTraditionalChineseMedicine') }}
        </li>
        <li>
          {{ t('message.GraduateSchoolofChinaAcademyofChineseMedicalSciences') }}
        </li>
      </ul>
      <div class="main-right">
        <img src="../../assets/images/layout/footImg-left.png" alt="">
        <img src="../../assets/images/layout/footImg-right.png" alt=""></img>
      </div>
    </div>
    <div class="footerBox-footer">
      <p>{{ t('message.COPYRIGHT2021ChinaAcademyofChineseMedical') }}</p>
    </div>
  </div>
</template>
 
<script setup lang="ts">
import { useI18n } from 'vue-i18n';
const { locale, t } = useI18n();
 
 
</script>
 
<style lang="less" scoped>
.footerBox {
  width: 100%;
  height: 190px;
  min-width: 1200px;
  color: #fff;
  background-color: #f0f0f0;
  background-color: #01644C;
}
 
.footerBox-main {
  height: 142px;
  width: 60%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
}
 
.main-left {
  width: 7%;
  margin-right: 8%;
 
  li {
    text-wrap: nowrap;
    margin-bottom: 10px;
  }
}
 
.footer-title {
  font-weight: bold;
}
 
.main-center {
  width: 45%;
 
  li {
    text-wrap: nowrap;
    margin-bottom: 10px;
    margin-right: 10px;
    cursor: pointer;
  }
}
 
 
.main-right {
  display: flex;
 
  img {
    margin: 0 10px;
  }
}
 
 
 
.footerBox-footer {
  height: 48px;
  background-color: #015742;
 
  p {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
 
  }
}
</style>