@charset "UTF-8";

/**
 * @name: reset
 * 重设浏览器默认样式
 */
/* 防止用户自定义背景颜色对网页的影响  */
html{color: #000;background: #fff;}
/* 初始化各元素的margin和padding为0 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,img{margin: 0;padding: 0;}
/* 去除table单元格之间的空格，合并单元格之间的border */
table{border-collapse: collapse;border-spacing: 0;}
/* 重置th和caption的对齐方式为左对齐 */
th,caption{text-align: left;}
/* 重置fieldset和img的边框为0 */
fieldset,img{border: 0}
/* 去除列表项的默认样式，li继承ol/ul的list-style */
ol,ul{list-style: none;}
/* 表单元素不继承父级 font 的各项规则 */
input,select,textarea{font-family: inherit;font-size: inherit;font-weight: inherit;}
/* sup/sub reset from Normalize.css */
sup,sub{font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sup{top: -0.5em;}
sub{bottom: -0.25em;}
/* 重置Headline1~6的font size和weight */
h1,h2,h3,h4,h5,h6{font-size: 100%;font-weight: normal;}
/* 重置特殊标签的样式 */
strong,em,code,cite,address,dfn,var{font-style: normal;font-weight: normal;}
q:before,q:after{content: '';}
abbr,acronym{border: 0;font-variant: normal;}
/* enable resizing for IE */
input,textarea,select{*font-size: 100%;}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe{display:block;}
.clearfix:after,.clearfix:before{content: " ";display: table;}
.clearfix:after{clear: both;}

/**
 * @name: base
 * 基础通用样式
 */
body{font-family: "微软雅黑",Microsoft YaHei,"Hiragino Sans GB","Hiragino Sans GB W3",tahoma,arial,simsun,"宋体";font-size: 14px;}
.container{ position:relative; width: 1000px; height:100%; margin:auto;}
 a{ text-decoration:none; color:#000;}
 a:hover{ text-decoration:underline;}
 h2{ font-size:30px;}
 h3{ font-size:24px;}
.fl{float: left;}
.fr{float: right;}

