.create-project-dialog {
  height: 500px;
  & .n-tabs-tab-wrapper {
    padding: 0 30px;
    & .n-tabs-tab__label {
      font-weight: bold;
    }
  }
  & .title {
    font-size: 16px;
    margin: 20px 0;
  }
  & .preset-list {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    & > div {
      flex: 0 0 300px;
      //background-color: #171a1e;
      height: 70px;
      border: 1px #16171b solid;
      display: flex;
      align-items: center;
      position: relative;
      & .select-down {
        position: absolute;
        top: 75px;
        width: 210px;
        min-height: 80px;
        border: 1px @primary-color solid;
        right: -1px;
        & ul {
          margin-bottom: 0;
        }
        //background: #1b1d21;
        & li {
          height: 40px;
          display: flex;
          padding: 0 20px;
          justify-content: space-between;
          align-items: center;
          font-size: 12px;
          //color: #8690a0;
          & p {
            margin-bottom: 0;
          }
          &:hover {
            cursor: pointer;
            background: #2680ff1f;
          }
          &.active {
            background: #2681ff47;
            color: #fff;
          }
        }
      }
      & .d1 {
        flex: 0 0 165px;
        padding-left: 10px;
        display: flex;
        flex-direction: column;
        height: 46px;
        justify-content: space-between;
        & p {
          margin-bottom: 0;
        }
        & p:last-child {
          color: #5e6775;
          font-size: 12px;
        }
        & .n-input__border,
        & .n-input__state-border {
          border: none;
          border-bottom: 1px #5e6775 solid;
        }
        & .n-input--focus {
          & .n-input__state-border {
            border-bottom: 1px @primary-color solid;
          }
        }
        & .n-i {
          opacity: 1;
          width: 60px;
          background: none;
        }
      }
      & .d2 {
        height: 50px;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.2s;
        & p {
          margin-bottom: 0;
        }
        &:hover {
          //background: #26292e;
        }
      }
      & img {
        height: 100%;
      }
      &.active {
        border-color:  @primary-color;
      }
    }
  }
  & .recommend-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.txtHover {
  cursor: pointer;
  text-decoration: underline;
  &:hover {
    color: #2681ff;
  }
}
