body {
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(14, 165, 233, 0.10),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(99, 102, 241, 0.07),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #f8fafc 55%,
      #ffffff 100%
    );
  background-attachment: fixed;
}

#qintsg-footer {
  width: 100%;
  box-sizing: border-box;
  margin-top: 36px;
  padding: 26px max(32px, calc((100vw - 1680px) / 2));
  border-top: 1px solid rgb(226 232 240);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 32px;

  color: rgb(100 100 100);
  background: rgb(255 255 255 / 60%);
  font-size: 15px;
  line-height: 1.5;
}

#qintsg-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

#qintsg-footer a:hover {
  color: rgb(2 132 199);
}

#qintsg-footer .qintsg-footer-copyright {
  justify-self: start;
  white-space: nowrap;
}

#qintsg-footer .qintsg-footer-gongan {
  justify-self: center;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  white-space: nowrap;
}

#qintsg-footer .qintsg-footer-gongan img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

#qintsg-footer .qintsg-footer-icp {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 900px) {
  #qintsg-footer {
    padding: 22px 16px;
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 10px;
    text-align: center;
    font-size: 13px;
  }

  #qintsg-footer .qintsg-footer-copyright,
  #qintsg-footer .qintsg-footer-gongan,
  #qintsg-footer .qintsg-footer-icp {
    justify-self: center;
  }
}