* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
td, th, caption {
  font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
img {
  border: none;
  vertical-align: middle;
}
ol, ul, li {
  list-style: none;
}
input, textarea, select, button {
  font: 14px "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
}
table {
  border-collapse: collapse;
}
html {
  overflow-y: scroll;
}
/* 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸 */
/* ::-webkit-scrollbar {
  width: 7px;  
  height: 7px;  
} */
/* 定义滚动条轨道 内阴影+圆角 */
::-webkit-scrollbar-track {
  border-radius: 5px;  
}
/* 定义滑块 内阴影+圆角 */
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,.1);
  border-radius: 5px;
  box-shadow: inset 1px 1px 10px rgba(0,0,0,.1);
  -webkit-box-shadow: inset 1px 1px 10px rgba(0,0,0,.1);
}

/*公共类*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: inline-block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  *zoom: 1;
}
.fl {
  float: left
}
.fr {
  float: right
}
.hide {
  display: none
}
.clearfix {
  clear: both;
}
.clearfix:before,
.clearfix:after {
  content: '';
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.hand {
  cursor: pointer;
}
.omit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.pos-f {
  position: fixed;
}
.pos-r,.pr {
  position: relative;
}
.pos-a,.pa {
  position: absolute;
}
.pac {
  position: absolute!important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.select-none {
  -o-user-select: none;
  -moz-user-select: none; /*火狐 firefox*/
  -webkit-user-select: none; /*webkit浏览器*/
  -ms-user-select: none; /*IE10+*/
  -khtml-user-select :none; /*早期的浏览器*/
  user-select: none; 
}

/* 分页主题色 */
.el-pagination.is-background .el-pager li:not(.disabled).active{
  background-color: var(--themeColor) !important;
}
