/* 全局样式 - 1:1 还原官方基础样式 */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #f5f7fa;
}

#app {
  height: 100%;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 官方按钮、输入框的基础重置 */
.el-button--danger {
  background-color: #f33f40 !important;
  border-color: #f33f40 !important;
}

.el-button--danger:hover {
  background-color: #d32f2f !important;
  border-color: #d32f2f !important;
}
