1
jhzh
2024-08-12 f1dc8f5a7f3a661ce19513a9ad47fe18e3e883ff
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
124
125
126
127
128
129
130
131
132
133
<template>
  <div>
    <pc-section class="gray-bg" innerclass="flex">
      <div class="flex1 pr-12 flex flex-col justify-center">
        <h1>{{ t("m1-why-s1-t1") }}</h1>
        <h5>{{ t("m1-why-s1-d1") }}</h5>
      </div>
      <div class="flex1 text-left">
        <img
          src="@/assets/forexImages/menu1/why/image1.png"
          width="626"
          height="268"
        />
      </div>
    </pc-section>
    <!-- 我们是谁 -->
    <pc-section class="py-24" innerclass="flex justify-center">
      <div class="w-768">
        <h2 class="mb-8">{{ t("m1-why-s2-t1") }}</h2>
        <h5>{{ t("m1-why-s2-d1") }}</h5>
      </div>
    </pc-section>
    <!-- 与屡获殊荣的经纪人进行交易 -->
    <pc-section class="section3 text-white" innerclass="flex">
      <div class="flex1 pr-16 flex flex-col justify-center">
        <h2 class="text-white">{{ t("m1-why-s3-t1") }}</h2>
        <h5 class="text-white">{{ t("m1-why-s3-d1") }}</h5>
      </div>
      <div class="flex1 text-left">
        <img
          class="inline-block"
          src="@/assets/forexImages/menu1/why/image2.png"
          width="626"
          height="315"
        />
      </div>
    </pc-section>
    <!-- 为什么与 eypmj 交易? -->
    <pc-section class="py-28">
      <h1 class="text-4xl mb-20 text-center">
        {{ t("m1-why-s4-t1") }}
      </h1>
      <div class="grid grid-cols-3 gap-x-16 gap-y-8">
        <div class="blue-border" v-for="(item, index) in list9" :key="index">
          <img
            :src="getImageUrl(`${prePath}/icon${index + 1}.png`)"
            width="40"
            height="40"
          />
          <h5 class="fs-24 my-4 text-left">
            {{ t(`m1-why-s5-t${index + 1}`) }}
          </h5>
          <h5
            class="text-base text-left"
            v-html="t(`m1-why-s5-d${index + 1}`)"
          ></h5>
        </div>
      </div>
    </pc-section>
    <!-- 我们随时为您提供帮助 -->
    <pc-section class="gray-bg py-20" innerclass="flex justify-center">
      <div class="w-768 text-center">
        <h2 class="mb-12">{{ t("m1-why-s6-t1") }}</h2>
        <div class="grid grid-cols-2 gap-x-8">
          <div class="w-370 bg-white" v-for="(item, i) in list2" :key="i">
            <img
              alt=""
              :src="getImageUrl(`${prePath}/image${i + 3}.png`)"
              width="370"
              height="180"
            />
            <div class="px-12 text-left">
              <h4 class="my-4">{{ t(`m1-why-s6-${i + 1}-t1`) }}</h4>
              <h6>{{ t(`m1-why-s6-${i + 1}-d1`) }}</h6>
              <h5 class="my-12" v-html="t(`m1-why-s6-${i + 1}-l1`)"></h5>
            </div>
          </div>
        </div>
      </div>
    </pc-section>
 
    <!-- 做好交易准备了吗? -->
    <ready-bg1></ready-bg1>
    <!-- 提示 -->
    <pc-section class="pt-24 pb-20 pl-32">
      <h5 class="text-left text-sm">{{ t("m1-why-s7-1") }}</h5>
      <h5 class="text-left text-sm r">{{ t("m1-why-s7-2") }}</h5>
      <h5 class="text-left text-sm">{{ t("m1-why-s7-3") }}</h5>
    </pc-section>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import { getImageUrl } from "@/utils/index";
import readyBg1 from "@comForex/readyWithBg1.vue";
import router from "@/router";
const route = useRoute();
const { t } = useI18n();
const prePath = "/src/assets/forexImages/menu1/why";
 
const list9 = Array(9);
const list2 = Array(2);
 
const gotoPage = () => {
  router.push();
};
</script>
<style lang="scss" scoped>
.gray-bg {
  background: #f2f4f6;
}
.section3 {
  background: #142056;
}
 
.w-370 {
  width: 370px;
}
 
.w-768 {
  width: 768px;
}
 
// .card-why {
//   background: #ffffff;
//   box-shadow: 0px 3px 10px 9px rgba(0, 0, 0, 0.05);
//   width: 310px;
//   // height: 374px;
//   border-top: 2px solid #2038d3;
// }
</style>