/* 全局覆盖antd左对齐 */
.ant-table-thead > tr > th,
.ant-table-tbody > tr > td,
.ant-table-self tbody td {
  text-align: left;
}

/* 覆盖面包屑颜色 */
#root .ant-layout .ant-breadcrumb {
  height: 40px;
  padding: 10px 0 0 24px;
  margin-bottom: 0;
  background-color: #fff;
  font-size: 16px;
}

/* 全局表格表头颜色 */
#root .ant-table-thead > tr > th {
  color: rgba(0, 0, 0, 0.4);
}

.operation-box {
  text-align: right;
}

.operation-box a {
  padding-left: 8px;
}
/* antd的tab样式 */
#root .ant-tabs-nav .ant-tabs-tab {
  margin: 0;
  font-size: 14px;
  line-height: 12px;
  padding: 14px 20px;
  color:#999;
}

#root .ant-tabs-nav .ant-tabs-tab-active {
  color: var(--primary-self-color);
  background: rgba(245, 108, 29, 0.06);
  border-radius: 4px 4px 0 0;
}

#root .ant-tabs-bar {
  /* margin-top: 16px; */
}

#root .ant-tabs-nav .ant-tabs-tab {
  margin: 0;
  font-size: 16px;
  line-height: 12px;
  padding: 14px 20px;
}

#root .ant-alert-info {
  margin-bottom: 16px;
}
#root th,td{
  font-size: 14px;
}
#root .ant-table table{
  border-radius: 4px;
  border-collapse:separate;
}

/*全局覆盖antd左对齐*/
    /* #root .ant-table-thead > tr:first-child > th:last-child {
      text-align: right;
    }
    #root .ant-table-self tbody td:last-child {
      text-align: right;
    }
    #root .ant-table-tbody > tr > td:last-child {
      text-align: right;
    } */
    /*表格的loading*/
    #root .ant-table-tbody > tr > td:last-child .ant-spin {
      margin-right:50%;
    }
    /*表格checkBox的对其*/
    #root .ant-table-tbody > tr > td.ant-table-selection-column {
      text-align: left;
    }
    /*表格操作右对齐*/
    th.operation-th {
      text-align: right !important;
    }

    .operation-td {
      text-align: right !important;
    }

    .ant-form-item-control {
      line-height: 32px;
    }

    form .ant-input-group-wrapper {
      top: 0;
    }

    /* .ant-form-item-label {
      line-height: 32px;
    } */

    .operation-box a {
      padding-left: 8px;
    }