/*
 * Created Date: 2019-06-02
 * Author: 宋慧武
 * ------
 * Last Modified: Monday 2019-08-19 12:18:01 pm
 * Modified By: the developer formerly known as 宋慧武 at <songhuiwu001@ke.com>
 * ------
 * HISTORY:
 */
@import "./normalize.scss";

html {
  box-sizing: border-box;
  font-family: "PingFang SC", "Helvetica Neue", Helvetica, "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: $--color-text;
  font-size: $--font-size-base;
  line-height: 1;
  #app > * {
    min-height: 100vh;
  }
}

*:not(input) {
  border: 0;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

ul,
li {
  list-style: none
}

a {
  text-decoration: none;
}

input {
  outline: none;
  -webkit-appearance: none;
  &::-moz-placeholder,
  &::-ms-input-placeholder,
  &::-webkit-input-placeholder {
    color: $--color-text-placeholder;
  }
  &[type="search"]::-webkit-search-cancel-button {
    display: none;
  }
}
