.home {
  height: 100%;
}
.home .column-box {
  flex: 1;
  height: 100%;
  overflow: hidden;
  padding-top: 2rem;
  padding-right: 2rem;
}
.home .column-box .columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  height: 100%;
}
.home .column-box .columns .column {
  background-color: #fff;
  border-radius: 0.8rem;
  width: 13rem;
  height: 13rem;
  padding: 0.5rem;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}
.home .column-box .columns .column .name {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
}

.home .column-box .columns .column > img {
  width: 6rem;
  height: 6rem;
  user-select: none;
}
.home .shehui {
  width: 45rem;
  user-select: none;
}

/* 小于等于960px时 */
@media screen and (max-width: 960px) {
  .home .column-box .columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .home .shehui {
    display: none;
  }
}
