
*{
  box-sizing: border-box;
}
 
html,body{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body{
  font-family:"PingFang SC","Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}
 
/*语义化标签*/
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
 
div,
h1, h2, h3, h4, h5, h6,
ul, ol, dl, li, dt, dd,
p,
blockquote,
pre,
form,
fieldset,
table, th, td,
input,
button,
optgroup,
textarea,
fieldset{
  margin: 0;
  padding: 0;
}
 
li{
  list-style: none;
}
 
/* correct font weight in Chrome, Edge, and Safari. */
b,
strong {
  font-weight: bolder;
}
/*
 * IE 10 激活转态有背景色
 * 去掉默认的下划线
 */
a{
  text-decoration: none;
  background-color: transparent;
  color: #000;
}
/* IE 10 下img有border */
img {
  display: block;
  border-style: none;
}
table {
  border-collapse: collapse;
  table-layout: fixed;
}
 
/* form 表单元素 */
input{
  margin: 0;
  padding: 0;
  outline: none;
}
input::-webkit-input-placeholder{
  color: #969799;
}
input::-ms-input-placeholder{
  color: #969799;
}
input::-moz-placeholder{
  color: #969799;
}
input[type=submit],input[type=button]{
  cursor: pointer;
}
button[disabled], input[disabled] {
  cursor: default;
}
button{
  outline: none;
  border: none;
  background-color: transparent;
}