#blogTitle .title a{
    background-image: -webkit-linear-gradient(left,blue,#66ffff 10%,#cc00ff 20%,#CC00CC 30%, #CCCCFF 40%, #00FFFF 50%,#CCCCFF 60%,#CC00CC 70%,#CC00FF 80%,#66FFFF 90%,blue 100%);
    -webkit-text-fill-color: transparent;/* 将字体设置成透明色 */
    -webkit-background-clip: text;/* 裁剪背景图，使文字作为裁剪区域向外裁剪 */
    -webkit-background-size: 200% 100%; 
    -webkit-animation: masked-animation 4s linear infinite;
    font-size: 35px;
}
@keyframes masked-animation {
    0% {
        background-position: 0  0;
    }
    100% {
        background-position: -100%  0;
    }
}
/*导航样式*/
#navigator {
    background: #2d94de;
    margin-top:0;
    position: static;
}
#navList li a {
    background-color: #2d94de;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
}
#navList a {
    margin: 12px 10px 0 0;
}
#navList a:link{
    border-bottom: 3px solid transparent;
}
#navList a:hover {
    color: #fff;
    /*background-color: orange;*/
    border-bottom: 3px solid  orange;
}
/*导航右侧*/
.blogStats {
    color: #fff;
    padding-right: 15px;
}
/*文章标题*/
#blogTitle .subtitle {
    padding: 0 70px;
}
.postTitle {
    font-size: 20px;
    border:none;
}
.postTitle a {
    color: #2d94de;
}
.signature-container {
    padding: 12px 24px 12px 30px;
    margin-top: 15px;
    margin-left: 5px;
    border-left-width: 4px;
    font-size: 15px;
    line-height: 2;
    border-left-style: solid;
    background-color: #f8f8f8;
    position: relative;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    border-left-color: #f66;
    z-index: 1;
}
.signature-container:before {
    content: "!";
    background-color: #f66;
    position: absolute;
    top: 25px;
    left: -12px;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    text-align: center;
    line-height: 20px;
    font-weight: 700;
    font-size: 14px;
}
.signature-container .author,
.signature-container .address{
    display: none;
}