.page{
  box-sizing: border-box;
  padding: 20px;
}
// 为table 添加标头
.tableHeaderStyle {
  background: #FAFBFC !important;

  th {
    background: #FAFBFC !important;
    padding: 8px 0 !important;
    color: #666;
  }
}

.el-table__header{
  th {
    background: #FAFBFC !important;
    padding: 8px 0 !important;
    color: #666;
  }
}

//
.block-box {
  margin-bottom: 15px;
}

// 表格样式
.table {
  width: 100%;
  color: #666;
  border-collapse: collapse;
  background-color: #fff;

  td {
    position: relative;
    padding: 9px 15px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #e6e6e6;

    &:nth-child(odd) {
      width: 15%;
      text-align: right;
      background-color: #f7f7f7;
    }
  }
}

.el-menu-trigger {
  display: none !important;
}

// 分页
.b-table{
  margin-bottom: 16px;
}
.b-pagination{
  display: flex;
  align-items: center;
  justify-content: center;

}

.el-drawer__header,.el-dialog__header{
  position: relative;

  &::before{
    position: absolute;
    left: 0;
    top:60px;
    width:100%;
    height: 1px;
    background: #f7f8fa;
    content: "";
  }
}
.el-dialog__title{
  font-size: 14px;
}

.el-drawer__body{
  overflow: hidden;
}

.page-com{
  margin-right: 20px;
}