@charset "utf-8";

/* -------------@ reset css------------ */
body, h1, h2, h3, h4, h5, hr, p, blockquote,nav,header,section,footer, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */
 {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
* {
  /*可点击元素点触效果*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
  width: 100%;
}
body {
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*禁止长按*/
  -webkit-touch-callout: none;
  /*禁止复制功能，可能会导致导致输入框无法输入*/
  -webkit-user-select: none;
  /* 动画导致页面抖动 */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  /*取消ios默认样式*/
  -webkit-appearance: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  outline: none;
}
img {
  display: block;
  vertical-align: middle;
  border: 0;
}
button,
input,
select,
textarea {
  vertical-align: middle;
  outline: none;
  border-width: 0;
}
textarea {
  resize: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ins {
  text-decoration: none;
}
i {
  font-style: normal;
}
strong {
  font-weight: normal;
}
/*------------------@ global HTML Element style--------------------*/
body {
  font-family: "PingFang Medium", "PingFang SC", "Source Han Sans";
  font-weight: normal;
  line-height: 1;
}
