123
dcc
2024-06-13 a30516bdf5cbfc7a953d06aee2aab3716441eb92
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
112
113
114
115
116
117
118
119
120
121
122
123
<!-- menu2入口 -->
<template>
  <div>
    <pc-section class="section1" innerclass="flex">
      <div class="flex1 pt-12 px-24">
        <h1 class="text-4xl mb-4">{{ t("m2-index-s1-t1") }}</h1>
        <h5 class="w-532">{{ t("m2-index-s1-d1") }}</h5>
      </div>
      <div class="flex1 text-left">
        <img src="@/assets/forexImages/menu2/image0.png" width="665" height="296" />
      </div>
    </pc-section>
    <!-- 导航 -->
    <pc-section>
      <navigator></navigator>
    </pc-section>
    <!-- 可用工具 -->
    <pc-section class="px-48 py-12" innerclass="text-center">
      <h2 class="mb-4">{{ t("m2-index-s2-t1") }}</h2>
      <h5 class="mb-12">{{ t("m2-index-s2-d1") }}</h5>
      <div class="flex flex-wrap justify-center" style="width: 1000px;margin:auto;">
        <card-why v-for="(item, index) in list4" :index="index + 1" :key="index"
          :desc="`${t(`m2-index-s2-${index + 1}-d1`)}`" :title="`${t(`m2-index-s2-${index + 1}-t1`)}`" :imgPath="false">
        </card-why>
      </div>
    </pc-section>
    <!-- 掉期、点差和佣金 -->
    <pc-section class="section3" innerclass="flex">
      <div class="flex1 text-right">
        <img src="@/assets/forexImages/menu2/image1.png" width="711" height="408" />
      </div>
      <div class="flex flex-col justify-center pl-8">
        <h1 class="mb-4 text-white">{{ t("m2-index-s3-t1") }}</h1>
        <h5 class="mb-4 text-white">{{ t("m2-index-s3-d1") }}</h5>
        <div>
          <el-button class="gray-large-btn mt-4">{{
            t("m2-index-s3-b1")
          }}</el-button>
        </div>
      </div>
    </pc-section>
    <pc-section class="section4 py-20" innerclass="text-center">
      <h2 class="mb-4">{{ t("m2-index-s4-t1") }}</h2>
      <h5>{{ t("m2-index-s4-d1") }}</h5>
      <div class="flex justify-center mt-4">
        <div class="section4-w mr-12">
          <h3 class="mb-4">{{ t("m2-index-s4-1-t1") }}</h3>
          <h5>{{ t("m2-index-s4-1-d1") }}</h5>
        </div>
        <div class="section4-w">
          <h3 class="text-4xl mb-4">{{ t("m2-index-s4-2-t1") }}</h3>
          <h5>{{ t("m2-index-s4-2-d1") }}</h5>
        </div>
      </div>
      <el-button class="gray-large-btn mt-8">{{
        t("m2-index-s4-b1")
      }}</el-button>
    </pc-section>
    <pc-section class="section5 py-20" innerclass="flex justify-center">
      <div class="mr-12">
        <h2>{{ t("m2-index-s5-t1") }}</h2>
        <h5 class="w-460">{{ t("m2-index-s5-d1") }}</h5>
        <el-button class="white-middle-link-btn mt-8">{{
          t("learn-more-info")
        }}</el-button>
      </div>
      <img src="@/assets/forexImages/menu2/image2.png" width="620" height="258" />
    </pc-section>
 
    <pc-section class="section6" innerclass="flex">
      <img src="@/assets/forexImages/menu2/image3.png" width="620" height="322" />
      <div class="pl-16">
        <h2 class="mb-4 mt-12">{{ t("m2-index-s6-t1") }}</h2>
        <p>{{ t("m2-index-s6-d1") }}</p>
        <el-button class="gray-middle-btn mt-4">{{
          t("learn-more-info")
        }}</el-button>
      </div>
    </pc-section>
    <ready :needBg="true"></ready>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import pcSection from "@comForex/pcSection.vue";
import cardWhy from "@comForex/cardCommon.vue";
import ready from "@comForex/ready.vue";
import navigator from "@comForex/navigator.vue";
const list4 = Array(4);
const route = useRoute();
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.section1,
.section4,
.section6 {
  background: #f2f4f6;
}
 
.section7 {
  background: #192989;
  height: 330px;
}
 
.section4-w {
  width: 320px;
}
 
.section3 {
  background: #192989;
}
 
// 公用
.w-460 {
  width: 460px;
}
 
.w-532 {
  width: 532px;
}
</style>