.friendLinkBox {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.friendTitleBox {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.friendTitleIcon {
  width: 24px;
  height: 24px;
  background: url('/static/images/firendLinkIcon.png');
  background-size: 100% 100%;
  margin-right: 6px;
}
.friendTitle {
  color: var(---, rgba(255, 255, 255, 0.90));

  /* 30 */
  font-family: "PingFang SC";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.friendLinks {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 6px;
}
.friendLinkItem {
  color: rgba(255, 255, 255, 0.60);

  /* Regular */
  font-family: "PingFang SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.friendLinkItem:hover{
  color: #3E7DFF;
}


@media screen and (max-width: 824px) {
  .friendTitle {
    color: var(---, rgba(255, 255, 255, 0.90));

    /* 18 */
    font-family: "PingFang SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    margin-bottom: 12px;
  }
  .friendTitleIcon {
    width: 56px;
    height: 56px;
    margin-right: 9px;
  }
  .friendLinkItem {
    color: rgba(255, 255, 255, 0.60);

    /* Regular */
    font-family: "PingFang SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
  }
}
