        .cnblogs_code_toolbar {
            display: none;
        }

        .lightSignature {
            color: crimson;
            font-size: x-large;
            text-align: center;
            background-color: honeydew;
            height: 40px;
        }

            .lightSignature span {
                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: 25px;
            }

        @keyframes masked-animation {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .titled_wrap {
            text-overflow: -o-ellipsis-lastline;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 20px;
        }
        #sidebar_categories li, #sidebar_toptags li, #sidebar_recentcomments li, #sidebar_topviewedposts li, #sidebar_topdiggedposts li {
            font: 14px/1.5 'Microsoft YaHei',arial,tahoma,宋体,sans-serif;
        }
        h1.PostListTitle, #myposts, #taglist_main #taglist_title, #taglist_main #taglist, h1.entrylistTitle {
            width: 95%;
            margin: auto;
        }
        details summary.space-word20{
            margin-left: 30px;
            cursor: pointer;
        }