@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: calc(100vw / 7.5);
  font-size: -webkit-calc(100vw / 7.5);
  -webkit-text-size-adjust: 100%;
  /*去除高亮*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  /*IOS下滚动不流畅问题解决*/
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  line-height: normal;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 0.24rem;
}

a {
  text-decoration: none;
}

/*去除chrome下图片边框*/
img {
  border: 0;
}

select, input, img {
  vertical-align: middle;
}

*:focus {
  outline: medium;
}

ul, ol {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select,
textarea,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*去除高亮*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
