html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, 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 {
  border: 0 none;
  font-size: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
 }
 * {
  box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  color: #333;
  font: 0.8rem/1.2 "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
i,em, strong {
  font-style: normal;
}
ul, ol, li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
img {
  border: 0;
  vertical-align: middle;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.cl{
	clear:both;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.flex {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-inline {
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-wrap {
  -webkit-flex-wrap: wrap!important;
  -ms-flex-wrap: wrap!important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap!important;
  -ms-flex-wrap: nowrap!important;
  flex-wrap: nowrap !important;
}
.space-between {
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify!important;
  justify-content: space-between !important;
}
.justify-start {
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start!important;
  justify-content: flex-start !important;
}
.justify-end {
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end!important;
  justify-content: flex-end !important;
}
.flex-center,
.justify-center {
  -webkit-justify-content: center!important;
  -ms-flex-pack: center!important;
  justify-content: center !important;
}