/*css reset*/

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
em,
img,
q,
strong,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: Arial, Tahoma, PingFangSC, \5fae\8f6f\96c5\9ed1;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}
/* 兼容火狐 */
body {
  scrollbar-color: rgba(0, 0, 0, 0.2) #fff;
  scrollbar-width: thin;
}
/* -webkit-内核滚动条设置 */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  /* background: rgba(0, 0, 0, 0.2); */
  background: #fff;
}
::-webkit-scrollbar-button {
  display: none;
}
::-webkit-scrollbar-thumb {
  width: 4px;
  background: #577196;
  border-radius: 0px;
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  /* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
  background: #fff;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

strong,
b {
  font-weight: bold;
}

html body {
  font-size: 14px;
  background-color: #fff;
  color: #333;
  width: 100%;
}

/*body{ overflow: hidden; }*/
.wrap {
  position: relative;
  width: 1340px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix:before {
  content: "";
  display: table;
}
