@charset "utf-8";
/**公共样式*/
* {
  box-sizing: border-box;
}
body,
div {
  margin: 0;
  padding: 0;
} /*标签内外边距初始化为0*/
body {
  font-size: small;
  color: #000;
  background-color: #F5F5F5 !important;
  min-width: 1200px;
  padding-top: 140px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none !important;
}

ul,
ol {
  list-style: none;
}

table, tr, th, td {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #bfbfbf;
} /*消除边框间距及合并单元格*/
table {
  font-size: inherit;
  font: 100%;
}
caption,
th {
  text-align: left;
}
legend {
  color: #000;
}
input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}
input,
button,
textarea,
select {
  font-size: 100%;
}
select,
input,
button,
textarea,
button {
  font: 99% arial, helvetica, clean, sans-serif;
}
/*消除图片和表单域边框*/
img {
  border: 0;
  object-fit: cover;
}

input,
textarea,
select {
  outline: none;
}

video {
  width: 100%;
}