@charset "utf-8";
/*  清除默认属性  */
html {
  border: 0px;
}
body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,table,td,img,div,p,dl,dt,dd {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: "微软雅黑", Lucida Grande, Verdana, Lucida, Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: left;
  background-clip: border-box;
  background-origin: border-box;
  border: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
}
ul,
li,
dl,
ul,
ol {
  list-style: none;
}
select {
  font-size: 14px;
  color: #313232;
}
input {
  font-size: 14px;
  color: #313232;
}
select,
input {
  outline:none;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  font-family: "微软雅黑";
}
.btn{
  cursor:pointer;
}
cite,
em {
  font-style: normal;
}
a {
  text-decoration: none;
}
a:link,
a:visited {
  color: #313232;
}
a:hover,
a:active {
  color: #666;
  text-decoration: none;
}
img {
  border: 0px;
}
textarea{
  resize:none;
}
/*  CSS小手  */
.cursor {
  cursor: pointer;
}
/*  超出隐藏  */
.hiding {
  overflow: hidden;
}
/*  浮动  */
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear{
  clear:both;
}
/*  居中  */
.m_auto {
  margin: auto;
}
.container {
  width: 1200px;
  margin: auto;
  height: 100%;
}
/*  display  */
.hide {
  display: none;
}
.d_b {
  display: block;
}
.d_i {
  display: inline;
}
.d_ib {
  display: inline-block;
}
/*  定位  */
.rela {
  position: relative;
}
.abso {
  position: absolute;
}
.fixed {
  position: fixed;
}
/*  字体样式  */
.under {
  text-decoration: underline;
}
.center {
  text-align: center;
}
.blod {
  font-weight: bold;
}
/*  三角形  */
.triangle {
  width: 0px;
  height: 0px;
  border: 50px transparent solid;
  border-bottom: 50px #000 solid;
}
/*  CSS3过渡动画  */
.trans {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/*  圆角  */
.fillet {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}