*,
::before,
::after {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  /*清除移动端默认的点击高亮效果*/
  -webkit-tap-highlight-color: transparent;
  /*设置以边框开始计算宽度*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html,
body {
  width: 100%;
  font-size: 14px;
  color: #333;
  font-family:  "Microsoft yahei","GulimChe";
  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: #333;
  -o-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}


a:hover{
  color: #01345a;
  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;
}
.container{
  width: 1200px;
  margin: 0 auto;
}