/*! 友情链接修饰 */
.by_links .by_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.by_links .by_container .by_link_card {
  border-radius: 0 0 29px 5px;
  overflow: hidden;
}
.by_links .by_container .by_link_card .desc {
  padding: 8px 20px;
  height: 42px;
  -webkit-line-clamp: 1;
  background: rgba(240, 235, 246, 0.4);
}
.by_links .by_container .by_link_card .info {
  border-radius: 5px 5px 0 0;
  background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
  padding-left: 32px;
  display: flex;
  align-items: center;
  -webkit-line-clamp: 1;
  height: 70px;
}
.by_links .by_container .by_link_card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.by_links .by_container .by_link_card span {
  color: #fff;
  margin-left: 14px;
  border-bottom: 2px solid;
  font-size: 1rem;
  font-weight: bold;
}
