/* 文章页H1-H6图标样式效果 */
h1::before, h2::before, h3::before, h4::before, h5::before, h6::before {
    -webkit-animation: ccc 2s linear infinite ;
    animation: ccc 2s linear infinite ;
}
@-webkit-keyframes ccc {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(-1turn);
        transform: rotate(-1turn)
    }
}
@keyframes ccc {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(-1turn);
        transform: rotate(-1turn)
    }
}

#content-inner.layout h1::before {
    color: #57c850 ;
    margin-left: -2rem;
    font-size: 1.9rem;
    margin-top: -0.35rem;
}
#content-inner.layout h2::before {
    color: #a9e000 ; ;
    margin-left: -1.8rem;
    font-size: 1.6rem;
    margin-top: -0.25rem;
}
#content-inner.layout h3::before {
    color: #ffbf00 ;
    margin-left: -1.6rem;
    font-size: 1.4rem;
    margin-top: -0.15rem;
}
#content-inner.layout h4::before {
    color: #fb7061 ;
    margin-left: -1.3rem;
    font-size: 1.2rem;
    margin-top: -0.15rem;
}
#content-inner.layout h5::before {
    color: #ef50a8 ;
    margin-left: -1.1rem;
    font-size: 1rem;
    margin-top: 0.0rem;
}
#content-inner.layout h6::before {
    color: #5ec1e0 ;
    margin-left: -0.9rem;
    font-size: 0.66rem;
    margin-top: 0.0rem;
}

#content-inner.layout h1:hover, #content-inner.layout h2:hover, #content-inner.layout h3:hover, #content-inner.layout h4:hover, #content-inner.layout h5:hover, #content-inner.layout h6:hover {
    color: #49b1f5 ;
}
#content-inner.layout h1:hover::before, #content-inner.layout h2:hover::before, #content-inner.layout h3:hover::before, #content-inner.layout h4:hover::before, #content-inner.layout h5:hover::before, #content-inner.layout h6:hover::before {
    color: #49b1f5 ;
    -webkit-animation: ccc 3.2s linear infinite ;
    animation: ccc 3.2s linear infinite ;
}

/* 页面设置icon转动速度调整 */
#rightside_config i.fas.fa-cog.fa-spin {
    animation: fa-spin 5s linear infinite ;
}

#aside-content.aside-content > .sticky_layout > .card-widget.card-clock > .card-glass > .card-background {
    background-color: unset ;
    box-shadow: unset ;
}

#post {
    /* 以下代表白色透明度为0.3 */
    background: #ffffffcd
}

/*
#web_bg {
    background: linear-gradient(102.7deg,#fddaff 8.2%,#dfadfc 19.6%,#adcdfc 36.8%,#adfcf4 73.2%,#caf8d0 90.9%);
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#web_bg {
    background: linear-gradient(-45deg, #f9ffb9, #95e8a8, #7ea2f5, #8de1a0);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}
*/