#root {
  width: 100%;
  height: 100%;
}
@widthList: {
  40: 40px;
  50: 50px;
  60: 60px;
  80: 80px;
  100: 100px;
  120: 120px;
  150: 150px;
  200: 200px;
  250: 250px;
  300: 300px;
  400: 400px;
};

@marginLeftList: {
  10: 10px;
  15: 15px;
  20: 20px;
  30: 30px;
  40: 40px;
};
// html {
//   font-size: 120px;
// }
// @media screen and (max-width: 1600px) {
//   html {
//     font-size: 100px;
//   }
// }

body {
  .func-label-width(@widthList);
  .func-label-margin-left(@marginLeftList);
  .func-form-label-width(@widthList);
  .func-date-label-width(@widthList);
  .func-label-width-inline(@widthList);
}

.c-search {
  margin: 10px 0;

  .c-search-item {
    display: inline-block;
    flex-wrap: nowrap;
    .c-search-label {
      padding-right: 20px;
      text-align: right;
    }
  }
  .c-search-from {
    display: flex;
    .ant-form-item {
      display: flex;
      flex-wrap: nowrap;
      margin-right: 20px;
      margin-bottom: 0;
    }
  }
}

.c-table {
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 8px #d4dfe9;
  .ant-table-body {
    overflow: auto !important;
  }
}

.c-search-btn {
  text-align: center;
}

.c-pagination {
  margin-bottom: 10px;
  text-align: center;
}

.fl {
  float: left;
}

.fr {
  float: right;
}
.c-center {
  text-align: center;
}
.c-padding-right-10 {
  padding-right: 10px;
}
.c-margin-left-10 {
  margin-left: 10px;
}

.c-success {
  color: #52c41a !important;
}
.c-warning {
  color: #faad14 !important;
}
.c-error {
  color: #f5222d !important;
}
.c-primary {
  color: #1890ff !important;
}
.c-link {
  color: #1890ff !important;
  cursor: pointer;
}
