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
34
35
36
37
38
39
40
<template>
  <div>
    <pc-section class="index-section1 h-200">
      <h1 class="mt-14">{{ t("m4-an-s0-t1") }}</h1>
    </pc-section>
    <pc-section innerclass="pl-12 my-16">
      <div class="w-586">
        <img
          src="/src/assets/forexImages/menu4/an1.png"
          width="586"
          height="180"
        />
        <div class="p-12 wrapper-shadow">
          <h5 class="fs-24 font-normal mb-4">{{ t("m4-an-s1-t1") }}</h5>
          <h5>{{ t("m4-an-s1-d1") }}</h5>
          <h5>{{ t("m4-an-s1-d2") }}</h5>
        </div>
      </div>
    </pc-section>
    <ready-bg></ready-bg>
  </div>
</template>
 
<script setup>
import { useI18n } from "vue-i18n";
import readyBg from "@comForex/readyWithBg.vue";
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.h-200 {
  height: 200px;
}
.w-586 {
  width: 586px;
}
 
.wrapper-shadow {
  box-shadow: 0px 2px 8px 10px rgba(0, 0, 0, 0.05);
}
</style>