@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
   margin: 0; /*设置元素外边距，元素相对父元素的距离，给一个值默认四边同设置一个值，给三个值，中间的值表示左右边距，给两个值上下边距一个值，左右边距一个值*/
   padding: 0;/*设置元素内边距，元素自身内部到边框的距离，给一个值默认四边同设置一个值，给三个值，中间的值表示左右边距，给两个值上下边距一个值，左右边距一个值*/
   border: 0;/*边框设置*/
   outline: 0;/*元素轮廓*/
   font-weight: inherit;/*设置文本粗细*/
   font-style: inherit;/**/
   font-size: 100%;/**/
   font-family: inherit;/**/
   vertical-align: baseline;/**/
}

:focus {
   outline: 0;
}

body {
   line-height: 1;
   color: black;
   /*background: white;*/
}

ol,
ul {
   list-style: none;
}

table {
   border-collapse: separate;
   border-spacing: 0;
}

caption,
th,
td {
   text-align: left;
   font-weight: normal;
}