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
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
<template>
  <div class="router-view">
    <div class="service">
      <div class="wrap container">
        <img
          src="@/assets/forexImages/online-banner-c5baa5d5.png"
          alt=""
          class="leftImg"
        />
        <div class="right">
          <ul>
            <li>
              <span>{{ $t("message.home.service") }}</span
              ><img src="@/assets/forexImages/online-1-d61bee88.png" alt="" />
            </li>
          </ul>
        </div>
      </div>
    </div>
  </div>
  <footerView></footerView>
</template>
<style scoped>
.router-view {
  flex: 1;
  background-color: #000;
}
.container {
  display: flex;
  justify-content: center;
}
.wrap {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
  margin: 0 auto;
}
.container .leftImg {
  width: 426px;
  height: 426px;
  margin-right: 20px;
}
 
.container .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.container .right ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.container .right ul li {
  padding: 20px 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #212121;
  border-radius: 5px;
  cursor: pointer;
}
.container .right ul li span {
  color: #fff;
  margin-right: 30px;
}
 
.container .right img {
  width: 80px;
  height: 68px;
}
</style>