@import '../../../../global.scss'; // 根据实际情况调整路径

.select {
  &Button {
    margin-top: 6px;
  }
  &Item {
    display: grid;
    grid-template-rows: 36px 40px;
    grid-template-columns: 74px 1fr 40px;
    align-items: center;
    grid-gap: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    cursor: pointer;
    @include with-border;
    max-width: 800px;
    &Image {
      width: 66px;
      height: 66px;
      grid-row-end: span 2;
      border-radius: 4px;
      margin-left: 8px;
    }
    &Name {
      padding-top: 12px;
      font-weight: 500;
      font-size: 14px;
      color: var(--color-text1-4, #292929);
      line-height: 22px;
    }
    &Desc {
      font-size: 13px;
      color: var(--color-text1-2, #6e6e6e);
      line-height: 20px;
      align-self: start;
      overflow: hidden;
    }
    &Checkbox {
      grid-row-end: span 2;
      align-self: center;
    }
  }
}
