/* - -- ---< base.css >--- -- - */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Microsoft Yahei";
  font-size: 12px;
}
html ul,
body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
html a,
body a {
  text-decoration: none;
}
html a:link,
body a:link {
  text-decoration: none;
}
html a:visited,
body a:visited {
  text-decoration: none;
}
html a:hover,
body a:hover {
  text-decoration: none;
}
html a:active,
body a:active {
  text-decoration: none;
}
html .clear,
body .clear {
  clear: both;
}
html .ellipsis,
body .ellipsis {
  /*width: 100%;*/
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html h1,
body h1,
html h2,
body h2,
html h3,
body h3,
html input,
body input {
  margin: 0;
  padding: 0;
}
a,
img {
  border: 0;
}
/* 设置滚动条的样式 */
::-webkit-scrollbar {
  width: 5px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
  border-radius: 10px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0);
}
