@charset"utf-8";
/*公共样式*/
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body,html{
  width:100%;
}
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;
  min-width: 1200px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
	
}
input,button,textarea{
  border:0;
  font-family:"微软雅黑","苹方","tahoma", "arial","宋体";
  outline: none;
}
.input:-moz-placeholder,.textarea:-moz-placeholder{   
color: #ccc;   
}   
.input:-ms-input-placeholder,.textarea:-moz-placeholder{   
color: #ccc;   
}   
input::-webkit-input-placeholder,.textarea::-moz-placeholder{   
color: #ccc;   
} 
img {
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;/*ie7 解决图片缩放失真问题*/
}
a {
  outline: none;
  text-decoration: none;
  color: #666;
  background: transparent; /*修正win8系统IE连接灰色背景*/
}
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;
}
a, :hover, .tingico {
	-webkit-transition: all 0.25s linear 0.01s;
	-moz-transition: all 0.25s linear 0.01s;
	-ms-transition: all 0.25s linear 0.01s;
	-o-transition: all 0.25s linear 0.01s;
	transition: all 0.25s linear 0.01s;
}
/*省略号*/
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/*清楚浮动*/
.clearfix:after {
	content: " ";
	clear: both;
	height: 0;
	visibility: hidden;
	display: block;
}
.clearfix {
*zoom:1;
}
