﻿/* CSS Document */

*,
::before,
::after {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  /*清除移动端默认的点击高亮效果*/
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
}

html,
body {
  width: 100%;
  font-size: 14px;
  color: #666;
  font-family: "Microsoft yahei";
  position: relative;
}

ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: normal;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0 none;
}

a {
  outline: none;
  text-decoration: none;
  color: #666;
  -o-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
}

em {
  font-style: normal;
}

.clearfix::after {
  content: '';
  height: 0;
  line-height: 0;
  display: block;
  visibility: hidden;
  clear: both;
}

.clearfix {
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}