@charset"utf-8";
/*公共样式*/
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
h1, h2, h3, h4, h5, h6, img, ol,ul, li, a, span, p, i, em, div, body, html {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
  font-weight: normal;
}
body{
  font-family:"微软雅黑","苹方", "tahoma", "arial","宋体";
  line-height:150%;
  padding:0;
  color:#666;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  min-width: 1340px;
}
input,button{
  border:0;
  font-family:"微软雅黑","苹方","tahoma", "arial","宋体";
  outline: none;
}
img {
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic/*ie7 解决图片缩放失真问题*/
}
a {
  color:#666;
  outline: none;
  text-decoration: none;
  background: transparent; /*修正win8系统IE连接灰色背景*/
}
a:hover{
  color:#0176bc;
}
a:active {
  star:expression(this.onFocus=this.blur());
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}/*去掉点击链接时的虚线外框*/
a:focus{
  outline-style:none;
  -moz-outline-style: none;
}
/*省略号*/
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.container{
  width: 1340px;
  margin:0 auto;
}