@charset "UTF-8";
/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
legend,
button,
input,
textarea,
th,
td,
tbody,
tr,
td,
th,
label {
  /* table elements 表格元素 */
  margin: 0;
  padding: 0;
}
/* 设置默认字体 */
body,
button,
input,
select,
textarea {
  /* for ie */
  /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
  font: 12px/1 "Microsoft YaHei", "微软雅黑", "\5FAE\8F6F\96C5\9ED1";
  /* 用 ascii 字符表示，使得在任何编码下都无问题 */
  font-weight: normal;
}
html,
body {
  width: 100%;
  height: 100%;
  min-width: 1200px;
}
h1 {
  font-size: 18px;
  /* 18px / 12px = 1.5 */
}
h2 {
  font-size: 16px;
}
h3 {
  font-size: 14px;
}
h4,
h5,
h6 {
  font-size: 100%;
}
address,
cite,
dfn,
em,
var,
i {
  font-style: normal !important;
}
/* 将斜体扶正 */
code,
kbd,
pre,
samp,
tt {
  font-family: "Courier New", Courier, monospace;
}
/* 统一等宽字体 */
small {
  font-size: 12px;
}
/* 小于 12px 的中文很难阅读，让 small 正常化 */
/* 重置列表元素 */
ul,
ol {
  list-style: none;
}
/* 重置文本格式元素 */
a,
s {
  text-decoration: none;
  color: #666;
}
/* 重置表单元素 */
legend {
  color: #000;
}
/* for ie6 */
fieldset,
img {
  border: none;
}
/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 使得表单元素在 ie 下能继承字体大小 */
  border: 0;
  outline: none;
  resize: none;
}
/* 重置表格元素 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 重置 hr */
hr {
  border: none;
  height: 1px;
}
/*清除浮动代码*/
.clearfloat:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
a{
    outline-style: none;
}
.clearfloat {
  zoom: 1;
}
/*公共类*/
.fl {
  float: left;
}
.fr {
  float: right;
}


/*边距清0*/
.m0 {
  margin: 0 !important;
}
.p0 {
  padding: 0 !important;
}
.ml0 {
  margin-left: 0 !important;
}
.mr0 {
  margin-right: 0 !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
/*添加边框线*/
.br {
  border-right: 1px solid #4d729f;
}
.bl {
  border-left: 1px solid #4d729f;
}
.bb {
  border-bottom: 1px solid #4d729f;
}
.bt {
  border-top: 1px solid #4d729f;
}
/*清除边框*/
.b0 {
  border: 0 none;
}
.br0 {
  border-right: 0 none;
}
.bl0 {
  border-left: 0 none;
}
.bb0 {
  border-bottom: 0 none;
}
.bt0 {
  border-top: 0 none;
}









