/* 页脚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%;
    }
}
#footer {
    background: linear-gradient(-45deg, #ee7752, #ce3e75, #23a6d5, #23d5ab);
    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);
}


body {
    cursor: url(https://tmx.fishpi.cn/cdn/default.cur),
        default;
}
a,
img {
    cursor: url(https://tmx.fishpi.cn/cdn/pointer.cur),
        default;
}
#web_bg {
    position: fixed;
    z-index: -999;
	top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(30deg, rgba(255,165,150,0.5) 5%, rgba(0,228,255,0.35)) 0 0/cover, url("https://tmx.fishpi.cn/cdn/gezi.svg") 0 0;
    background: -moz-linear-gradient(30deg, rgba(255,165,150,0.5) 5%, rgba(0,228,255,0.35)) 0 0/cover, url("https://tmx.fishpi.cn/cdn/gezi.svg") 0 0;
    background: -o-linear-gradient(30deg, rgba(255,165,150,0.5) 5%, rgba(0,228,255,0.35)) 0 0/cover, url("https://tmx.fishpi.cn/cdn/gezi.svg") 0 0;
    background: -ms-linear-gradient(30deg, rgba(255,165,150,0.5) 5%, rgba(0,228,255,0.35)) 0 0/cover, url("https://tmx.fishpi.cn/cdn/gezi.svg") 0 0;
    background: linear-gradient(60deg, rgba(255,165,150,0.5) 5%, rgba(0,228,255,0.35)) 0 0/cover, url("https://tmx.fishpi.cn/cdn/gezi.svg") 0 0;
}