@charset "UTF-8";
/* ======== CSS RESET ======== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}
img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background-color: #f5f5f5;
}

ß body {
  background-color: #f5f5f5;
}

/* ======== 常用工具类 ======== */
.hidden {
  display: none !important;
}

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

button {
  cursor: pointer;
}
