@import "../../style/variables.less";
.nameCardContent {
  width: 322px;
  height: 425px;
  display: flex;
  flex-direction: column;
  background: #fff;
  // background-image: url('/components/NameCard/images/name-card-wmk.png');

  .cardHeaderBg {
    background-color: @name-card-bg;
  }

  .nameCardHeader {
    display: flex;
    justify-content: space-between;
    margin: 0 24px;
    background: #fff;
    // background-image: url('/components/NameCard/images/nameCard.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: right;
    background-color: @name-card-bg;

    .name {
      padding-top: 34px;
      font-size: 20px;
      font-family: PingFangSC-Medium, PingFang SC;
      font-weight: 500;
      color: #fff;
      line-height: 28px;
    }

    .corporation {
      font-size: 14px;
      font-family: PingFangSC-Regular, PingFang SC;
      font-weight: 400;
      color: #fff;
      line-height: 20px;
      padding-bottom: 16px;
    }

    .headPortrait {
      width: 48px;
      height: 48px;
      border-radius: 99999px;
      background: #ccc;
    }
  }

  .nameCardBody {
    flex: 1;
    margin: 16px 0 16px 24px;
    overflow: auto;

    .listItem {
      display: flex;
      padding: 6px 0;
      padding-right: 20px;

      .listItemLable {
        font-size: 14px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: rgba(153, 153, 153, 1);
        line-height: 20px;
        width: 92px;
      }

      .listItemValue {
        font-size: 14px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: rgba(51, 51, 51, 1);
        line-height: 20px;
        flex: 1;

        p {
          padding: 2px 0px;

          &:first-child {
            padding-top: 0px;
          }
        }

        .emptyTxt {
          display: flex;
          align-items: center;
          height: 100%;

          .empty {
            display: block;
            height: 1px;
            width: 16px;
            background: #333333;
          }
        }
      }
    }
  }
}
