dcc
2024-06-13 cfdf967764dc6747a7b414b33fb993aeede1294d
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
<!-- 为什么点差会扩大 -->
<template>
  <menu-layout :needMenu="false">
    <template v-slot:content>
      <div class="section1">
        <h1>{{ t("m5-tg-a3-s1-t1") }}</h1>
        <h5>{{ t("m5-tg-a3-s1-d1") }}</h5>
      </div>
      <div class="content mt-8" v-html="t('m5-tg-a3-s2-c')"></div>
      <ready></ready>
    </template>
  </menu-layout>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import ready from "@comForex/ready.vue";
 
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
 
.content {
  :deep(h5) {
    margin-bottom: 18px;
  }
}
</style>