* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  width: 100%;
  height: 100%;
  background-color: #F8F7F5;
}


input {
  /*去除阴影*/
  box-shadow: none;
  /*去除边框*/
  border: none;
  /*去除聚焦input的蓝色边框*/
  outline: none;
  /*禁止拖拽*/
  resize: none;
  /*去除iOS默认样式*/
  -webkit-appearance: none;
  /*去除点击时背景高亮样式*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}

input[type="search"]::-webkit-search-cancel-button {
  display: none !important;
}



a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}



ul,
ol {
  list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}