dcc
2024-06-13 3616db170333df7d668c97323344335b52c4153c
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
<template>
  <div>
    <div class="text-title">{{ $t("message.user.aboutus") }}</div>
    <div class="content-view-box text-content">
      <p>{{ $t("message.user.aboutusonetext") }}</p>
      <p>{{ $t("message.user.aboutustwotext") }}</p>
    </div>
  </div>
</template>
<script>
export default {
  data() {
    return {};
  },
};
</script>
 
<style scoped>
.text-title {
  text-align: center;
  font-size: 18px;
  padding: 30px 0;
  font-weight: bold;
}
 
.text-content > p {
  margin: 20px 0;
}
</style>