/* reset */
html,
body,
div,
p,
ul,
li,
dt,
dd,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
iframe {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

em,
i,
strong,
b {
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
}

button,
input,
textarea {
  font-size: inherit;
  border: none;
  background: none;
  outline: 0;
}

img {
  border: none;
  pointer-events: auto; /* 禁止长按图片保存 */
}

html {
  font-size: 100px;
}

body {
  line-height: 1.5;
  font-family: '微软雅黑';
  font-size: 0.28rem;
}

[v-cloak] {
  display: none;
}

a{
  text-decoration: none;
}


.app-nodata{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    z-index: 20;
}
.app-nodata-txt{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 0.4rem;
    width: 5rem;
    height: 4rem;
    position: relative;
    color: #969799;
}
.app-nodata-txt::before{
		content: "";
		background: url(../img/nodata.png) no-repeat;
    width: 5rem;
    height: 4rem;
    display: inline-block;
    position: absolute;
    top: -0.4rem;
    background-size: 100% 100%;
	
	
}
