/* footer */
.footer {
  padding: 0.5rem 0 1rem 0;
}

.footer-link {
  text-align: center;
  color: #ccc;
  font-size: 0.18rem;
}

.footer-link a {
  padding: 0 0.3rem;
  border-right: 1px solid #fff;
}

.footer-link a:first-child {
  border-left: 1px solid #fff;
}

.footer-link a:hover {
  color: #f05;
}

.footer-link a span:first-child {
  animation: nextAni 0.3s ease-in-out infinite;
}

.footer-link a span:nth-child(2) {
  animation: nextAni 0.4s ease-in-out infinite;
}

.footer-link a span:last-child {
  animation: nextAni 0.5s ease-in-out infinite;
}

@keyframes nextAni {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}


.footer-company {
  width: 3.74rem;
  height: 0.74rem;
  margin: 0.2rem auto 0;
}

.footer-company img {
  width: 100%;
}

.footer-ratings {
  margin: 0.2rem auto 0;
  width: 14rem;
  color: #ccc;
  line-height: 1.5;
  font-size: 0.18rem;
  text-align: left;
  position: relative;
}

.footer-ratings::before {
  content: "";
  display: inline-block;
  width: 0.12rem;
  height: 0.12rem;
  background-color: #ccc;
  line-height: 1.5;
  margin-right: 0.1rem;
}