1
PC-20250623MANY\Administrator
2025-07-26 35ba5f69dc6f207e73c99af9c46e0820a7388852
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
<template>
  <div class="privacy-policy">
    <headers :mess="loginWay" />
    <div class="text">Privacy Policy</div>
    <div class="text">Fidelity Securities values your privacy and is committed to protecting your personal data. This privacy policy explains how we collect, use, share and protect your personal data. By accessing this website, you consent to the collection, use, processing and disclosure of your personal data in accordance with our Privacy Policy.</div>
    <div class="text">How we collect personal data</div>
    <div class="text">We collect your personal data directly from you through your interaction with our website or use of our services. We may also collect your personal data from third parties who have the right to provide your personal data to us.</div>
    <div class="text">Retention of personal data</div>
    <div class="text">Your personal data shall not be kept longer than necessary to fulfill the purpose for which it was collected. We may also retain your personal data for as long as required by applicable laws and regulations.</div>
    <div class="text">Disclosure of personal data</div>
    <div class="text">We will not sell your personal data. However, if necessary, we will disclose it as follows: To our affiliates and in accordance with contractual agreements to ensure that your personal data is protected and used only for the purpose or purposes for which it was disclosed; In accordance with any government or appropriate regulatory authority requirements.</div>
    <div class="text">Data Security</div>
    <div class="text">We take appropriate security measures to protect the confidentiality of your personal data and to prevent unauthorized or accidental access, processing, alteration, disclosure, loss or use. We restrict access to your personal data to our employees and relevant parties we work with based on business needs.</div>
    <div class="text">Changes to Privacy Policy</div>
    <div class="text">We reserve the right to modify this Privacy Policy in response to changes in applicable data privacy laws, changes in our privacy practices, and stakeholder feedback. Relevant updates will be reflected on this page. We recommend that you review this Privacy Policy regularly.</div>
    <div style="margin-bottom: 150px;"></div>
  </div>
</template>
 
<script>
import headers from "../login/components/header.vue";
export default {
  data() {
    return {
        loginWay:this.$t('yszc'),
      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>