
body{
    background-image: url(../image/logo.png);/* 设置整体背景 */
    background-size: contain;
    background-repeat:repeat;/* 重复 */
    background-position: top;/* 起始位置顶部 */
    width: 100%;
    text-align: center;
}
a.new{  /*去掉下划线*/
    text-decoration: none; 
     /* 绝对定位，东西放在那就不动了 */
    position: absolute;
    /* 下面三个实现彻底居中，left和top是以左上角为原点，所以不是中心，用translate实现自身移动50% */
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);
    /* 设置字体大小 */
    font-size: 24px;
    /* 实现渐变色，90deg表示一个角度开始 */
    background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
    /* 背景色放大 */
    background-size: 400%;
    /* 图形大小 */
    width: 400px;
    height: 100px;
    /* 行高 */
    line-height: 100px;
    /* 文本居中 */
    text-align: center;
    /* 字体颜色 */
    color: #fff;
    /* 字母变大写 */
    text-transform: uppercase;
    /* 设置成胶囊状 */
    border-radius: 50px;
    /* 值为正数在上面显示，反之 */
    z-index: 1;
}
/* 设置发光 */
 
a.new::before{
    content: "";
    position: absolute;
    /* 设置发光范围 */
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    /* 设置发光颜色 */
    background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
    background-size: 400%;
    border-radius: 50px;
    /* filter实现高斯模糊 */
    filter: blur(20px);
    z-index: -1;
}
 
a:hover::before{
    animation: sun 8s infinite;
}
/* 鼠标经过产生的效果 */
a:hover{
    /* 产生8秒的效果，sun是名称*/
    animation: sun 8s infinite;
}
/* 设置流光 */
@keyframes sun{
    100%{
        /* 以x轴为基准向左移动4个自身大小 */
        background-position: -400% 0;
    }
}
a.red{  /*去掉下划线*/
    text-decoration: none; 
     /* 绝对定位，东西放在那就不动了 */
    position: relative;
    /* 下面三个实现彻底居中，left和top是以左上角为原点，所以不是中心，用translate实现自身移动50% */
    top: 22%;
    padding: auto;
    font-size: 24px;
    width: 100%;
    /* 文本居中 */
    text-align: center;
}
button.red {
    font-size: xx-large;
    background-color: blue;
    color: wheat;
    cursor:pointer; 
}
div.one{
     /* 下面三个实现彻底居中，left和top是以左上角为原点，所以不是中心，用translate实现自身移动50% */
     left: 50%;
    top: 50%;
    /* 文本居中 */
    text-align: center;
    font-size: xx-large;
    color: #000000;
    background: linear-gradient(45deg,#f40303,#fcf700,#06f54e,#03d8f4,#4303f4,rgb(244, 3, 212),#eb0303);
}
@font-face {
    font-family: one;
    src: url(../font/Yhao.ttf);
}

.one{
    font-family: 'one';
    font-size: 100px;
    text-shadow: none;
    width: 120%;
    text-align: center;
}
a.ne{  /*去掉下划线*/
    text-decoration: none; 
     /* 绝对定位，东西放在那就不动了 */
    position: absolute;
    /* 下面三个实现彻底居中，left和top是以左上角为原点，所以不是中心，用translate实现自身移动50% */
    left: 50%;
    top: 45%;
    margin: 0px auto;
    transform: translate(-50%,-50%);
    /* 设置字体大小 */
    font-size: 12px;
    /* 实现渐变色，90deg表示一个角度开始 */
    background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
    /* 背景色放大 */
    background-size: 200%;
    /* 图形大小 */
    width: 200px;
    height: 50px;
    /* 行高 */
    line-height: 50px;
    /* 文本居中 */
    text-align: center;
    /* 字体颜色 */
    color: #fff;
    /* 字母变大写 */
    text-transform: uppercase;
    /* 设置成胶囊状 */
    border-radius: 50px;
    /* 值为正数在上面显示，反之 */
    z-index: 1;
}
.mulu {
    padding: auto;
    text-align: center;
    position: relative;
    width: 100%;
    top: 45%;
}