/* element ui 样式重置 */
#app .el-table::before, 
#app .el-table__fixed-right::before, #app .el-table__fixed::before {
  display: none;
}
#app .el-table td, #app .el-table th {
  padding: 6px 0;
}
#app .el-table th {
  background: #F7F7F8 !important;
}

#app  .el-table td, #app  .el-table th.is-leaf {
  border-color: #EBEBEB;
}

#app .el-table th, #app .el-table td {
  color: #666;
  font-size: 14px;
  /* user-select: none; */
}
#app .el-table .el-table__body-wrapper td .cell.el-tooltip {
  text-align: left;
}

#app .pagenation-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 48px;
  margin-top: 20px;
  background:  #fff;
  text-align: right;
  border-top: 1px solid #EBEBEB;
}

#app .el-pager li {
  color: #666;
  font-weight: normal;
}
#app .el-pager li.active {
  color: #f66b3d;
}

/* 渐变button */
#app .el-button.gradual {
  padding:  8px 20px;
  background: linear-gradient(90deg, #F66B3D 0%, #FB4E4E 100%);
} 

#app .el-button.gradual.medium {
  font-size: 15px;
  padding:  12px 20px;
} 

#app .el-button.gradual.large {
  font-size: 16px;
  padding: 15px 20px;
} 

#app .el-button.gradual.is-disabled {
    color: #c4c4c4;
    cursor: not-allowed;
    background-image: none;
    background-color: #fff;
    border-color: #ededed;
}

#app .el-button.gradual:hover {
  opacity: .8;
}


/* 弹框 */
#app .el-dialog__headerbtn .el-dialog__close, 
.el-message-box .el-message-box__headerbtn .el-message-box__close {
  color: #333;
}

#app .el-dialog__headerbtn .el-dialog__close:hover,
.el-message-box  .el-message-box__headerbtn .el-message-box__close:hover {
  color: #F66B3D;
}

/* 垂直菜单 */
.el-menu--vertical .el-menu-item {
    color: #333;
    padding-left: 32px !important;
    height: 42px;
    line-height: 42px;
}
.el-menu--vertical .el-menu-item:hover {
  background-color: transparent;
  color: #F66B3D;
}

#app .el-date-editor.el-range-editor--large .el-range-separator {
  line-height: 29px;
}