.search-container-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  overflow-y: auto;
}

.search-table-container {
  flex: 1 1 auto;
  margin: 8px 10px;
}

.search-box-container {
  width: 100%;
  padding: 0 8px;

  :deep(.tiny-input) {
    width: 100%;

    &__inner {
      height: 30px;
    }
  }
}

.col {
  width: 80%;
  height: 70px;
}

:deep(.tiny-pager) {
  padding: 10px;
}

:deep(.tiny-grid-button__wrapper) {
  width: 100%;
}

:deep(.tiny-form-item__label) {
  color: #494747;
  font-weight: normal;
}

:deep(.tiny-grid-header__column) {
  height: 35px;
  color: rgb(139, 137, 137);
  background-color: #f5f6f7;
}

.operation {
  color: #5e7ce0;
}

.btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  background-color: #f5f5f5;

  .screen {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
    text-align: center;
    cursor: pointer;

    span {
      margin-left: 10px;
      color: #4e5969;
      font-size: 14px;
    }
  }
}

.status {
  &-dot {
    position: relative;
    top: -1px;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    vertical-align: middle;
    background-color: #1890ff;
    border-radius: 50%;
  }

  &-closed {
    .status-dot {
      background-color: #d9d9d9;
    }
  }

  &-finished {
    .status-dot {
      background-color: #52c41a;
    }
  }
}

.tiny-fullscreen {
  height: calc(100vh - 230px);
  overflow: hidden;
  background: #fff;

  .tiny-fullscreen-scroll {
    height: 100%;

    .tiny-fullscreen-wrapper {
      height: 100%;

    }
  }
}