.site-footer {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #ffffff;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    font-size: 12px;
    line-height: 1;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
    display: inline-flex;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%);
    z-index: 1000;
    width: fit-content !important;
}

.beian-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.beian-link:hover {
  color: #42b983;
}

.beian-separator {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.5);
}

.beian-separator::after {
    content: "丨";
}

.gongan-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gongan-icon {
    display: none;
    width: 16px;
    height: 16px;
    background-image: url('https://img.ahap.cn/file/beian.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.gongan-link.show-icon .gongan-icon {
    display: inline-block;
}

.gongan-link:hover .gongan-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 2px rgba(66, 185, 131, 0.5));
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.fade-in {
  animation-name: fadeIn;
}
