/*文章的标题*/
.postTitle{
    font-size:28px;
}
/*文章摘要*/
.postCon{
    font-size:16px;
}
/*页面的整体背景*/
#home{
    background:url(https://images.cnblogs.com/cnblogs_com/shige720/1538680/o_200726080735background_pic1.jpg) fixed no-repeat;
    background-size:100% 100%;
    opacity:0.8;
}
/*文章内容*/
/*各个分级标题*/
.blogpost-body h1{
    color:linear-gradient(90deg,#29bdd9, #276ace);
}
.blogpost-body h2{
    color:linear-gradient(90deg,#ff9569, #e92758);
}
.blogpost-body h3{
    color:linear-gradient(90deg,#d4fc78, #99e5a2);
}
/*分级标题悬停时效果*/
.blogpost-body h1:hover,.blogpost-body h2:hover,.blogpost-body h3:hover{
    transition:all 1s ease-in-out;
    cursor:pointer;
    animation:title 1.5s ease-in-out;
}
@keyframes title{
    0%{text-indent:0;}
    12.5%{text-indent:5em;}
    25%{text-indent:0;}
    37.5%{text-indent:3em;}
    50%{text-indent:0;}
    62.5%{text-indent:1.5em;}
    75%{text-indent:0;}
    87.5%{text-indent:0.5em;}
    100%{text-indent:0;}
}
/*段落*/
.blogpost-body p{
    text-indent:2em;
    line-height:2em;
    font-size:18px;
    color:rgba(0,0,0,1);
}
/*列表项*/
.blogpost-body li{
    font-size:18px;
    list-style-color:blue;
}