/* 页脚footer */
/* 渐变色滚动动画 */
@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}
@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@keyframes Gradient {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}
[data-theme='dark'] #footer {
    /* footer dark mode: brightness 0 完全不透明 */
    filter: blur(0) brightness(0.85);
  }
#footer {
    background: linear-gradient(-45deg, #ee7752, #ce3e75, #cc6ecc);
    /* background-size: 400% 400%; */
    -webkit-animation: Gradient 10s ease infinite;
    -moz-animation: Gradient 10s ease infinite;
    animation: Gradient 10s ease infinite;
    -o-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#footer:before {
    background-color: rgba(0, 0, 0, 0);
}
#footer-wrap {
    padding: 0.2rem 1rem;
}
#footer .footer-other {
    /* 上下 左右 */
    padding: 20px 20px;
}

/* 自定义 */
#loading-no-permission {
  display: none;
}
