@keyframes animate2 {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.gls-wzt-footer {
  width: 100%;
  background-color: #000000;
  padding-top: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gls-wzt-footer .gls-wzt-foot-nav {
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0 8.812rem;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
.gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-logo {
  letter-spacing: 2px;
  font-size: 3rem;
  border: 2px #fff solid;
  padding: 15px 30px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ffbd27 0%, #ff8000 25%, #ffea2b 50%, #ff984f 75%, #ffbd27 100%);
  background-size: 300% 100%;
  animation: animate2 9s linear infinite;
  -webkit-background-clip: text;
  /* Chrome, Safari */
  -moz-background-clip: text;
  /* Firefox */
  background-clip: text;
  /* 标准属性 */
  -webkit-text-fill-color: transparent;
  /* Chrome, Safari */
  -moz-text-fill-color: transparent;
  /* Firefox */
  text-fill-color: transparent;
  /* 标准属性（部分浏览器支持） */
}
.gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item {
  width: 50%;
}
.gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 0.625rem;
}
.gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
}
.gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li a {
  color: #b3b3b3;
  font-size: 18px;
  margin-top: 10px;
}
.gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li img {
  display: none;
}
.gls-wzt-footer .gls-wzt-copyright {
  color: #ffbd27;
  text-align: center;
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 70px 0 20px 0;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 768px) {
  .gls-wzt-footer {
    padding-bottom: 5rem;
  }
  .gls-wzt-footer .gls-wzt-foot-nav {
    padding: 0 3rem;
    gap: 50px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-logo {
    text-align: center;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-logo img {
    display: inline;
    width: 120px;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item {
    width: 100%;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item .gls-wzt-nav-title {
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul {
    gap: 2rem;
    flex-direction: column;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li {
    width: 100%;
    max-height: 26px;
    overflow: hidden;
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0.66, 0, 0.34, 1);
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li.active {
    max-height: 200px;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li img {
    display: block;
    float: right;
    margin-right: 5px;
    transition: 0.5s;
  }
  .gls-wzt-footer .gls-wzt-foot-nav .gls-wzt-nav-item ul li img.active {
    transform: rotate(90deg);
  }
  .gls-wzt-footer .gls-wzt-copyright {
    flex-direction: column-reverse;
    padding: 20px 0;
    gap: 10px;
  }
  .gls-wzt-footer .gls-wzt-copyright a {
    font-size: 1.2rem;
  }
  .gls-wzt-footer .gls-wzt-copyright span:nth-child(3) {
    text-decoration: underline;
  }
}
