1
PC-20250623MANY\Administrator
2025-07-22 beff59e6065d3283cc9fb10fe7151f2b757cd154
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
<!-- 您属于哪种交易类型? -->
<template>
  <menu-layout :needMenu="false">
    <template v-slot:content>
      <div class="section1">
        <h1>{{ t("m5-tg-a6-s1-t1") }}</h1>
        <h5>{{ t("m5-tg-a6-s1-d1") }}</h5>
      </div>
      <div class="content mt-8" v-html="t('m5-tg-a6-s2-c')"></div>
      <ready></ready>
    </template>
  </menu-layout>
</template>
 
<script setup>
import { useI18n } from "vue-i18n";
import ready from "@comForex/readyWithBg.vue";
 
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
 
.content {
  :deep(blockquote) {
    // font-family: Titillium Web;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.4px;
    line-height: 1.375rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    position: relative;
  }
}
</style>