dcc
2024-06-13 cfdf967764dc6747a7b414b33fb993aeede1294d
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
<!-- 反转! 暴跌!通胀数据改变了什么  -->
<template>
  <div class="flex justify-center pt-12">
    <div class="w-768">
      <h1>{{ t("m4-mn-a3-t") }}</h1>
      <h6>{{ t("m4-mn-a3-ti") }}</h6>
      <h5 class="d-line">{{ t("m4-mn-a3-d") }}</h5>
      <div class="content" v-html="t('m4-mn-a3-c')"></div>
    </div>
  </div>
</template>
 
<script setup>
import { useI18n } from "vue-i18n";
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.d-line {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 24px;
  margin: 16px 0 32px;
}
.w-768 {
  width: 768px;
}
 
.content {
  :deep(h5) {
    margin-bottom: 18px;
  }
}
</style>