/* stylelint-disable */
#root {
  height: 100%;
}

// PX does't parse by 'postcss-pxtorem'. But the browser is not case sensitive, so it works fine.
// Set `50` As the basis for rem initially. So it can work properly in the 1x screen of Android device.
html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: Micrsoft YaHei, sans-serif;
  user-select: none;
  color: #333;
  background-color: #fff;
}

a {
  background: transparent;
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

*[contenteditable] {
  -webkit-user-select: auto !important;
}

*:focus {
  outline: none;
}
