
@import '../../style/index.less';
@import '../../xui-list-page/style/index.less';

@detail-information-prefix-cls: ~'@{xui-prefix}__detail-information';
@detail-information-prefix-cls--border: ~'@{xui-prefix}__detail-information--border';

.@{detail-information-prefix-cls} {
  &--head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    &--title {
      position: relative;
      display: flex;
      align-items: center;
      padding-left: 10px;
      font-weight: bold;
      font-size: 16px;
      &::before {
        position: absolute;
        top: 5px;
        left: 0;
        width: 2px;
        height: 14px;
        background-color: @primary-color;
        content: '';
      }
    }
    &--buttonGroup {
      display: flex;
      align-items: center;
    }
  }
  &--body {
    &--head {
      padding: 10px 0 20px;
    }
    &--col {
      display: flex !important;
      margin-bottom: 20px;
      padding-right: 30px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      &--label {
        color: #999;
        white-space: nowrap;
      }
      &--content {
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }

    &--col_no-ellipsis {
      display: flex !important;
      margin-bottom: 20px;
      padding-right: 30px;
      overflow: hidden;
      // white-space: nowrap;
      text-overflow: ellipsis;
      &--label {
        color: #999;
        white-space: nowrap;
      }
      &--content {
        word-break: break-all;
      }
    }
    &--col:nth-child(3n) {
      padding-right: 0;
    }
    &--col--footer {
      white-space: pre-wrap;
    }
    &--info {
      &--pic {
        display: inline-block;
        width: 90px;
        background: rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        cursor: pointer;
      }

      &--pic:not(:last-child) {
        margin-right: 10px;
      }
    }
    &--table {
      margin-bottom: 19px;
    }
    &--pic {
      display: flex;
      &--item {
        display: flex;
        &--img {
          width: 200px;
          height: 150px;
          margin-left: 9px;
          overflow: hidden;
          img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 3px;
            cursor: zoom-in;
          }
        }
        &--imgNormal {
          cursor: auto;
        }
      }
    }
    &--listTable {
      &--title {
        margin-bottom: 18px;
      }
      &--content {
        margin-bottom: 18px;
      }
      &--contentLast {
        margin-bottom: 0;
      }
    }
    &--listCollapse {
      margin-bottom: 20px;
      &--header {
        display: flex;
      }
      &--title {
        margin-right: 30px;
        font-weight: bold;
      }
      .ant-collapse-item-disabled {
        .ant-collapse-header {
          color: rgba(0, 0, 0, 0.85);
        }
      }
    }
  }
}

.@{detail-information-prefix-cls--border} {
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
