@import "common/var";
.aos-form-view {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
  padding: 16px 0px;
  &__item {
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  &__item-value {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
  }
  &__item-value-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: $--color-primary;
    margin-right: 8px;
  }
  &__item-value-text {
    width: calc(100% - 12px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  &__item-label {
    margin-top: 12px;
    font-size: 12px;
    color: $--color-info;
    margin-left: 8px;
  }
  .el-form-item__content{
    line-height: inherit;
  }
}