/* reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

* {
    box-sizing: border-box;
}
*{-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;}

html,body {
    /* 禁止选中文本 */
    -webkit-user-select: none;
    user-select: none;
    /*font: Oswald, 'Open Sans', Helvetica, Arial, sans-serif*/

    /*苹方体*/
    font-family: PingFangSC-Semibold, sans-serif;
    /*字体清晰*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
}

/* 禁止长按链接与图片弹出菜单 */
a,img {
    -webkit-touch-callout: none;
}

img{
    border:0;
}

/*ios android去除自带阴影的样式*/
a,input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*去除浏览器默认样式*/
a,input,button {
    -webkit-appearance: none;
}

button,input{
    border:none;
    outline: none;
}
