@charset "utf-8";

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  font-size: 14px;
  color: #666666;
  min-width: 1280px;
  overflow-x: hidden;
  font-family: "Microsoft YaHei", Arial, sans-serif;
}

p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
dt,
button,
input,
img {
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
i,
b {
  font-style: normal;
  font-weight: normal;
}

.clearfix {
  zoom: 1;
  /*这个属性是为了兼容IE*/
}

.clearfix:after {
  display: block;
  content: "";
  /*设置为空或者“.”都可以*/
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

a {
  text-decoration: none;
  color: #666666;
}

a:hover {
  text-decoration: none;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*改变滚动条*/
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  border-radius: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}





