/* 基础 CSS Reset */
* {
  margin: 0;
  /* 清除所有元素默认外边距 */
  padding: 0;
  /* 清除所有元素默认内边距 */
  box-sizing: border-box;
  /* 让宽高计算更直观 */
}
li,
ul,
ol {
  list-style: none;
  /* 清除列表默认小圆点/数字 */
}
a {
  text-decoration: none;
  /* 清除链接默认下划线 */
}
body,
button,
input,
option,
select,
td,
textarea {
  font-family: arial, verdana, helvetica, 'PingFang SC', 'HanHei SC', 'STHeitiSC-Light', Microsoft Yahei, sans-serif;
}
a:active,
a:focus,
a:hover,
button,
input,
textarea {
  outline: 0;
}
