body {
  font-family: PingFang SC, PingFang SC;
}

.animate-fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.animate-fadeIn_later {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
  transition-delay: 0.3s;
}

.animate-fadeIn.active, .animate-fadeIn_later.active {
  opacity: 1;
  transform: translateY(0);
}

.tryUsers {
  /* width: 100%; */
  /* max-width: 1440px; */
  height: calc(100vh - 0.8rem);
  min-height: 8rem;
  width: auto;
  min-width: 960px;
  background-image: url(https://img.zconnect.cn/pc_consult_bg3-20231215.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  margin: 0 auto;
}