/* 基础样式：替代此前整包引入的 Bootstrap，仅保留页面实际依赖的基础重置。
   需在 index-new.css 之后引入，保持与原先 Bootstrap 相同的覆盖顺序 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
p {
  margin: 0 0 10px;
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
img {
  vertical-align: middle;
  border: 0;
}
button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  cursor: pointer;
}
.hidden {
  display: none !important;
}
