.gls-wzt-recommend .gls-wzt-recommend-title {
  margin-top: 3.125rem;
  margin-bottom: 5rem;
  text-align: center;
}
.gls-wzt-recommend .gls-wzt-recommend-title .recommend-title-tit {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 17px;
}
.gls-wzt-recommend .gls-wzt-recommend-title .recommend-title-more {
  color: var(--text-3);
  transition: all 0.3s;
  border-bottom: 1px solid var(--text-3);
  font-size: 1rem;
}
.gls-wzt-recommend .gls-wzt-recommend-title .recommend-title-more:hover {
  color: var(--brand-color);
  border-bottom: 1px solid var(--brand-color);
}
.gls-wzt-recommend .gls-wzt-recommend-list {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(3, 1fr);
}
.gls-wzt-recommend .gls-wzt-recommend-list > div:last-child {
  display: none;
}
@media (max-width: 768px) {
  .gls-wzt-recommend .gls-wzt-recommend-title .recommend-title-tit {
    font-size: 1.8rem;
  }
  .gls-wzt-recommend .gls-wzt-recommend-title .recommend-title-more {
    font-size: 1.4rem;
  }
  .gls-wzt-recommend .gls-wzt-recommend-list {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 3px;
  }
  .gls-wzt-recommend .gls-wzt-recommend-list > div:last-child {
    display: block;
  }
}
