@charset "utf-8";
html,body{
  height: 100%;
  font-size:14px;
  color: #333333;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

fieldset, img, iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol, ul {
  list-style: none;
}
caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
address, caption, cite, code, dfn, em, strong, th, var, b, i {
  font-style: normal;
  font-weight: normal;
}
a {
  color: #333;
  text-decoration: none;
}
a:active {
  color: #333;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  outline: none;
  *font-size: 100%;
}
input, select {
  vertical-align: middle;
}
legend {
  color: #333;
}
textarea {
  resize: none;
}
img,a img {
  display: block;
  border: 0;
}
::-webkit-scrollbar {
    /*滚动条整体样式*/
    width : 3px;  /*高宽分别对应横竖滚动条的尺寸*/
    height: 0px;
}
 ::-webkit-scrollbar-thumb {
   /* 滚动条里面小方块 */
    border-radius: 10px;
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
    background   : #eee;
}
::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 10px;
    background   : 000;
}