/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #0066cc;
  text-decoration: none;
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 容器 */
.container {
  width: 1200px;
  margin: 0 auto;
}
.container-fluid {
  width: 100%;
}

/* 浮动 */
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.clearfix {
  zoom: 1;
}

/* 按钮 */
.btn {
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

/* 表单 */
input {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}