.FlowChart {
  position: relative;
  font-size: 14px;
  color: #333;
  font-family: PingFang SC, PingFang SC;
  p {
    margin: 0;
    padding: 0;
  }
  .Item {
    box-sizing: border-box;
    position: absolute;
    background-color: #f7fafe;
    border: 1px solid #6aacfc;
    border-radius: 5px;
    padding: 15px;
    .title-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      .first-title-box {
        display: flex;
        align-items: center;
        .title {
          font-size: 14px;
          font-weight: bold;
          margin-right: 6px;
        }
        .icon {
          cursor: pointer;
          width: 16px;
          height: 16px;
        }
      }
    }
    .data-row {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      margin: 8px 0;
      .value-box {
        display: flex;
        align-items: center;
        .arrow-icon {
          width: 8px;
          height: 9px;
          margin-left: 3px;
          margin-top: -1px;
        }
      }
      .only-value {
        font-size: 18px;
        font-weight: bold;
      }
    }
  }
  .Item.checked {
    border-top: 3px solid rgb(51, 153, 255);
    .checked-icon {
      position: absolute;
      top: 10px;
      right: 10px;
    }
  }
  .extra-box {
    position: absolute;
  }
}