/*reset-------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'PingFangSC','PingFang SC';
  font-size: 16px;
}

body {
  background-color: #F2F4F9;
  /* 禁止选中字体 */
  -webkit-user-select: none;
  user-select: none;
}

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

a {
  color: #000;
  text-decoration: none;
}

p {
  margin: 0;
}

input,
label,
textarea,
button {
  font-family: inherit;
}

button {
  -webkit-appearance: none;
}

input,
button {
  border: none;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

select {
  border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

dt,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

::-webkit-scrollbar {
  display: none;
}