* {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

ul,
li {
  list-style-type: none
}

/*滚动条样式：谷歌浏览器下*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #f5f7fa;
}

/*滚动条的轨道*/
::-webkit-scrollbar-track {
  /*box-shadow: inset 0 0 5px rgba(0,0,0,.3);*/
  background-color: #f5f7fa;

}

/*滚动条的滑块按钮*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #c6c6c8;
  /*box-shadow: inset 0 0 5px #000;*/
}

/*滚动条的上下两端的按钮*/
::-webkit-scrollbar-button {
  height: 0px;
  background-color: #B0AEDA;
}

/*ie下隐藏滚动条*/
.scrollbar {
  width: 10px;
  height: 10px;
  background-color: #f5f7fa;
}

/*滚动条的轨道*/
.scrollbar-track {
  /*box-shadow: inset 0 0 5px rgba(0,0,0,.3);*/
  background-color: #f5f7fa;

}

/*滚动条的滑块按钮*/
.scrollbar-thumb {
  border-radius: 10px;
  background-color: #c6c6c8;
  /*box-shadow: inset 0 0 5px #000;*/
}

/*滚动条的上下两端的按钮*/
.scrollbar-button {
  height: 0px;
  background-color: #B0AEDA;
}

HTML {
  scrollbar-base-color: white;
  scrollbar-3dlight-color: white;
  scrollbar-highlight-color: white;
  scrollbar-track-color: white;
  scrollbar-arrow-color: white;
  scrollbar-shadow-color: white;
  /* scrollbar-color: transparent transparent; */
  scrollbar-track-color: transparent;
  -ms-scrollbar-track-color: transparent;
  scrollbar-width: 20px;
  -ms-scrollbar-width: none !important;
}

/*火狐下*/
@-moz-document url-prefix(http: //),url-prefix(https://) {   

  /* 滚动条颜色 */
  scrollbar {
    -moz-appearance: none !important;
    background: rgb(0, 255, 0) !important;
  }

  /* 滚动条按钮颜色 */
  thumb, scrollbarbutton {
    -moz-appearance: none !important;
    background-color: rgb(0, 0, 255) !important;
  }

  /* 鼠标悬停时按钮颜色 */

  thumb:hover, scrollbarbutton:hover {
    -moz-appearance: none !important;
    background-color: rgb(255, 0, 0) !important;
  }

  /* 隐藏上下箭头 */
  scrollbarbutton {
    display: none !important;
  }

  /* 纵向滚动条宽度 */
  scrollbar[orient="vertical"] {
    min-width: 15px !important;
  }
}

.el_tableDiv {
  height: 420px;
  overflow-y:auto;
}