﻿@charset "utf-8";
/**
 * base.css 基础CSS，必须引用 
 * @author xuzengqiang
 * @since 2015-11-18 21:26:29
**/
body{
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padding:0; }
/*字体列表*/
body, button, input, select, textarea { font-family:"Microsoft YaHei",Arial,Helvetica,sans-serif,"宋体"; }
h1, h2, h3, h4, h5, h6{ font-size:100%; }
address, cite, dfn, em, var { font-style:normal; }
code, kbd, pre, samp { font-family:couriernew, courier, monospace; }
small{ font-size:12px; }
ul, ol { list-style:none; }
a { text-decoration:none; }
/*指鼠标在链接*/
a:hover { text-decoration:none; }
/* 指正常的未被访问过的链接*/
a:link{text-decoration:none;}
/*指已经访问过的链接*/
a:visited{text-decoration:none;}
/* 指正在点的链接*/
a:active{text-decoration:none;}
sup { vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
legend { color:#000; }
fieldset, img { border:0; }
button, input, select, textarea { font-size:100%; }
table { border-collapse:collapse; border-spacing:0; } 
.fl_l{float:left}
.fl_r{float:right}
.clear{clear:both}
input,button,a{blr:expression(this.onFocus=this.blur(););outline:none}
textarea{resize:none;overflow-y:auto} /*不能改变大小,且y轴只有当超出范围后才出现滚动条*/
input,button{
	*overflow:visible /*解决IE7下按钮双填充的问题*/
}
*{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}