fc010315 by qingxiao

隐私声明 个人资料声明 使用条款 文案修改

1 parent 06e347c5
1 import api from '@/api/api'
2 import {
3 httpGet,
4 httpPost
5 } from '@/api/fetch-api.js'
6
7 export default {
8 data() {
9 return {
10 key: 'value'
11 }
12 },
13 components: {},
14 methods: {
15 initData() {}
16 },
17 mounted() {},
18 created() {
19 console.log(this.$i18n.locale);
20 }
21 }
1 @import '@/styles/_support';
2
3 .content {
4 padding-bottom: 8.5rem;
5 }
6
7 .box {
8 position: relative;
9 }
10
11 .top-space {
12 height: 3rem;
13 }
14
15 .tit {
16 text-align: center;
17 font-size: $fontSizeTitle;
18 font-weight: bold;
19 letter-spacing: 1.8px;
20 }
21
22 .desc {
23 max-width: $articleWidth;
24 margin-top: 3rem;
25 line-height: 2;
26 letter-spacing: 1.2px;
27 }
28
29 @media (max-width: 1200px) {
30 .content {
31 @include content-percent();
32 padding-bottom: $marginMedium-M;
33 }
34 }
35