lxf
2025-04-28 8103ab2db75a7bd68c8c105d5176635ea3efb0cd
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
<template>
  <div class="privacy-policy">
    <headers :mess="loginWay" />
    <div class="text">Our Service</div>
    <div class="text">Fidelity Securities was established in 1969 and is an international company under Fidelity Investments, which was founded in Boston, USA in 1946. In 1980, Fidelity became independent from its American parent company. now</div>
    <div class="text">At that time, Fidelity Securities' equity was primarily held by management and founding family members.</div>
    <div class="text">Fidelity manages US$290 billion in assets globally and has clients in 25 countries in Asia Pacific, Europe, the Middle East and South America. Clients served include central banks, sovereign wealth funds, mainframe computers</div>
    <div class="text">institutions, financial companies, insurance companies, wealth management companies and individual investors.</div>
    <div class="text">In addition to asset management, it also provides investment administration and guidance | services to employer benefit plans, investment advisors and individual clients in many countries. As of September 2016, assets under administrative management</div>
    <div class="text">The amount reached US$85 billion.</div>
    <div class="text">Fidelity Securities Investment Group has branches in 15 countries and regions around the world. Currently, the assets under management for more than 12 million investors around the world reach 1 trillion yuan, accounting for 1/8 of the total number of mutual funds in the United States.</div>
    <div class="text">It has attracted much attention from investors and the fund market.</div>
    <div class="text">It plays a very important role, and Fidelity Group also has many world-renowned fund managers. Peter Lynch is the most famous one. He managed the Magellan Fund for ten years.Over three years, the average annual return was 29%, while the S&P 500's average gain during the same period was only 14%. Since then, many outstanding fund management managers have appeared in Fidelity Securities Group.</div>
    
    <div style="margin-bottom: 150px;"></div>
  </div>
</template>
 
<script>
import headers from "../login/components/header.vue";
export default {
  data() {
    return {
      loginWay:this.$t('wmdfw'),
      policyContent: ''
      
    };
  },
  components: {
    headers
  },
  mounted() {
    this.loadPolicy();
  },
  methods: {
    loadPolicy() {
      // 假设你有一个方法来加载隐私政策内容
      this.policyContent = '';
    }
  }
};
</script>
 
<style scoped>
    .text{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 20px;
        font-weight: 600;
    }
.privacy-policy {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}
</style>