/*heo*/
@-webkit-keyframes scroll-down-effect {
    0% {
        top: 0;
        opacity: .4
    }
    50% {
        top: -16px;
        opacity: 1;
        filter: none
    }
    100% {
        top: 0;
        opacity: .4
    }
}

@keyframes scroll-down-effect {
    0% {
        top: 0;
        opacity: .4
    }
    50% {
        top: -16px;
        opacity: 1;
        filter: none
    }
    100% {
        top: 0;
        opacity: .4
    }
}

@-webkit-keyframes header-effect {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0)
    }
}

@keyframes header-effect {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0)
    }
}

@-webkit-keyframes headerNoOpacity {
    0% {
        transform: translateY(-50px)
    }
    100% {
        transform: translateY(0)
    }
}

@keyframes headerNoOpacity {
    0% {
        transform: translateY(-50px)
    }
    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes bottom-top {
    0% {
        opacity: 0;
        margin-top: 50px
    }
    100% {
        opacity: 1;
        filter: none;
        margin-top: 0
    }
}

@keyframes bottom-top {
    0% {
        opacity: 0;
        margin-top: 50px
    }
    100% {
        opacity: 1;
        filter: none;
        margin-top: 0
    }
}

@-webkit-keyframes titlescale {
    0% {
        opacity: 0;
        transform: scale(.7)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: scale(1)
    }
}

@keyframes titlescale {
    0% {
        opacity: 0;
        transform: scale(.7)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: scale(1)
    }
}

@-webkit-keyframes search_close {
    0% {
        transform: translateY(0);
        opacity: 1
    }
    100% {
        transform: translateY(20px);
        opacity: 0
    }
}

@keyframes search_close {
    0% {
        transform: translateY(0);
        opacity: 1
    }
    100% {
        transform: translateY(20px);
        opacity: 0
    }
}

@-webkit-keyframes to_show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1;
        filter: none
    }
}

@keyframes to_show {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1;
        filter: none
    }
}

@-webkit-keyframes to_hide {
    0% {
        opacity: 1;
        filter: none
    }
    100% {
        opacity: 0
    }
}

@keyframes to_hide {
    0% {
        opacity: 1;
        filter: none
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes ribbon_to_show {
    0% {
        opacity: 0
    }
    100% {
        opacity: .6
    }
}

@keyframes ribbon_to_show {
    0% {
        opacity: 0
    }
    100% {
        opacity: .6
    }
}

@-webkit-keyframes avatar_turn_around {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes avatar_turn_around {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes sub_menus {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0)
    }
    70% {
        opacity: 0;
        transform: translateY(-5px) scale(1)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0)
    }
}

@keyframes sub_menus {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }
    30% {
        transform: translateY(-5px)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0)
    }
}

@-webkit-keyframes donate_effcet {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0)
    }
}

@keyframes donate_effcet {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0)
    }
}

@-webkit-keyframes announ_animation {
    0%, 100% {
        transform: scale(1);
        filter: blur(0)
    }
    50% {
        transform: scale(1.2);
        filter: blur(20px)
    }
}

@keyframes announ_animation {
    0%, 100% {
        transform: scale(1);
        filter: blur(0)
    }
    50% {
        transform: scale(1.2);
        filter: blur(20px)
    }
}

@-webkit-keyframes sidebarItem {
    0% {
        transform: translateX(200px)
    }
    100% {
        transform: translateX(0)
    }
}

@keyframes sidebarItem {
    0% {
        transform: translateX(200px)
    }
    100% {
        transform: translateX(0)
    }
}

@keyframes heo-spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@charset "UTF-8";:root {
    --heo-white: #fff;
    --heo-white-op: rgba(255, 255, 255, 0.15);
    --heo-black: #000;
    --heo-black-op: rgba(0, 0, 0, 0.15);
    --heo-none: #00000000;
    --heo-gray: #999999;
    --heo-gray-op: #9999992b;
    --heo-vip: #e5a80d;
    --heo-main: var(--theme-color1);
    --heo-main-op: var(--theme-color1);
    --heo-main-op-deep: var(--heo-theme-deep);
    --heo-main-op-light: var(--heo-theme-light);
    --heo-main-none: var(--heo-theme-none);
    --heo-shadow-theme: 0 8px 12px -3px var(--heo-theme-op);
    --heo-shadow-blackdeep: 0 2px 16px -3px rgba(0, 0, 0, .15);
    --heo-shadow-main: 0 8px 12px -3px var(--heo-main-op);
    --heo-shadow-blue: 0 8px 12px -3px rgba(40, 109, 234, .20);
    --heo-shadow-white: 0 8px 12px -3px rgba(255, 255, 255, .20);
    --heo-shadow-black: 0 0 12px 4px rgba(0, 0, 0, .05);
    --heo-shadow-yellow: 0px 38px 77px -26px rgba(255, 201, 62, .12);
    --heo-shadow-red: 0 8px 12px -3px #ee7d7936;
    --heo-shadow-green: 0 8px 12px -3px #87ee7936;
    --heo-logo-color: linear-gradient(215deg, #4584ff 0%, #cf0db9 100%);
    --heo-snackbar-time: 5s
}

/*layout*/
.layout {
    display: flex;
    margin: 0 auto;
    padding: 2rem 15px;
    max-width: 1200px
}

@media screen and (min-width: 1300px) {
    .layout {
        display:flex;
        justify-content: space-between;
        padding: 1rem 1.5rem
    }
}


@media screen and (max-width: 900px) {
    .layout {
        -webkit-box-orient:vertical;
        flex-direction: column
    }
}

@media screen and (max-width: 768px) {
    .layout {
        padding:1rem 5px
    }
}

@media screen and (min-width: 2000px) {
    .layout {
        max-width:1500px
    }
}

@media screen and (max-width: 768px) {
    .layout>div:first-child:not(.recent-posts) {
        padding:1.8rem .7rem!important
    }
}

.layout>div:first-child {
    width: 75%;
    transition: all .3s ease 0s
}

@media screen and (max-width: 1200px) {
    .layout>div:first-child {
        width:100%!important
    }
}

.layout.hide-aside {
    max-width: 1000px
}

@media screen and (min-width: 2000px) {
    .layout.hide-aside {
        max-width:1300px
    }
}

.layout.hide-aside>div {
    width: 100%!important
}

@media screen and (min-width: 900px) {
    html.hide-aside .layout {
        -webkit-box-pack:center;
        justify-content: center
    }

    html.hide-aside .layout>.aside-content {
        display: none
    }

    html.hide-aside .layout>div:first-child {
        width: 100%
    }
}

.page .sticky_layout {
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column
}

#page-header.nav-visible+.layout>.aside-content>.sticky_layout {
    top: 70px;
    transition: top .5s ease 0s
}

.layout.hide-aside {
    max-width: 1400px
}

#page-header.nav-visible+.layout>.aside-content>.sticky_layout {
    top: 80px
}

.layout>div:first-child {
    width: calc(100% - 300px)
}

.layout>div:first-child:not(.recent-posts) {
    box-shadow: var(--heo-shadow-border);
    padding: 1rem 2rem;
    border-radius: 12px;
    background: var(--heo-card-bg);
    border: var(--style-border);
    width: calc(100% - 300px);
    align-self: flex-start;
    animation: slide-in .6s .1s backwards;
    position: relative;
    overflow: hidden
}

.layout>div:first-child:not(.recent-posts):hover {
    box-shadow: var(--heo-shadow-border)
}

@media screen and (max-width: 768px) {
    .layout>div:first-child:not(.recent-posts) {
        border-radius:0;
        padding: 0 1rem!important;
        box-shadow: none!important;
        background: var(--heo-background)
    }

    .layout {
        padding: 0 1.5rem
    }
}

@media screen and (max-width: 768px) {
    .layout {
        padding:0
    }

    .layout>div:first-child:not(.recent-posts) {
        z-index: 10
    }

    .post .layout>div:first-child:not(.recent-posts) {
        border-radius: 12px 12px 0 0
    }

    .post .layout#content-inner {
        background: var(--theme-color1)
    }

    .page .layout#content-inner {
        background: var(--heo-background)
    }

    #aside-content {
        z-index: 2;
        background: var(--heo-background);
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        width: 100%
    }
}

.layout#content-inner {
    max-width: 1400px
}

.layout#content-inner p img {
    margin: auto
}








/*recent-post*/
#aside-content .aside-list>.aside-list-item .content>.comment,#aside-content .aside-list>.aside-list-item .content>.name,#aside-content .aside-list>.aside-list-item .content>.title,#error-wrap .error-content .error-info .error_subtitle,#post-info .post-title,#recent-posts>.recent-post-item>.recent-post-info>.article-title,#recent-posts>.recent-post-item>.recent-post-info>.content,.article-sort-item-title,.limit-more-line,.relatedPosts>.relatedPosts-list .content .title,figure.gallery-group .gallery-group-name,figure.gallery-group p {
    display: -webkit-box;
    -webkit-box-orient: vertical
}

@media screen and (max-width: 768px) {
    #recent-posts>.recent-post-item {
        border-radius:12px 12px 8px 8px
    }
}

#recent-posts>.recent-post-item:hover {
    box-shadow: var(--card-hover-box-shadow)
}

#recent-posts>.recent-post-item:hover img.post_bg {
    transform: scale(1.1)
}

#recent-posts>.recent-post-item.ads-wrap {
    display: block!important;
    height: auto!important
}

#recent-posts>.recent-post-item .post_cover {
    overflow: hidden;
    width: 45%;
    height: 100%;
    -webkit-mask-image: -webkit-radial-gradient(center,#fff,#000)
}

#recent-posts>.recent-post-item .post_cover img.post_bg {
    width: 100%;
    height: 100%;
    transition: all .6s ease 0s;
    object-fit: cover
}

#recent-posts>.recent-post-item .post_cover img.post_bg:hover {
    transform: scale(1.1)
}

#recent-posts>.recent-post-item>.recent-post-info.no-cover {
    width: 100%
}

#recent-posts>.recent-post-item>.recent-post-info>.article-title {
    margin-bottom: .3rem;
    color: var(--text-highlight-color);
    font-size: 1.4em;
    line-height: 1.4;
    transition: all .2s ease-in-out 0s;
    -webkit-line-clamp: 2
}

#recent-posts>.recent-post-item>.recent-post-info>.article-title:hover {
    color: #307af6
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap {
    color: var(--heo-fontcolor);
    font-size: .7rem;
    user-select: none
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap>.post-meta-date {
    cursor: default
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap .sticky {
    color: #ff7242
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap i {
    margin: 0 .2rem 0 0
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap .article-meta-label {
    padding-right: .2rem
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap .article-meta__separator {
    margin: 0 .3rem
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap .article-meta__link {
    margin: 0 .2rem
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap .fa-angle-right {
    margin: 0 .2rem
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap time {
    display: none;
    font-size: 13px
}

#recent-posts>.recent-post-item>.recent-post-info>.content {
    margin-top: .3rem;
    -webkit-line-clamp: 3
}

@media screen and (max-width: 768px) {
    #recent-posts .recent-post-item {
        -webkit-box-orient:vertical;
        flex-direction: column;
        height: auto!important
    }

    #recent-posts .recent-post-item .post_cover {
        width: 100%;
        height: 170px!important;
        border-radius: 5px 8px 0 0;
        -webkit-box-ordinal-group: 1!important;
        order: 1!important
    }

    #recent-posts .recent-post-item .recent-post-info {
        padding: 1rem 1rem 1.5rem;
        width: 100%;
        -webkit-box-ordinal-group: 2!important;
        order: 2!important
    }

    #recent-posts .recent-post-item .recent-post-info.no-cover {
        padding: 1.5rem 1rem
    }

    #recent-posts .recent-post-item .recent-post-info .article-title {
        font-size: 1.43em
    }

    #recent-posts .recent-post-item .recent-post-info .content {
        height: auto
    }
}

.recent-post-item .recent-post-info .recent-post-info-top {
    position: relative;
    transition: .3s;
    padding: 0 32px;
    width: 100%
}

.recent-post-item .recent-post-info .recent-post-info-top .article-title {
    line-height: 30px;
    margin-top: 0;
    font-weight: 700;
    color: var(--heo-fontcolor);
    margin-bottom: 0;
    width: 100%;
    transition: .3s;
    font-size: 1rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical
}

.recent-post-item .recent-post-info .recent-post-info-top .original {
    display: flex;
    color: var(--heo-secondtext);
    font-size: .625rem;
    position: relative;
    margin-right: 8px
}

.recent-post-item .recent-post-info .recent-post-info-top .lastestpost {
    display: none;
    margin-right: 8px
}

.recent-post-info-top-tips {
    display: flex;
    margin-top: 20px;
    user-select: none
}

.recent-post-item .recent-post-info .recent-post-info-top a.unvisited-post {
    display: flex;
    color: var(--heo-secondtext);
    font-size: .625rem;
    position: relative
}

.recent-post-item .recent-post-info .recent-post-info-top a.unvisited-post:visited {
    color: var(--heo-card-bg)
}

@media screen and (max-width: 768px) {
    .recent-post-info-top-tips {
        display:none
    }
}

@media screen and (min-width: 1300px) {
    #recent-posts>.recent-post-item:nth-child(2) .lastestpost {
        display:flex;
        color: var(--heo-secondtext);
        font-size: .625rem;
        position: relative
    }

    .recent-post-item .recent-post-info .recent-post-info-top .article-title {
        font-size: 20px;
        -webkit-line-clamp: 2
    }

    .recent-post-item:hover .recent-post-info .recent-post-info-top .article-title {
        -webkit-line-clamp: 2
    }

    #recent-posts>.recent-post-item .post_cover {
        transition: 1s!important;
        height: 225px;
        width: 100%
    }

    .recent-post-item.post-card-large .recent-post-info .recent-post-info-top .content {
        opacity: 0!important;
        -webkit-line-clamp: 2!important
    }

    .recent-post-item.post-card-large:hover .recent-post-info .recent-post-info-top .content {
        opacity: 1!important
    }
}

.recent-post-item .recent-post-info .recent-post-info-top .content {
    opacity: 0;
    transition: .3s;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.4;
    color: var(--heo-secondtext);
    margin-top: .5rem
}

@media screen and (max-width: 1300px) {
    .recent-post-item:hover .recent-post-info .recent-post-info-top .content {
        display:none
    }
}

@media screen and (min-width: 1300px) {
    .recent-post-item:hover .recent-post-info .recent-post-info-top .content {
        display:none
    }
}

@media screen and (min-width: 768px) {
    .recent-post-item.post-card-large .recent-post-info .recent-post-info-top .content {
        opacity:1;
        -webkit-line-clamp: 4
    }

    .recent-post-item.post-card-large:hover .recent-post-info .recent-post-info-top .content {
        -webkit-line-clamp: 6
    }
}

@media screen and (max-width: 768px) {
    .recent-post-item .recent-post-info .recent-post-info-top {
        padding:0 20px;
        top: 20px
    }

    .recent-post-item .recent-post-info .recent-post-info-top .content {
        opacity: 1;
        -webkit-line-clamp: 3;
        display: none
    }

    #recent-posts .recent-post-item .recent-post-info .article-title {
        font-size: 19px
    }
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap i {
    margin: 0 .4rem 0 0
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap .sticky {
    color: var(--heo-fontcolor)
}

#recent-posts .recent-post-item {
    height: fit-content;
    background: var(--heo-card-bg);
    border-radius: 12px;
    cursor: pointer;
    border: var(--style-border)
}

#recent-posts .recent-post-item:hover {
    border: var(--style-border-hover);
    box-shadow: var(--heo-shadow-main)
}

@media screen and (max-width: 768px) {
    #recent-posts .recent-post-item:hover {
        border:var(--style-border-always);
        box-shadow: none
    }
}

@media screen and (max-width: 1300px) {
    #recent-posts>.recent-post-item .left_radius,#recent-posts>.recent-post-item .right_radius {
        width:75%;
        display: flex;
        height: 220px
    }

    #recent-posts>.recent-post-item:hover .post_cover img.post_bg {
        transform: scale(1.03);
        transition: .3s ease-in-out;
        filter: brightness(.85)
    }

    #recent-posts>.recent-post-item.post-card-large:hover .post_cover img.post_bg {
        transform: scale(1.03)
    }

    #recent-posts>.recent-post-item .post_cover img.post_bg {
        min-width: 100%;
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
        transition: .3s ease-in-out;
        min-height: 100%;
        user-select: none
    }

    #recent-posts>.recent-post-item:hover>.recent-post-info {
        transition: all .3s;
        position: relative
    }

    #recent-posts>.recent-post-item>.recent-post-info {
        transition: all .3s
    }
}

@media screen and (max-width: 375px) {
    #recent-posts>.recent-post-item .left_radius,#recent-posts>.recent-post-item .right_radius {
        height:170px
    }
}

#recent-posts>.recent-post-item:hover .post_cover img.post_bg {
    transform: scale(1);
    transition: 0s ease-in-out;
    filter: brightness(1)
}

@media screen and (min-width: 1200px) {
    #recent-posts>.recent-post-item:hover .post_cover img.post_bg {
        transform:scale(1.03);
        transition: .3s ease-in-out;
        filter: brightness(.85)
    }
}

@media screen and (min-width: 1300px) {
    #recent-posts>.recent-post-item .left_radius,#recent-posts>.recent-post-item .right_radius {
        width:100%;
        display: flex
    }
}

#recent-posts>.recent-post-item .left_radius a,#recent-posts>.recent-post-item .right_radius a {
    min-height: 100%;
    min-width: 100%
}

.recent-top-post-group {
    border-radius: 12px;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 0;
    -webkit-user-select: none
}

.recent-top-post-group.more-page {
    display: none
}

.recent-post-top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: scroll
}

.recent-post-top::-webkit-scrollbar {
    display: none
}

.recent-post-top .recent-post-item {
    display: flex;
    width: 200px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: .5rem;
    background: var(--heo-card-bg);
    border-radius: 12px;
    overflow: hidden;
    height: 164px;
    max-height: 164px;
    border: var(--style-border-always);
    transition: .3s;
    position: relative;
    box-shadow: var(--heo-shadow-border)
}

@media screen and (max-width: 768px) {
    .recent-post-top .recent-post-item {
        border-radius:8px;
        box-shadow: none;
        clip-path: inset(0 0 0 0 round 8px)
    }

    .recent-post-top .recent-post-item:last-child {
        margin-right: 1rem
    }
}

@media screen and (min-width: 1200px) {
    .recent-post-top .recent-post-item {
        width:calc(100% / 3 - .25rem);
        margin-left: 0
    }

    .recent-post-top .recent-post-item {
        margin-right: 0;
        margin-bottom: .5rem
    }

    .recent-post-top {
        overflow-x: visible
    }

    .recent-top-post-group {
        overflow: visible;
        overflow-x: visible
    }
}

span.recent-post-top-text {
    position: absolute;
    top: 0;
    left: -40px;
    display: flex;
    z-index: 1;
    background: var(--heo-red);
    color: var(--heo-white);
    padding: 2px 8px;
    font-size: .75rem;
    border-radius: 12px 0 12px 0;
    transition: .3s;
    cursor: pointer;
    font-weight: 700
}

.recent-post-item:hover .recent-post-top-text {
    left: 0
}

@media screen and (max-width: 768px) {
    .recent-top-post-group {
        border-radius:0;
        background: var(--heo-background)
    }

    .recent-post-top-text {
        display: none!important
    }

    .recent-post-top .recent-post-item .post_cover img {
        border-radius: 8px 8px 0 0!important
    }
}

.recent-post-top .recent-post-item .post_cover a {
    height: 100px;
    overflow: hidden;
    display: flex
}

.recent-post-top .recent-post-item .post_cover img {
    object-fit: cover;
    width: 100%;
    background: var(--heo-secondbg);
    border-radius: 12px 12px 0 0
}

.recent-post-top .recent-post-item:hover .post_cover img {
    transform: scale(1)
}

.recent-post-item .post_cover {
    -webkit-mask-image: -webkit-radial-gradient(center,#fff,#000)
}

.recent-post-top .recent-post-item .recent-post-info {
    padding: .3rem .5rem .3rem .5rem!important;
    transition: .3s
}

.recent-post-top .recent-post-item:hover .recent-post-info a {
    color: var(--heo-fontcolor)
}

@media screen and (max-width: 1300px) {
    .recent-post-top .recent-post-item:hover .recent-post-info a {
        color:var(--theme-color1);
        transition: .3s
    }
}

.recent-post-top .recent-post-item .recent-post-info .article-title {
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    padding-top: .5rem;
    font-weight: 700;
    font-size: 1rem!important;
    padding: 0!important
}

.title-and-tips {
    display: flex;
    margin-top: 1rem;
    align-items: center
}

.title-and-tips .page-title {
    line-height: 1;
    margin: 0
}

.title-and-tips .page-tips {
    background: var(--heo-yellow-op);
    color: var(--heo-yellow);
    margin-bottom: auto;
    border-radius: 8px;
    padding: 2px 6px;
    font-size: .625rem;
    margin-left: 8px
}

#recent-posts>.recent-post-item {
    box-shadow: var(--heo-shadow-light2black);
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    align-items: center;
    transition: all .3s ease 0s
}

#recent-posts>.recent-post-item {
    margin-top: .5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    animation: slide-in .6s .4s backwards;
    will-change: transform
}

@media screen and (min-width: 1300px) {
    #recent-posts>.recent-post-item {
        flex-direction:column
    }

    #recent-posts>.recent-post-item {
        width: calc(100% / 2 - .5rem);
        margin-top: .25rem;
        margin-bottom: .75rem;
        box-shadow: var(--heo-shadow-border)
    }

    #category #recent-posts .recent-post-item,#tag #recent-posts .recent-post-item {
        margin-top: .5rem;
        margin-bottom: 1rem;
        position: relative;
        overflow: hidden;
        margin-top: 1rem;
        animation: slide-in .6s .4s backwards;
        will-change: transform;
        width: calc(100% / 2 - .5rem);
        margin-top: .25rem;
        margin-bottom: .75rem;
        box-shadow: var(--heo-shadow-border)
    }

    #category-bar {
        margin-bottom: .75rem;
        box-shadow: var(--heo-shadow-border);
        animation: slide-in .6s .3s backwards
    }

    #category #category-bar {
        animation: none
    }

    #recent-posts {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        -webkit-user-select: none
    }
}

@media screen and (min-width: 1200px) {
    #category #recent-posts .recent-post-item,#tag #recent-posts .recent-post-item {
        animation:slide-in .6s .4s backwards
    }

    #category-bar {
        animation: slide-in .6s .3s backwards
    }
}

#recent-posts {
    position: relative
}

@media screen and (max-width: 768px) {
    #recent-posts>.recent-post-item {
        border-radius:0
    }

    #recent-posts>.recent-post-item {
        margin: 1.5rem 0;
        border-radius: 12px;
        margin-top: .5rem;
        border: var(--style-border-always);
        box-shadow: var(--heo-shadow-border);
        display: block;
        position: relative;
        clip-path: inset(0 0 0 0 round 12px)
    }

    #recent-posts {
        padding: 0 1rem
    }

    #category #recent-posts,#tag #recent-posts {
        padding: 0
    }

    #recent-posts .recent-post-item .post_cover {
        border-radius: 0!important;
        width: 100%
    }

    #bbTimeList {
        margin-top: 0;
        border-radius: 0;
        background: var(--heo-background);
        padding: .5rem 20px
    }

    a.article-meta__categories {
        left: 12px!important;
        top: 12px!important;
        border-radius: 4px!important;
        padding: 2px 9px!important;
        font-size: 12px
    }

    #bbTimeList {
        margin-bottom: 0
    }
}

@media screen and (min-width: 1300px) {
    .topGroup .recent-post-item:nth-child(7) {
        display:none
    }
}

@media screen and (max-width: 768px) {
    #sidebar-menus>div.author-avatar {
        display:none
    }

    #recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap {
        bottom: .5rem!important
    }

    #recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap time {
        display: absolute;
        right: 0
    }

    #rightside {
        display: none
    }

    #web_bg {
        background: 0 0!important
    }

    #recent-posts>.recent-post-item .post_cover img.post_bg {
        border-radius: 12px 12px 0 0!important
    }

    #recent-posts>.recent-post-item .post_cover img.post_bg:hover {
        transform: scale(1)
    }

    #recent-posts>.recent-post-item:hover img.post_bg {
        transform: scale(1)
    }

    .recent-post-top .recent-post-item:hover .post_cover img {
        transform: scale(1)
    }

    #recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap,#recent-posts>.recent-post-item>.recent-post-info>.article-title,#recent-posts>.recent-post-item>.recent-post-info>.content {
        padding: 0 20px!important
    }
}

a.article-meta__categories {
    position: absolute;
    padding: 1px 6px;
    background: var(--heo-black-op);
    border-radius: 8px;
    margin-left: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--heo-white);
    top: 8px;
    left: 8px;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateZ(0)
}

a.article-meta__categories:hover {
    background: var(--theme-color1)!important;
    color: var(--heo-white)!important;
    box-shadow: var(--heo-shadow-theme)
}

#recent-posts>.recent-post-item>.recent-post-info>.article-title {
    line-height: 1.4;
    margin-top: 0;
    font-weight: 700;
    color: var(--heo-fontcolor);
    margin-bottom: 0;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 40px;
    transition: .3s
}

#recent-posts>.recent-post-item>.recent-post-info>.article-title:hover {
    color: var(--heo-fontcolor)
}

@media screen and (min-width: 768px) {
    #recent-posts>.recent-post-item>.recent-post-info>.article-title {
        top:40px
    }

    #recent-posts>.recent-post-item:hover>.recent-post-info>.article-title {
        top: 20px
    }

    #recent-posts>.recent-post-item.post-card-large:hover>.recent-post-info>.article-title {
        top: 30px
    }

    #recent-posts .recent-post-item:hover .recent-post-info .article-title {
        color: var(--theme-color1)
    }
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap>.post-meta-date {
    right: 0;
    text-align: right
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap>.post-meta-date i {
    display: none
}

.post-meta-date .far {
    opacity: .6
}

.post-meta-date .article-meta-label {
    display: none
}

#post-meta .post-meta-date {
    opacity: .6;
    margin-right: 12px
}

#post-info #post-meta a.post-meta-pv {
    color: var(--heo-white);
    display: flex;
    align-items: center;
    padding: 8px
}

#post-info #post-meta a.post-meta-pv:hover {
    opacity: 1;
    background: var(--heo-white-op)
}

#aside-content #card-toc .toc-content .toc-link.active {
    line-height: 24px;
    border-radius: 12px;
    border-left-color: var(--heo-hovertext);
    background-color: var(--heo-card-bg);
    color: var(--theme-color1);
    font-weight: 700;
    font-size: 20px
}

[data-theme=dark].toc .toc-item.active .toc-link .toc-text {
    color: var(--heo-white)
}

#aside-content #card-toc .toc-content .toc-item.active .toc-link {
    opacity: 1;
    border-radius: 8px
}

#aside-content #card-toc .toc-content .toc-link {
    line-height: 24px;
    padding: 8px;
    border-left: 0 solid transparent;
    border-radius: 12px;
    color: var(--heo-secondtext);
    cursor: default;
    min-height: 40px;
    display: flex;
    align-items: center
}

#aside-content #card-toc .toc-content .toc-link:not(.active) span {
    opacity: .6;
    cursor: pointer;
    filter: blur(1px);
    transition: .3s
}

#aside-content #card-toc:hover .toc-content .toc-link:not(.active) span {
    filter: blur(0);
    opacity: 1
}

#aside-content #card-toc .toc-content .toc-link:not(.active) span:hover {
    color: var(--theme-color1)
}

#card-toc {
    padding: .5rem .5rem!important
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap .article-meta__separator {
    display: none
}

.article-meta {
    margin: 0 8px 0 0;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    display: flex
}

.article-meta__link {
    display: none
}

.article-meta__tags {
    margin-right: 8px;
    padding: 0 .2rem;
    padding-left: 0;
    color: var(--heo-fontcolor)
}

#recent-posts>div>i .post_cover {
    display: none
}

#recent-posts>.recent-post-item>.recent-post-info {
    height: 174px;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding: 0;
    display: inline-block;
    overflow: hidden
}

@media screen and (max-width: 768px) {
    #recent-posts .recent-post-item .recent-post-info {
        height:8.75rem
    }
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap {
    position: absolute;
    bottom: 16px;
    transition: .3s;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    left: 0;
    padding: 0 32px;
    white-space: nowrap
}

@media screen and (min-width: 1300px) {
    #recent-posts>.recent-post-item:hover>.recent-post-info>.article-meta-wrap {
        bottom:20px
    }

    #recent-posts>.recent-post-item.post-card-large:hover>.recent-post-info>.article-meta-wrap {
        bottom: 20px
    }

    #recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap {
        bottom: 20px
    }
}

#recent-posts>.recent-post-item>.recent-post-info>.article-meta-wrap a:hover {
    background-color: var(--heo-none);
    color: var(--theme-color1);
    cursor: pointer;
    /*border-radius: 4px*/
}

#home_top {
    max-width: 1400px;
    margin: auto;
    margin-top: .5rem;
    padding: 0 1.5rem
}

@media screen and (max-width: 768px) {
    #home_top {
        padding:0;
        margin-top: 0
    }
}

#aside-content .card-tag-cloud a[href*="/tags/Sketch/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a[href*="/tags/%E8%AE%BE%E8%AE%A1/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a[href*="/tags/%E5%B9%B2%E8%B4%A7/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a[href*="/tags/%E6%95%99%E7%A8%8B/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a sup {
    opacity: .6;
    margin-left: 2px
}

@media screen and (min-width: 768px) {
    .card-allinfo .card-tag-cloud {
        max-height:500px;
        overflow: hidden;
        position: relative
    }
}

.card-tag-cloud.all-tags {
    max-height: none
}

.card-allinfo .card-tag-cloud::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background-image: linear-gradient(to top,var(--heo-card-bg),transparent);
    pointer-events: none
}

@media screen and (max-width: 768px) {
    .card-allinfo .card-tag-cloud::after {
        display:none
    }
}

.card-allinfo .card-tag-cloud.all-tags::after {
    display: none
}

a#more-tags-btn {
    width: 100%;
    text-align: center;
    background: var(--heo-secondbg);
    color: var(--heo-fontcolor);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    user-select: none;
    padding: 4px 0;
    border: var(--style-border-always);
    box-shadow: var(--heo-shadow-border)
}

a#more-tags-btn:hover {
    background: var(--theme-color1);
    color: var(--heo-card-bg);
    box-shadow: var(--heo-shadow-theme)
}

#recent-posts>.recent-post-item>.recent-post-info>.content {
    line-height: 1.4;
    color: var(--heo-secondtext);
    margin-top: 0;
    cursor: pointer;
    transition: .3s;
    opacity: 1;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 40px
}

@media screen and (min-width: 768px) {
    #recent-posts>.recent-post-item>.recent-post-info>.content {
        opacity:0;
        top: 120px
    }

    #recent-posts>.recent-post-item:hover>.recent-post-info>.content {
        opacity: 1;
        top: 90px
    }

    @media screen and (max-width: 1300px) {
        #recent-posts>.post-card-large>.recent-post-info>.content {
            opacity:1!important
        }

        #recent-posts>.post-card-large:hover>.recent-post-info>.content {
            top: 110px
        }

        #recent-posts>.post-card-large>.recent-post-info>.content {
            -webkit-line-clamp: 3!important
        }

        #recent-posts>.post-card-large:hover>.recent-post-info>.content {
            -webkit-line-clamp: 5!important
        }

        #recent-posts>.post-card-large {
            height: 20em!important
        }
    }
}

@media screen and (max-width: 768px) {
    #recent-posts>.recent-post-item>.recent-post-info>.content {
        top:5rem
    }
}

#recent-posts>.recent-post-item>.recent-post-info>.content {
    -webkit-line-clamp: 2
}












/*tags punctuation*/
#post-info span.tags-punctuation::before {
    font-size: 20px;
    line-height: 32px
}

#post .tag_share .post-meta__tags span.tags-punctuation {
    font-size: 12px;
    margin-right: 1px;
    display: flex;
    align-items: center
}

span.tags-punctuation {
    margin-right: 2px;
    font-size: .875rem;
    font-weight: 700;
    display: flex;
    align-items: center
}

span.tags-punctuation::before {
    content: "\e045";
    font-family: heofont!important;
    font-size: 14px;
    opacity: .4
}

.hide-aside #page span.tags-punctuation::before {
    font-size: 22px
}

.recent-post-item span.tags-punctuation {
    margin-right: 0;
    font-size: 13px
}

.category-lists span.tags-punctuation {
    font-size: 18px
}

.article-sort-item-tags a .tags-punctuation {
    font-size: 12px;
    margin-right: 1px
}











/*category-bar*/
#category-bar {
    padding: .4rem 1rem .4rem .7rem;
    background: var(--heo-card-bg);
    border-radius: 12px;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 1rem;
    border: var(--style-border);
    transition: .3s;
    width: 100%;
    justify-content: space-between;
    -webkit-user-select: none;
    display: flex;
    align-items: center
}

.recent-post-item>.recent-post-info>.article-meta-wrap {
    position: absolute;
    bottom: 16px;
    transition: .3s;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    left: 0;
    padding: 0 32px;
    white-space: nowrap
}

.recent-post-info .article-meta-wrap .category-bar-items {
    width: 61.8%;
}

.recent-post-info .article-meta-wrap .category-bar-items> a {
    zoom: 0.8;
}

@media screen and (min-width: 1300px) {
    #category-bar:hover {
        border:var(--style-border-hover);
        box-shadow: var(--heo-shadow-main)
    }

    .category-in-bar-tips {
        margin-bottom: .25rem
    }
}

@media screen and (max-width: 768px) {
    #category-bar {
        border-radius:0;
        background: var(--heo-background);
        margin-bottom: 0;
        position: -webkit-sticky;
        position: sticky;
        z-index: 1;
        padding: 0;
        height: 50px;
        margin-top: 0;
        align-items: center
    }
}

#category #category-bar {
    padding: 0;
    border: none;
    box-shadow: none
}

#category a.category-bar-item.select a {
    display: none
}

.category-in-bar {
    display: flex;
    white-space: nowrap;
    align-items: center;
    margin-bottom: 4px
}

.category-in-bar-tips {
    margin-right: 1rem
}

.category-bar-items {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    border-radius: 8px;
    align-items: center;
    height: 30px
}

.category-in-bar .category-in-bar-tips {
    margin-bottom: 0
}

.category-in-bar #category-bar {
    margin-bottom: 0
}

.category-bar-items::-webkit-scrollbar {
    display: none
}

.category-bar-item a {
    padding: .1rem .5rem;
    margin-right: 6px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    height: 30px
}

.category-bar-item:hover a {
    background: var(--theme-color1);
    color: var(--heo-card-bg)
}

.category-bar-item.select a {
    background: var(--theme-color1);
    color: var(--heo-card-bg);
    border-radius: 8px
}

@media screen and (max-width: 768px) {
    .category-bar-item.select a {
        border-radius:8px
    }

    .category-bar-item a {
        border-radius: 8px
    }

    .category-in-bar {
        position: -webkit-sticky;
        position: sticky;
        top: 60px;
        background: var(--heo-background);
        z-index: 1002
    }
}

.category-bar-next {
    margin-left: 16px;
    cursor: pointer;
    height: 22px;
    display: flex
}

.category-bar-next:hover {
    color: var(--theme-color1)
}

.category-bar-more {
    margin-left: 14px;
    font-weight: 700
}

.category-bar-more:hover {
    color: var(--theme-color1)
}





/*page header*/
* {
    box-sizing: border-box;
}

#page-header {
    position: relative;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease 0s
}

#page-header {
    background-image: none !important;
    display: flex;
    justify-content: center
}

#page-header.full_page {
    height: 20rem;
    background-attachment: fixed
}

#page-header.full_page #site-info {
    position: absolute;
    top: 7.8rem;
    padding: 0 .5rem;
    width: 100%
}

#page-header #scroll-down .scroll-down-effects, #page-header #site-subtitle, #page-header #site-title {
    text-align: center;
    line-height: 1.5
}

#page-header #site-title {
    margin: 0;
    color: var(--heo-white);
    font-size: 1.85em
}

@media screen and (min-width: 768px) {
    #page-header #site-title {
        font-size: 2.85em
    }
}

#page-header #site-subtitle {
    color: var(--light-grey);
    font-size: 1.15em
}

@media screen and (min-width: 768px) {
    #page-header #site-subtitle {
        font-size: 1.72em
    }
}

#page-header #site_social_icons {
    display: none;
    margin: 0 auto;
    width: 15rem;
    text-align: center
}

@media screen and (max-width: 768px) {
    #page-header #site_social_icons {
        display: block
    }
}

#page-header #site_social_icons .social-icon {
    margin: 0 .5rem;
    color: var(--light-grey);
    text-shadow: rgba(0, 0, 0, .15) .1rem .1rem .2rem;
    font-size: 1.43em;
    cursor: pointer
}

#page-header #scroll-down {
    position: absolute;
    bottom: 0;
    width: 100%;
    cursor: pointer;
    display: none
}

#page-header #scroll-down .scroll-down-effects {
    position: relative;
    width: 100%;
    color: var(--light-grey);
    font-size: 30px
}

#page-header.not-home-page {
    height: 20rem
}

@media screen and (max-width: 768px) {
    #page-header.not-home-page {
        height: 14rem
    }
}

#page-header #page-site-info {
    position: absolute;
    top: 10rem;
    padding: 0 .5rem;
    width: 100%
}

@media screen and (max-width: 768px) {
    #page-header #page-site-info {
        top: 7rem
    }
}

#page-header.post-bg {
    height: 20rem
}

@media screen and (max-width: 768px) {
    #page-header.post-bg {
        height: 18rem;
        background-color: var(--heo-main) !important;
        transition: 0s
    }
}

#page-header #post-info {
    position: absolute;
    padding: 0 8%;
    width: 100%;
    text-align: center
}

@media screen and (max-width: 900px) {
    #page-header #post-info {
        bottom: 1.5rem;
        text-align: left
    }
}

@media screen and (max-width: 768px) {
    #page-header #post-info {
        bottom: 1.1rem;
        padding: 0 1.1rem
    }
}

#page-header.not-top-img {
    margin-bottom: .5rem;
    height: 60px;
    background: 0 center
}

#page-header.nav-fixed #nav {
    position: fixed;
    top: 0;
    z-index: 91;
    transition: .3s
}

#page-header.nav-fixed #nav #site-name, #page-header.nav-fixed #nav #toggle-menu, #page-header.nav-fixed #nav a {
    text-shadow: none
}

#page-header.nav-visible + .layout > .aside-content > .sticky_layout {
    top: 70px;
    transition: top .5s ease 0s
}

#page h1.page-title {
    margin: .4rem 0 1rem
}

#post > #post-info {
    margin-bottom: 1.5rem
}

#post > #post-info .post-title {
    padding-bottom: .2rem;
    border-bottom: 1px solid var(--light-grey);
    color: var(--text-highlight-color)
}

#post > #post-info .post-title .post-edit-link {
    float: right
}

#post > #post-info #post-meta, #post > #post-info #post-meta a {
    color: #78818a
}

#post-info .post-title {
    margin-bottom: .4rem;
    color: var(--heo-white);
    font-weight: 400;
    font-size: 2.5em;
    line-height: 1.5;
    -webkit-line-clamp: 3
}

@media screen and (max-width: 768px) {
    #post-info .post-title {
        font-size: 1.72em
    }
}

#post-info .post-title .post-edit-link {
    padding-left: .5rem
}

#post-info #post-meta {
    color: var(--light-grey);
    font-size: 95%
}

@media screen and (min-width: 768px) {
    #post-info #post-meta > .meta-secondline > span:first-child {
        display: none
    }
}

@media screen and (max-width: 768px) {
    #post-info #post-meta {
        font-size: 90%
    }
}

#post-info #post-meta .post-meta-separator {
    margin: 0 .25rem
}

#post-info #post-meta .post-meta-icon {
    margin-right: .2rem
}

#post-info #post-meta .post-meta-label {
    margin-right: .2rem
}

#post-info #post-meta a {
    color: var(--light-grey);
    transition: all .3s ease-out 0s
}

#post-info #post-meta a:hover {
    color: #307af6;
    text-decoration: underline
}

#page-header.post-bg::before {
    transition: .3s;
    opacity: .93;
    height: 20rem;
    background-color: var(--heo-main);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    content: ""
}

@media screen and (max-width: 768px) {
    #page-header.post-bg {
        height: 30rem !important;
        margin-bottom: -12px
    }

    #page-header.post-bg:before {
        height: 15rem
    }

    .post-bg #post-cover {
        min-height: 15rem !important;
        height: 70% !important;
        opacity: 1 !important
    }
}

@media screen and (min-width: 1300px) {
    #page-header.post-bg {
        height: 25rem
    }

    #page-header {
        height: 25rem
    }

    #page-header.post-bg:before {
        height: 25rem;
        opacity: 0;
        background-color: var(--heo-main);
        animation: slide-in-op .6s 0s forwards
    }

    #post-info .post-title {
        width: 1100px;
        font-size: 2.6rem !important
    }
}

#page-header.post-bg {
    background-color: var(--heo-background);
    transition: .6s;
    overflow: hidden
}

.post-bg #post-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 50vw;
    min-height: 20rem;
    opacity: .8
}

#post-cover-rgb {
    position: absolute;
    width: 100%!important;
    height: 100%!important;
    background: var(--theme-color1)
}

.full_page #post-cover {
    display: none
}

.main-hero-waves-area {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -11px;
    z-index: 5
}

.waves-area .waves-svg {
    width: 100%;
    height: 60px
}

@media (max-width: 768px) {
    .main-hero-waves-area {
        display:none
    }
}

.parallax > use {
    animation: move-forever 30s cubic-bezier(.55, .5, .45, .5) infinite
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    fill: var(--heo-background);
    opacity: .5
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    fill: var(--heo-background);
    opacity: .6
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    fill: var(--heo-background);
    opacity: .7
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
    fill: var(--heo-background)
}






/*sidebar*/
#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a span,#aside-content .card-categories ul.card-category-list>.card-category-list-item a span,#aside-content .card-info .card-info-data>.card-info-data-item a .headline,#pagination .next_info,#pagination .prev_info,#sidebar #sidebar-menus .menus_items .site-page,#sidebar #sidebar-menus .site-data .data-item .data-item-link>a>div,.flink#article-container .flink-list>.flink-list-item a .flink-item-desc,.flink#article-container .flink-list>.flink-list-item a .flink-item-name,.limit-one-line {
    text-overflow: ellipsis;
    white-space: nowrap
}

#aside-content .aside-list>.aside-list-item .content>.comment,#aside-content .aside-list>.aside-list-item .content>.name,#aside-content .aside-list>.aside-list-item .content>.title,#error-wrap .error-content .error-info .error_subtitle,#post-info .post-title,#recent-posts>.recent-post-item>.recent-post-info>.article-title,#recent-posts>.recent-post-item>.recent-post-info>.content,.article-sort-item-title,.limit-more-line,.relatedPosts>.relatedPosts-list .content .title,figure.gallery-group .gallery-group-name,figure.gallery-group p {
    display: -webkit-box;
    -webkit-box-orient: vertical
}

#aside-content .aside-list>.aside-list-item .content>.title {
    overflow: hidden
}

div#author-info__sayhi {
    text-align: center;
    width: fit-content;
    color: var(--heo-white);
    background: var(--heo-white-op);
    font-size: 12px;
    margin-right: auto;
    padding: 2px 8px;
    border-radius: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    transition: .3s;
    margin: auto;
    min-width: 100px;
    opacity: 1
}

div#author-info__sayhi:hover {
    background: var(--heo-white);
    color: var(--theme-color1);
    transform: scale(1.1)
}

div#author-info__sayhi:active {
    transform: scale(.97);
    opacity: .8
}

[data-theme=dark] .page div#author-info__sayhi {
    background: #00000015;
    color: var(--heo-black)
}

[data-theme=dark] .page div#author-info__sayhi:hover {
    background: var(--heo-card-bg);
    color: var(--heo-fontcolor)
}

#aside-content .author-info__description,#aside-content .author-info__name,#site-name,#site-subtitle,#site-title {
    font-family: "PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif
}

@media screen and (min-width: 900px) {
    #aside-content {
        padding-left:15px
    }
}

@media screen and (max-width: 900px) {
    #aside-content {
        width:100%
    }
}

@media screen and (max-width: 900px) {
    #aside-content>.card-widget:first-child {
        margin-top:1rem
    }
}

@media screen and (max-width: 768px) {
    #aside-content .card-widget:not(#card-toc) {
        display:none
    }
}

#aside-content .card-info .avatar-img {
    width: 118px;
    height: 118px;
    right: 0;
    top: 0;
    border-radius: 500px;
    position: absolute;
    opacity: 1;
    transition: .3s;
    border: 5px solid var(--heo-white);
    overflow: hidden
}

.page #aside-content .card-info .avatar-img {
    border-color: var(--heo-card-bg)
}

.author-info__top-group {
    display: flex;
    height: 28px;
    width: 100%
}

#aside-content .card-info .author-info__description {
    margin-top: -.3rem
}

#aside-content .card-info .card-info-data {
    display: table;
    margin: .7rem 0 .2rem;
    width: 100%;
    table-layout: fixed
}

#aside-content .card-info .card-info-data>.card-info-data-item {
    display: table-cell
}

#aside-content .card-info .card-info-data>.card-info-data-item:hover {
    background: #000;
    border-radius: 5px
}

#aside-content .card-info .card-info-data>.card-info-data-item a .headline {
    color: var(--heo-fontcolor);
    font-size: 1.25em
}

#aside-content .card-info .card-info-data>.card-info-data-item a .length-num {
    margin-top: -.3rem;
    color: var(--text-highlight-color);
    font-size: 1.75em
}

#aside-content .card-info .card-info-social-icons {
    margin: .3rem 0 -.3rem
}

#aside-content .card-info .card-info-social-icons .social-icon {
    margin: 0 .5rem;
    color: var(--heo-fontcolor);
    font-size: 1.75em;
    cursor: pointer;
    display: flex
}

#aside-content .card-info .card-info-social-icons i {
    transition: all .3s ease 0s;
    padding: 8px;
    border-radius: 32px
}

#aside-content .card-info .card-info-social-icons i:hover {
    transform: rotate(540deg);
    background-color: #000;
    cursor: pointer
}

#aside-content .card-info #card-info-btn {
    display: block;
    margin-top: .7rem;
    background-color: var(--btn-bg);
    color: var(--btn-color);
    text-align: center;
    line-height: 2.4
}

#aside-content .card-info #card-info-btn span {
    padding-left: .5rem
}

@media screen and (min-width: 900px) {
    #aside-content .sticky_layout {
        position:sticky;
        top: 20px;
        transition: top .3s ease 0s
    }
}

@media screen and (max-width: 1300px) {
    #aside-content .sticky_layout {
        top:60px
    }
}

#aside-content .card-tag-cloud a {
    display: inline-block;
    padding: 0 .3rem
}

#aside-content .card-tag-cloud a:hover {
    background-color: #fff;
    cursor: pointer;
    border-radius: 5px;
    color: #307af6!important
}

#aside-content .aside-list>span {
    display: block;
    margin-bottom: .5rem;
    text-align: center
}

#aside-content .aside-list>.aside-list-item .thumbnail {
    overflow: hidden;
    width: 2.1em;
    height: 2.1em;
    margin-top: 4px
}

#aside-content .aside-list>.aside-list-item .thumbnail>img {
    width: 140%;
    height: 140%;
    transition: all .6s ease 0s;
    object-fit: cover
}

#aside-content .aside-list>.aside-list-item .thumbnail>img:hover {
    transform: scale(1.1)
}

#aside-content .aside-list>.aside-list-item .content {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    padding-left: 10px;
    word-break: break-all;
    display: flex;
    flex-direction: column
}

#aside-content .aside-list>.aside-list-item .content>.name {
    -webkit-line-clamp: 1
}

#aside-content .aside-list>.aside-list-item .content>.name,#aside-content .aside-list>.aside-list-item .content>time {
    display: block;
    color: #858585;
    font-size: 85%
}

#aside-content .aside-list>.aside-list-item .content>.comment,#aside-content .aside-list>.aside-list-item .content>.title {
    color: var(--heo-fontcolor);
    font-size: 95%;
    line-height: 1.3;
    -webkit-line-clamp: 2
}

#aside-content .aside-list>.aside-list-item .content>.comment:hover,#aside-content .aside-list>.aside-list-item .content>.title:hover {
    color: #307af6
}

#aside-content .aside-list>.aside-list-item.no-cover {
    min-height: 4.4em
}

#aside-content .card-archives ul.card-archive-list,#aside-content .card-categories ul.card-category-list {
    margin: 0;
    padding: 0;
    list-style: none
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a,#aside-content .card-categories ul.card-category-list>.card-category-list-item a {
    display: inline-block;
    padding: .15rem .5rem;
    width: 100%;
    color: var(--heo-fontcolor);
    transition: all .4s ease 0s;
    border-radius: 5px
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a:hover,#aside-content .card-categories ul.card-category-list>.card-category-list-item a:hover {
    padding: .15rem .85rem;
    background-color: #fff;
    color: #427bee;
    border-radius: 5px
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a span,#aside-content .card-categories ul.card-category-list>.card-category-list-item a span {
    display: inline-block;
    vertical-align: bottom
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a span:first-child,#aside-content .card-categories ul.card-category-list>.card-category-list-item a span:first-child {
    width: 80%
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a span:last-child,#aside-content .card-categories ul.card-category-list>.card-category-list-item a span:last-child {
    width: 20%;
    text-align: right
}

#aside-content .card-categories .card-category-list.child {
    padding: 0 0 0 .8rem
}

#aside-content .card-categories .card-category-list>.parent>a .card-category-list-name {
    width: 70%!important
}

#aside-content .card-categories .card-category-list>.parent>a .card-category-list-count {
    width: calc(30% - 20px);
    text-align: right
}

#aside-content .card-categories .card-category-list>.parent i {
    float: right;
    margin-right: -.35rem;
    padding: .35rem;
    transition: transform .3s ease 0s;
    transform: rotate(0)
}

#aside-content .card-categories .card-category-list>.parent i.expand {
    transform: rotate(-90deg)
}

#aside-content .card-webinfo .webinfo .webinfo-item {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: .1rem .5rem 0
}

#aside-content .card-webinfo .webinfo .webinfo-item div:first-child {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    padding-right: 1rem
}

@media screen and (min-width: 901px) {
    #aside-content #card-toc {
        right:0!important
    }
}

@media screen and (max-width: 900px) {
    #aside-content #card-toc {
        position:fixed;
        right: -100%;
        bottom: 30px;
        z-index: 100;
        max-height: calc(100% - 60px);
        width: 300px;
        opacity: 0;
        transform-origin: right bottom
    }
}

#aside-content #card-toc .toc-content {
    overflow-y: auto;
    max-height: calc(100vh - 300px)
}

@media screen and (max-width: 900px) {
    #aside-content #card-toc .toc-content {
        max-height:calc(100vh - 140px)
    }
}

#aside-content #card-toc .toc-content .toc-child {
    display: none
}

@media screen and (max-width: 900px) {
    #aside-content #card-toc .toc-content .toc-child {
        display:block!important
    }
}

#aside-content #card-toc .toc-content .toc-item.active .toc-child {
    display: block
}

#aside-content #card-toc .toc-content li,#aside-content #card-toc .toc-content ol {
    list-style: none
}

#aside-content #card-toc .toc-content>ol {
    padding: 0!important
}

#aside-content #card-toc .toc-content ol {
    margin: 0;
    padding-left: .4rem
}

#aside-content #card-toc .toc-content .toc-link {
    display: block;
    padding-left: .3rem;
    border-left: 3px solid transparent;
    color: var(--toc-link-color);
    transition: all .2s ease-in-out 0s
}

#aside-content #card-toc .toc-content .toc-link.active {
    border-left-color: #0061cc;
    background: #0079ff;
    color: #fff
}

#aside-content #card-toc .toc-content::before {
    position: absolute;
    top: .6rem;
    right: 1.2rem;
    color: #a9a9a9;
    content: attr(progress-percentage);
    font-style: italic;
    font-size: 1.5rem
}

#aside-content :only-child>.card-widget {
    margin-top: 0
}

#aside-content .card-more-btn {
    float: right;
    color: inherit
}

#aside-content .card-more-btn:hover {
    animation: 1s ease 0s infinite normal none running more-btn-move
}

@media screen and (min-width: 900px) {
    html.hide-aside .layout {
        -webkit-box-pack:center;
        justify-content: center
    }

    html.hide-aside .layout>.aside-content {
        display: none
    }

    html.hide-aside .layout>div:first-child {
        width: 100%
    }
}

.page .sticky_layout {
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column
}

#page-header.nav-visible+.layout>.aside-content>.sticky_layout {
    top: 70px;
    transition: top .5s ease 0s
}

#aside-content .card-info .card-info-data>.card-info-data-item {
    transition: .3s
}

#aside-content .card-info .card-info-data>.card-info-data-item {
    transition: .3s
}

@media screen and (min-width: 768px) {
    #aside-content .sticky_layout {
        margin-top:1rem
    }
}

@media screen and (min-width: 1300px) {
    #aside-content .sticky_layout {
        margin-top:1rem
    }
}

#aside-content .sticky_layout {
    top: 80px;
    transition: top 0s
}

#aside-content .sticky_layout .card-widget:first-child {
    margin-top: 0
}

#aside-content .card-widget:hover {
    box-shadow: var(--heo-shadow-border)
}

#aside-content #card-funds {
    margin-bottom: 1rem;
    min-height: 260px
}

#page-header.nav-visible+.layout>.aside-content>.sticky_layout {
    top: 80px
}

#aside-content {
    width: 300px
}

@media screen and (max-width: 1300px) {
    #aside-content {
        width:260px
    }
}

@media screen and (max-width: 1200px) {
    #aside-content {
        display:none
    }
}

.card-widget.card-recent-post {
    padding: .4rem .6rem!important
}

#aside-content .aside-list>.aside-list-item .content>time {
    display: none
}

#aside-content .aside-list>.aside-list-item .content>.title {
    font-weight: 700;
    padding: 2px 0;
    margin-bottom: 8px
}

.article-recent_post_categories {
    font-size: 12px;
    font-weight: 700;
    opacity: .6;
    line-height: 1
}

#aside-content .aside-list>.aside-list-item {
    padding: 2px 6px 8px 6px;
    border-radius: 12px;
    transition: .3s;
    margin: 4px 0;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: flex-start
}

#aside-content .aside-list>.aside-list-item:hover .thumbnail>img {
    transform: scale(1)
}

#aside-content .aside-list>.aside-list-item .thumbnail {
    -webkit-mask-image: -webkit-radial-gradient(center,#fff,#000);
    border-radius: 8px;
    border: var(--style-border);
    display: flex;
    align-items: center
}

#aside-content .aside-list>.aside-list-item:hover {
    background: var(--theme-color1);
    color: var(--heo-white);
    transition: .3s;
    box-shadow: var(--heo-shadow-main)
}

#aside-content .aside-list>.aside-list-item:hover a {
    color: var(--heo-white)!important
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a,#aside-content .card-categories ul.card-category-list>.card-category-list-item a {
    border-radius: 8px;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    border: var(--style-border)
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a span:first-child,#aside-content .card-categories ul.card-category-list>.card-category-list-item a span:first-child {
    width: auto
}

#aside-content .card-archives ul.card-archive-list,#aside-content .card-categories ul.card-category-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a span:last-child,#aside-content .card-categories ul.card-category-list>.card-category-list-item a span:last-child {
    width: fit-content;
    margin-left: 4px
}

@media screen and (min-width: 1200px) {
    #aside-content {
        padding-left:1rem;
        animation: slide-in .6s .3s backwards
    }

    #aside-content .sticky_layout {
        top: calc(60px + 1rem)
    }

    #page-header.nav-visible+.layout>.aside-content>.sticky_layout {
        top: calc(60px + 1rem)
    }

    [data-theme=dark] #aside-content>.card-widget.card-info {
        border: var(--style-border)
    }

    .coverdiv {
        height: 130%
    }
}

#aside-content .card-widget#card-music {
    background: var(--heo-pink);
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0;
    cursor: pointer;
    border: none
}

#aside-content .card-widget#card-music img {
    max-height: 110px;
    object-fit: cover
}

#aside-content .card-widget#card-music:hover img {
    transition: .5s;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d
}

.music-link {
    display: flex;
    justify-content: center;
    align-content: center
}

#aside-content .card-widget#card-friendlinks {
    background: var(--theme-color1);
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0;
    cursor: pointer;
    border: none
}

#aside-content .card-widget#card-friendlinks img {
    max-height: 110px;
    object-fit: cover
}

#aside-content .card-widget#card-friendlinks:hover img {
    transition: .5s;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d
}

.friend-link {
    display: flex;
    justify-content: center;
    align-content: center
}

#aside-content .card-widget#card-wechat {
    background: var(--theme-color1);
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0;
    cursor: pointer;
    border: none;
    height: 110px
}

#aside-content .card-widget#card-wechat.wechat {
    background: var(--heo-green)
}

#aside-content .card-widget#card-wechat::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(https://p.zhheo.com/KrWQdG24890781690197108608.png!cover) center center no-repeat;
    content: '';
    background-size: cover;
    transition: .2s cubic-bezier(.45,.04,.43,1.21)
}

#aside-content .card-widget#card-wechat:hover:before {
    top: 100%;
    opacity: 0;
    transition: .3s ease-out
}

#aside-content .card-widget#card-wechat.wechat::before {
    background: url(https://p.zhheo.com/i28Q2z23790881691546797700.png!cover) center center no-repeat;
    background-size: cover
}

#aside-content .card-widget#card-wechat img {
    max-height: 110px;
    object-fit: cover
}

.friend-link {
    display: flex;
    justify-content: center;
    align-content: center
}

#flip-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    -webkit-perspective: 1000;
    perspective: 1000;
}

#flip-content {
    width: 235px;
    height: 110px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: cubic-bezier(0,0,0,1.29) .3s;
}

#flip-wrapper:hover #flip-content {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

#aside-content .card-widget.card-power {
    padding: .4rem .6rem!important
}

#aside-content .card-widget.card-power .power-charge {
    margin-left: auto;
    color: var(--heo-secondtext);
    font-size: 14px;
    line-height: 1
}

#aside-content .card-widget.card-power .power-charge:hover {
    color: var(--theme-color1)
}

.power-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -4px
}

.power-list .power-item .power-item-link a {
    padding: 4px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-size: 1rem
}

.power-list .power-item .power-item-link a:hover {
    background: var(--theme-color1);
    color: var(--heo-card-bg);
    box-shadow: var(--heo-shadow-theme)
}

#aside-content .power-item-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 6px 12px 6px
}

#power-star-image {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-size: cover;
    margin-right: 12px;
    border: var(--style-border-always);
    transition: .3s ease-out
}

a#power-star {
    display: flex;
    padding: 8px;
    border: var(--style-border-always);
    border-radius: 8px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    position: relative;
    margin: 12px 0;
    background: var(--heo-secondbg);
    transition: .3s ease-out;
    box-shadow: var(--heo-shadow-border);
    color: var(--ri-body-color)
}

a#power-star:hover {
    background: var(--theme-color1);
    color: var(--heo-card-bg);
    box-shadow: var(--heo-shadow-theme)
}

a#power-star:hover #power-star-image {
    transform: scale(.9)
}

div#power-star-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px
}

#power-star-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 12px;
    max-width: 100%;
    line-height: 1.2
}

.power-star-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: calc(100% - 68px);
    justify-content: center
}


#aside-content .card-widget {
    box-shadow: var(--heo-shadow-border);
    background: var(--heo-card-bg);
    border: var(--style-border);
    transition: .3s;
    border-radius: 12px;
    transition: .3s;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    padding: 1rem 1.2rem
}

#aside-content #card-toc .toc-content .toc-link.active {
    line-height: 24px;
    border-radius: 12px;
    border-left-color: var(--heo-hovertext);
    background-color: var(--heo-card-bg);
    color: var(--theme-color1);
    font-weight: 700;
    font-size: 20px
}

#aside-content #card-toc .toc-content .toc-item.active .toc-link {
    opacity: 1;
    border-radius: 8px
}

#aside-content #card-toc .toc-content .toc-link {
    line-height: 24px;
    padding: 8px;
    border-left: 0 solid transparent;
    border-radius: 12px;
    color: var(--heo-secondtext);
    cursor: default;
    min-height: 40px;
    display: flex;
    align-items: center
}

#aside-content #card-toc .toc-content .toc-link:not(.active) span {
    opacity: .6;
    cursor: pointer;
    filter: blur(1px);
    transition: .3s
}

#aside-content #card-toc:hover .toc-content .toc-link:not(.active) span {
    filter: blur(0);
    opacity: 1
}

#aside-content #card-toc .toc-content .toc-link:not(.active) span:hover {
    color: var(--theme-color1)
}

#aside-content .card-tag-cloud a[href*="/tags/Sketch/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a[href*="/tags/%E8%AE%BE%E8%AE%A1/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a[href*="/tags/%E5%B9%B2%E8%B4%A7/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a[href*="/tags/%E6%95%99%E7%A8%8B/"] {
    color: var(--theme-color1)!important;
    font-weight: 500
}

#aside-content .card-tag-cloud a sup {
    opacity: .6;
    margin-left: 2px
}

#aside-content .card-info .author-info__name {
    text-align: left;
    font-weight: 700;
    color: var(--heo-white);
    font-size: 20px;
    line-height: 1;
    margin-bottom: 5px
}

.page #aside-content .card-info .author-info__name,.page .author-info__desc {
    color: var(--heo-card-bg)
}

.avatar-img-group {
    width: 118px;
    height: 118px;
    min-width: 118px;
    min-height: 118px;
    right: calc(50% - 59px);
    top: 70px;
    border-radius: 500px;
    position: absolute;
    transition: cubic-bezier(.69, .39, 0, 1.21) .3s;
    transform-origin: bottom
}

#aside-content .card-info:hover .avatar-img-group {
    opacity: 0;
    transform: scale(0)
}

.avatar-sticker {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 33px;
    height: 33px;
    line-height: 34px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-out .2s;
    transform: scale(1);
    background: var(--heo-white);
    border-radius: 50%
}

.page .avatar-sticker {
    background: var(--heo-card-bg)
}

.avatar-sticker img {
    width: 26px;
    height: 26px
}

.card-widget:hover .avatar-sticker {
    opacity: 0;
    transform: scale(0)
}

#aside-content>.card-widget:first-child {
    transition: .3s;
    border: none;
    box-shadow: none;
    background: var(--theme-color1);
    margin-top: 0
}

#aside-content>.card-widget.card-info {
    background: var(--heo-card-bg);
    box-shadow: var(--heo-shadow-black);
    position: relative
}

#aside-content>.card-widget.card-info::before {
    background: linear-gradient(-25deg,var(--theme-color1),var(--heo-main-op-deep));
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: ''
}

#aside-content .card-info .card-info-data {
    display: none
}

#aside-content .card-info a img {
    border-radius: 0;
    height: 200px;
    display: inherit;
    filter: drop-shadow(-5px 14px 8px #00000008);
    position: absolute;
    right: -24px;
    bottom: -82px;
    width: auto;
    z-index: 0;
    transition: cubic-bezier(.48,-.21,0,1.5) .3s
}

#aside-content .card-info a img:hover {
    bottom: -42px
}

[data-theme=light] #aside-content .card-info a img {
    filter: drop-shadow(-5px 14px 8px #ffffff08)
}

.card-widget.card-info {
    padding: 0!important
}

#aside-content>div.card-widget.card-info>div.card-content {
    padding: 1rem 1.2rem;
    min-height: 320px;
    height: 320px;
    position: relative;
    user-select: none
}

#aside-content>div.card-widget.card-info>div.card-info-avatarimg {
    overflow: hidden;
    background: var(--heo-yellow);
    transition: 1.5s;
    min-height: 160px;
    position: relative;
    box-shadow: var(--heo-shadow-yellow)
}

#aside-content>div.card-widget.card-info>div.card-info-avatarimg:hover img {
    transform: scale(1.03)
}

.is-center {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    align-items: center
}

.card-info-avatar.is-center {
    flex-direction: column;
    display: flex;
    align-items: flex-start
}

#aside-content>div.card-widget.card-info>div>div.card-info-data>div:nth-child()>a>div.headline {
    font-weight: 700
}

@media screen and (max-width: 900px) {
    #aside-content .card-announcement {
        display:none
    }

    #aside-content #card-funds {
        display: none
    }
}

#aside-content .card-info #card-info-btn {
    display: none
}

.author-info__bottom-group {
    display: flex;
    justify-content: space-between;
    position: absolute;
    padding: 1.2rem;
    width: 100%;
    left: 0;
    bottom: 0;
    align-items: center
}

a.author-info__bottom-group-left:hover {
    opacity: .8
}

#aside-content .card-info .card-info-social-icons {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    cursor: pointer
}

#page-header #site_social_icons .social-icon {
    margin: 0 .5rem;
    color: var(--light-grey);
    text-shadow: rgba(0, 0, 0, .15) .1rem .1rem .2rem;
    font-size: 1.43em;
    cursor: pointer
}

#aside-content .card-info .card-info-social-icons .social-icon {
    margin: 0;
    margin-left: 8px
}

#aside-content .card-info .card-info-social-icons i {
    background: var(--heo-white-op);
    color: var(--heo-white);
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

#aside-content .card-info .card-info-social-icons i:hover {
    background: var(--heo-white);
    transform: scale(1.1);
    color: var(--theme-color1);
    box-shadow: none
}

[data-theme=dark] .page #aside-content .card-info .card-info-social-icons i {
    background: var(--heo-black-op);
    color: var(--heo-card-bg)
}

[data-theme=dark] .page #aside-content .card-info .card-info-social-icons i:hover {
    background: var(--heo-card-bg);
    color: var(--heo-fontcolor)
}

#aside-content .card-info .banner-button {
    height: 40px;
    width: 118px;
    border-radius: 20px;
    justify-content: center
}

@media screen and (min-width: 1300px) {
    #aside-content .card-info .card-info-social-icons i {
        color:var(--heo-white)
    }

    [data-theme=dark] .page #aside-content .card-info .card-info-social-icons i {
        color: var(--heo-card-bg)
    }
}

#aside-content .card-info .card-info-data>.card-info-data-item:hover {
    background: var(--heo-post-blockquote-bg);
    transform: scale(.97)
}

#aside-content>div.card-widget.card-info>div.card-content>div.card-info-data>.card-info-data-item:hover>a>div.headline,#aside-content>div.card-widget.card-info>div.card-content>div.card-info-data>.card-info-data-item:hover>a>div.length-num {
    color: var(--theme-color1)
}

.announcement_content p {
    margin: .5rem 0 0 0;
    line-height: 1.38
}

#aside-content .item-headline {
    padding: 10px;
    margin-left: 8px;
    font-size: 1.25em;
    font-weight: 700;
    display: flex;
    align-items: center
}

#aside-content .item-headline span {
    margin-left: 4px;
    color: var(--ri-body-color)
}

#aside-content .card-allinfo .item-headline {
    display: none
}

#aside-content .item-headline i {
    min-width: 19.5px;
    font-size: 18px
}

#aside-content .item-headline+div,#aside-content .item-headline+ul {
    padding: 2px;
    -webkit-user-select: none
}

@media screen and (min-width: 1300px) {
    #aside-content .card-widget {
        margin-top:1rem
    }
}

@media screen and (max-width: 768px) {
    #aside-content .card-widget {
        border-radius:12px
    }
}

#aside-content>div.sticky_layout>div.card-widget.card-archives>div>ul>li.card-archive-list-item.more.is-center {
    margin-top: 8px;
    background: var(--heo-card-btn-bg);
    border-radius: 8px;
    transition: .3s ease-out!important
}

#aside-content>div.sticky_layout>div.card-widget.card-archives>div>ul>li.card-archive-list-item.more.is-center :hover {
    color: var(--heo-white);
    background: var(--heo-blue);
    border-radius: 8px;
    transition: .3s ease-out!important
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item.more span,#aside-content .card-categories ul.card-category-list>.card-category-list-item.more span {
    transition: .3s ease-out!important
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item:hover.more span,#aside-content .card-categories ul.card-category-list>.card-category-list-item.more span {
    transition: .3s ease-out!important
}

#aside-content>div.sticky_layout>div.card-widget.card-archives>div>ul>li.card-archive-list-item.more.is-center :hover span {
    background: 0 0
}

#web_bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    position: fixed;
    z-index: -999;
    background: var(--heo-background)
}

#aside-content .card-tag-cloud a {
    color: var(--heo-fontcolor)!important;
    font-size: 1rem;
    border-radius: 8px
}

#aside-content .card-tag-cloud a:hover {
    background: var(--theme-color1);
    color: var(--heo-card-bg)!important;
    box-shadow: var(--heo-shadow-theme)
}

#aside-content .card-tag-cloud a.tags-cloud-more {
    width: 100%;
    text-align: center;
    border-radius: 8px!important;
    border: var(--style-border);
    margin-top: 8px;
    font-size: 16px!important
}

#aside-content .card-archives ul.card-archive-list>.card-archive-list-item a:hover,#aside-content .card-categories ul.card-category-list>.card-category-list-item a:hover {
    color: var(--heo-white);
    background-color: var(--theme-color1);
    box-shadow: var(--heo-shadow-theme);
    border-radius: 8px;
    padding: .15rem .5rem;
    border: var(--style-border-hover)
}

@media screen and (max-width: 768px) {
    .layout {
        padding:0
    }

    .layout>div:first-child:not(.recent-posts) {
        z-index: 10
    }

    .post .layout>div:first-child:not(.recent-posts) {
        border-radius: 12px 12px 0 0
    }

    .post .layout#content-inner {
        background: var(--theme-color1)
    }

    .page .layout#content-inner {
        background: var(--heo-background)
    }

    #aside-content {
        z-index: 2;
        background: var(--heo-background);
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        width: 100%
    }
}

#aside-content #card-toc .toc-content:before {
    display: none
}


.pindao .face {
    background: url(https://p.zhheo.com/sgDgtu21290781690197072717.png!cover) center center no-repeat;
    background-size: cover;
}

.pindao .back.face {
    background: url(https://p.zhheo.com/3MO7TN24991281701762889249.png!cover) center center no-repeat;
    background-size: cover;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.back.face {
    display: block;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    box-sizing: border-box;
}

.card-widget.card-info .banner-button-group {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    -webkit-user-select: none
}

.card-widget.card-info .banner-button-group .banner-button {
    padding: 8px 12px;
    background: var(--heo-white-op);
    border-radius: 12px;
    color: var(--heo-white);
    display: flex;
    align-items: center;
    z-index: 1;
    transition: .3s;
    cursor: pointer
}

.card-widget.card-info .banner-button-group .banner-button:hover {
    background: var(--heo-white);
    color: var(--heo-black)
}

.card-widget.card-info .banner-button-group .banner-button i {
    margin-right: 8px;
    font-size: 22px
}









/*author-content*/
.author-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem
}

.author-content-item-group.column {
    display: flex;
    flex-direction: column;
    width: 49%;
    justify-content: space-between
}

.author-content-item {
    width: 49%;
    border-radius: 12px;
    background: var(--heo-card-bg);
    border: var(--style-border-always);
    box-shadow: var(--heo-shadow-border);
    position: relative;
    padding: 1rem 2rem;
    overflow: hidden
}

.author-content-item.single {
    width: 100%
}

.author-content-item .author-content-item-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1
}

.author-content-item .author-content-item-tips {
    opacity: .8;
    font-size: .6rem;
    margin-bottom: .5rem
}

@media screen and (max-width: 768px) {
    .author-content-item {
        width: 100% !important;
        margin-top: 1rem;
        padding: 1rem
    }

    .author-content-item-group.column {
        width: 100% !important
    }

    .author-content {
        margin-top: 0
    }
}

.card-background-icon {
    font-size: 12rem;
    opacity: .2;
    position: absolute;
    right: 0;
    bottom: -40%;
    transform: rotate(30deg);
    transition: 2s ease-in-out
}

.author-content-item:hover .card-background-icon {
    transform: rotate(20deg)
}

#about-page .myInfoAndSayHello {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--heo-white);
    background: linear-gradient(120deg, #5b27ff 0, #00d4ff 100%);
    background-size: 200%;
    width: 59%
}

#about-page .myInfoAndSayHello .title1 {
    opacity: .8;
    line-height: 1.3
}

#about-page .myInfoAndSayHello .title2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: .5rem 0
}

.author-content-item-group.column.mapAndInfo {
    width: 59%
}

.author-content-item.map {
    background: url(https://bu.dusays.com/2023/03/12/640dc807140d0.png) no-repeat center;
    min-height: 160px;
    max-height: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: .5rem;
    height: 60%;
    background-size: 100%;
    transition: 1s ease-in-out
}

[data-theme=dark] .author-content-item.map {
    background: url(https://bu.dusays.com/2023/03/12/640dc8713d98a.webp) no-repeat center;
    background-size: 100%
}

.author-content-item.map:hover {
    background-size: 120%;
    transition: 4s ease-in-out;
    background-position-x: 0;
    background-position-y: 36%
}

.author-content-item.map .map-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--heo-maskbg);
    padding: .5rem 2rem;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 1s ease-in-out;
    font-size: 20px;
    transform: translateZ(0)
}

.author-content-item.map:hover .map-title {
    bottom: -100%
}

.author-content-item.map .map-title b {
    color: var(--heo-fontcolor)
}

@media screen and (max-width: 768px) {
    .author-content-item.map.myphoto {
        background-size: cover !important
    }

    .author-content-item.map .map-title {
        padding: 1rem
    }
}

.author-content-item.selfInfo {
    display: flex;
    min-height: 100px;
    max-height: 400px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: -webkit-fill-available;
    height: 40%
}

@media screen and (max-width: 1300px) {
    .author-content-item.selfInfo {
        height: 70%
    }
}

.author-content-item.selfInfo div {
    display: flex;
    flex-direction: column;
    margin: .5rem 2rem .5rem 0
}

.author-content-item.selfInfo .selfInfo-title {
    opacity: .8;
    font-size: .6rem;
    line-height: 1;
    margin-bottom: 8px
}

.author-content-item.selfInfo .selfInfo-content {
    font-weight: 700;
    font-size: 34px;
    line-height: 1
}

.author-content-item.myphoto {
    height: 60%;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    width: 39%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
}

.author-content-item.myphoto img {
    position: absolute;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    transition: .6s;
    user-select: none
}

.author-content-item.myphoto::before {
    content: '';
    background-image: url(https://bu.dusays.com/2023/11/10/654d9e7e2d23a.webp);
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    transition: 3s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0
}

.author-content-item.myphoto:hover:before {
    opacity: 1;
    transition: 1s;
    transform: scale(1.05);
    transform-origin: center
}

.author-content-item.myphoto:hover img {
    min-width: 105%;
    transition: 4s ease-out
}

.author-content-item.myphoto .myphoto-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--heo-maskbgdeep);
    padding: .5rem 2rem;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateZ(0)
}

.author-content-item.careers {
    min-height: 400px
}

.author-content-item.careers img {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    transition: .6s;
    user-select: none
}

.author-content-item.careers .careers-group {
    margin-top: 12px
}

.author-content-item.careers .careers-item {
    display: flex;
    align-items: center
}

.author-content-item.careers .careers-item .circle {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border-radius: 16px
}

.author-content-item.careers .careers-item .name {
    color: var(--heo-secondtext)
}

.author-content-item.personalities {
    overflow: hidden;
    position: relative;
    width: 59%
}

.author-content-item.personalities .title2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1
}

.author-content-item.personalities .image {
    position: absolute;
    right: -40px;
    bottom: -10rem;
    transition: transform 2s cubic-bezier(.13, .45, .21, 1.02);
    user-select: none
}

.author-content-item.personalities:hover .image {
    transform: rotate(-10deg)
}

.personalities a:hover {
    color: #56a178 !important
}

@media screen and (max-width: 768px) {
    .author-content-item.personalities {
        min-height: 360px
    }

    .author-content-item.personalities .image {
        right: -70px
    }
}

.author-content-item.maxim {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: 39%
}

.author-content-item.maxim .maxim-title {
    display: flex;
    flex-direction: column
}

.author-content-item.maxim .title1 {
    opacity: .8;
    font-size: .6rem;
    margin-bottom: .5rem
}

.author-content-item.buff {
    height: 200px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(120deg, #ff27e8 0, #ff8000 100%);
    color: var(--heo-white);
    background-size: 200%;
    animation: gradient 15s ease infinite;
    min-height: 200px;
    height: fit-content;
    width: 59%
}

.author-content-item.buff .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.author-content-item.buff .buff-title {
    display: flex;
    flex-direction: column
}

.author-content-item.buff .title1 {
    opacity: .8;
    font-size: .6rem;
    margin-bottom: .5rem
}

.author-content-item.skills {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 49%;
    min-height: 450px
}

.author-content-item.skills .tags-group-all {
    display: flex;
    transform: rotate(0);
    transition: .3s
}

.author-content-item.skills .tags-group-wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    animation: rowleft 60s linear infinite
}

.author-content-item.skills .skills-style-group {
    position: relative
}

.author-content-item.skills .skills-list {
    display: flex;
    opacity: 0;
    transition: .3s;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 10px;
    max-height: 310px;
    overflow: hidden
}

.author-content-item.skills:hover .skills-style-group .tags-group-all {
    opacity: 0
}

.author-content-item.skills:hover .skills-style-group .skills-list {
    opacity: 1
}

.author-content-item.skills .skill-info {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-top: 10px;
    background: var(--heo-background);
    border-radius: 40px;
    padding: 8px 12px 8px 8px;
    border: var(--style-border);
    box-shadow: var(--heo-shadow-border)
}

.author-content-item.skills .etc {
    margin-right: 10px;
    margin-top: 14px
}

.author-content-item.skills .skill-icon {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    user-select: none
}

.author-content-item.skills .skill-icon img {
    width: 18px;
    height: 18px
}

.author-content-item.skills .skill-name {
    font-weight: 700;
    line-height: 1
}

.author-content-item.aboutsiteTips {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 39%
}

.aboutsiteTips h2 {
    margin-right: auto;
    font-size: 36px;
    font-family: Helvetica;
    line-height: 1.06;
    letter-spacing: -.02em;
    color: var(--heo-fontcolor);
    margin-top: 0
}

.aboutsiteTips .mask {
    height: 36px;
    position: relative;
    overflow: hidden;
    margin-top: 4px
}

.aboutsiteTips .mask span {
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 36px;
    padding-bottom: var(--offset);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat
}

.aboutsiteTips .mask span[data-show] {
    transform: translateY(-100%);
    transition: .5s transform ease-in-out
}

.aboutsiteTips .mask span[data-up] {
    transform: translateY(-200%);
    transition: .5s transform ease-in-out
}

.aboutsiteTips .mask span:nth-child(1) {
    background-image: linear-gradient(45deg, #0ecffe 50%, #07a6f1)
}

.aboutsiteTips .mask span:nth-child(2) {
    background-image: linear-gradient(45deg, #18e198 50%, #0ec15d)
}

.aboutsiteTips .mask span:nth-child(3) {
    background-image: linear-gradient(45deg, #8a7cfb 50%, #633e9c)
}

.aboutsiteTips .mask span:nth-child(4) {
    background-image: linear-gradient(45deg, #fa7671 50%, #f45f7f)
}

@media screen and (max-width: 768px) {
    .author-content-item.map {
        margin-bottom: 0
    }
}

#about-page .about-statistic {
    min-height: 380px;
    width: 39%;
    background: url(https://bu.dusays.com/2023/03/12/640dc8c72f623.webp) no-repeat top;
    background-size: cover;
    color: var(--heo-white);
    overflow: hidden
}

#about-page .about-statistic::after {
    box-shadow: 0 -159px 173px 71px #0f1114 inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

#about-page .about-statistic .banner-button {
    background: var(--heo-white-op)
}

#about-page .about-statistic .banner-button:hover {
    background: var(--heo-lighttext)
}

#statistic {
    font-size: 16px;
    border-radius: 15px;
    width: 100%;
    color: var(--heo-white);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 2rem
}

#statistic div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
    margin-bottom: .5rem
}

#statistic div span:first-child {
    opacity: .8;
    font-size: .6rem
}

#statistic div span:last-child {
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
    white-space: nowrap
}

.author-content-item.about-statistic .card-content .banner-button-group .banner-button:hover {
    background: #998c5a;
    color: var(--heo-card-bg)
}

.author-content-item.single.reward .author-content-item .author-content-item-title {
    color: var(--heo-red)
}

.author-content-item.single.reward .reward-list-all {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 1rem;
    margin-bottom: .5rem;
    margin-left: -.25rem;
    margin-right: -.25rem
}

.author-content-item.single.reward .reward-list-all .reward-list-item {
    padding: 1rem;
    border-radius: 12px;
    border: var(--style-border-always);
    width: calc((100% / 6) - .5rem);
    margin: 0 .25rem .5rem .25rem;
    box-shadow: var(--heo-shadow-border);
    flex-direction: column;
    justify-content: space-between
}

.reward-list-tips p {
    font-size: 12px;
    color: var(--heo-secondtext)
}

@media screen and (max-width: 1200px) {
    .author-content-item.single.reward .reward-list-all .reward-list-item {
        width: calc((100% / 4) - .5rem)
    }
}

@media screen and (max-width: 900px) {
    .author-content-item.single.reward .reward-list-all .reward-list-item {
        width: calc((100% / 2) - .5rem)
    }
}

@media screen and (max-width: 768px) {
    .author-content-item.single.reward .reward-list-all .reward-list-item {
        width: 100%
    }
}

.author-content-item.single.reward .author-content-item-description {
    font-size: 16px;
    margin-top: .5rem
}

.author-content-item.single.reward .reward-list-all .reward-list-item .reward-list-item-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.author-content-item.single.reward .reward-list-all .reward-list-item .reward-list-bottom-group {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.author-content-item.single.reward .reward-list-all .reward-list-item .reward-list-item-money {
    padding: 4px;
    background: var(--heo-fontcolor);
    color: var(--heo-card-bg);
    font-size: 12px;
    line-height: 1;
    border-radius: 4px;
    margin-right: 4px;
    white-space: nowrap
}

.author-content-item.single.reward .reward-list-all .reward-list-item .reward-list-item-time {
    font-size: 12px;
    color: var(--heo-secondtext);
    white-space: nowrap
}

.author-content-item.single.reward .reward-list-updateDate {
    color: var(--heo-gray);
    font-size: 14px
}

.author-content-item.single.reward .post-reward {
    position: absolute;
    right: 2rem;
    top: 2rem
}

.author-content-item.single.reward .post-reward .reward-button {
    padding: 8px 12px;
    background: var(--heo-red);
    border-radius: 12px;
    color: var(--heo-white);
    display: flex;
    align-items: center;
    z-index: 1;
    transition: .3s;
    cursor: pointer;
    box-shadow: none;
    width: fit-content;
    height: fit-content;
    line-height: 2;
    user-select: none
}

.author-content-item.single.reward .post-reward:hover .reward-button {
    filter: brightness(1.1)
}

@media screen and (max-width: 768px) {
    .author-content-item.single.reward .post-reward .reward-button {
        display: none
    }
}

.author-content-item.single.reward .post-reward .reward-button i {
    margin-right: 8px;
    font-size: 1rem
}

.author-content-item.single.reward .post-reward .reward-main {
    top: 60px;
    right: 0;
    left: auto;
    bottom: auto;
    width: fit-content;
    box-shadow: var(--heo-shadow-border)
}

.author-content-item.single.reward .post-reward .reward-main .reward-all::before {
    bottom: auto;
    top: -16px
}

.author-content-item.single.reward a.reward-main-btn {
    display: none
}

.author-content-item.game-lol {
    background: url(https://bu.dusays.com/2023/03/12/640dc7d294f69.png) no-repeat top;
    background-size: cover;
    min-height: 300px;
    overflow: hidden;
    color: var(--heo-white);
    width: 59%
}

.author-content-item .card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem
}

@media screen and (max-width: 768px) {
    .author-content-item .card-content {
        padding: 1rem
    }
}

@media screen and (min-width: 1300px) {
    .author-content-item {
        animation: slide-in .6s 0s backwards
    }
}

.author-content-item.game-lol::after {
    box-shadow: 0 -69px 203px 11px #04120f inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

video.author-content-video {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.author-content-item .content-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.author-content-item .content-bottom .icon-group {
    display: flex
}

.author-content-item .content-bottom .icon-group i {
    display: inline-block;
    width: 22px;
    height: 18px;
    margin-right: .5rem
}

.icon-pos-sup {
    background: url(https://bu.dusays.com/2023/03/12/640dc913ee26b.webp)
}

.icon-pos-mid {
    background: url(https://bu.dusays.com/2023/03/12/640dc931a2cd4.webp)
}

.author-content-item.game-wolf {
    width: 39%;
    background: url(https://bu.dusays.com/2023/03/12/640dc67e55bf0.png) no-repeat top;
    background-size: cover;
    min-height: 300px;
    overflow: hidden;
    color: var(--heo-white)
}

.author-content-item.game-wolf::after {
    box-shadow: 0 -69px 203px 11px #415dc9 inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.author-content-item.like-technology {
    background: url(https://bu.dusays.com/2023/03/12/640dc69d4cf22.png) no-repeat;
    background-size: cover;
    min-height: 230px;
    color: var(--heo-white)
}

.author-content-item.like-technology::after {
    box-shadow: 0 -69px 203px 11px #050b20 inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.author-content-item.like-music {
    background: url(https://bu.dusays.com/2023/03/12/640dc6bed6d2d.jpg) no-repeat top;
    background-size: cover;
    min-height: 400px;
    color: var(--heo-white);
    overflow: hidden
}

.author-content-item.like-music::after {
    box-shadow: 0 -69px 203px 11px #0e0e0e inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.author-content-item .card-content .author-content-item-title {
    margin-bottom: .5rem
}

.author-content-item .card-content .banner-button-group {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem
}

.author-content-item .card-content .banner-button-group .banner-button {
    height: 40px;
    width: 118px;
    border-radius: 20px;
    justify-content: center;
    background: var(--heo-black-op);
    color: var(--heo-white);
    display: flex;
    align-items: center;
    z-index: 1;
    transition: .3s;
    cursor: pointer;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateZ(0)
}

.author-content-item .card-content .banner-button-group .banner-button:hover {
    background: var(--heo-lighttext);
    color: var(--heo-card-bg)
}

.author-content-item .card-content .banner-button-group .banner-button i {
    margin-right: 8px;
    font-size: 22px
}

@media screen and (max-width: 768px) {
    .author-content-item .card-content .banner-button-group {
        right: 1rem;
        bottom: 1rem
    }

    .author-content-item .card-content .banner-button-group .banner-button {
        background: 0 0;
        color: var(--heo-white);
        padding: 0;
        width: fit-content;
        height: 30px
    }

    .author-content-item .card-content .banner-button-group .banner-button i {
        margin-right: 0;
        font-size: 1.5rem
    }

    .author-content-item .card-content .banner-button-group .banner-button-text {
        display: none
    }
}

.author-content-item.single.like-movie {
    height: 19rem;
    background: url(https://p.zhheo.com/202391f23ec6a5aea2a7ca8bd5ad79d0e9b5082502.png!cover) no-repeat top;
    background-size: cover;
    color: var(--heo-white);
    overflow: hidden
}

.author-content-item.single.like-movie::after {
    box-shadow: 0 21px 133px 81px #1c1c1c inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.author-info__description_group {
    position: absolute;
    top: 50px;
    width: 100%;
    left: 0;
    padding: 1.2rem;
    opacity: 0;
    transition: .3s
}

.card-widget:hover .author-info__description_group {
    opacity: 1
}

.author-info__desc {
    font-size: 12px;
    color: var(--heo-white);
    opacity: .6;
    line-height: 1
}

.author-info__description {
    line-height: 1.38;
    margin: .3rem 0;
    text-align: justify;
    color: var(--heo-white);
    opacity: 1
}

.page .author-info__description {
    color: var(--heo-card-bg)
}

.author-info__description b {
    color: var(--heo-white);
    opacity: 1
}

.page .author-info__description b {
    color: var(--heo-card-bg);
    opacity: 1
}

.author-info__description2 {
    line-height: 1.38;
    margin: .3rem 0;
    text-align: justify;
    width: 100%;
    z-index: 2;
    color: rgba(255, 255, 255, .8)
}

.author-info__description2 b {
    color: var(--heo-white)
}


















/*algolia & pagination*/
#pagination .pagination {
    text-align: center
}

#pagination .page-number {
    display: inline-block;
    margin: 0 .25rem;
    min-width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    line-height: 1.5rem;
    cursor: pointer
}

#pagination .page-number.current {
    background: #0079ff;
    color: var(--heo-card-bg);
    cursor: default;
    border-radius: 5px
}

#pagination img.next-cover,#pagination img.prev-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .4;
    transition: all .6s ease 0s;
    object-fit: cover
}

#pagination .pagination-info {
    position: absolute;
    top: 50%;
    padding: 1.25rem 2.5rem;
    width: 100%;
    transform: translate(0,-50%)
}

#pagination .next_info,#pagination .prev_info {
    color: var(--heo-white);
    font-weight: 500
}

#pagination .next-post .pagination-info {
    text-align: right
}

#pagination .pull-full {
    width: 100%!important
}

#pagination .next-post .label,#pagination .prev-post .label {
    color: var(--light-grey);
    text-transform: uppercase;
    font-size: 90%
}

#pagination .next-post,#pagination .prev-post {
    width: 50%
}

@media screen and (max-width: 768px) {
    #pagination .next-post,#pagination .prev-post {
        width:100%
    }
}

#pagination .next-post a,#pagination .prev-post a {
    position: relative;
    display: block;
    overflow: hidden;
    height: 150px
}

#pagination .next-post:hover img.next-cover,#pagination .next-post:hover img.prev-cover,#pagination .prev-post:hover img.next-cover,#pagination .prev-post:hover img.prev-cover {
    opacity: .8;
    transform: scale(1.1)
}

#pagination.pagination-post {
    margin-top: 1.875rem;
    background: #000
}

.search-dialog {
    position: fixed;
    top: 3rem;
    left: 50%;
    z-index: 1001;
    display: none;
    margin-left: -15rem;
    padding: 1rem;
    width: 30rem;
    background: var(--search-bg);
    border-radius: 5px
}

@media screen and (max-width: 768px) {
    .search-dialog {
        top:0;
        left: 0;
        margin: 0;
        width: 100%;
        height: 100%
    }
}

.search-dialog hr {
    margin: 1rem auto
}

.search-dialog span.search-close-button {
    color: var(--heo-secondtext);
    font-size: 1.4em;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease-in-out 0s;
    padding: 4px;
    border-radius: 50px;
    margin-left: 4px;
    transition: .3s
}

.search-dialog span.search-close-button:hover {
    color: var(--heo-white);
    background: var(--heo-lighttext)
}

.search-dialog__title {
    color: var(--theme-color1);
    font-size: 1.4em;
    line-height: 1
}


#search-mask {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    background: rgba(0,0,0,.6)
}

#search-mask {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    background: var(--heo-maskbgdeep)
}

div#aligolia-navbar {
    display: flex;
    align-items: center;
    margin-bottom: 8px
}

a#search-heoGPT-tips {
    padding: 8px 12px;
    border-radius: 12px;
    border: var(--style-border-always);
    width: 100%;
    margin-top: 12px;
    display: flex;
    align-items: center
}

a#search-heoGPT-tips:hover {
    background: var(--heo-lighttext);
    border-color: var(--heo-lighttext);
    color: var(--heo-card-bg)
}

span.search-heoGPT-text {
    margin-left: 8px;
    line-height: 1.2
}

span.search-heoGPT-text-right {
    margin-left: auto;
    padding: 6px 8px;
    border-radius: 8px;
    background: var(--heo-green);
    color: var(--heo-white);
    line-height: 1;
    font-size: 12px;
    white-space: nowrap
}

#algolia-search .search-dialog {
    animation: slide-in .6s ease 0s 1 normal none running
}

#algolia-search .search-dialog .ais-search-box {
    margin: 0 auto;
    max-width: 100%;
    width: 100%
}

#algolia-search .search-dialog .ais-search-box input {
    padding: .25rem .7rem;
    outline: 0;
    border: 2px solid #307af6;
    border-radius: 2rem;
    background: var(--heo-secondbg);
    color: var(--search-input-color)
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item {
    position: relative;
    padding-left: 1.2rem
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item:hover::before {
    border-color: #ff7242
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item::before {
    position: absolute;
    top: .53em;
    left: 0;
    width: .5em;
    height: .5em;
    border: .15rem solid #307af6;
    border-radius: .5em;
    background: 0 0;
    content: "";
    line-height: .5em;
    transition: all .2s ease-in-out 0s
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item a {
    display: block;
    color: var(--search-result-title);
    cursor: pointer;
    padding: 2px 0;
    margin: 3px 0
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item a:hover {
    color: #307af6
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item em {
    color: #f47466;
    font-weight: 700
}

#algolia-search .search-dialog .ais-pagination.pagination {
    margin: 1rem 0 0;
    padding: 0;
    text-align: center
}

#algolia-search .search-dialog .ais-pagination.pagination .ais-pagination--item {
    margin: 0 .25rem;
    padding: 0
}

#algolia-search .search-dialog .ais-pagination.pagination .ais-pagination--item a {
    display: inline-block;
    min-width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    line-height: 1.5rem
}

#algolia-search .search-dialog .ais-pagination.pagination .ais-pagination--item.current a {
    background: #0079ff;
    color: #eee;
    cursor: default
}

#algolia-search .search-dialog .algolia-logo {
    padding-top: 2px;
    width: 5rem;
    height: 1.875rem
}

#algolia-search .search-dialog .ais-search-box input {
    border-radius: 8px!important;
    border: var(--style-border)
}

#algolia-search .search-dialog .ais-search-box input:focus {
    border: var(--style-border-hover)
}

#algolia-search .search-dialog .ais-search-box input::placeholder {
    opacity: .6
}

#algolia-input-panel {
    margin-bottom: 8px
}

.search-dialog {
    border-radius: 12px!important;
    box-shadow: var(--heo-shadow-lightblack);
    background: var(--heo-card-bg);
    border: var(--style-border);
    transition: .3s
}

.search-dialog:hover {
    border: var(--style-border-hover);
    box-shadow: var(--heo-shadow-theme)
}

.search-dialog__title {
    font-weight: 700;
    color: var(--theme-color1)
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item a:hover {
    color: var(--heo-hovertext)
}

#algolia-search .search-dialog .algolia-logo {
    display: none
}

#algolia-tips {
    color: var(--heo-secondtext);
    right: 0;
    margin-left: auto;
    opacity: .8
}

#algolia-tips i {
    font-size: 18px
}

.algolia-tips-text {
    font-size: 18px;
    margin-left: .2rem
}

#algolia-search-results {
    padding-top: 8px
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item:before {
    display: none
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item {
    padding-left: 0;
    font-weight: 700
}

#algolia-search .search-dialog .ais-pagination.pagination {
    margin: .25rem 0 0
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item em {
    color: var(--theme-color1);
    font-style: normal
}

#algolia-search .search-dialog .ais-search-box {
    padding-top: 8px
}

#algolia-search .search-dialog .ais-pagination.pagination .ais-pagination--item.current a {
    border-radius: 4px;
    background: var(--theme-color1);
    color: var(--heo-white)
}

#algolia-search .ais-hits--item.algolia-hit-item a {
    color: var(--heo-fontcolor)
}

#algolia-hits .tag-list {
    padding: 4px 8px;
    border-radius: 8px;
    margin-right: .5rem;
    margin-top: .5rem;
    border: var(--style-border-always);
    cursor: pointer
}

#algolia-hits .tag-list:hover {
    background: var(--theme-color1);
    color: var(--heo-white)
}

#algolia-search .search-dialog .ais-hits--item.algolia-hit-item a {
    color: var(--heo-fontcolor);
    width: auto;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}



#pagination {
    width: 100%
}

@media screen and (max-width: 768px) {
    #pagination {
        margin-bottom:0;
        margin-top: 0
    }
}

@media screen and (min-width: 1300px) {
    #pagination {
        margin-top:.3125rem
    }
}

#pagination .next-post,#pagination .prev-post,.next-post.pull-right,.prev-post.pull-left {
    background: var(--heo-secondbg)
}

@media screen and (min-width: 768px) {
    #pagination .next-post a {
        border-left:var(--heo-main-op);
        border-left-width: .5px;
        border-left-style: solid;
        display: flex;
        align-items: flex-start;
        height: 150px
    }

    #pagination .next-post.pull-full a {
        border-left-width: 0
    }

    #pagination .prev-post a {
        border-right: var(--heo-main-op);
        border-right-width: .5px;
        border-right-style: solid
    }

    #pagination .pagination-info {
        padding: 1.25rem 1.875rem 1.25rem 1.875rem;
        position: relative;
        display: flex;
        top: 0;
        transform: none;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        height: 100%
    }

    #pagination .next-post a:hover,#pagination .prev-post a:hover {
        background: var(--heo-main)
    }

    #pagination .next-post a:hover div,#pagination .prev-post a:hover div {
        color: var(--heo-white)!important
    }
}

@media screen and (max-width: 768px) {
    #pagination .next-post a:hover,#pagination .prev-post a:hover {
        background:var(--heo-none)
    }
}

#pagination img.next-cover,#pagination img.prev-cover {
    opacity: .15;
    transform: scale(1.03);
    transition: .3s;
    filter: blur(0);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d
}

#pagination .next-post:hover img.next-cover,#pagination .next-post:hover img.prev-cover,#pagination .prev-post:hover img.next-cover,#pagination .prev-post:hover img.prev-cover {
    opacity: .25;
    transform: scale(1.03);
    filter: blur(5px)
}

#pagination .next-post .label,#post #pagination .prev-post .label {
    color: var(--heo-fontcolor)
}

#pagination .next_info,#post #pagination .prev_info {
    color: var(--heo-fontcolor);
    font-weight: 700;
    -webkit-line-clamp: 2;
    white-space: normal;
    line-height: 1.3;
    font-size: 1.125rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px
}

#post #pagination {
    overflow: hidden;
    position: inherit;
    border: var(--style-border-always)
}

#pagination.pagination-post {
    background: var(--heo-card-bg)
}

@media screen and (min-width: 1300px) {
    #post #pagination {
        position:fixed;
        width: 300px;
        bottom: -100px;
        right: 20px;
        z-index: 1000;
        height: fit-content;
        transition: cubic-bezier(.42,0,.3,1.11) .3s;
        border: var(--style-border);
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        opacity: 0;
        z-index: 1002
    }

    #post #pagination.show-window {
        bottom: 20px;
        opacity: 1
    }

    #post #pagination:hover {
        border: var(--style-border-hover)
    }

    #pagination .next-post a {
        border: none;
        height: fit-content;
        padding: .625rem 0
    }

    #pagination.pagination-post {
        border-radius: 0
    }

    #pagination .next_info,#post #pagination .prev_info {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0
    }

    #pagination .pagination-info {
        padding: .625rem 1.25rem;
        transform: none
    }

    #post #pagination {
        background: 0 0
    }

    #pagination .next-post,#pagination .prev-post,.next-post.pull-right,.prev-post.pull-left {
        background: var(--heo-maskbgdeep);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        transform: translateZ(0)
    }

    .prev-post.pull-left {
        display: none
    }

    .next-post.pull-right {
        width: 100%!important
    }

    #pagination .next-post .pagination-info {
        text-align: left;
        position: relative
    }

    #pagination .next-post .label,#post #pagination .prev-post .label {
        color: var(--heo-fontcolor);
        font-weight: 700;
        font-size: 12px;
        margin-bottom: .625rem;
        border-bottom: var(--style-border);
        line-height: 1;
        padding-bottom: .625rem
    }
}

@media screen and (max-width: 768px) {
    .prev-post.pull-left {
        border-bottom:var(--style-border-always)
    }

    #post #pagination {
        border-radius: 12px;
        border: var(--style-border-always);
        box-shadow: var(--heo-shadow-border)
    }

    #pagination .next-post .label,#post #pagination .prev-post .label {
        text-align: left
    }

    #pagination .next_info,#post #pagination .prev_info {
        text-align: left
    }

    #pagination .next-post,#pagination .prev-post,.next-post.pull-right,.prev-post.pull-left {
        background: var(--heo-card-bg)
    }
}

@media screen and (max-width: 768px) {
    #pagination .page-number {
        display:none
    }

    #pagination .pagination .space {
        display: none
    }

    #pagination .pagination .extend {
        width: 100%;
        height: 3.125rem;
        margin: .25rem 0 1.25rem 0;
        border-radius: 12px;
        line-height: 3.125rem;
        background: var(--heo-card-bg);
        border: var(--style-border-always);
        box-shadow: var(--heo-shadow-border)
    }

    #pagination .pagination .extend i {
        display: none
    }

    #pagination .pagination .extend:hover {
        background: var(--theme-color1);
        color: var(--heo-white)
    }

    #pagination .pagination {
        background: var(--heo-background);
        transition: .3s;
        display: flex
    }
}

@media screen and (min-width: 768px) {
    #pagination .page-number {
        width:2.5rem;
        background: var(--heo-card-bg);
        height: 2.5rem;
        line-height: calc(2.5rem - 2px);
        border-radius: 8px!important;
        margin: 0 .375rem;
        box-shadow: var(--heo-shadow-border);
        border: var(--style-border);
        transition: .3s
    }

    #pagination .page-number.current {
        background: var(--theme-color1);
        border: var(--style-border-hover);
        box-shadow: var(--heo-shadow-theme)
    }

    #pagination .page-number.current:hover {
        background: var(--theme-color1);
        box-shadow: var(--heo-shadow-theme);
        color: var(--heo-white)
    }

    #pagination .page-number:hover {
        color: var(--theme-color1);
        border: var(--style-border-hover);
        box-shadow: var(--heo-shadow-main)
    }

    #pagination a.extend.next:hover,#pagination a.extend.prev:hover {
        color: var(--theme-color1);
        border: var(--style-border-hover);
        box-shadow: var(--heo-shadow-main)
    }

    #pagination span.space {
        margin: 0 .375rem
    }

    #pagination a.extend.next,#pagination a.extend.prev {
        width: 5rem;
        height: 2.5rem;
        line-height: 2.375rem;
        border-radius: 8px!important;
        background: var(--heo-card-bg);
        box-shadow: var(--heo-shadow-border);
        position: absolute;
        border: var(--style-border);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: .3s
    }

    #pagination a.extend.next i,#pagination a.extend.prev i {
        transition: .3s
    }

    #pagination a.extend.next {
        overflow: hidden
    }

    #pagination a.extend.next .pagination_tips_next {
        margin-left: -32px;
        transition: .3s ease-out 0s;
        opacity: 0
    }

    #pagination a.extend.next:hover .pagination_tips_next {
        margin-left: 2px;
        opacity: 1;
        white-space: nowrap
    }

    #pagination a.extend.prev .pagination_tips_prev {
        margin-right: -32px;
        transition: .3s ease-out 0s;
        opacity: 0
    }

    #pagination a.extend.prev:hover .pagination_tips_prev {
        margin-right: 2px;
        opacity: 1;
        white-space: nowrap
    }

    #pagination {
        overflow: visible
    }

    #pagination .pagination {
        position: relative;
        display: flex;
        justify-content: center
    }
}

@media screen and (min-width: 768px) {
    #pagination.pagination-post {
        border-radius:12px;
        margin-top: 1.25rem
    }

    .relatedPosts {
        margin-top: 1.25rem
    }
}

@media screen and (min-width: 1300px) {
    #pagination.pagination-post {
        border-radius:0;
        margin-top: 0
    }
}

.pagination input {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: var(--style-border-always);
    transition: .3s;
    outline-style: none;
    font-size: 16px;
    padding-left: 12px;
    background: var(--heo-secondbg);
    color: var(--heo-fontcolor)
}

.pagination .toPageGroup input:focus,.pagination .toPageGroup:hover input {
    border: var(--style-border-hover-always);
    outline-style: none;
    width: 100px
}

a.extend.next {
    right: 0
}

a.extend.prev {
    left: 0
}

.toPageGroup {
    display: flex;
    position: relative;
    margin: 0 .375rem
}

a#toPageButton {
    display: flex;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    transition: .3s;
    background: var(--heo-card-bg);
    border: var(--style-border-always);
    cursor: text;
    pointer-events: none
}

.toPageGroup:focus-within a#toPageButton,.toPageGroup:hover a#toPageButton {
    width: 30px;
    height: 30px;
    right: 4px;
    top: 5px;
    background: var(--heo-card-bg);
    border: 1px solid var(--heo-none);
    border-radius: 4px;
    opacity: .2
}

.toPageGroup:focus-within a#toPageButton.haveValue {
    opacity: 1;
    cursor: pointer
}

a#toPageButton.haveValue {
    opacity: 1!important;
    cursor: pointer!important;
    pointer-events: all
}

a#toPageButton.haveValue:hover {
    background: var(--theme-color1);
    color: var(--heo-card-bg)
}

@media screen and (max-width: 768px) {
    .toPageGroup {
        display:none
    }
}











/*footer*/
#footer {
    position: relative;
    background: center bottom/cover local #307af6
}

#footer-wrap {
    position: relative;
    padding: 2rem 1rem;
    color: var(--light-grey);
    text-align: center
}

#footer-wrap a {
    color: var(--light-grey);
    padding: 4px 12px;
    border-radius: 5px
}

#footer-wrap a:hover {
    background-color: #fff;
    color: #3b82ff;
    cursor: pointer;
    border-radius: 5px
}

#footer-wrap .footer-separator {
    margin: 0 .2rem
}

#footer-wrap .icp-icon {
    padding: 0 4px;
    vertical-align: text-bottom;
    max-height: 1.4em;
    width: auto
}

#footer-wrap {
    color: var(--heo-fontcolor)
}

#footer-wrap a {
    color: var(--heo-fontcolor);
    height: 44px;
    line-height: 36px
}

#footer-wrap a:hover {
    color: var(--heo-hovertext);
    background-color: var(--heo-none)
}

div#footer_deal {
    justify-content: center;
    display: flex;
    padding-top: 2rem;
    align-items: center
}

@media screen and (max-width: 768px) {
    div#footer_deal {
        flex-wrap: wrap;
        flex-direction: row
    }
}


#footer-wrap a#heoblog_footerlogo:hover {
    background: var(--heo-none)
}

.heoblog_footerlogo_img {
    filter: drop-shadow(0 12px 12px #ee7d7936)
}

#footer {
    background: linear-gradient(180deg,var(--heo-card-bg-none) 0,var(--heo-card-bg) 25%);
    margin-top: .5rem;
    display: flex;
    flex-direction: column
}

@media screen and (max-width: 768px) {
    #footer {
        background:linear-gradient(180deg,var(--heo-background) 0,var(--heo-card-bg) 25%);
        margin-top: 0;
        z-index: 999
    }
}

@media screen and (max-width: 768px) {
    #letlink {
        flex-direction:column!important;
        text-align: center!important
    }

    #letlogo {
        display: none!important
    }

    #footer-wrap {
        margin-top: 1rem!important
    }
}

.footer-bar-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center
}

#footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 50px 0 50px;
    text-align: left!important;
    max-width: 1200px;
    margin: 0 auto
}

#footer-wrap h1 {
    font-size: 1.875rem;
    margin: 0
}

#footer-wrap h3 {
    padding: 0 12px
}

#footer-wrap p {
    margin: 0 0 0 .2rem;
    font-size: 1rem;
    opacity: .8
}

#footer-wrap i {
    margin-right: .5rem;
    width: 22px;
    font-size: 18px;
    display: inline-block
}

#footer-wrap #letlogo {
    display: flex;
    flex-direction: column;
    margin-right: 60px;
    align-self: center;
    margin: auto 0;
    max-width: 200px
}

#footer-wrap #letlink .link_group {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    min-width: 180px
}

#footer-wrap #letlink {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 0 1rem 0
}

#footer:before {
    position: absolute!important;
    width: 100%!important;
    height: 100%!important;
    content: ''!important;
    z-index: -1
}

div#heo-footer-bar {
    display: none
}

.post div#heo-footer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px
}

div#heo-footer-bar a.footer-bar-link {
    padding: 4px 16px;
    background: var(--heo-secondbg);
    border-radius: 20px;
    margin-top: 8px;
    font-size: 14px;
    cursor: pointer;
    border: var(--style-border-always)
}

div#heo-footer-bar a.footer-bar-link:hover {
    background: var(--theme-color1);
    color: var(--heo-white);
    transform: scale(1.1);
    border-color: var(--theme-color1)
}

div#heo-footer-bar .footer-logo {
    font-size: 24px
}

div#heo-footer-bar .footer-bar-description {
    color: var(--heo-secondtext);
    font-weight: 700
}

#heo-footer .footer-links {
    display: flex;
    flex-direction: column
}

#heo-footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 0 1rem
}

#heo-footer .footer-item {
    font-size: 0.8rem;
    line-height: .8rem;
    margin: 4px 0;
    color: var(--heo-fontcolor);
    margin-right: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 120px;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px
}

#heo-footer .footer-item:hover {
    color: var(--theme-color1);
    background: var(--theme-color-light);
}

[data-bs-theme=dark] #heo-footer .footer-item:hover {
    background: var(--heo-theme-op)
}

#heo-footer .footer-group {
    min-width: 120px
}

#heo-footer .footer-title-group {
    display: flex;
    align-items: center;
    margin: 1rem 0 .7rem 8px
}

#heo-footer .footer-title-group a {
    margin-left: 8px
}

#heo-footer .footer-title-group i {
    line-height: 1;
    color: var(--heo-secondtext);
    transition: .3s;
    font-size: 16px;
    opacity: .6
}

#heo-footer .footer-title-group a:hover i {
    color: var(--theme-color1);
    opacity: 1
}

#heo-footer .footer-title-group .footer-title {
    margin: 0
}

#heo-footer .random-friends-btn {
    display: flex
}

#heo-footer .footer-title {
    color: var(--heo-secondtext);
    font-size: 1rem;
    margin-left: 8px
}

@media screen and (max-width: 768px) {
    #heo-footer .footer-title {
        width:calc(50vw - 30px)
    }
}

#footer-bar {
    padding: 1rem;
    color: var(--heo-fontcolor);
    margin-top: 1rem;
    background: var(--heo-secondbg);
    display: flex;
    overflow: hidden;
    z-index: 1002;
    transition: .3s;
    border-top: var(--style-border-always)
}

#footer-bar .footer-bar-links {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1
}

#footer-bar .footer-bar-left {
    display: flex;
    flex-wrap: wrap;
    min-height: 32px;
    align-items: center
}

#footer-bar .footer-bar-link {
    margin: 0 4px;
    color: var(--heo-fontcolor);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 8px;
    border-radius: 12px;
    line-height: 1
}

#footer-bar .footer-bar-link.cc {
    margin-right: 0
}

#footer-bar .footer-bar-link.cc i:not(:last-child) {
    margin-right: .5rem
}

#footer-bar .footer-bar-link.cc i {
    font-size: 18px
}

#footer-bar .footer-bar-link:hover {
    color: var(--theme-color1);
    background: var(--heo-main-op)
}

#footer-bar>div>div.footer-bar-left>span {
    margin-right: 1rem
}

#footer-bar .footer-bar-right a:hover {
    color: var(--theme-color1)
}

#footer_deal i {
    font-size: 1.125rem;
    line-height: .9rem;
    height: .9rem
}

