/*基础样式*/
a,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
html,
img,
input,
label,
legend,
li,
mark,
ol,
p,
section,
span,
textarea,
time,
td,
th,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  height: 100%;
  color: #333;
  min-width: 1200px;
  background-color: #f3f8fc;
  font-family: 'Microsoft YaHei-Regular', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
  outline: none;
}

i {
  font-style: normal;
}

input[type='text'],
input[type='search'],
input[type='password'],
input[type='checkbox'] {
  padding: 0;
  outline: none;
  border: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
}

button {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #d0d0d0;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}
