@charset "utf-8";

/*------------------------------- CSSReset -------------------------------*/

/** 清除边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote, /* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li, /* list elements 列表元素 */
form,
fieldset,
legend,
button,
input,
textarea, /* form elements 表单元素 */
th,
td /* table elements 表格元素 */ 
{
	margin:0;padding:0;
	}
label{ 
	border:none;
	text-decoration:none;
	}

/** 字体设置 **/
body,
button,
input,
select,
textarea/* for ie */{
	font:12px/1.5 Verdana,Arial,Helvetica,sans-serif;
	color:#444444;
	}
h1,
h2,
h3,
h4,
h5,
h6{
	font-size:100%;
	}
address,
em{
	font-style:normal;
	} /* 将斜体扶正 */

/*去除元素轮廓---fbx---*/
div,
table,
form,
input,
button,
select,
textarea,
fieldset,
legend{
	outline:none;
	}/* for google / safari*/

/** 重置列表元素 **/
ul,
ol{
	list-style:none outside none;
	}

/** 重置链接元素 **/
a{
	text-decoration:none;
	color:#333333;
	cursor:pointer;
	}
a:hover{
	color:#186fb9;
	text-decoration:none;
	}

/** 重置表单元素 **/
legend{
	text-indent:-9999px;
	height:0;
	}
fieldset,
img{
	border:0;
	} /* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
	font-size:100%;
	} /* 使得表单元素在 ie 下能继承字体大小 */

/** 重置表格元素 **/
table{
	border-collapse:collapse;
	border-spacing:0;
	}
/** 重置元素垂直居中 **/
img,
input,
select,
textarea,
button{
	vertical-align:middle;
	}

/** 清除浮动 **/
.bh-clear{
	clear:both;
	}
.bh-section:after{
	content:".";
	display:block;
	visibility:hidden;
	height:0;
	clear:both;
	}

