$blue: #557cff;
$gray: #00000073;
.timeTemplate {
  margin-bottom: 10px;
  overflow: hidden;
  .timeTitle {
    float: left;
    margin-right: 5px;
  }
  .timeCon {
    float: left;
    margin-left: 10px;
    .selectDiv {
      width: 450px;
      .rc-select-selection-item {
        display: inline-block;
        width: 350px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }
    .saveTplCon {
      margin-top: 10px;
      height: 30px;
      display: flex;
      align-items: center;
      i {
        cursor: pointer;
      }
      .div-input {
        font-size: 12px;
        width: 317px;
        &:hover {
          border-color: #1ea7fd !important;
        }
        > input:focus {
          border-color: #1ea7fd !important;
        }
      }
      .input-error:hover {
        border: 1px solid #f5222d !important;
        box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2) !important;
      }
    }
  }
}
.timeTeplateSelect {
  .rc-select-single {
    .rc-select-selector {
      border: 1px solid #d9d9d9;
      border-radius: 2px;
      height: 26px;
    }
    .rc-select-selection-placeholder,
    .rc-select-selection-item {
      top: 2px;
      left: 10px;
    }
  }
  .rc-select-focused {
    .rc-select-selector {
      border-color: #1ea7fd !important;
      box-shadow: 0 0 0 2px rgba(91, 133, 191, 0.2);
    }
  }
}
.timeTeplateDropdown {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background-color: #fff;
  z-index: 1000;
}
.selectItem {
  padding-right: 15px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  .div-input {
    width: 350px;
    font-size: 12px;
    input {
      padding-left: 8px;
      font-size: 12px;
    }
    &:hover {
      border-color: #1ea7fd !important;
    }
    > input:focus {
      border-color: #1ea7fd !important;
    }
  }
  .input-error:hover {
    border: 1px solid #f5222d !important;
    box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2) !important;
  }
  .title {
    display: inline-block;
    width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px;
    font-size: 12px;
  }
  .confirm {
    float: right;
    cursor: pointer;
    color: $blue;
    font-size: 12px;
  }
  i {
    cursor: pointer;
    color: $blue;
    // display: none;
  }
  .i-edit {
    margin-right: 8px;
  }
}
.selectItem:hover {
  background-color: #f5f5f5;
  i {
    display: inline-block;
  }
}
