/* CSS Document */
*{
  box-sizing: border-box;
  /* 在X5新内核Blink中，在排版页面的时候，会主动对字体进行放大，会检测页面中的主字体，当某一块字体在我们的判定规则中，认为字号较小，并且是页面中的主要字体，就会采取主动放大的操作。然而这不是我们想要的，可以采取给最大高度解决 */
  max-height: 100000px;
  border: none;
  margin: 0;
  padding: 0;
  font-style: normal;
}
a,span,th,td,i,em,h1,h2,h3,h4,h5,h6{
  font-size: inherit;
  color: inherit;
  font-weight :normal;
}
*:focus { outline: none!important;}
*:before, *:after {
  box-sizing: border-box;
  max-height: 100000px;
}
body{
  background:#fff;
  font-family: "Microsoft YaHei";
}
ul,ol,li {list-style-type:none;}
table{border-collapse:collapse;}
input,textarea {border:0; padding:0;outline:none;}
button{border:0;background:none;outline:none;padding:0;}
i{font-style:normal;}
b{font-weight:normal;}
em{font-style:normal;}           
/*link*/
a{
  text-decoration:none;
}

select {
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: solid 1px #000;
  /*很关键：将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  background-color: #fff;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.fl{float:left;}
.fr{float:right;}

