/* 清除默认边距和填充 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
}
/* 设置字体 */
body {
    font-family: PingFangSC, PingFang SC;
    font-size: 14px;
    height: 100%;
    background: #FFFFFF;
    /* min-width: 916px; */
}


body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
header,
menu,
section,
p,
input,
td,
th,
ins {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: top;
}

ul,
li {
    list-style: none;
}

button {
    outline: none;
    border: none;
}

#app {
    height: 100%;
    width: 100%;
}