2
PC-20250623MANY\Administrator
2025-09-15 0f6b38dfdfe93a1d630d984417af2fbb03c7e0ff
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
<template>
  <div class="fund_rules">
    <pageHead :title="$t('余额宝规则')"></pageHead>
 
    <div class="tui-header">余额宝的交易规则?</div>
 
    <div class="tui-content">
      <p>
        欢迎使用余额宝,您的智慧财富管理工具。
      </p>
      <p></p>
      <p>日化1%</p>
      <p>1天后随取随用。</p>
      <p>单日转入、转出最高60次。</p>
      <p>门槛单笔最低20元,轻松起步,随时加入。</p>
      <p>
        转入余额宝的资金在第二个交易日由基金公司进行份额确认,对已确认的份额,基金公司产生的当天收益会在次日上午08:
        00在余额宝中显示。
      </p>
      <p>
        温馨提示:08:
        00后转入的资金会顺延1个交易日确认,双休日及国家法定假期,基金公司不进行份额确认。
      </p>
    </div>
  </div>
</template>
 
<script>
import pageHead from "@/components/pageHead.vue";
export default {
  name: "fundRules",
  components: {
    pageHead
  }
};
</script>
 
<style lang="less" scoped>
.fund_rules {
  width: 100%;
  .tui-content {
    margin-top: 0.4rem;
    font-size: 0.35rem;
    color: #ccc;
    line-height: 0.6rem;
    text-align: justify;
    padding: 0 0.525rem;
    p {
      display: block;
      unicode-bidi: isolate;
    }
  }
  .tui-header {
    padding: 0 0.525rem;
    margin-top: 0.9rem;
    font-size: 0.6rem;
    font-weight: 800;
  }
}
</style>