@charset "utf-8";

/*禁用iPhone中Safari的字号自动调整*/
html{
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  position: relative;
}
body{
  width: 100%;
}
*{
  /* font-size: 14px; */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "微软雅黑" !important;
}
/* 禁止缩放表单 */
input[type="submit"],input[type="reset"],input[type="button"],input{
  resize: none;
  border: none;
}
button{
  outline: 0;
}
/* 设置HTML5元素为块 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
  display: block;
}
textarea{
  outline: none;
}
/* 图片自适应 */
img{
  max-width: 100%;
  /* height: auto; */
  width: auto\9;  /* ie8 */
  -ms-interpolation-mode: bicubic;  /* 照顾ie图片缩放失真 */
}
/* 取消input select 的默认表现状态 */
input,select{
  -webkit-appearance: none;
  appearance: none;
}

/* 初始化 */
body,div,p,ul,ol,li,h1,h2,h3,h4,h5,h6,input,textarea,select,dl,dt,dd,a,img,button{
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;    /* 取消链接高亮 */
}
body{
  font: 12px/1.5 'Microsoft YaHei','宋体', Tahoma, Arial, sans-serif;
  color: #666;
  background: #fff;
}
cite,em,i{
  font-style: normal;
}
strong{
/*  font-weight: normal;*/
}
ul,ol,li{
  list-style: none;
}
.clearfix:after{
  content: '';
  display: table;
  visibility: hidden;
  height: 0;
  clear: both;
}
.clearfix{
  zoom: 1;
}
a{
  text-decoration: none;
  color: #969696;
  font-family: 'Microsoft YaHei', Tahoma, Arial, sans-serif;;
}
a:hover{
  text-decoration: none;
}
/* 移动端点击a链接出现蓝色背景问题解决 */
a:link,a:active, a:visited, a:hover{
  background: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
}
.fl{
  float: left;
}
.fr{
  float: right;
}
.clear{
  clear: both;
  height: 0;
}
.clearfix:after,.clearfix:before{
  content: '';
  display: table;
  clear: both;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.clearfix{
  zoom: 1;
}
.db{
  display: block !important;
}
.dn{
  display: none;
}
.cursor{
  cursor: pointer;
}
/* abbr, address, article, aside, audio, b, blockquote, canvas, caption, cite, code, dd, del, details, dfn, div,
dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h6, header, hgroup, html, i, iframe,
img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong,
sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  vertical-align: baseline;
  list-style-type: none;
  font-weight: inherit;
  font-style: inherit;
  font-family: "Microsoft Yahei", 微软雅黑, Helvetica;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  outline: 0;
  background: transparent;
} */
.container{
  padding-bottom: 1.6rem;
}
@media (max-width: 1600px){
  .container{
    width: 80%;
    margin: 0 auto;
  }
}
