康凯
2021-12-12 96c705e7c0eb114695c04a0500a4abc815739cf6
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
<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;
}
@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>