From 066ec67b7080f07a0e47dda9864ee6be2e4b9053 Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Fri, 13 Jun 2025 14:03:54 +0800
Subject: [PATCH] Merge branch 'master' of http://124.156.157.155:8060/r/~admin/aerospace-pc

---
 src/views/forex/customerService.vue |   75 +++++++++++++++++++++++++++++++++++++
 1 files changed, 75 insertions(+), 0 deletions(-)

diff --git a/src/views/forex/customerService.vue b/src/views/forex/customerService.vue
new file mode 100644
index 0000000..7e86550
--- /dev/null
+++ b/src/views/forex/customerService.vue
@@ -0,0 +1,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>

--
Gitblit v1.9.3