/* 站点底部 — 资讯页 / 落地页共用 */

.footer {
  background-color: #2b5cff;
  color: #fff;
  font-family: sans-serif;
}

.footer-top {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-top .logo {
  display: flex;
  align-items: center;
}

.footer-top .logo img {
  width: 150px;
}

.logo-text {
  font-size: 20px;
  line-height: 1.2;
}

.logo-text small {
  font-size: 12px;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 5px;
  bottom: -10px;
  width: 1px;
  height: 12px;
  background-color: #fff;
}

.footer-nav a:hover {
  color: #c7dfff;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  background-color: #1d4be6;
  color: #c7dfff;
  font-size: 14px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
