康凯
2022-01-27 fa17f93cc94db72470d73c2d29d0a70baeb6b199
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>
 
<script>
export default {
  name: 'App',
  components: {},
  metaInfo: {
    meta: [
      {
        name: "viewport",
        content: "width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1, maximum-scale=1;"
      }
    ]
  },
  created() {
    document.title = "吉林红色旅游";
  }
}
</script>
 
<style>
body {
  margin: 1px;
}
 
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}
 
@font-face {
  font-family: 'Source Han Sans CN';
  src: url('assets/font/SourceHanSansCN-Regular.otf');
}
 
@font-face {
  font-family: 'Microsoft YaHei';
  src: url('assets/font/Microsoft-YaHei.ttf');
}
 
@font-face {
  font-family: 'FZZhengHeiS-DB-GB';
  src: url('assets/font/FZZhengHeiS-DB-GB.ttf');
}
 
@font-face {
  font-family: 'FZDaBiaoSong-B06S';
  src: url('assets/font/FZDaBiaoSong-B06S.ttf');
}
 
@media only screen and (min-width: 320px) {
  html {
    font-size: 6px !important;
  }
}
 
 
@media only screen and (min-width: 375px) {
  html {
    font-size: 8px !important;
  }
}
 
@media only screen and (min-width: 480px) {
  html {
    font-size: 12px !important;
  }
}
 
@media only screen and (min-width: 640px) {
  html {
    font-size: 14px !important;
  }
}
 
@media only screen and (min-width: 750px) {
  html {
    font-size: 16px !important;
  }
}
</style>