$border: #ebebeb;
$label: #ebf3fe;
.ver_column_row {
  padding-bottom: 0 !important;
  position: relative;

  &:last-child {
    .column_col {
      margin-bottom: 0;
    }
  }
  .ver_column_col {
    padding: 8px 8px;
    border: 1px solid $border;
    margin-bottom: -1px;
    margin-right: -1px;
    height: inherit;
    background-color: #fff;
    font-size: 13px;
    vertical-align: middle;
    display: flex;
    justify-content: left;
    align-items: center;
    word-break: break-all;
    flex: none;
    width: 200px;
    max-width: none;
    color: #333;
    .ver_col_ellipsis {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
    }
  }
  .ver_column_title {
    background-color: $label;
    &.ver_title_fixed {
      position: sticky;
      position: -webkit-sticky;
      left: 0;
      z-index: 0;
      &::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        width: 0.3rem;
        background: linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.06) 0%,
          rgba(0, 0, 0, 0) 100%
        );
        transform: translateX(100%);
        content: '';
        pointer-events: none;
      }
    }
  }
  &.ver_top_fixed {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1;
  }
}
.ver_infomation_box {
  line-height: 22px;
  padding: 20px;
  font-size: 14px;
  white-space: pre-wrap;
  overflow-y: auto;
  word-break: break-word;
}