/* CSS Document */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline-style: none;
  /*FF*/
  list-style: none;
  font-family: "Microsoft YaHei";
  box-sizing: border-box;
}

@font-face {
  font-family: 'SourceHanSansCN-Normal';
  src: url('../fonts/hanshand-webfont.eot');
  /* src:url('../fonts/hanshand-webfont.eot?#iefix')format('embedded-opentype'),
  url('../fonts/hanshand-webfont.woff')format('woff'),
  url('../fonts/hanshand-webfont.ttf')format('truetype'),
  url('../fonts/hanshand-webfont.svg#webfont34M5alKg')format('svg'); */
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.2;
  color: #000;
  background-color: #fff;

  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  font-size: 14px;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline-style: none;
  /*FF*/
  color: #0486fe;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  outline: none;
}

ul,
li,
ol {
  list-style: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*css为clearfix，清除浮动*/
.clearfix::after {
  content: "";
  height: 0;
  display: block;
  clear: both;
}

.clearfix {
  clear: both;
  zoom: 1;
  /*IE/7/6*/
}

/* 滚动条样式修改 */
::-webkit-scrollbar {
  width: 10px;
 /* height: 50px;*/
}

::-webkit-scrollbar-track {
  /*滚动条背景层*/
  /* background: #666; */
  background: transparent;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  /*滚动条样式*/
  background: #ebebeb;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.display_flex {
  display: box;              /* OLD - Android 4.4- */
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
