
html,body{
    background-color:#fff;
}
html, body, div, ul, ol, li, img, a, span {
  margin: 0;
  border: 0;
  padding: 0;
  font-style: normal;
  box-sizing: border-box;
}
*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
input[type='radio'],input[type='radio']:checked{
  margin: 0;
  outline: 0;
}
input[type="tel"],
input[type="text"],
input[type="password"],
textarea {
  border: none;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 12px;
  margin: 0;
  width: 100%;
  height: 50px;
  line-height: normal;
  color: #424242;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  -webkit-user-select: text;
  user-select: text;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 5px;
  background-color: #E7EAF1;
  margin: 0 auto;
  margin-top: 1px;
}

.aui-switch {
  width: 2.55rem;
  height: 1.25rem;
  position: relative;
  vertical-align: top;
  border: 1px solid #dddddd;
  background-color: #dddddd;
  border-radius: 0.9rem;
  background-clip: content-box;
  display: inline-block;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.aui-switch:before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.6rem;
  background-color: #fff;
  content: '';
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}

.flex-wrap {
    display: -webkit-box;
    display: box;
    display: -webkit-flex;
    display: flex;
  }

  .flex-con {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }

  .flex-vertical {
    -webkit-box-horizontal: vertical;
    -webkit-flex-flow: column;
    flex-flow: column;
  }

.align-between{
    display: flex;
    align-items: center;
    justify-content:space-between;
  }
  .align-center{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .align-around{
    display: flex;
    align-items: center;
    justify-content:space-around;
  }
  .align-end{
    display: flex;
    align-items: center;
    justify-content:flex-end;
  }
  .align-start{
    display: flex;
    align-items: center;
    justify-content:flex-start;
  }
  .align-top{
    display: flex;
    align-items: flex-start;
    justify-content:flex-start;
  }

  .after::after {
    content: '';
    clear: both;
    display: block;
  }

  .before::before {
    content: '';
    display: table;
  }
  .hidden{
    display: none;
  }
  input[type="text"],
  input[type="password"],
  input[type="search"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="date"],
  input[type="datetime-local"],
  input[type="time"],
  input[type="number"],
  textarea {
    -webkit-appearance: none;
    border: none;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    outline: none;/*边线不显示*/
    resize: none;/*禁止拉伸*/
    display: block;
    padding: 12px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -webkit-user-select: text;
    user-select: text;
    font-family: inherit;
    appearance: none;
  }

  .aui-ellipsis-1 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
