/* 去除常见标签默认的 margin 和 padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	min-width: 1280px;
	background: #fff;
}

/* 设置网页统一的字体大小、行高、字体系列相关属性 */
body {
  font-size: 16px;
	line-height: 30px;
  font-family:  "Microsoft Yahei", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #333;
}

/* 去除列表默认样式 */
ul,
ol,
li {
  list-style: none;
}

/* 去除默认的倾斜效果 */
em,
i {
  font-style: normal;
}

/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
  outline: 0;
  -webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s
}

a:hover {
	color: #058BC1;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

/* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
img {
  width: 100%;
  vertical-align: middle;
}

/* 去除input默认样式 */
input {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
	font-weight: normal;
}

/* 清除浮动 */
.clearfix {
  *zoom: 1;
  }

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }

  /* 表格样式 */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  input, 
  button, 
  ul, 
  ol {
    margin: 0px;
    padding: 0px;
  }

  .hidden {
    display: none;
  }


  .red {
    color: #F97D1C;
  }
  .fl {
    float: left;
  }
  .fr {
    float: right;
  }
  .tac {
    text-align: center;
  }
  .tar {
    text-align: right;
  }
  .poa {
    position: absolute;
  }
  .por {
    position: relative;
  }
  .hidden {
    display: none;
  }
 