:focus {
  outline: none
}

::-moz-focus-inner {
  border-color: transparent
}

input:focus {
  outline: none
}

input,
button,
select,
textarea {
  border: none;
  outline: none
}

button {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

html,
body {
  font-size: 14px;
  color: #333;
  font-family: Arial, Tahoma, "Microsoft YaHei", "SimSun"
}

body {
  overflow-x: hidden;
}

/* 选择特定元素，例如一个带有滚动条的 div */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: #a88c64;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #666;
}

li {
  list-style: none
}

a {
  text-decoration: none;
  color: #333
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

img {
  vertical-align: top;
  border: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400
}