* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

:root {
    --slideshow_width: 960px;
    /*--slideshow_height: 540px;*/
    --slideshow_height: 411px;
    --index_border_radius: 15px;
    --article_thumb_height: 180px;
    --article_thumb_width: 320px;
    --article_thumb_circle_size: 350px;
    --right_width: 400px;
    --right_marginbottom: 30px;
    --newest_comments_duration: 3000ms;
    --index_box_shadow: 0px 0px 20px -5px rgba(158, 158, 158, 0.4);
    --article_mod_margin: 40px;
}

/* WebKit浏览器覆盖 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


a {
    transition: all 200ms;
    text-decoration: none;
}

body {
    position: relative;
}

.top_header {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 8;
    transition: all 750ms ease;
}

.top_header_inner_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    width: 1390px;
}

.navi_logo {
    height: inherit;
}

.navi_logo_inner_a {
    height: inherit;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 70%;
    object-fit: contain;
}

.navi_and_search {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}


.navi_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.navi_container i {
    margin-right: 5px;
}

.navi_container > .navbar-item {
    list-style-type: none;
    margin-left: 40px;
    cursor: pointer;
    transition: all 300ms;
    position: relative;
    width: auto;
    display: inline;
    word-break: keep-all;
    color: var(--theme_color);
}

.navi_container a {
    text-decoration: none;
    color: inherit;
    word-break: keep-all;
    white-space: nowrap;
    font-size: 16px;
}

.navi_container > .navbar-item:hover ul {
    transform: translateX(-50%) skewY(0deg);
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}

.navi_container > .navbar-item > ul {
    transition: all 300ms;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 200%;
    margin-left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--index_border_radius);
    color: whitesmoke;
    padding: 10px 20px;
    transform: translateX(-50%) skewY(20deg);
}

.navi_container > .navbar-item > ul::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.8);
}

.navi_container > .navbar-item > ul > li:hover {
    background-color: var(--theme_color);
}

.navi_container > .navbar-item > ul > li:hover > a {
    color: white;
}

.navi_container > .navbar-item > ul > li {
    padding: 6px 10px;
    border-radius: 5px;
    box-sizing: border-box;
    transition: all 150ms;
    color: var(--theme_color);
    margin: 7px 0;
    position: relative;
    z-index: 1;
}

.navi_container > .navbar-item > ul > li > a {
    font-size: 14px;
}

.navi_container .navbar-item {
    list-style-type: none;
}

@keyframes search_anim {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.search_anim {
    animation: search_anim 1600ms infinite;
}

.navi_search_container {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

}

.navi_search_form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 35px;
    border-radius: 17.5px;
    width: var(--search_container_width);
    border: 1px solid var(--search_bar_color);
    overflow: hidden;
}

.navi_search_input {
    border: none;
    background: transparent;
    color: var(--search_bar_color);
    width: calc(var(--search_container_width) * 0.75);
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.navi_search_input::placeholder {
    color: var(--search_bar_color);
}

.navi_search_input:focus {
    outline: none;
    border: none;
}

.navi_search_button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border: none;
    border-left: 1px solid var(--search_bar_color);
    width: calc(var(--search_container_width) * 0.25);
    height: 100%;
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 150ms;
}


.search_img_con {
    overflow: hidden;
    font-size: 0;
}

.navi_search_img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    filter: drop-shadow(var(--search_bar_color) 0 15px);
    transform: translateY(-15px);
}

.search_bar_hint {
    color: var(--search_bar_color);
    margin-left: 5px;
}

#top_menu_id {
    margin-right: 80px;
    display: none;
    width: 40px;
    height: 40px;
}

#index_anim_container {
    position: relative;
    font-size: 0;
}

#index_anim_canvas {
    width: 100%;
    height: 850px;
    position: relative;
    z-index: 1;
    background: linear-gradient(var(--index_anim_backcolor_linear_gradient_deg), var(--index_anim_backcolor_left), var(--index_anim_backcolor_right));
}


.top_menu_container {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 4;
    transform: scaleX(0);
    transform-origin: left center;
    padding: 40px 20px;
    overflow: auto;
    white-space: normal;
}

.top_menu_close_img {
    position: absolute;
    right: 20px;
    top: 20px;
}

.top_menu_container li {
    list-style-type: none;
    margin: 20px 0;
    width: auto;
    display: block;
}

.top_menu_container a {
    color: whitesmoke;
    text-decoration: none;
    white-space: normal;
    display: inline-block;
    word-break: break-all;
}

.top_menu_container > li > ul {
    margin-left: 30px;
    height: auto;
    width: auto;
}

.main_content {
    width: fit-content;
    width: -moz-fit-content;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: -500px auto 50px;
    position: relative;
    z-index: 3;
    box-sizing: content-box;
}

.left_side {
    font-size: 0;
    width: var(--slideshow_width);
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    gap: 40px;
}

.page_enter_effect_left {
    animation: page_enter_effect_left 1000ms ease;
}

@keyframes page_enter_effect_left {
    0% {
        left: -50px;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}

.right_side {
    margin-left: 30px;
    position: sticky;
    top: 0;
}

.page_enter_effect_right {
    animation: page_enter_effect_right 1000ms ease;
}

@keyframes page_enter_effect_right {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.no_article {
    width: var(--slideshow_width);
    height: 320px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: var(--index_border_radius);
}

.search_words {
    font-size: 13px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--theme_color);
}

.none_article_img {
    width: 32.5%;
    object-fit: contain;
}

.search_articlelist_lower_ad {
    width: var(--slideshow_width);
    height: 90px;
    box-shadow: var(--index_box_shadow);
    overflow: hidden;
    border-radius: var(--index_border_radius);
    font-size: 12px;
}

.slideshow_container {
    width: var(--slideshow_width);
    aspect-ratio: 21/9;
    border-radius: var(--index_border_radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--index_box_shadow);
}

.slideshow_ul {
    width: auto;
    height: auto;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.slideshow-item {
    font-size: 0;
    position: relative;
}

.slideshow_img {
    width: var(--slideshow_width);
    aspect-ratio: 21/9;
}

.slideshow_dot {
    position: absolute;
    bottom: 10px;
    right: 20px;
    height: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.slideshow_dot_item {
    width: 7px;
    height: 7px;
    border-radius: 7px;
    margin: 0 10px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 300ms;
    cursor: pointer;
}

.slideshow-item-title {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: left;
    padding-left: 30px;
    font-size: 14px;
    line-height: 40px;
    color: whitesmoke;
    box-sizing: border-box;
}

.slideshow_arrow_container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    transition: all 300ms;
    cursor: pointer;
    opacity: 0;
}

.slideshow_arrow_container:hover {
    filter: brightness(1.5);
}

.index_post {
    width: var(--slideshow_width);
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    gap: 20px;
}

.index_articlelist_ad {
    width: 100%;
    height: 90px;
    border-radius: var(--index_border_radius);
    overflow: hidden;
    box-shadow: var(--index_box_shadow);
    margin: 0 0 20px;
    font-size: 12px;
    background-color: white;
}

.thumb {
    width: calc(100% / 3);
    height: var(--article_thumb_height);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: all 300ms;
    overflow: hidden;
    cursor: pointer;
}

.thumb_inner_a {
    flex: none;
    font-size: 0;
    position: relative;
    width: 100%;
    text-align: center;
}

.thumb_img {
    width: var(--article_thumb_width);
    height: var(--article_thumb_height);
    flex: none;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

}

@keyframes article_img_anim {
    0% {
        transform-origin: left top;
        transform: scale(0) translate(-50%, -50%);
        opacity: 1;
    }
    100% {
        transform-origin: left top;
        transform: scale(1) translate(-50%, -50%);
        opacity: 0;
    }
}

/*.thumb::before {*/
/*    width: var(--article_thumb_circle_size);*/
/*    height: var(--article_thumb_circle_size);*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 25%;*/
/*    top: 50%;*/
/*    opacity: 1;*/
/*    background-color: white;*/
/*    border-radius: 50%;*/
/*    transform: scale(0) translate(-50%, -50%);*/
/*    z-index: 9;*/

/*}*/

.thumb::after {
    width: var(--article_thumb_circle_size);
    height: var(--article_thumb_circle_size);
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    background-color: white;
    border-radius: 50%;
    transform: scale(0) translate(-50%, -50%);
    z-index: 9;
}

/*.thumb:hover::before {*/
/*    animation-name: article_img_anim;*/
/*    animation-iteration-count: 1;*/
/*    animation-fill-mode: backwards;*/
/*    animation-timing-function: ease;*/
/*    animation-duration: 300ms;*/
/*}*/

.thumb:hover::after {
    animation-name: article_img_anim;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
    animation-timing-function: ease;
    animation-duration: 250ms;
}

.thumb:hover {
    filter: brightness(115%);
}

.none_thumb {
    width: calc(var(--article_thumb_width) / 100 * 60);
    object-fit: contain;
    flex: none;
}

.thumb_top {
    position: absolute;
    width: 70px;
    height: 25px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20px;
    left: 20px;
    overflow: hidden;
    background: var(--theme_color);
    z-index: 3;
}

.top_hint {
    color: whitesmoke;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.top_img {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    bottom: -21px;
    opacity: 1;
    animation-name: top_anim;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;

}

@keyframes top_anim {
    0% {
        bottom: -21px;
        transform: scaleY(1);
        opacity: 1;
    }
    25% {
        bottom: 5px;
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        bottom: 5px;
        transform: scaleY(0.7);
        transform-origin: top center;
        opacity: 1;
    }
    75% {
        bottom: 5px;
        transform: scaleY(1.3);
        transform-origin: top center;
        opacity: 1;
    }
    100% {
        bottom: 5px;
        transform: scaleY(1);
        transform-origin: top center;
        opacity: 0;
    }
}

.article_item {
    width: var(--slideshow_width);
    height: var(--article_thumb_height);
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--index_border_radius);
    overflow: hidden;
    box-shadow: var(--index_box_shadow);
}

.main_info {
    width: calc(var(--slideshow_width) - var(--article_thumb_width));
    height: 100%;
    box-sizing: border-box;
    flex: none;
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;

}

.main_info .title {
    width: 100%;
}

.main_info a {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: var(--theme_color);
}

.intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 限制行数 */
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3b3b3b;
    font-size: 15px;
    text-align: justify;
    white-space: normal;
}

.intro * {
    font-size: 15px !important;
    margin: 0 !important;
    white-space: normal !important;
    max-width: 100% !important;
}

.intro iframe {
    display: none !important;
}

.intro img {
    display: none !important;
}

.intro video {
    display: none !important;
}

.other_info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.other_info_inner_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    color: var(--theme_color);
    font-size: 12px;
    margin-right: 20px;
}

.other_info_img {
    font-size: 15px;
    color: darkgray;
    margin-right: 6px;
}

.waterfall_post_list {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    visibility: hidden;
}

.waterfall_post_sub_list_common {
    width: 49%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    gap: 20px;
}

.waterfall_post_sub_list_common:nth-child(2) {
    margin-left: 2%;
}

.article_item_container_wf {
    width: 100%;
    height: fit-content;
    perspective: 1200px;
    perspective-origin: center center;
    background: linear-gradient(to right, #fafafa, #ffffff, #fafafa);
    box-shadow: var(--index_box_shadow);
    border-radius: var(--index_border_radius);
}

.article_item_wf {
    width: 100%;
    box-sizing: border-box;
    transition: all 500ms ease;
    overflow: hidden;
    border-radius: var(--index_border_radius);
}

.article_item_wf:hover {
    transform: translate3d(0px, -2px, 30px);
    box-shadow: none;
    background: white;
}

.thumb_container_wf {
    width: 100%;
    object-fit: contain;
    position: relative;
}


.thumb_a_wf {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article_thumb_mask_wf {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.article_thumb_img_wf {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    position: relative;
}

.thumb_a_none_img_wf {
    background: rgba(0, 0, 0, 0.5);
}

.none_thumb_img_wf {
    height: 75%;
    object-fit: contain;
    z-index: 1;
}

.article_item_title_wf {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    top: 25px;
    left: 50%;
    width: 92%;
    transform: translateX(-50%);
    font-size: 14px;
    line-height: 1em;
    padding: 8px 20px;
    box-sizing: border-box;
    z-index: 3;
    text-align: center;
    min-height: 30px;
    border-radius: 15px;
}

.thumb_tags_wf {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    z-index: 3;
    width: 92%;
}

.thumb_tag_item_wf {
    height: 20px;
    line-height: 20px;
    background-color: white;
    color: var(--theme_color);
    border-radius: 10px;
    font-size: 11px;
    padding: 0 10px;
    box-sizing: border-box;
    width: 32%;
    text-overflow: ellipsis;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.thumb_top_wf {
    position: absolute;
    width: 70px;
    height: 25px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 5px;
    left: 5px;
    overflow: hidden;
    background: var(--theme_color);
    z-index: 3;
}

.main_info_wf {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.other_info_wf {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.other_info_inner_container_wf {
    color: var(--theme_color);
    font-size: 13px;
}

.other_info_img_wf {
    color: darkgray;
    font-size: 14px;
    margin-right: 5px;
}

.intro_wf {
    width: 100%;
    font-size: 12px;
    color: var(--theme_color);
    margin-top: 10px;
    text-align: justify;
}

.intro_wf img,
.intro_wf iframe,
.intro_wf video {
    display: none !important;
}

.intro_wf * {
    font-size: 12px !important;
    margin: 0 !important;
    white-space: normal !important;
    text-align: justify !important;
}

.pagebar {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pagebar .now-page {
    color: var(--theme_color);
    font-weight: bold;
    font-size: 14px;
    margin: 5px;
    border: 1px solid var(--theme_color);
    height: 23px;
    border-radius: 30px;
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagebar .pagebar_item, .next-page > a {
    width: auto;
    height: 23px;
    border-radius: 30px;
    background-color: var(--theme_color_opacity8);
    color: whitesmoke;
    margin: 5px;
    padding: 5px 15px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 300ms;
}

.pagebar .pagebar_item:hover, .next-page > a:hover {
    filter: brightness(1.2);
}

.personal_info {
    width: var(--right_width);
    height: auto;
    border-radius: var(--index_border_radius);
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: var(--right_marginbottom);
    box-shadow: var(--index_box_shadow);
}

.personal_bkg {
    width: 100%;
    height: calc(var(--right_width) / 2);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.avatar_container {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: -60px;
}

.personal_avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.personal_name {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
    color: var(--theme_color);
    padding: 0 20px;
    position: relative;
    display: inline-block;
}

.personal_triangle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 23px;
    object-fit: contain;
    animation-name: triangle_anim;
    animation-duration: 500ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;

}

.personal_triangle_left {
    left: -40px;
}

.personal_triangle_right {
    right: -40px;
}

@keyframes triangle_anim {
    0% {
        transform: translateY(-50%) rotateX(0deg) scaleX(1);
    }
    50% {
        transform: translateY(-50%) rotateX(180deg) scaleX(2);
    }
    100% {
        transform: translateY(-50%) rotateX(360deg) scaleX(1);
    }
}

.personal_introduction {
    font-size: 16px;
    color: var(--theme_color);
    padding: 0 20px;
    white-space: pre-wrap;
    width: 85%;
    word-break: break-all;
    margin: 20px auto 0;
    box-sizing: border-box;
    text-align: center;
}

.personal_other_info_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin: 20px 0;
}

.personal_other_info {
    width: calc(var(--right_width) / 2);
    box-sizing: border-box;
    height: 50px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px 0;
}

.personal_other_info_title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5e5e5e;
}

.personal_other_info_content {
    font-size: 14px;
    text-align: center;
    color: var(--theme_color);
}

.right_common {
    width: var(--right_width);
    height: auto;
    border-radius: var(--index_border_radius);
    overflow: hidden;
    background-color: white;
}

.random_article_container {

}

.random_article_hint {
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    padding: 0 20px;
    color: whitesmoke;
    background: linear-gradient(to bottom, var(--theme_color), white);
}

.random_article_hint_img {
    font-size: 20px;
    color: whitesmoke;
    vertical-align: middle;
    margin-right: 5px;
}

.random_article_list {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.random_article_item_con {
    margin: 10px 0;
    width: fit-content;
    width: -moz-fit-content;
    max-width: 100%;
    position: relative;
}

.random_article_item {
    display: inline-block;
    text-decoration: none;
    max-width: 100%;
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--theme_color);
}

.random_article_line {
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    animation-name: random_article_line_anim;
    animation-duration: 1500ms;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes random_article_line_anim {
    0% {
        background-color: lightcoral;
        transform: scaleX(0);
        transform-origin: left center;
    }

    50% {
        background-color: var(--theme_color);
        transform: scaleX(1.3);
        transform-origin: left center;
    }
    100% {
        background-color: white;
        transform: scaleX(0);
        transform-origin: left center;
    }
}

.hot_article_container {

}

.hot_article_list {
    counter-reset: sort;
    padding: 10px 0;
}

.hot_article_item_con {
    counter-increment: sort;
}

.hot_article_item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    width: fit-content;
    width: -moz-fit-content;
    margin: 10px 0;
    padding: 0 20px;
    text-decoration: none;
    color: var(--theme_color);
}

.hot_article_hint {
    height: 50px;
    width: auto;
    overflow: hidden;
    color: var(--theme_color);
    line-height: 50px;
    padding: 0 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.hot_article_hint::after {
    content: '';
    position: absolute;
    width: 90%;
    bottom: 0;
    left: 0;
    height: 1px;
    margin: 0 20px;
    background: linear-gradient(to right, var(--theme_color), white);
}

.hot_article_hint_img {
    width: 20px;
    height: 20px;
    transform: translateY(-20px);
    filter: drop-shadow(#fc5858 0 20px);
    vertical-align: top;

}

.hot_article_hint_img_con {
    display: inline-block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    margin-right: 10px;
    animation-name: hot_article_img_anim;
    animation-duration: 1200ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.hot_article_hint_inner_text {
    font-size: 18px;
    font-weight: bold;
    animation-name: hot_article_img_anim;
    animation-duration: 1200ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes hot_article_img_anim {
    0% {
        transform: scale(1);

    }
    20% {
        transform: scale(1.15);

    }
    30% {
        transform: scale(1.15) rotateZ(12deg);

    }
    40% {
        transform: scale(1.15) rotateZ(-12deg);

    }
    50% {
        transform: scale(1.15) rotateZ(12deg);

    }
    60% {
        transform: scale(1.15) rotateZ(-12deg);

    }
    70% {
        transform: scale(1) rotateZ(0deg);
    }
    100% {
        transform: scale(1) rotateZ(0deg);
    }

}

.hot_article_item_number {
    position: relative;
    transform: skew(-12deg);
    width: 25px;
    height: 30px;
    flex: none;
    margin-right: 6px;
}

.hot_article_item_title {
    float: none;
    max-width: 85%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}

.hot_article_item_con .hot_article_item_number::before {
    content: counter(sort);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(12deg);
    color: white;
}

.hot_article_item_title_anim_circle {
    width: 15px;
    height: 15px;
    position: absolute;
    border-radius: 50%;
    animation-name: hot_article_title_circle_anim;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

@keyframes hot_article_title_circle_anim {
    0% {
        opacity: 1;
        background-color: #3f3f3f;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        background-color: #3f3f3f;
        transform: scale(1);
    }

}

.hotcomment_article_container {

}

.hotcomment_article_container a {
    text-decoration: none;
    color: var(--theme_color);
}


.hotcomment_article_hint {
    height: 50px;
    background: linear-gradient(to right, var(--theme_color), white);
    padding: 0 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.hotcomment_article_hint_inner_img {
    width: 20px;
    height: 20px;
    position: relative;
}

.hotcomment_article_hint_inner_img:nth-child(1) {
    animation-name: hotcomment_article_hint_arrow_anim;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 0ms;
}

.hotcomment_article_hint_inner_img:nth-child(2) {
    animation-name: hotcomment_article_hint_arrow_anim;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 500ms;
}

.hotcomment_article_hint_inner_img:nth-child(3) {
    animation-name: hotcomment_article_hint_arrow_anim;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 1000ms;
}

.hotcomment_article_hint_text {
    color: white;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-left: 8px;
    animation-name: hotcomment_article_hint_text_anim;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 1500ms;
}

@keyframes hotcomment_article_hint_text_anim {
    0% {
        transform: scale(1) rotateX(0deg);
    }
    10% {
        transform: scale(1.3) skew(15deg) rotateX(180deg);
    }
    20% {
        transform: scale(1) skew(0deg) rotateX(360deg);
    }
    100% {
        transform: scale(1) skew(0deg) rotateX(360deg);
    }

}

@keyframes hotcomment_article_hint_arrow_anim {
    0% {
        transform: scale(4);
        left: -100px;
        opacity: 1;
    }
    20% {
        transform: scale(1);
        left: 0;
        opacity: 1;
    }
    90% {
        transform: scale(1);
        left: 0;
        opacity: 0;
    }
    100% {
        transform: scale(4);
        left: -100px;
        opacity: 0;
    }
}

.hotcommnet_article_list {
    padding: 20px;
}

.hotcomment_article_item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

.hotcomment_article_item_title {
    max-width: 72%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: auto;
}

.hotcomment_article_item_comment {
    font-size: 12px;
    color: darkgray;
    flex: none;
}

.hotcomment_article_item_comment_number {
    font-size: inherit;
    color: inherit;
}

.hotcomment_article_item_comment_text {
    font-size: inherit;
    color: inherit;
}

.newest_article_container {

}

.newest_article_container a {
    text-decoration: none;
    color: var(--theme_color);
}

.newest_article_hint {
    position: relative;
    background-color: var(--theme_color);
    height: 50px;
}

.newest_article_hint_inner_anim_circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0;
    background-color: white;
    animation-name: newest_article_hint_circle_anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.newest_article_hint_text {
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    padding: 0 40px;
    color: white;
    width: fit-content;
    width: -moz-fit-content;
    animation-name: newest_article_hint_text_anim;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.newest_article_list {
    padding: 0 20px;
}

.newest_article_item {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.newest_article_item_title {
    max-width: 78%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newest_article_item_time {
    font-size: 12px;
    border: 1px solid darkgray;
    border-radius: 4px;
    padding: 2px 4px;
    color: darkgray;
}

@keyframes newest_article_hint_text_anim {
    0% {
        transform: rotateY(0deg) scaleX(1);
        transform-origin: center center;
        color: white;
    }

    20% {
        transform: rotateY(180deg) scaleX(1.4);
        transform-origin: center center;
        color: var(--theme_color);
    }

    40% {
        transform: rotateY(360deg) scaleX(1);
        transform-origin: center center;
        color: white;
    }

    100% {
        transform: rotateY(360deg) scaleX(1);
        transform-origin: center center;
        color: white;
    }
}

@keyframes newest_article_hint_circle_anim {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.recommend_article_container {

}

.recommend_article_title {
    position: relative;
    height: 50px;
    padding: 0 40px;
    overflow: hidden;
    animation-name: recommend_hint_bkg_anim;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.recommend_article_title_img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation-name: recommend_hint_img_anim;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.recommend_article_title_text {
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    padding: 0 20px;
    color: var(--theme_color);
    animation-name: recommend_hint_text_anim;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    width: fit-content;
}

@keyframes recommend_hint_bkg_anim {
    0% {
        background-color: white;
    }
    20% {
        background-color: var(--theme_color);
    }

    80% {
        background-color: var(--theme_color);
    }

    100% {
        background-color: white;
    }
}

@keyframes recommend_hint_text_anim {

    /*0%-20%色彩渐变*/
    0% {
        transform: rotateZ(0deg);
        color: var(--theme_color);
    }


    /*20%-40%画面停顿,等待左边推荐图片由左向右就位*/
    20% {
        transform: rotateZ(0deg);
        color: white;
    }


    /*40%-60%向右扩大动画并缩回原大小*/
    40% {
        transform: rotateZ(0deg);
        color: white;
    }


    50% {
        transform: rotateZ(0deg) translateX(15px) scale(1.2);
        color: white;
    }

    /*60%-80%画面停顿*/
    60% {
        transform: rotateZ(0deg) translateX(0) scale(1);
        color: white;
    }
    80% {
        transform: rotateZ(0deg) translateX(0) scale(1);
        color: white;
    }

    /*80%-100%回到初始值*/
    100% {
        transform: rotateZ(0deg) translateX(0) scale(1);
        color: var(--theme_color);
    }
}

@keyframes recommend_hint_img_anim {
    0% {
        transform-origin: left center;
        transform: scaleX(1) translateY(-50%);
        opacity: 0;
        left: -30px;
    }

    20% {
        transform-origin: left center;
        transform: scaleX(1) translateY(-50%);
        opacity: 0;
        left: -30px;
    }

    40% {
        transform-origin: left center;
        transform: scaleX(1) translateY(-50%);
        opacity: 1;
        left: 20px;
    }

    50% {
        transform-origin: left center;
        transform: scaleX(1.5) translateY(-50%);
        opacity: 1;
        left: 20px;
    }

    60% {
        transform-origin: left center;
        transform: scaleX(1) translateY(-50%);
        opacity: 1;
        left: 20px;
    }

    80% {
        transform-origin: left center;
        transform: scaleX(1) translateY(-50%);
        opacity: 1;
        left: 20px;
    }

    99% {
        opacity: 0;
        left: 20px;
    }

    100% {
        opacity: 0;
        left: -30px;
    }
}

.recommend_article_container a {
    text-decoration: none;
    color: var(--theme_color);
}

.recommend_article_item {
    width: 100%;
    margin: 15px 0;
    padding: 0 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.recommend_article_item_img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.recommend_article_item_title {
    width: fit-content;
    width: -moz-fit-content;
    max-width: 83%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#scroll_text_id {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: whitesmoke;
    z-index: 2;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    transition: all 200ms ease;
    width: 100%;
    text-align: center;
}

.scroll_text_content {
    font-size: 25px;
    padding: 0 10px;
}

.scroll_text_cursor {
    width: 2px;
    height: 25px;
    background-color: whitesmoke;
    display: none;
    animation-name: scroll_text_cursor_anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;

}

@keyframes scroll_text_cursor_anim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.newest_comments_container {

}

.newest_comments_container a {
    text-decoration: none;
    color: var(--theme_color);
}

.newest_comment_img_container {
    position: absolute;
    top: -105px;
    left: 20px;
    width: 260px;
    height: 260px;
    background: transparent;
    transform-origin: center center;
    animation: newest_comments_title_img_container_anim 3000ms ease infinite;
}

.newest_comment_img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 15px;
    left: 116.5px;
    transform-origin: center center;
    animation: newest_comments_title_img_anim 3000ms ease infinite;
}

@keyframes newest_comments_title_img_container_anim {
    0% {
        transform: rotate(0deg);
        transform-origin: center center;
    }

    75% {
        transform: rotate(270deg);
        transform-origin: center center;
    }

    85% {
        transform: rotate(270deg);
        transform-origin: center center;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: center center;
    }
}

@keyframes newest_comments_title_img_anim {
    0% {
        transform: rotate(0deg) translateX(-50%);
        transform-origin: center center;
    }
    75% {
        transform: rotate(-270deg) translateX(-50%);
        transform-origin: center center;
    }

    85% {
        transform: rotate(-270deg) translateX(-50%);
        transform-origin: center center;
    }

    100% {
        transform: rotate(-360deg) translateX(-50%);
        transform-origin: center center;
    }

}

.newest_comments_title {
    padding: 0 40px;
    height: 50px;
    line-height: 50px;
    background-color: var(--theme_color);
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newest_comments_title_inner_letter {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -50px;
    line-height: 50px;
    transform-origin: center center;
    background: transparent;
}

.newest_comments_title_letter1 {
    left: -80px;
    animation: newest_comments_title_circle_anim1 var(--newest_comments_duration) ease infinite;
}

.newest_comments_title_letter2 {
    left: -60px;
    animation: newest_comments_title_circle_anim2 var(--newest_comments_duration) ease 500ms infinite;
}

.newest_comments_title_letter3 {
    left: -40px;
    animation: newest_comments_title_circle_anim3 var(--newest_comments_duration) ease 1000ms infinite;
}

.newest_comments_title_letter4 {
    left: -20px;
    animation: newest_comments_title_circle_anim4 var(--newest_comments_duration) ease 1500ms infinite;
}


.newest_comments_title_letter1::before {
    content: "最";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    top: 60px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    animation: newest_comments_title_letter_anim1 var(--newest_comments_duration) ease infinite;
}

.newest_comments_title_letter2::before {
    content: "新";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    top: 60px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    animation: newest_comments_title_letter_anim2 var(--newest_comments_duration) ease 500ms infinite;
}

.newest_comments_title_letter3::before {
    content: "留";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    top: 60px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    animation: newest_comments_title_letter_anim3 var(--newest_comments_duration) ease 1000ms infinite;
}

.newest_comments_title_letter4::before {
    content: "言";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    top: 60px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    animation: newest_comments_title_letter_anim4 var(--newest_comments_duration) ease 1500ms infinite;
}


@keyframes newest_comments_title_circle_anim1 {
    0% {
        transform: rotate(0deg);
        transform-origin: center center;
    }

    25% {
        transform: rotate(180deg);
        transform-origin: center center;
    }
    75% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    85% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: center center;
    }
}

@keyframes newest_comments_title_letter_anim1 {
    0% {
        opacity: 0;
        transform: rotate(0);
        transform-origin: center center;
    }

    18.75% {
        opacity: 1;
        transform: rotate(-180deg);
        transform-origin: center center;
    }
    37.5% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(0.7);
        transform-origin: center bottom;
    }
    56.25% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1.3);
        transform-origin: center bottom;
    }

    75% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    85% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    100% {
        opacity: 0;
        transform: rotate(-360deg) scaleY(1);
        transform-origin: center center;
    }
}


@keyframes newest_comments_title_circle_anim2 {
    0% {
        transform: rotate(0deg);
        transform-origin: center center;
    }

    29.15% {
        transform: rotate(180deg);
        transform-origin: center center;
    }
    58.3% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    68.3% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: center center;
    }
}

@keyframes newest_comments_title_letter_anim2 {
    0% {
        opacity: 0;
        transform: rotate(0);
        transform-origin: center center;
    }

    14.575% {
        opacity: 1;
        transform: rotate(-180deg);
        transform-origin: center center;
    }
    29.15% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(0.7);
        transform-origin: center bottom;
    }
    43.725% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1.3);
        transform-origin: center bottom;
    }

    58.3% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    68.3% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    100% {
        opacity: 0;
        transform: rotate(-360deg) scaleY(1);
        transform-origin: center center;
    }
}

@keyframes newest_comments_title_circle_anim3 {
    0% {
        transform: rotate(0deg);
        transform-origin: center center;
    }

    20.85% {
        transform: rotate(180deg);
        transform-origin: center center;
    }
    41.7% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    51.7% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: center center;
    }
}

@keyframes newest_comments_title_letter_anim3 {
    0% {
        opacity: 0;
        transform: rotate(0);
        transform-origin: center center;
    }

    10.425% {
        opacity: 1;
        transform: rotate(-180deg);
        transform-origin: center center;
    }
    20.85% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(0.7);
        transform-origin: center bottom;
    }
    31.275% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1.3);
        transform-origin: center bottom;
    }

    41.7% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    51.7% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    100% {
        opacity: 0;
        transform: rotate(-360deg) scaleY(1);
        transform-origin: center center;
    }
}

@keyframes newest_comments_title_circle_anim4 {
    0% {
        transform: rotate(0deg);
        transform-origin: center center;
    }

    12.5% {
        transform: rotate(180deg);
        transform-origin: center center;
    }
    25% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    35% {
        transform: rotate(180deg);
        transform-origin: center center;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: center center;
    }
}

@keyframes newest_comments_title_letter_anim4 {
    0% {
        opacity: 0;
        transform: rotate(0);
        transform-origin: center center;
    }

    6.25% {
        opacity: 1;
        transform: rotate(-180deg);
        transform-origin: center center;
    }
    12.5% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(0.7);
        transform-origin: center bottom;
    }
    18.75% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1.3);
        transform-origin: center bottom;
    }

    25% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    35% {
        opacity: 1;
        transform: rotate(-180deg) scaleY(1);
        transform-origin: center bottom;
    }

    100% {
        opacity: 0;
        transform: rotate(-360deg) scaleY(1);
        transform-origin: center center;
    }
}

.newest_comments_content {
    padding: 20px;
}

.newest_comment_item {
    margin: 15px 0;
}

.newest_comment_item_name {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
    color: darkgray;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.newest_comment_item_content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;

}

.newest_comment_item_content_text {
    max-width: 80%;
    width: fit-content;
    width: -moz-fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newest_comment_item_content_time {
    font-size: 12px;
    color: darkgray;
    font-style: italic;
}


.tags_list {

}

.tags_list_title {
    height: 50px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 50px;
    padding: 0 40px;
    background: var(--theme_color);
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.tags_list_title_letter {
    animation-name: tags_list_hint_anim;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    margin-right: 5px;
}

.tags_list_title_letter1 {
    animation-delay: 0ms;
}

.tags_list_title_letter2 {
    animation-delay: 250ms;
}

.tags_list_title_letter3 {
    animation-delay: 500ms;
}

.tags_list_content {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}

.tags_list_tag {
    text-decoration: none;
    display: block;
    width: fit-content;
    width: -moz-fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 5px;
    color: white;
    font-size: 13px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: all 350ms;
}

.tags_list_tag:hover {
    background-color: #1f1f1f !important;
    color: white;
}


@keyframes tags_list_hint_anim {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}


.footer_container {
    width: 100%;
    height: fit-content;
    padding: 20px 0;
    position: relative;
    box-sizing: border-box;
    box-shadow: var(--index_box_shadow);
    z-index: 1;
}

.page_enter_effect_footer {
    animation: page_enter_effect_footer 1000ms ease;
}

@keyframes page_enter_effect_footer {
    0% {
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

.footer_container * {
    color: #707070;
}

.footer_bottom {
    background: var(--theme_color);
}

.footer_mask {
    background: rgba(0, 0, 0, 0.5);
}

.footer_content {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: var(--index_border_radius);
    padding: 20px 200px;
}

.footer_common {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.friendlylink_container {
    margin-top: 20px;
}

.friendlylink_container a {
    text-decoration: none;
    color: var(--theme_color);
}

.friendlylink_title {
}

.friendlylink_content {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.friendlylink_content li i {
    margin-right: 5px;
    color: var(--theme_color);
}

.friendlylink_content > li {
    margin: 10px 20px 0 0;
    list-style-type: none;
}

.friendlylink_content > li > ul {
    margin-left: 20px;
    list-style: url("/zb_users/theme/zbuser_superblog/res/image/sub_item.png");
}

.footer_mod_link {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: fit-content;
    width: -moz-fit-content;
    margin: 20px auto;
}

.footer_mod_link > a {
    text-decoration: none;
    margin: 0 20px;
    color: var(--theme_color);
}

.footer_inter_hr {
    width: 100%;
    height: 1px;
    background-color: #707070;
}

.footer_main_content {
    min-height: 80px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.footer_contact {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 30%;
    flex: none;
}

.footer_contact * {
    font-size: 12px;
}

.contact_title {
    max-width: 70%;
    margin-bottom: 10px;
}

.footer_contact_item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
    white-space: pre;
}

.footer_contact_item a {
    text-decoration: none;
}

.footer_contact_img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.site_state {
    width: 40%;
    text-align: center;
    word-break: break-all;
    flex: none;
}

.footer_qrcode {
    width: 30%;
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}

.footer_qrcode_item {
    position: relative;
    margin-left: 15px;
    font-size: 0;
}

.footer_qrcode_hint_img {
    width: 35px;
    height: 35px;
}


.footer_inner_qrcode {
    position: absolute;
    left: 50%;
    top: -160px;
    transform: translateX(-50%) translateY(0px);
    opacity: 0;
    transition: all 300ms;
    justify-content: center;
    align-items: center;
    display: none;
}


.footer_inner_qrcode_img {
    width: 120px;
    height: 120px;
    background-color: white;
}

.footer_inner_qrcode::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

/*.footer_qrcode_hint_img:hover + .footer_inner_qrcode {*/
/*    opacity: 1;*/
/*    transform: translateX(-50%) translateY(20px);*/
/*}*/


.recommend_cate_container {
    width: var(--slideshow_width);
    box-sizing: border-box;
}

.recommend_cate_item_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    box-sizing: border-box;
}

.recommend_cate_item_container li,
.recommend_cate_item_container a {
    list-style-type: none;
    text-decoration: none;
}

.recommend_cate_item {
    width: 100%;
    height: auto;
    border-radius: var(--index_border_radius);
    background-color: white;
    overflow: hidden;
    padding: 0 0 10px 0;
    box-shadow: var(--index_box_shadow);
}

.recommend_cate_item_inner_catename {
    background: var(--theme_color);
    color: white;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    height: 50px;
    position: relative;
}

.recommend_cate_item_inner_catename_mask {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.recommend_cate_item_inner_catename_text {
    color: white;
    font-size: 16px;
    position: relative;
    z-index: 2;
    font-weight: bold;
}

.recommend_cate_item_inner_catename_img_con {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.recommend_cate_item_inner_catename_img {
    width: 10px;
    height: 10px;
}

.recommend_cate_item_inner_catename_img:nth-of-type(1) {
    animation: recommend_cate_arrow_anim 1s infinite;
}

.recommend_cate_item_inner_catename_img:nth-of-type(2) {
    animation: recommend_cate_arrow_anim 1s infinite;
    animation-delay: 250ms;
}

.recommend_cate_item_inner_catename_img:nth-of-type(3) {
    animation: recommend_cate_arrow_anim 1s infinite;
    animation-delay: 500ms;
}

@keyframes recommend_cate_arrow_anim {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.recommend_cate_item_article {
    font-size: 15px;
    color: var(--theme_color);
    width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    transform: translateX(0);
    transition: all 500ms ease;
}

.recommend_cate_item_inner_thumb {
    width: 100%;
}

.recommend_cate_item_inner_thumb_top_title {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px 10px 30px;
    box-sizing: border-box;
    color: var(--theme_color);
}

.recommend_cate_item_thumb_container {
    width: 100%;
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 0 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.recommend_cate_item_thumb {
    background-size: cover;
    background-position: center center;
    width: 200px;
    height: 112.5px;
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.recommend_cate_item_thumb:hover::after {
    animation: recommend_cate_item_thumb_anim 500ms ease 1 backwards;
}

@keyframes recommend_cate_item_thumb_anim {
    100% {
        transform: translateX(150%) skew(-30deg);
    }
}

.recommend_cate_item_thumb::after {
    content: "";
    width: 80%;
    height: 110%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    position: absolute;
    transform: translateX(-110%) skew(-30deg);
    top: 0;
    left: 0;
    transition: all 250ms ease;
}

.recommend_cate_item_thumb_default {
    width: 150px;
    object-fit: contain;
    border-radius: 10px;
}

.recommend_cate_item_thumb_title {
    height: 112.5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
    width: 100%; /* 确保容器有明确宽度 */
    padding: 0 0 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    word-break: break-all;
    line-height: 1.6;
    color: #868686;
    text-align: justify;
}

.recommend_cate_item_thumb_title * {
    font-size: 14px !important;
    word-break: break-all !important;
    line-height: 1.6 !important;
    color: #868686 !important;
    text-align: justify !important;
}

.recommend_cate_item_thumb_title img,
.recommend_cate_item_thumb_title video,
.recommend_cate_item_thumb_title iframe {
    display: none !important;
}

.recommend_cate_item_concre_article_list {
    padding: 6.5px 30px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: content-box;
}

.recommend_cate_item_article_title {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.book_img {
    width: 15px;
    height: 15px;
    transform: translateY(-18px);
    filter: drop-shadow(var(--theme_color) 0 20px);
    margin-right: 5px;
}

.recommend_cate_item_article_date {
    font-size: 14px;
    color: #868686;
}

.recommend_cate_item_concre_article_list:hover .recommend_cate_item_concre_article_list_bottom_line {
    opacity: 1;
}

.recommend_cate_item_concre_article_list:hover .recommend_cate_item_article {
    transform: translateX(10px);
}

.recommend_cate_item_concre_article_list_bottom_line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    opacity: 0;
    margin-left: 30px;
    transition: all 500ms ease;
}

.index_recommendcate_lower_ad {
    width: 100%;
    height: 90px;
    font-size: 12px;
    border-radius: var(--index_border_radius);
    overflow: hidden;
    box-shadow: var(--index_box_shadow);
    margin-top: 40px;
    background-color: white;
}

.single_left_side {
    border-radius: var(--index_border_radius);
    background-color: white;
    box-shadow: var(--index_box_shadow);
    transition: all 250ms ease;
    padding: 30px;
}

.page_enter_effect_top {
    animation: page_enter_effect_top 1000ms ease;
}

@keyframes page_enter_effect_top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.article_container {
    width: 880px;
}

.article_content {
    width: 100%;
    white-space: pre-wrap;
    transition: all 250ms ease;
    margin-bottom: var(--article_mod_margin);
    position: relative;
    touch-action: manipulation;
}

.article_content * {
    word-break: break-all !important;
    text-wrap: wrap !important;
    max-width: 100% !important;
}

.article_content ul,
.article_content ol {
    list-style-position: inside !important;
}

.article_top_info {
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb * {
    color: var(--theme_color);
}

.article_title {
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #777777;
}

.author_info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.article_other_func {
    margin: 20px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.font_changer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.font_changer_inner_A {
    font-family: "Adobe Arabic", 'Arial', serif;
    margin: 0 8px;
    font-size: 25px;
    color: var(--theme_color);
}

.font_changer_inner_compute {
    border: 1px solid darkgray;
    color: darkgray;
    padding: 10px;
    border-radius: 2px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

#eyeshield_id {
    width: fit-content;
    width: -moz-fit-content;
    padding: 5px 10px;
    color: rgb(205, 224, 202);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(205, 224, 202);
    border-radius: 30px;
    transition: all 250ms ease;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
}

.author_avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.author_inner_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    padding-right: 30px;
}

.author_inner_container * {
    margin-right: 10px;
}

.author_level {
    display: inline-block;
    background: linear-gradient(to right, #e872da, #ec513d);
    padding: 1px 5px !important;
    color: white !important;
    border-radius: 5px;
    font-size: 12px;
}

.author_staticname {
    color: #777777;
}

.author_common {
    color: #777777;
    border-right: 1px solid #dddddd;
    padding: 0 30px;
    font-size: 12px;
}

.author_common:first-of-type {
    border-left: 1px solid #dddddd;
}

.author_common:last-of-type {
    border-right: none;
}

.article_tags {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;

}

.tag_item {
    color: var(--theme_color);
    border: 1px solid var(--theme_color);
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 12px;
    transition: all 250ms ease;
    margin-bottom: 10px;
}

.tag_item:hover {
    background-color: var(--theme_color);
    color: white;

}

.article_tags_container {
    margin-bottom: var(--article_mod_margin);
}

.article_copyrights_container {
    margin-bottom: var(--article_mod_margin);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background-color: var(--theme_color);
    overflow: hidden;
    border-radius: var(--index_border_radius);
    position: relative;
    padding: 20px;
}

.article_copyrights_container:before {
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}


.article_ad {
    margin-bottom: var(--article_mod_margin);
    width: 100%;
    height: 120px;
    font-size: 12px;
    border-radius: var(--index_border_radius);
    box-shadow: var(--index_box_shadow);
    overflow: hidden;
}

.notice_img_con {
    overflow: hidden;
    font-size: 0;
    flex: none;
}

.notice_img {
    width: 35px;
    height: 35px;
    flex: none;
    margin-right: 20px;
    filter: drop-shadow(var(--theme_color) 0 35px);
    transform: translateY(-35px);
}

.aritcle_copyrights_content {
    white-space: pre-wrap;
    font-size: 14px;
    color: #777777;
    line-height: 1.6;
    word-break: break-all;
    position: relative;
    z-index: 1;
    flex: auto;
}

.near_article_container {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--article_mod_margin);
}

.near_article_item {
    display: flex;
    width: 48%;
    height: 120px;
    background-size: cover;
    background-position: center center;
    flex: none;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 250ms ease;
}

.near_article_item:hover {
    transform: scale(1.025);
    filter: brightness(1.2);
}

.near_article_item:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.near_article_inner_info_common {
    position: absolute;
    color: white;
    font-size: 14px;
}

.near_article_none_img {
    object-fit: contain;
    height: 90%;
}

.near_article_title {
    width: 68%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    bottom: 10px;
    left: 20px;
}

.near_article_date {
    bottom: 10px;
    right: 20px;
}

.near_article_hint {
    top: 10px;
}


.cate_article_container {
    margin-bottom: var(--article_mod_margin);
    width: 100%;
}

.cate_article_hint_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.cate_article_img_con {
    font-size: 0;
    overflow: hidden;
}

.cate_article_img {
    width: 30px;
    height: 30px;
    transform: translateY(-30px);
    filter: drop-shadow(var(--theme_color) 0 30px);
    margin-right: 5px;
}

.cate_article_hint {
    font-size: 18px;
    font-weight: bold;
    color: var(--theme_color);
}

.cate_article_list {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 12px;
}

.cate_article_item {
    width: 23%;
    box-sizing: border-box;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    overflow: hidden;
    margin-right: calc(8% / 3);
}

.cate_article_item:last-of-type {
    margin-right: 0;
}

.cate_article_item:hover .cate_article_item_inner_thumb {
    transform: scale(1.1) rotate(-5deg);
}

.cate_article_item:hover .cate_article_item_inner_title {
    height: 35px;
    line-height: 35px;
    font-size: 15px;
}

.cate_article_item_a {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cate_article_item_inner_thumb {
    transition: all 250ms ease;
}

.cate_article_item_inner_title {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 25px;
    line-height: 25px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    padding: 0 10px;
    transition: all 250ms ease;
}

.cate_article_other {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /*border-left: 1px solid var(--theme_color);*/
    /*border-bottom: 1px solid var(--theme_color);*/
    /*border-right: 1px solid var(--theme_color);*/
    /*border-bottom-left-radius: 5px;*/
    /*border-bottom-right-radius: 5px;*/
}

.cate_article_other_common {
    color: var(--theme_color);
    font-size: 12px;
}

.comment_container {
    width: 100%;
}

.comment_container .comment_zone_hint_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.comment_container .comment_zone_img_con {
    overflow: hidden;
    font-size: 0;
}

.comment_container .comment_zone_img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(var(--theme_color) 0 20px);
    transform: translateY(-20px);
    margin-right: 8px;
}

.comment_container .comment_hint_count {
    color: orangered;
}

.comment_container .comment_hint_text {

}

.comment_container .comment_hint_text_template {
    font-weight: bold;
    font-size: 18px;
    color: var(--theme_color);
}

.comment_container .comment_hint_text_dynamic {
    font-size: 12px;
    color: var(--theme_color);
}

.comment_container .comments_arrow {
    width: 15px;
    height: 15px;
    animation: comment_arrow_anim 1s infinite;
    margin: 0 10px;
}

@keyframes comment_arrow_anim {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

.comment_container ul {
    list-style-type: none;
}

.comment_container .msgarticle {
    margin-left: 5px;
    margin-top: 30px;
    color: #3f3f3f;
    word-break: break-all;
}

.comment_container .comment_item_main {

}

.comment_container .avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.comment_container .msgname {
    width: fit-content;
    width: -moz-fit-content;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid var(--theme_color);
    padding: 15px;
    box-sizing: content-box;
    border-radius: 10px;
}

.msg > .msgarticle:last-child {
    margin-bottom: 30px;
}

.comment_container > .msg {
    border-bottom: 1px solid #dddddd;
    margin: 30px 0;
}


.msgarticle > .msg {
    margin-top: 30px;
    margin-left: 35px;
}

/*第四层评论*/
.comment_container > .msg > .msgarticle > .msg > .msgarticle > .msg > .msgarticle > .msg > .msgarticle {

}


.comment_container .comment_base_info_container {
    min-height: 40px;
    height: auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.comment_container .commentname {
    font-size: 14px;

    height: 50%;
}

.comment_container .commentname a {
    color: var(--theme_color);
    text-decoration: none;
    font-weight: bold;
    max-width: 137px;
    display: block;
    white-space: normal;
}

.comment_author_levelname {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 9.5px;
    color: whitesmoke;
    margin-right: 10px;

}

.comment_container .comment_author_visitor {
    background: linear-gradient(to right, #5533dd, #2ca5df);
}


.comment_container .comment_author_admin {
    background: linear-gradient(to right, #ef8e2b, #ef1a75);
}

.comment_container .comment_time_reply {
    font-size: 12px;
    color: var(--theme_color);
    height: 50%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.comment_container .comment_reply_btn {
    color: #707070;
}

.comment_container .comment_base_floor_con {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.comment_container .comment_content {
    font-size: 15px;
    margin: 20px 0;
}

.comment_container .comment_floor {
    width: fit-content;
    width: -moz-fit-content;
    border-radius: 15px;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    border: 1px solid var(--theme_color);
    font-size: 12px;
    color: var(--theme_color);
}

.comment_publish_container {
    width: 100%;
    background-color: var(--theme_color);
    padding: 20px;
    border-radius: var(--index_border_radius);
    position: relative;
    margin-bottom: var(--article_mod_margin);
}

.comment_publish_container .comment_pub_con_mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.comment_publish_container .comment_pub_main {
    position: relative;
    z-index: 1;
}

.comment_publish_container .comment_pub_username a {
    color: var(--theme_color);
}

.comment_publish_container .comment_pub_username {
    margin: 0 0 20px;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.comment_publish_container .comment_pub_hint {
    color: var(--theme_color);
    font-weight: bold;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.comment_publish_container .comment_pub_from {
    font-weight: bold;
    margin-right: 8px;
    font-size: 18px;
    width: 100%;
}

.comment_publish_container .commnet_pub_comment_img_con {
    font-size: 0;
    overflow: hidden;
}

.comment_publish_container .commnet_pub_comment_img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(var(--theme_color) 0 20px);
    transform: translateY(-20px);
    margin-right: 5px;
}

.comment_publish_container .comment_pub_form {
    position: relative;
}

.comment_publish_container .comment_pub_field_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.comment_publish_container .comment_pub_field {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    color: var(--theme_color);
    outline: none;
    border: none;
}

.comment_publish_container .comment_textarea_con {
    position: relative;
    margin: 20px 0;
}

.comment_publish_container .fast_reply_and_emoji_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 20px;
}

.comment_publish_container .comment_pub_textarea {
    width: 100%;
    height: 135px;
    border-radius: 10px;
    padding: 10px;
    color: var(--theme_color);
    resize: none;
    outline: none;
    border: none;
    background-position: right 30px bottom 10px;
    background-size: auto;
    background-repeat: no-repeat;
    transition: all 800ms ease;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 15px;
}

.comment_publish_container .comment_pub_textarea:focus {
    background-position: right -140px bottom 10px;
    outline: none;
}

.comment_publish_container .comment_pub_textarea::placeholder {
    color: #9f9f9f;
    font-size: 15px;
}

.comment_publish_container .comment_pub_field:focus {
    outline: none;
}

.comment_publish_container .comment_field_common {
    width: 30%;
}

.comment_pub_field_con input::placeholder {
    color: #9f9f9f;
}

.comment_publish_container .comment_pub_btn {
    width: 80px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    background-color: var(--theme_color);
    color: white;
    border-radius: 15px;
    cursor: pointer;
    outline: none;
    border: none;
}

.comment_publish_container .comment_fast_reply_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.comment_publish_container .comment_fast_reply_hint {
    color: #8a8a8a;
    margin-right: 8px;
}

.comment_publish_container .comment_fast_reply_img {
    width: 15px;
    height: 15px;
    margin-right: 8px;
    cursor: pointer;
}

.comment_container .comment_say_con {
    overflow: hidden;
    display: inline-block;
    font-size: 0;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
    margin-right: 10px;
}

.comment_container .comment_say_img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(var(--theme_color) 0 20px);
    transform: translateY(-20px);
    vertical-align: middle;
}

.comment_container .sub_comment_at {
    color: coral;
    margin-right: 10px;
}

.comment_submit_verify_code_con {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row nowrap;
    width: 100%;
}

.comment_publish_container .comment_verify_code_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-right: 20px;
}

.comment_publish_container .comment_verify_code_input {
    width: 150px;
    height: 30px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border: none;
    padding: 0 10px;
    color: var(--theme_color);
}

.comment_publish_container .comment_verify_code_input:focus {
    outline: none;
    border: none;
}

.comment_publish_container .comment_verify_code_img {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.share_and_other_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: var(--article_mod_margin);
}

.full_screen_btn_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: auto;
    padding: 0 10px;
    border: 1px solid var(--theme_color);
    border-radius: 12.5px;
    cursor: pointer;
    margin-right: 20px;
}

.full_screen_img {
    width: 18px;
    height: 18px;
    cursor: pointer;
    filter: drop-shadow(var(--theme_color) 0 25px);
    transform: translateY(-25px);
    margin-right: 2.5px;
}

.full_screen_hint {
    color: var(--theme_color);
    font-size: 14px;

}

.full_screen_img_con {
    overflow: hidden;
    font-size: 0;
}


.poster_icon_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: auto;
    padding: 0 10px;
    border: 1px solid var(--theme_color);
    border-radius: 12.5px;
    cursor: pointer;
    margin-right: 20px;
}

.poster_icon_img {
    width: 16px;
    height: 16px;
    cursor: pointer;
    filter: drop-shadow(var(--theme_color) 0 16px);
    transform: translateY(-16px);
    margin-right: 2.5px;
}

.poster_icon_img_con {
    overflow: hidden;
    font-size: 0;
}

.poster_hint {
    color: var(--theme_color);
    font-size: 14px;
}

.poster_mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.poster_mask_loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.poster_mask_hint {
    margin-bottom: 20px;
    text-align: center;
    color: white;
    font-size: 16px;
}

.poster_mask_dot_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    width: 120px;
}

.poster_mask_loading_dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--theme_color);
    animation: mask_dot_anim 1s infinite ease;
}

.poster_mask_loading_dot:nth-child(2) {
    animation-delay: 0.25s;
}

.poster_mask_loading_dot:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes mask_dot_anim {
    0% {
        opacity: 1;
        background-color: var(--theme_color);
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        background-color: lightgrey;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        background-color: var(--theme_color);
        transform: scale(1);
    }
}

.poster_total_container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: -1;
}

.poster_main_container {
    background-color: white;
    width: 450px;
    overflow: hidden;
    z-index: -1;
}

.poster_main_img_con {
    font-size: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.poster_main_img {
    width: 100%;
    height: 253px;
    object-fit: cover;
    object-position: center;
}

.poster_time {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
}

.poster_time_date {
    color: white;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    font-weight: bold;
}

.poster_time_month_and_year {
    color: white;
    font-size: 15px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 70px;
}

.poster_main_info_container {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.poster_cate_container {
    padding-bottom: 10px;
    overflow: hidden;
}

.poster_cate {
    color: white;
    background-color: var(--theme_color);
    padding: 5px 10px;
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    font-size: 12px;
}

.poster_cate:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid var(--theme_color);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    left: -5px;
    bottom: -9px;
}

.poster_title {
    color: var(--theme_color);
    font-weight: bold;
    font-size: 21px;
    word-break: break-all;
    margin-top: 15px;
}

/*顶多显示三行,多余的用省略号*/
.poster_intro {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 45px;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 3;*/
    /*-webkit-box-orient: vertical;*/
    text-wrap: wrap;
    word-wrap: break-word;
    word-break: break-all;
    margin-top: 15px;
    line-height: 15px;
    color: var(--theme_color_opacity5);
    font-size: 14px;
}

.poster_intro * {
    color: var(--theme_color_opacity5) !important;
    font-size: 14px !important;
    white-space: normal !important;
    line-height: 15px !important;
}

.poster_intro img,
.poster_intro video,
.poster_intro iframe {
    display: none !important;
}

.logo_qrcode_container {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 15px;
}

.logo_and_text_container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px 0;
    height: 132px;
    box-sizing: border-box;
}

.logo_lower_text {
    color: var(--theme_color_opacity8);
    font-size: 12px;
    margin-top: 10px;
}

.poster_logo {
    height: 51px;
    object-fit: contain;
    font-size: 0;
    margin-bottom: 10px;
}

.hr_line {
    width: 30px;
    height: 3px;
    background-color: var(--theme_color);
    margin-top: 5px;
    border-radius: 1.5px;
}

.poster_bottom_text {
    color: var(--theme_color_opacity5);
    font-size: 12px;
    margin-top: 10px;
}

.poster_func_container {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 8px;
    margin-top: 20px;
}

.poster_func_hint {
    margin-bottom: 10px;
    color: var(--theme_color);
    text-align: center;
}

.poster_article_url_input {
    width: 150px;
    cursor: pointer;
    border: 1px solid darkgray;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    color: darkgray;
}

.poster_article_url_con {
    margin-bottom: 30px;
}

.poster_download_con {

}

.poster_download_btn {
    width: 150px;
    height: 30px;
    line-height: 30px;
    background-color: var(--theme_color);
    color: white;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
}

.close_poster {
    width: 30px;
    height: 30px;
    position: relative;
    margin-top: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    display: block;
}

.share_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 9;
}

.share_img_common {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.share_item_common {
    position: relative;
    margin-right: 10px;
    font-size: 0;
}

.qrcode_con_common {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    transition: all 200ms ease;
    background-color: white;
    width: 170px;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--theme_color);
    visibility: hidden;
}

.qrcode_hint {
    font-size: 14px;
    text-align: center;
}

.share_img_common:hover + .qrcode_con_common {
    visibility: visible;
    opacity: 1;
}

.share_option_img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}


.full_screen_article_container {
    display: none;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: whitesmoke;
    top: 0;
    left: 0;
}

.full_screen_content {
    position: relative;
    white-space: pre-wrap;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 60vw;
    height: 100vh;
    padding: 30px;
    margin: 0 auto;
    overscroll-behavior-y: contain;
    scroll-behavior: smooth;
    box-sizing: border-box;
    background-color: white;
    scrollbar-width: thin; /* 可选值：auto | thin | none */
    scrollbar-color: #888 #f1f1f1; /* 滑块颜色 轨道颜色 */
}

.full_screen_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    height: 50px;
    line-height: 50px;
    background-color: #f3f3f3;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

.full_screen_article_close_img {
    position: fixed;
    right: 50px;
    top: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.pnf_container {

}

.pnf_content {
    background-color: var(--theme_color);
    overflow: hidden;
    border-radius: var(--index_border_radius);
    width: 700px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 200px auto 0;
    position: relative;
    padding: 40px;
}

.pnf_content:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
}

.pnf_img {
    width: 480px;
    object-fit: contain;
}

.pnf_return_index {
    display: block;
    background-color: var(--theme_color);
    color: var(--theme_color);
    padding: 0 20px;
    width: fit-content;
    width: -moz-fit-content;
    border-radius: 17.5px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    margin-top: 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.pnf_hint {
    color: whitesmoke;
    text-align: center;
}


.pnf_return_index:before {
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.admire_container {
    width: 100%;
    text-align: center;
    margin-bottom: var(--article_mod_margin);
    position: relative;
}

.admire_hint_container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: lightsalmon;
    margin: 0 auto;
    cursor: pointer;
}

.admire_hint {
    color: whitesmoke;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 1px;
}

.adminre_img_con {
    font-size: 0;
    overflow: hidden;
    margin-top: 1px;
}

.admire_img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(whitesmoke 0 20px);
    transform: translateY(-20px);
}

.pay_qrcode_con {
    display: none;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--index_border_radius);
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--theme_color);
}

.admire_pay_hint {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--theme_color);
    font-weight: bold;
    width: 220px;
    word-break: break-all;
    flex: none;
}

.admire_qrcode_img {
    width: 220px;
    object-fit: contain;
    display: none;
}

.admire_qrcode_img:first-of-type {
    display: block;
}

.admire_type_container {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.admire_type_item {
    width: 50%;
    text-align: center;
    box-sizing: border-box;
    color: var(--theme_color);
}

input[name="pay_qrcode_type"] {
    accent-color: var(--theme_color);
}

.admire_close_img {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}


/*文章点赞*/
.like_article_container {
    margin-bottom: var(--article_mod_margin);
    display: flex;
    justify-content: center;
    align-items: center;
}

.like_article_wrapper {
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--theme_color);
    width: fit-content;
    width: -moz-fit-content;
    height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    position: relative;
}

.like_img_con {
    font-size: 0;
    overflow: hidden;
    margin-right: 5px;
}

.like_article_img {
    width: 25px;
    height: 25px;
    filter: drop-shadow(0 25px var(--theme_color));
    transform: translateY(-25px);
}

.like_article_count {
    color: var(--theme_color);
    font-size: 16px;
    margin-left: 5px;
}

.like_effect {
    color: orangered;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: like_effect_anim 1000ms forwards ease;
}

@keyframes like_effect_anim {
    0% {
        opacity: 1;
        top: 0;
    }
    50% {
        opacity: 1;
        top: -25px;
    }
    100% {
        opacity: 0;
        top: -25px;
        display: none;
    }
}

/*系统自带侧栏样式*/
.function {
    margin-bottom: var(--right_marginbottom);
    box-shadow: var(--index_box_shadow);
}

.function:last-of-type {
    margin-bottom: 0;
}

.function:not(:has(.right_common)) {
    padding: 20px;
    background-color: white;
    border-radius: var(--index_border_radius);
    width: var(--right_width);
    box-sizing: border-box;
}

.function:not(:has(.right_common)) a {
    color: var(--theme_color);
}

.function#divCalendar #tbCalendar {
    width: 100%;
}

.function#divCalendar #tbCalendar td {
    text-align: center;
}

.function:last-of-type {
    margin-bottom: 0;
}

.function:not(:has(.right_common)) li {
    margin-top: 10px;
    margin-left: 10px;
    display: inline-block;
}

.function ul {
    list-style-type: none;
}

.function:has(form) .function_t {
    display: inline-block;
}

.function:has(form) .function_c div {
    width: 100%;
    margin-top: 10px;
}

.function:has(form) form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.function:has(form) input[type="text"] {
    width: 75%;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    padding: 0 10px;
    border: 1px solid lightgrey;
    box-sizing: border-box;
    font-size: 12px;
}

.function:has(form) input[type="submit"] {
    height: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    border: none;
    background-color: darkgray;
    color: white;
    width: 20%;
}

.function_t_circle {
    display: inline-block;
    width: 8px;
    height: 20px;
    border-radius: 4px;
    transform: rotateZ(-20deg);
    margin-right: 6px;
}

.function_t_circle:first-of-type {
    background-color: #c67dfc;
}

.function_t_circle:nth-of-type(2) {
    background-color: #ff9481;
}

.function_t_circle:last-of-type {
    background-color: #5facc3;
}

.right_side > .function .cp-hello {
    margin-top: 10px;
    display: block;
}

.right_side > .function .cp-login a,
.right_side > .function .cp-vrs a {
    height: 30px;
    line-height: 30px;
    border: 1px solid var(--theme_color);
    border-radius: 15px;
    padding: 3px 13px;
    font-size: 12px;
}

.right_side > .function .cp-login,
.right_side > .function .cp-vrs {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

.right_side > .function .cp-hello + br {
    display: none;
}


.danmu_article_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 20px;
    background: white;
    box-shadow: var(--index_box_shadow);
    box-sizing: border-box;
    border-radius: var(--index_border_radius);
    position: relative;
}

.danmu_article {
    box-sizing: border-box;
}

.danmu_article_a {
    display: block;
    width: 100%;
    height: 170px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.danmu_article_a:before {
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

.danmu_article:last-of-type {
    margin-right: 0;
}

.danmu_article_title {
    width: 100%;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 0 10px;
    box-sizing: border-box;
}

.damu_article_avatar_date {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    height: 30px;
    box-sizing: border-box;
}

.danmu_article_avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.danmu_article_date {
    font-size: 12px;
    color: white;
}

.danmu_text {
    position: absolute;
    color: white;
    left: calc(100% + 20px);
    font-size: 12px;
    width: fit-content;
    width: -moz-fit-content;
    white-space: nowrap;
}

.danmu_border {
    width: calc(100% - 40px);
    height: 8px;
    border-radius: 4px;
    position: absolute;
    left: 20px;
    background-color: var(--theme_color_opacity8);
    animation: danmu_border_anim 1s linear infinite;
}

.danmu_top_border {
    top: 16px;
}

.danmu_bottom_border {
    bottom: 16px;
}

@keyframes danmu_border_anim {
    0% {
        background-color: var(--theme_color_opacity8);
        transform: skew(40deg) rotateX(0deg);
    }

    50% {
        background-color: var(--theme_color_opacity2);
        transform: skew(40deg) rotateX(180deg);
    }

    100% {
        background-color: var(--theme_color_opacity8);
        transform: skew(40deg) rotateX(360deg);
    }
}

.ads {
    font-size: 12px;
    border-radius: var(--index_border_radius);
    overflow: hidden;
    box-shadow: var(--index_box_shadow);
    background-color: white;
}

.special_recommend_article_container {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    width: 100%;
    background-color: white;
    border-radius: var(--index_border_radius);
    box-shadow: var(--index_box_shadow);
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
}

.special_recommend_article_item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.speacial_recommend_article_title {
    width: 100%;
    position: relative;
    padding: 0 10px;
    font-size: 15px;
    color: var(--theme_color);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-style: italic;
}

.speacial_recommend_article_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--theme_color);
    animation: special_recommend_article_title_anim 1s ease-in-out infinite alternate;
}

@keyframes special_recommend_article_title_anim {
    0% {
        background-color: var(--theme_color);
    }

    50% {
        background-color: var(--theme_color_opacity5);
    }

    100% {
        background-color: var(--theme_color_opacity2);
    }
}

.special_recommend_article_main_img_con {
    width: 100%;
    overflow: hidden;
    margin: 10px 0;
    border-radius: 8px;
}

.special_recommend_article_main_img {
    aspect-ratio: 4/1;
    object-position: center;
    transition: all 200ms ease;
}

.special_recommend_article_main_img:hover {
    transform: scale(1.05);
}

/*只显示两行,超出用省略号,第一行行首缩进2个字符*/
.special_recommend_article_intro {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    word-break: break-all;
    line-height: 1.5;
    font-size: 13px;
    font-style: italic;
    color: var(--theme_color);
}

.special_recommend_article_intro * {
    font-size: 13px !important;
    font-style: italic !important;
    color: var(--theme_color) !important;
    line-height: 1.5 !important;
}

.special_recommend_article_intro img,
.special_recommend_article_intro video,
.special_recommend_article_intro iframe {
    display: none !important;
}


/*悬浮按钮*/
.float_button_dom {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 99;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--theme_color_opacity5);
    border-radius: 5px;
    transition: all 500ms ease;
    background-color: white;
}

.float_btn_img_common {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 20px var(--theme_color));
    transform: translateY(-20px);
}

.float_btn_con_common {
    font-size: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 500ms ease;
}

.float_btn_anim_show {
    height: 20px;
    opacity: 1;
}

.float_btn_anim_hide {
    height: 0;
    opacity: 0;
}


.article_content ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.article_content ul {
    list-style-type: disc;
    list-style-position: inside;
}

.article_content ol li p {
    display: inline-block;
}

.article_content li p {
    display: inline;
}

.article_content ol li, .article_content ul li {
    margin: 7px 0;
}

.article_content blockquote {
    padding: 10px;
    border-left: 5px solid #b2cafd;
    background-color: #b9b9b9;
    color: white;
    word-break: break-all;
}

.article_content table {
    border-collapse: collapse;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.article_content thead tr {
    background-color: #e3ecfe;
}

.article_content table th {
    word-break: break-all;
    padding: 16px;
}

.article_content table td {
    word-break: break-all;
    padding: 16px;
}

.article_content table tbody tr:nth-of-type(odd) {
    background-color: #e9e9e9;
}

.article_content table tbody tr:nth-of-type(even) {
    background-color: #f8f8f8;
}

.article_content pre {
    background-color: #ededed !important;
    padding: 10px !important;
    border-radius: 8px !important;
    margin: 5px 0 !important;
    font-family: 'courier new', monospace;
}

.zbuser_superblog_article_inner_nav_container {
    background: #f2f2f2;
    border-radius: 6px;
    margin: 0 0 10px 10px;
    padding: 10px;
    max-width: 250px !important;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    white-space: normal;
    overflow-y: auto;
    max-height: 450px;
    border: 1px solid #dfdfdf;
    will-change: transform;
    z-index: 99;
    overscroll-behavior-y: contain;
    scrollbar-width: thin; /* 可选值：auto | thin | none */
    scrollbar-color: #888 #f1f1f1; /* 滑块颜色 轨道颜色 */
}

.zbuser_superblog_article_inner_nav_container .article_inner_nav_mask {
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.zbuser_superblog_article_inner_nav_container * {
    color: #949494;
    font-size: 13px;
    text-align: left;
    word-break: break-all;
    line-height: 1.8;
}

.zbuser_superblog_article_inner_nav_container p {
    display: inline !important;
}

.zbuser_superblog_article_inner_nav_container .article_inner_nav_btn {
    display: block;
    cursor: pointer;
    text-align: center;
    position: relative;
    z-index: 2;
}

.zbuser_superblog_article_inner_nav_container .article_inner_nav_title {
    font-size: 14px;
    text-align: center;
    color: #949494;
    position: relative;
    z-index: 2;
    display: block !important;
}

.zbuser_superblog_article_inner_nav_container .article_inner_nav_ul {
    position: relative;
    z-index: 2;
}

.zbuser_superblog_article_inner_nav_container .article_inner_nav_ul ol {
    list-style-type: none;
    margin-left: 20px;
}

.zbuser_superblog_article_inner_nav_container a:hover {
    color: black;
}

/*以下为移动端适配*/
@media screen and (max-width: 2000px) {
    .main_content {
        margin: 20px auto 40px;
    }

    .top_header {
        height: 70px;
    }

    #index_anim_canvas {
        height: 400px;
    }

    .navi_search_container {
        top: calc((400px - 70px) / 3 * var(--index_search_position) + 70px) !important;
    }

    #scroll_text_id {
        top: calc((400px - 70px) / 3 * var(--index_scroll_text_position) + 70px) !important;
    }

    #scroll_text_cursor_id {
        display: none !important;
    }

    .poster_func_container {
        margin-top: 10px;
        padding: 10px;

    }

    .poster_article_url_con {
        margin-bottom: 10px;
    }

    .close_poster {
        width: 20px;
        height: 20px;
        margin-top: 10px;
    }

    .poster_main_container {
        width: 320px;
    }

    .poster_main_img_con {
        width: 100%;
    }

    .poster_main_img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }

    .poster_func_container {
        margin-top: 10px;
        padding: 10px;
    }

    .poster_func_container * {
        font-size: 12px !important;
    }

    .poster_article_url_con {
        margin-bottom: 10px;
    }

    .poster_time {
        top: 15px;
        left: 15px;
    }

    .poster_main_info_container {
        padding: 15px;
    }

    .poster_cate_container {
        margin-bottom: 0;
    }

    .poster_title {
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    #poster_qrcode img {
        width: 70px !important;
        height: 70px !important;
    }

    .poster_total_container .logo_and_text_container {
        height: 70px;
        padding: 8px 0;
        justify-content: space-between;
    }

    .poster_logo {
        height: 30px;
    }

    .poster_intro {
        height: 30px;
        font-size: 11px;
    }

    .poster_intro * {
        font-size: 11px !important;
    }

    .poster_main_container .logo_lower_text {
        font-size: 11px;
        margin-top: 0;
    }

    .poster_total_container .close_poster {
        width: 20px;
        height: 20px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 1400px) {
    #navi_logo_container_id {
        margin-left: 80px;
    }

    #navi_container_id {
        display: none;
    }

    #top_menu_id {
        display: block;
    }

    .top_header_inner_con {
        width: 100% !important;
    }

    .navi_search_container .navi_search_form {
        width: 33vw;
    }

    .right_side {
        display: none;
    }

    .footer_content {
        padding: 20px !important;
        width: 940px !important;
    }

}


@media screen and (max-width: 1000px) {
    #navi_logo_container_id {
        margin-left: 100px;
    }

    #top_menu_id {
        margin-right: 100px;
    }

    #index_anim_canvas {
        height: 300px;
    }

    .top_header {
        height: 50px;
    }

    .navi_search_container {
        top: calc((300px - 50px) / 3 * var(--index_search_position) + 50px) !important;
    }

    #scroll_text_id {
        top: calc((300px - 50px) / 3 * var(--index_scroll_text_position) + 50px) !important;
    }

    .navi_search_container .navi_search_form {
        width: 50vw;
    }

    .slideshow_container {
        width: 100%;
        margin: 0 auto;
    }

    .slideshow_img {
        width: 95vw;
    }

    .left_side {
        width: 95vw;
    }

    .index_post {
        width: 100%;
    }

    .article_item {
        width: 100%;
    }

    .thumb {

    }

    .none_thumb {
        width: calc(100% / 100 * 60);
    }

    .thumb_img {
        width: 100%;
    }

    .main_info {
        width: calc(100% / 3 * 2);
    }

    .main_info a {
        display: block;
        width: fit-content;
        width: -moz-fit-content;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .pagebar .pagebar_item, .next-page > a, .pagebar .now-page {
        font-size: 12px;
    }

    .recommend_cate_container {
        width: 100%;
    }

    .footer_container {
        width: 100vw;
    }

    .footer_content {
        width: 95vw !important;
    }

    .footer_main_content {
        flex-flow: row wrap;
        justify-content: center;
    }

    .footer_main_content > div {
        width: 100%;
    }

    .footer_main_content .footer_contact {
        align-items: center;
        margin: 0 auto 20px;
    }

    .footer_main_content .site_state {
        margin: 0 auto 20px;
    }

    .footer_main_content .contact_title,
    .footer_main_content .footer_contact_item,
    .footer_main_content .site_state,
    .footer_main_content .footer_qrcode,
    .footer_main_content .footer_contact {
        text-align: center;
    }

    .footer_main_content .footer_qrcode {
        justify-content: center;
    }

    .footer_main_content .footer_qrcode_item:nth-of-type(1) {
        margin-left: 0;
    }

    .footer_container .friendlylink_title {
        text-align: center;
    }

    .footer_container .friendlylink_content {
        justify-content: center;
    }

    .friendlylink_content > li {
        font-size: 12px;
        margin: 10px 10px 0;
    }

    .single_left_side {
        width: 95vw;
    }

    .article_container {
        width: 100% !important;
    }

    .near_article_title {
        max-width: 50%;
    }

    .comment_publish_container .comment_pub_from {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: center;
    }

    .comment_publish_container .comment_pub_from span:first-of-type {
        max-width: 55%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .msgarticle > .msg {
        margin-left: 22px;
    }

    .search_words {
        margin-bottom: 0;
    }

    .no_article {
        width: 100%;
        justify-content: flex-start;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .none_article_img {
        margin-top: 40px;
    }
}

@media screen and (max-width: 800px) {
    .other_info_inner_container:nth-of-type(1) {
        display: none;
    }

    .other_info_inner_container:nth-of-type(3) {
        display: none;
    }

    .article_item {
        width: 100%;
        aspect-ratio: unset;

    }

    .thumb {
        width: 260px;
        flex-shrink: 0;
    }

    .main_info {
        width: calc(100% - 260px);
        flex-shrink: 1;
    }

    .danmu_article_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .full_screen_content {
        width: 90vw;
    }

    .full_screen_title {
        height: auto;
        line-height: 1.2;
        white-space: normal;
        padding: 10px;
    }

    .cate_article_list {
        flex-flow: row wrap;
    }

    .cate_article_item {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 10px;
    }

    .cate_article_item:nth-of-type(3), .cate_article_item:nth-of-type(4) {
        margin-bottom: 0;
    }

    .cate_article_item:nth-of-type(even) {
        margin-right: 0;
    }

    .none_article_img {
        width: 40%;
    }

    .pnf_container {
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .pnf_content {
        width: 95vw;
        box-sizing: border-box;
        margin: 0;
    }

    .pnf_img {
        width: 62%;
    }
}

@media screen and (max-width: 700px) {
    .recommend_cate_item_container {
        grid-template-columns: 100%;
    }

    .author_time {
        border-right: none;
    }

    .author_inner_container {

    }

    .author_views {
        display: none;
    }

    .author_comt_count {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    #navi_logo_container_id {
        margin-left: 20px;
    }

    #top_menu_id {
        margin-right: 20px;
        width: 30px;
        height: 30px;
    }

    .navi_search_container .navi_search_form {
        width: 68vw;
    }

    #scroll_text_id .scroll_text_content {
        font-size: 16px;
    }

    .thumb {
        width: 140px;
        aspect-ratio: 16/9;
        height: auto;
    }

    .thumb_img {
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
    }

    .main_info {
        width: calc(100% - 140px);
        flex-shrink: 1;
        padding: 5px 10px;
    }

    .article_item {
        height: auto;
    }

    .main_info a {
        font-size: 14px;
    }

    .intro {
        line-clamp: 2;
        -webkit-line-clamp: 2;
        min-height: 35px;
        font-size: 11px;
        line-height: 17.5px;
    }

    .intro * {
        font-size: 11px !important;
    }

    .intro p {
        line-height: 17.5px;
    }

    .other_info_inner_container {
        font-size: 10px;
        margin-right: 10px;
    }

    .other_info_img {
        font-size: 12px;
    }

    .navi_search_input {
        width: 67%;
    }

    .navi_search_button {
        width: 33%;
    }

    .slideshow-item-title {
        padding-left: 15px;
        font-size: 12px;
        line-height: 30px;
        height: 30px;
    }

    .slideshow_dot {
        bottom: 5px;
    }

    .font_changer_inner_A {
        font-size: 18px;
    }

    .article_copyrights_container {
        padding: 10px;
    }

    .near_article_container {
        flex-flow: row wrap;
    }

    .near_article_item {
        width: 100%;
        margin-bottom: 10px;
    }

    .near_article_item:last-child {
        margin-bottom: 0;
    }

    .near_article_title {
        max-width: 55%;
    }

    .comment_publish_container .comment_pub_field {
        padding: 0 10px;
        font-size: 11px;
        height: 30px;
        line-height: 30px;
    }

    .comment_publish_container .comment_pub_field::placeholder {
        font-size: 11px;
    }

    .none_article_img {
        width: 50%;
    }

    .pagebar .pagebar_item, .next-page > a {
        padding: 2px 12px;
    }

    .pagebar .now-page {
        padding: 2px 12px;
    }

    .float_btn_img_common {
        width: 12px;
        height: 12px;
        filter: drop-shadow(0 12px var(--theme_color));
        transform: translateY(-12px);
    }

    .float_button_dom {
        padding: 5px;
        gap: 5px;
        right: 25px;
        bottom: 25px;
    }

    .float_btn_anim_show {
        height: 12px;
        opacity: 1;
    }

}

@media screen and (max-width: 500px) {
    .main_content {
        margin: 20px auto;
    }

    .left_side {
        gap: 20px;
    }

    .index_post {
        gap: 10px;
    }

    .waterfall_post_list {
        grid-template-columns: 100%;
        gap: 10px;
    }

    .waterfall_post_sub_list_common {
        gap: 10px;
    }

    .cate_article_none_thumb {
        width: 80%;
        height: auto;
    }

    .cate_article_other_common {
        font-size: 10px;
    }

    .comment_publish_container .comment_pub_field_con {
        flex-flow: row wrap;
    }

    .comment_publish_container .comment_field_common {
        width: 100%;
        margin-bottom: 10px;
    }

    .comment_publish_container .comment_field_common:last-of-type {
        margin-bottom: 0;
    }

    .comment_publish_container .comment_pub_field {
        height: 20px;
        line-height: 20px;
    }

    .comment_submit_verify_code_con {
        justify-content: space-between;
    }

    .comment_submit_verify_code_con p {
        margin-bottom: 10px;
    }

    .comment_publish_container .comment_verify_code_con {
        margin-right: 10px;
    }

    .comment_publish_container .comment_pub_btn {
        width: 80px;
    }

    .comment_publish_container .comment_verify_code_input {
        width: 100px;
    }

    .slideshow_dot_item {
        margin: 0 5px;
    }

    .author_avatar {
        width: 15px;
        height: 15px;
        margin-right: 3px;
    }

    .author_level {
        font-size: 10px;
        margin-right: 3px;
    }

    .author_staticname {
        margin-right: 0;
    }

    .author_inner_container {
        padding-right: 15px;
    }

    .author_common {
        padding: 0 0 0 15px;
    }

    .like_article_wrapper {
        height: 33px;
    }

    .waterfall_post_sub_list_common {
        width: 100%;
    }

    .special_recommend_article_intro {
        font-size: 10px;
    }

    .special_recommend_article_intro * {
        font-size: 10px !important;
    }

    .zbuser_superblog_article_inner_nav_container {
        max-width: 170px !important;
    }
}


@media screen and (max-width: 430px) {
    .full_screen_hint, .poster_hint {
        font-size: 11px;
    }


}

@media screen and (max-width: 400px) {
    .cate_article_item {
        width: 100%;
        margin-bottom: 10px !important;
        margin-right: 0;
    }

    .cate_article_item:last-of-type {
        margin-bottom: 0 !important;
    }

    .comment_publish_container .commnet_pub_comment_img {
        width: 15px;
        height: 15px;
    }

    .comment_publish_container .comment_pub_from {
        font-size: 15px;
    }

    .comment_publish_container .comment_fast_reply_hint {
        font-size: 12px;
    }

    .comment_verify_code_con {
        margin-right: 0;
    }

    .comment_submit_verify_code_con {
        flex-flow: row wrap;
    }


    .msgarticle .msgarticle .msgname {
        height: auto;
    }

    .msgarticle .msgarticle .msgname .comment_base_info_container {
        height: auto;
    }

    .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply {
        flex-flow: row wrap;
    }

    .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply span:nth-child(2) {
        margin-right: 15px;
    }

    .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply .comment_author_levelname {
        margin-right: 15px;
    }

    .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply .comments_arrow {
        margin: 0 15px 0 0;
    }


    .msgarticle .msgarticle .msgarticle .msgname {
        height: auto;
    }

    .msgarticle .msgarticle .msgarticle .msgname .comment_base_info_container {
        height: auto;
    }

    .msgarticle .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply {
        flex-flow: row wrap;
        margin-top: 8px;
    }

    .msgarticle .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply * {
        margin-bottom: 8px;
    }

    .msgarticle .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply .comment_author_levelname {
        margin-right: 20px;
    }

    .msgarticle .msgarticle .msgarticle .msgname .comment_base_info_container .comment_time_reply .comments_arrow {
        margin-right: 20px;
        margin-left: 0;
    }

    .none_article_img {
        width: 70%;
    }

    .slideshow_dot {
        right: 10px;
    }

    .author_inner_container {
        padding-right: 5px;
    }

    .author_common {
        padding: 0 0 0 5px;
    }

    .special_recommend_article_container {
        grid-template-columns: 100%;
    }
}