:root {
  width: 100%;
  height: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, img {
  /*font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;*/
  padding: 0;
  margin: 0;
  /*不要使用Helvetica Neue字体，该字体的C和O过于相似，影响阅读和使用*/
  font-family: 'PingFang SC', 'San Francisco', DIN, Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;
}
body {
  width: 100%;
  height: 100%;
  min-width: 1280px;
  min-height: 500px;
  padding-top: 44px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}
#app {
  position: relative;
  width: 100%;
  height: 100%;
  /* font-family: 'Avenir', Helvetica, Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; */
  color: #2c3e50;
}
.component-container {
  padding: 0 24px 6px;
}
i {
  font-style: normal;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
}
input {
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  outline: none;
}
textarea {
  resize: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix::after {
  display: block;
  height: 0;
  clear: both;
  line-height: 0;
  content: "";
  visibility: hidden;
}
.clearfix {
  zoom: 1;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.min-height-100vh {
  min-height: 100vh;
}
