.asp-radio-group-select {
  width: 100%;
}
  .display-none {
    display: none !important;
  }
  .query-form-selector {
    box-sizing: border-box;
    .el-radio-group {
      display: block;
      border-bottom: 1px solid #eef0f3;
      margin: 0;
      padding-bottom: 10px;
      &:last-child {
        border-bottom: none;
      }
    }
    .selector-item {
      font-size: 14px;
      height: 30px;
      line-height: 30px;
      display: flex;
      align-items: center;
      padding: 0 20px;
      .custom {
        display: flex;
        align-items: center;
        white-space: nowrap;
        input {
          padding: 0 10px;
          height: 20px;
        }
        .selector {
          position: relative;
          margin-left: 5px;
          i {
            font-size: 14px;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #c0c4cc;
          }
          select {
            position: relative;
            cursor: pointer;
            z-index: 2;
            padding-right: 20px;
            margin-right: 5px;
            border: 1px solid #dcdfe6;
            // outline: none; //清除select聚焦时候的边框颜色
            border-radius: 5px;
            width: auto;
            height: 20px;
            line-height: 20px;
            appearance: none; //隐藏select的下拉图标
            -webkit-appearance: none;
            -moz-appearance: none;
            color: #666;
            padding-left: 6px;
            background: transparent;
            outline: none !important;
            option {
              background: #fff;
              color: #666;
            }
          }
        }
        .el-input {
          min-width: 70px;
          .el-input__inner {
            padding: 8px;
          }
        }
      }
    }
  }
  .el-select-dropdown__item {
    &.hover {
      background: #fff;
    }
  }
  .query-form-selector-radio {
    min-width: 260px;
    width: auto;
  }
