.HeaderTitle {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5em;
    font-size: 1.5em;
    /* 字体系列：无衬线；*/
    font-family: sans-serif;
    color:white;
}
/* 设置文字样式 */
#Header1_HeaderTitle{
    border-bottom: 1px solid white;
    /* 设置彩虹背景 */
    background-image: linear-gradient(
        to right,
        orangered,
        orange,
        gold,
        lightgreen,
        cyan,
        dodgerblue,
        mediumpurple,
        hotpink,
        orangered
    );
    background-size: 110vw;
    /* 添加动画 sliding: 滑行的 */
    animation: sliding 30s linear infinite;
    /* 将背景颜色赋值给文字，文档地址： https://developer.mozilla.org/en-US/docs/Web/CSS/background-clip 
        1、-moz代表firefox浏览器私有属性
        2、-ms代表ie浏览器私有属性
        3、-webkit代表safari、chrome私有属性
    */
    background-clip: text;
    -webkit-background-clip: text;
    -ms-background-clip: text;
    color: transparent;
    -ms-color:transparent;
    alpha:0;
    color: rgba(0,0,0,0);
}
@keyframes sliding {
    to {
        background-position: -2000vw;
    }
}

/* 不可选中文本 */
#cnblogs_post_body{
    user-select: none;
}

