* {
  box-sizing: border-box;
}
body {
  background:#fff;
  color:#333;
  font-size:16px;
  font-family:"MiSans","Noto Sans SC","PingFang SC","Microsoft YaHei","system-ui","sans-serif";
  font-weight: 400;
}
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #f7f7f7;
  object-fit: cover;
}
/* 缩写，图片等无边框 */
fieldset,img,abbr,acronym {border: 0 none;}
abbr,acronym {font-variant: normal;}
legend {color:#000;}

del,ins,a {
  text-decoration: none;
  cursor: pointer;
}

button {
  outline: none;
  cursor: pointer;
}

input {
  -webkit-user-select: auto;
}

textarea {
  -webkit-user-select: auto;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}
/* 标题元素样式清除 */ 
h1,h2,h3,h4,h5,h6 {   
  font-weight: normal;   
  font-size: 100%;   
}
/* 清除特殊标记的字体和字号 */
address,caption,cite,code,dfn,em,strong,th,var {   
  font-weight: normal;   
  font-style: normal;   
}
/* 上下标 */
sup {vertical-align: text-top;}
sub {vertical-align: text-bottom;}
/* 表格标题及内容居左显示 */
caption,th {text-align: left;}
input,img,select {vertical-align:middle;}
/* 输入控件字体 */
input,button,textarea,select,optgroup,option {
  font-family:inherit;
  font-size:inherit;
  font-style:inherit;
  font-weight:inherit;
}
/* 鼠标样式 */
input[type="submit"] {cursor: pointer;}
button {cursor: pointer;}
input::-moz-focus-inner { border: 0; padding: 0;}
.clear {clear:both;}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}
/* 短引用的内容可取值：''或"" */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
/*清除浮动*/
.clearFix::after{
  clear: both;
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}
/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 清除列表样式 */
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}