@charset "UTF-8";
/* 垂直居中 */
/* 水平居中 */
/* 垂直水平居中 */
/* 多行排列 */
/* 两端对齐 */
/* 一行平均分配 */
/* 靠左对齐 */
/* 靠右对齐 */
/* 纵向排列 */
/* 靠底部 */
/* 内容宽度 */
/* 文本溢出隐藏 一行 */
/* 文本溢出隐藏 多行 */
* {
  -webkit-text-size-adjust: none;
}

* {
  box-sizing: border-box;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, dl, dd, pre {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  min-width: 1440px;
  margin: 0 auto;
  padding: 0;
  font-family: Microsoft YaHei;
  font-size: 0.15rem;
  text-decoration: none;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
  color: #333;
}

button {
  border: none;
}

a.hover:hover,
button.hover:hover {
  opacity: 0.8;
  cursor: pointer;
}

img {
  vertical-align: bottom;
}

input {
  background-color: transparent;
  border: none;
}

input:focus {
  outline: none;
}

textarea {
  border: none;
  outline: none; /*边线不显示*/
  appearance: none;
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}