ZZJ
2022-03-09 cc7401e771e13b40bb7dea11ec26da3acfc8e5c7
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
<template>
  <div id="app" class="colorNormal">
    <router-view></router-view>
  </div>
</template>
 
<script>
export default {};
</script>
 
<style>
@import "./assets/css/common.css";
 
* {
  margin: 0;
  padding: 0;
}
 
html,
body {
  height: 100%;
  min-width: 1280px;
}
 
#app {
  position: relative;
  min-height: 100%;
}
 
html {
  font-family: PingFang SC;
}
 
ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
 
.iconfont,
img {
  user-select: none;
}
 
a {
  text-decoration: none;
  color: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  border-bottom: none;
  display: block;
}
</style>