body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -520;
    pointer-events: none;
}
body::before {
    background: linear-gradient( 90deg, rgba(247, 149, 51, .1), rgba(243, 112, 85, .1) 15%, rgba(239, 78, 123, .1) 30%, rgba(161, 102, 171, .1) 44%, rgba(80, 115, 184, .1) 58%, rgba(16, 152, 173, .1) 72%, rgba(7, 179, 155, .1) 86%, rgba(109, 186, 130, .1)); /*背景颜色*/
    background-size: 500%;
    animation: bgAnimation 15s linear infinite; /*执行动画*/
}
@keyframes bgAnimation{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

/* 网站加载动画*/
.loader {
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: helvetica, arial, sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    color: #f1404b;
    letter-spacing: 0.2em
}
.loader::before,
.loader::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #f1404b;
    position: absolute;
    animation: load .7s infinite alternate ease-in-out
}
.loader::before {
    top: 0
}
.loader::after {
    bottom: 0
}
@keyframes load {
    0% {
        left: 0;
        height: 30px;
        width: 15px
    }
    50% {
        height: 8px;
        width: 40px
    }
    100% {
        left: 235px;
        height: 30px;
        width: 15px
    }
}

body{
    cursor:url(../cur/xiaoshou1.cur),default;
}
a:hover {
    cursor:url(../cur/xiaoshou2.cur),pointer;
}
li:hover {
    cursor:url(../cur/xiaoshou2.cur),default;
}
label:hover {
    cursor:url(../cur/xiaoshou2.cur),pointer;
}
span:hover {
    cursor:url(../cur/xiaoshou2.cur),default;
}
input:hover {
    cursor:url(../cur/xiaoshou3.cur),text;
}