@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: thin;
    letter-spacing: 0.1rem;
}

::-webkit-scrollbar {
	width:8px;
	height:8px
}
::-webkit-scrollbar-thumb {
    border-radius:10px;
    border: 2px solid transparent;
    background-clip: padding-box;
	background-color: var(--theme-60);
    background-image: -webkit-linear-gradient(45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);
}
::-webkit-scrollbar-thumb:hover{
    background-color: var(--theme);
}
::-webkit-scrollbar-track {
	box-shadow:inset 0 0 5px rgba(0,0,0,0.2);
	border-radius:10px;
	background-color:rgba(73,177,245,.2);
	display:none;
}
::-webkit-scrollbar-track-piece {
	display:none;
}
::-moz-selection {
	color:#fff;
	background:var(--theme-60);
}
::selection {
	color:#fff;
	background:var(--theme-60);
}
html {
	/* --theme在head.php */
	--main-color: 52 73 94;
	--main: rgb(var(--main-color));
    --C: rgb(var(--main-color) / 70%);
    --B: rgb(var(--main-color) / 40%);
    --A: rgb(var(--main-color) / 20%);
    --O: rgb(var(--main-color) / 5%);
    --under-background: #f7f7f7e6;
    --background: #fff;
    --box-shadow: 0px 7px 15px 0px #a48fff30;
    
	/* 默认样式 */    
	font-size: 14px;
    --radius: 1rem;
    --margin: 1.5rem;
}

.thin_bottom {
    display: none;
}  


@media (min-width:650px) {

    html.thinmode{
        --radius: 0.5rem;
    }
    html.thinmode .main_screen{
        max-width: 60rem;
        margin: var(--margin) auto;
    }
    html.thinmode .main_sidebar {
        display:none;
    }
    html.thinmode .cat_menu .right{
        padding: var(--margin);
        border-radius: var(--radius);
        top: var(--margin);
        position: absolute;
        right: calc(0rem - var(--margin) - 4.5rem);
        margin-top: calc(0rem - var(--margin));
        flex-direction: column;
    }
    html.thinmode .cat_menu .right .anniu{
        background: var(--background);
        padding: 0.5rem;
        border-radius: var(--radius);
        width: 3rem;
        height: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    html.thinmode .cat_menu .right .anniu.mobile_menu{
        display: none;
    }
    html.thinmode .cat_menu svg{
        width: 1.25rem;
    }
    html.thinmode .thin_bottom {
        margin: 0;
        position: fixed;
        display: block;
        bottom: var(--margin);
        padding-left: 0.5rem;
        margin-left: 0.5rem;
        border-left: 3px solid var(--O);
        color: var(--B);
        left: 0;
        font-size: 0.9rem;
        line-height: 2rem;
    }

}



.before_opacity_A:before {
    opacity: 0;
}
.before_opacity_B:before {
    opacity: 0.3;
}
.before_opacity_C:before {
    opacity: 0.7;
}

html:before {
    content: '';
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 1;
}


body {
    font-family: user,-apple-system,BlinkMacSystemFont,PingFang SC,emoji,Helvetica Neue,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x:hidden;
    background: var(--under-background);
}
html, body {
  scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: var(--main);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
a:hover {
    color: var(--theme);
}
li {
    list-style: none;
}
input, textarea, select{
    font-family: monospace,emoji;
    list-style: none;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    border: unset;
    padding: 0.5rem;
    height: auto;
    line-height: 1.5rem;
    background:var(--O);
    color: var(--main);
    width: 100%;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--B);
}
svg {
    width: 1rem;
    height: auto;
}
.cat_article_download svg,
.title_block_title svg,
.cat_menu  svg,
.editor_anniu svg {
    fill: var(--C);
}
img{
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
img.lazyloading {
    -webkit-filter: blur(2rem);
    filter: blur(2rem);
}
img.lazyloaded {
    filter: blur(0);
    -webkit-filter: blur(0);
}
.send_anniu_style {
    cursor: pointer;
    color: var(--main);
    background: var(--O);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    line-height: 2rem;
    width: 100%;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.send_anniu_style:hover {
    color: #fff;
    background: var(--theme-60);
}
.menu_off,
.mobile_menu{
    display: none;
}
.avatar {
    width: 3.25rem;
    height: 3.25rem;
    vertical-align: middle;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    /*background: var(--background);*/
    -o-object-fit: cover;
    object-fit: cover;
}
.cat_tanchuang {
    background: var(--background);
    position: fixed;
    top: 50%;
    left: 50%;
    color: var(--main);
    padding: var(--margin);
    box-shadow: var(--box-shadow);
    border-radius: var(--radius);
    width: 45rem;
    max-width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 990;
    flex-wrap: wrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%, -50%) scale(1.2);
    -moz-transform: translateY(-50%, -50%) scale(1.2);
    -ms-transform: translateY(-50%, -50%) scale(1.2);
    -o-transform: translateY(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}
.cat_tanchuang_on {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%, -50%) scale(1);
    -moz-transform: translateY(-50%, -50%) scale(1);
    -ms-transform: translateY(-50%, -50%) scale(1);
    -o-transform: translateY(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
#cat_tanchuang_off {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 850;
    margin: auto;
    text-align: center;
    background-color: rgb(255 255 255 / 50%);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    backdrop-filter: blur(1.5rem);
}
#login_cute_card .do_login_in {
    display: inline-block;
    margin: 0.5rem;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    border: none;
    background: var(--theme-80);
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
}
#popup_card {
    display: flex;
    gap: var(--margin);
    flex-direction: column;
}
/* 登录弹窗 */
#login_cute_card {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 1rem 2rem;
    width: 18rem;
}
#login_cute_card .Login_in{
    margin-top: 1rem;
}
#login_cute_card li{
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#login_cute_card li input{
    margin: 0.5rem;
    width: auto;
}
#login_cute_card li i{
    color: var(--main);
}
#login_cute_card label {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
}
#index_write_block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.5rem;
}
#index_write_block .editor_anniu .logined_user img{
    width: 1.25rem;
    height: 1.25rem;
}
#index_write_block .editor_anniu span{
    padding: 0.5rem;
    display: inline-flex;
}
#index_write_block .editor_anniu span svg{
    width: 1.25rem;
    cursor: pointer;
}
#index_write_block .table_post_text{
    display: block;
    width: 100%;
    resize: vertical;
    min-height: 120px;
    padding: 10px;
}
#index_write_block .table_post_input,
#index_write_block .table_lock_input{
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: space-between;
}
#index_write_block .table_lock_input .sent_post_ajax {
    width: 4rem;
    font-size: 0.9rem;
}
#index_write_block .table_lock_input .index_write_secert {
    border-radius: 0.5rem;
    border: unset;
    padding: 0.5rem;
    height: auto;
    background: var(--O);
    cursor: pointer;
}
.table_post_secert_background {
    background: repeating-linear-gradient(135deg,var(--theme-10),var(--theme-10) 1rem,var(--background) 0,var(--background) 2rem);
}
#index_write_block .table_lock_input .index_write_password {
    width: auto;
}
#index_write_block .table_lock_input .index_write_mima {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#index_write_block .table_post_icon {
    width: 2.5rem;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
}
#index_write_block{
    text-align: center;
}
#index_write_block .moodblock span {
    font-size: 1.25rem;
    padding: 0.5rem;
    cursor: pointer;
}

.main_screen{
    position: relative;
    margin: var(--margin) auto;
    width: calc(100vw - 2 * var(--margin) auto);
    max-width: 75rem;
    min-height: calc(100vh - 2 * var(--margin));
}
.web_top{
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 var(--margin);
}
.web_top .left{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--margin);
}
.web_top a,
.web_top svg{
    height: 1.5rem;
    width: auto;
    fill: #fff;
    color: #fff;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.main{
    display: flex;
    width: 100%;
    margin: 0 auto;
}
.main_body{
    flex: 1;
    width: calc(100% - 24rem - var(--margin));
}
.main_sidebar{
    width: 24rem;
    margin-left: var(--margin);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: visible;
    user-select: none;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_block {
    position: relative;
    padding: var(--margin);
    color: var(--main);
    background: var(--background);
    border-radius: var(--radius);
    margin-bottom: var(--margin);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.title_block {
    position: relative;
    padding-left: calc(1.5 * var(--margin));
}
.title_block_title {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
    display: flex;
    align-items: baseline;
}
.title_block_title h1{
    font-size: 1.25rem;
    line-height: 2.25rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.title_block_text {
    opacity: 0.5;
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    line-height: 2rem;
    align-items: center;
}
.title_block_text img{
    width: 0.9rem;
}
.title_block_count {
    display: inline-block;
    position: absolute;
    right: 2rem;
    line-height: 0.5rem;
    font-size: 0.75rem;
    top: 0;
    padding: 0.5rem;
    background: var(--O);
    color: var(--C);
    border-radius: 0 0 0.5rem 0.5rem;
    min-width: 3rem;
    cursor: default;
    text-align: center;
}


/* 分页 */
.cat_pagination_page{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--margin);
    gap: 0.5rem;
}
.cat_pagination_page li.active a {
    background: var(--theme);
    color: #fff;
    font-weight: 500;
}
.cat_pagination_page a{
    display: flex;
    padding: 0.5rem;
    font-size: 0.9rem;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--background);
    border-radius: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
}
.cat_pagination_page span.next{
    cursor: pointer;
}
.cat_pagination_page li.active a:hover{
    cursor: not-allowed;
}




.cat_top {
    z-index: 9;
    display: flex;
    gap: calc(1.5 * var(--margin));
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--margin);
    height: 24rem;
    justify-content: center;
}
.cat_top .logo {
    position: relative;
}
.cat_top .logo p{
    position: absolute;
    right: -0.5rem;
    bottom: 0;
    background: var(--theme);
    padding: 0.1rem 0.2rem;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}
.cat_top .logo img{
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    background: var(--background);
    padding: 0.25rem;
    box-shadow: none;
}
.cat_top .words{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}
.cat_top .webtitle{
    font-size: 2rem;
    font-weight: bold;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: var(--main);
}
html.back .cat_top .webtitle,
html.back .cat_top .description{
    color: #fff;
}
html.back .cat_top .description{
    color: #fff;
    --XL: #fff;
    --Xbackground: rgb(0 0 0 / 70%);
}
.cat_top .description{
    position: relative;
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
    line-height: 1.5rem;
    width: 450px;
    max-width: 60vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding-top: 0.5rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: var(--main);
    --XL: var(--main);
    --Xbackground: var(--under-background);
}
.cat_top .description.change{
    color: var(--main)!important;
    --XL: var(--main)!important;
    --Xbackground: var(--under-background)!important;
}
.cat_top .description:before{
    content: "";
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -2;
    opacity: 0.5;
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,var(--Xbackground)),color-stop(35%,var(--XL)),color-stop(65%,var(--XL)),color-stop(100%,var(--Xbackground)));
}
/* wx_pyq */
.wx_pyq.cat_top {
    justify-content: flex-start;
    flex-direction: row-reverse;
    align-items: flex-end;
}
.wx_pyq.cat_top .logo img{
    border-radius: 0.5rem;
}
.wx_pyq.cat_top .words{
    align-items: flex-end;
}
.wx_pyq.cat_top .description{
    text-align: right;
}
.wx_pyq.cat_top .description:before{
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,var(--Xbackground)),color-stop(35%,var(--XL)),color-stop(95%,var(--XL)),color-stop(100%,var(--Xbackground)));
}
@media (max-width:650px) {
    .wx_pyq.cat_top .logo img {
        width: 5rem;
        height: 5rem;
    }
    .wx_pyq.cat_top .logo p{
        display: none;
    }
    .wx_pyq.cat_top .webtitle {
        font-size: 1.5rem;
    }
}



    
    
.cat_menu{
    position: sticky;
    top: 0;
    width: 100%;    
    z-index: 10;
    display: flex;
    gap: 1rem;
    z-index: 800;
    justify-content: space-between;
}
.cat_menu .left{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.cat_menu .left .item{
    font-size: 1.05rem;
}
.cat_menu .left .item .bottom_infos{
    display: none;
}
.cat_menu .right {
    display: flex;
    gap: 2rem;
    font-size: 1.25rem;
    padding: 0 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.cat_menu .right .anniu{
    cursor: pointer;
}
html .cat_menu .right .anniu.percentage{
    display: none;
}
.cat_menu .right .percentage .num{
    display: flex;
    justify-content: center;
    font-size: 1rem;
    height: 1.5rem;
    font-weight: bold;
    letter-spacing: 0;
    color: var(--C);
    align-items: baseline;
}
@media (min-width:650px) {
    .cat_menu .right .percentage .num:after{
        content: '%';
        font-size: smaller;
    }
}
.cat_menu .item {
    position: relative;
    display: flex;
    text-align: center;
    font-size: 1rem;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_menu .item:hover {
    color: var(--theme);
}
.cat_menu .item .title {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding: calc(var(--margin) / 2);
    text-align: left;
    height: 2.5rem;
}
.cat_menu .item .title li a {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.cat_menu .item:after {
    content: "";
    position: absolute;
    background: var(--theme);
    left: 0;
    right: 0;
    bottom: 0;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_menu .item:hover:after {
    opacity: 1;
}
.cat_menu .item.arrow:after {
    font-family: serif;
    content: 'ˇ';
    width: auto;
    font-size: 1.5rem;
    bottom: 0.2rem;
    background: unset;
    color: var(--B);
    opacity: 1;
}
.cat_menu .item.arrow:hover:after {
    color: var(--theme);
}
.cat_menu .item .mainmenu_nav_child {
    position: absolute;
    display: flex;
    min-width: 10rem;
    -webkit-transform: translateY(2.5rem);
    -moz-transform: translateY(2.5rem);
    -ms-transform: translateY(2.5rem);
    -o-transform: translateY(2.5rem);
    transform: translateY(2.5rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    background: var(--background);
    width: auto;
    gap: 0.5rem;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);    
    z-index: 1;
    padding: calc(var(--margin) / 2);
}

.cat_menu .item:hover .mainmenu_nav_child {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(3rem);
    -moz-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    -o-transform: translateY(3rem);
    transform: translateY(3rem);
}
.cat_menu .item .mainmenu_nav_child li{
    position: relative;
    width: 100%;
}
.cat_menu .item .mainmenu_nav_child li a{
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    display: block;
    width: 100%;
}
.cat_menu .item .mainmenu_nav_child li a:hover {
    background: var(--theme-80);
    color: #fff;
}
.cat_menu .item .mainmenu_nav_child li:hover .category_nav_child {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
}
.cat_menu .item .category_nav_child {
    -webkit-transform: translate(100%, 0.5rem);
    -moz-transform: translate(100%, 0.5rem);
    -ms-transform: translate(100%, 0.5rem);
    -o-transform: translate(100%, 0.5rem);
    transform: translate(100%, 0.5rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    display: flex;
    gap: 0.5rem;
    position: absolute;
    right: 0;
    top: 0;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    background: var(--background);
    width: auto;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    z-index: 1;
    padding: calc(var(--margin) / 2);
}

.solo_menu{
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.solo_menu li {
    font-size: 0.9rem;
    padding: 0.5rem;
    display: flex;
    border-radius: 0.5rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    justify-content: center;
}
.solo_menu li:hover{
    background: var(--theme-80);
}
.solo_menu li:hover>a{
    color: #fff;
}
.solo_menu .mainmenu_nav_child {
    position: absolute;
    display: flex;
    min-width: 7rem;
    -webkit-transform: translateY(1.5rem);
    -moz-transform: translateY(1.5rem);
    -ms-transform: translateY(1.5rem);
    -o-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    background: var(--background);
    width: auto;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    z-index: 1;
    padding: 1rem;
}
.solo_menu li:hover .mainmenu_nav_child {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(2rem);
    -moz-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    -o-transform: translateY(2rem);
    transform: translateY(2rem);
}



















.postlist {
    padding: 2rem;
}
.postlist[template *= wechat] .postlist_title,
.postlist[template *= microblog] .postlist_title{
    display: none;
}
article,
.postlist {
    -webkit-animation: fadeInUp 0.5s .2s ease both;
    -moz-animation: fadeInUp 0.5s .2s ease both;
    animation: fadeInUp 0.5s .2s ease both;
}
.is_post_mode .postlist_top_part{
    height: 18rem;
    margin-bottom: 1rem;
}
.is_list_mode .post_content{
    margin: 0.5rem 0 1rem;
}

.postlist_article {
    padding: 0;
    margin: 1rem 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.postlist_article cat_gallery{
    max-width: 400px;
}
article.postlist_article .post_content>p {
    margin: 0;
    color: var(--C);
    font-size: 1rem;
}
.postlist_out.is_post_mode .postlist_article .post_content{
    overflow-y: scroll;
}
.postlist_article .post_content cat_post_image{
    width: 100%;
    max-width: 20rem;
}
.postlist_article .post_content cat_music,
.postlist_article .post_content cat_article_video {
    width: 100%;
    max-width: 30rem;
}

.is_post_mode .postlist_article,
.is_list_mode .postlist_article {
    margin: 0;
}

/* 加密文章 */
article .post_content .protected input{
    margin-bottom: 0.5rem;
}
article .post_content .protected .word{
    margin: 2rem 0;
    font-size: 2rem;
}
article .post_content .protected .submit {
    cursor: pointer;
}
.postlist_head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}
.postlist_head .middle {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    flex-direction: column;
}
.postlist_head .middle .top {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--C);
}
.postlist_head .middle .top .title{
    padding: calc(var(--margin) / 2);
    line-height: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.postlist_head .middle .bottom {
    font-size: smaller;
    color: var(--B);
}
.postlist_head .right {
    font-size: 2.5rem;
    opacity: 0.5;
    cursor: -webkit-grabbing;
}
.postlist_head .right img,
.postlist_head .right svg {
    width: 3rem;
    height: 3rem;
}
.postlist_head .right:hover {
    animation: jump .3s .12s ease;
    -webkit-animation: jump .3s .12s ease;
    -moz-animation: jump .3s .12s ease;
}
.postlist_foot {
    margin-top: 1rem;
    font-size: 0.8rem;
    display: flex;
    gap: 0.5rem;
    color: var(--B);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
}
.postlist_foot .avatar{
    width: 1.25rem;
    height: 1.25rem;
}
.agreed_num {
    letter-spacing: 0;
}
.postlist_tags {
    font-size: 1rem;
    margin-top: var(--margin);
    font-weight: bold;
    display: flex;
    column-gap: 1rem;
    row-gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
}
.postlist_tags span, 
.postlist_tags a {
    position: relative;
    display: flex;
    gap: 0.2rem;
    color: var(--B);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    word-break: keep-all;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    align-items: center;
}
.postlist_tags a:hover {
    color: var(--C);
}
.postlist_tags span svg{
    width: 1rem;
}
.postlist_tags a:before{
    content: '#';
    color: var(--A);
}
.postlist_tags a:hover:after {
    height: 0.1rem;
    visibility: visible;
    -webkit-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.postlist_comment{
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    background: var(--O);
    border-radius: var(--radius);
}
.postlist_comment .item{
    line-height: 2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.postlist_comment span.item:first-of-type{
    padding: 0.5rem 1rem;
}
.postlist_comment span.item:not(:first-of-type){
    padding: 0 1rem 0.5rem;
}
.postlist_comment .item a{
    line-height: 2rem;
    font-size: smaller;
    display: inline;
    color: var(--B);
}
.postlist_comment .item .avatar{
    margin-right: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    box-shadow: unset;
}
.postlist_reply,
.postlist_tags .postlist_pinglun_anniu {
    cursor: pointer;
}
.postlist_comment_change_info {
    font-weight: bold;
    display: none;
    color: red;
}
.postlist_tags .agree_anniu_out,
.postlist_comment_welcome_info,
.postlist_comment_change_info {
    cursor: pointer;
}

.postlist_comment .comment_emoji_block {
    height: 2.5rem;
    overflow: hidden;
}
.postlist_comment .cat_comment_respond_form .body textarea {
    min-height: 8.5rem;
}
.postlist_comment .cat_comment_respond_form .top,
.postlist_comment .cat_comment_respond_form .head{
    flex-direction: column;
}
.postlist_comment .cat_comment_respond_form .head{
    display: none;
}



.postlist_info {
    padding-left: 4.4rem;
}
.postlist_title {
    line-height: 2.25rem;
    font-size: 1.25rem;
    margin: 1rem 0;
    font-weight: bold;
    display: flex;
    gap: 0.5rem;
}
.postlist_title a{
    display: block;
    word-break: break-word;
    cursor: pointer;
    color: var(--C);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.postlist:hover .postlist_title a{
    color: var(--theme);
}
.postlist_album {    
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: calc(0.5 * var(--margin));
    max-width: 400px;
}
.postlist_album img{
    aspect-ratio: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    object-fit: cover;
}
.postlist_album .postlist_gallery{
    position: relative;
    cursor: zoom-in;
}
.postlist_album .postlist_gallery .mask {
    position: absolute;
    display: flex;
    background: rgb(0 0 0 / 40%);
    inset: 0;
    color: #fff;
    font-size: 1.5rem;
    border-radius: var(--radius);
    justify-content: center;
    align-items: center;
}
.postlist_album .postlist_gallery .mask svg{
    fill: #fff;
}

.postlist_abstract {    
    line-height: 2.5rem;
    min-height: 5rem;
    word-break: break-all;
    font-size: 1rem;
    margin: 1rem 1rem 0 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    color: var(--C);
}



.postlist_album[num='1'] {
    grid-template-columns: repeat(1,1fr);
}
.postlist_album[num='1'] img{
    aspect-ratio: unset;
    max-height: 400px;    
    max-width: 100%;
    width: auto;
}
.postlist_album[num='2'],
.postlist_album[num='4'] {
    grid-template-columns: repeat(2,1fr);
}
.postlist_album[num='3'],
.postlist_album[num='6'],
.postlist_album[num='8'] {
    grid-template-columns: repeat(3,1fr);
}
.postlist_album[num='5'] {
    grid-template-columns: repeat(6,1fr);
}
.postlist_album[num='7'] {
    grid-template-columns: repeat(4,1fr);
}
.postlist_album[num='3'] .postlist_gallery:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
.postlist_album[num='3'] .postlist_gallery:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
.postlist_album[num='3'] .postlist_gallery:nth-child(3) { grid-area: 2 / 3 / 3 / 4; }

.postlist_album[num='5'] .postlist_gallery:nth-child(1) { grid-area: 1 / 1 / 5 / 5; }
.postlist_album[num='5'] .postlist_gallery:nth-child(2) { grid-area: 1 / 5 / 3 / 7; }
.postlist_album[num='5'] .postlist_gallery:nth-child(3) { grid-area: 3 / 5 / 5 / 7; }
.postlist_album[num='5'] .postlist_gallery:nth-child(4) { grid-area: 5 / 1 / 7 / 4; }
.postlist_album[num='5'] .postlist_gallery:nth-child(5) { grid-area: 5 / 4 / 7 / 7; }

.postlist_album[num='5'] .postlist_gallery:nth-child(4) img{aspect-ratio: unset;}
.postlist_album[num='5'] .postlist_gallery:nth-child(5) img{aspect-ratio: unset;}

.postlist_album[num='6'] .postlist_gallery:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
.postlist_album[num='6'] .postlist_gallery:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
.postlist_album[num='6'] .postlist_gallery:nth-child(3) { grid-area: 2 / 3 / 3 / 4; }
.postlist_album[num='6'] .postlist_gallery:nth-child(4) { grid-area: 3 / 1 / 4 / 2; }
.postlist_album[num='6'] .postlist_gallery:nth-child(5) { grid-area: 3 / 2 / 4 / 3; }
.postlist_album[num='6'] .postlist_gallery:nth-child(6) { grid-area: 3 / 3 / 4 / 4; }

.postlist_album[num='7'] .postlist_gallery:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
.postlist_album[num='7'] .postlist_gallery:nth-child(2) { grid-area: 1 / 3 / 3 / 5; }
.postlist_album[num='7'] .postlist_gallery:nth-child(3) { grid-area: 3 / 1 / 5 / 3; }
.postlist_album[num='7'] .postlist_gallery:nth-child(4) { grid-area: 3 / 3 / 4 / 4; }
.postlist_album[num='7'] .postlist_gallery:nth-child(5) { grid-area: 3 / 4 / 4 / 5; }
.postlist_album[num='7'] .postlist_gallery:nth-child(6) { grid-area: 4 / 3 / 5 / 4; }
.postlist_album[num='7'] .postlist_gallery:nth-child(7) { grid-area: 4 / 4 / 5 / 5; }

.postlist_album[num='8'] .postlist_gallery:nth-child(8) { grid-area: 3 / 2 / 4 / 4; }

.postlist_album[num='8'] .postlist_gallery:nth-child(8) img{aspect-ratio: 3;}

/* 分页 */
.cat_archive_next {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--margin);
}
.cat_archive_next .next{
    color: var(--C);
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    background: var(--background);
    border-radius: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    letter-spacing: 2px;
    cursor: pointer;
}
.cat_archive_next .over{
    font-size: small;
    color: var(--A);
    padding: 0.5rem;
    text-align: center;
}
/* 作者页面 */
.postlist_out.is_author_list.is_list_mode .postlist_title a{
    height: 3.5rem;
    font-size: 1.1rem;
    line-height: 2rem;
}
.postlist_out.is_author_list.is_list_mode .postlist .postlist_headpic {
    height: 6rem;
}
.postlist_out.is_author_list.is_list_mode .postlist .postlist_article .post_content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}




/* is_post_mode */
.postlist_out.is_list_mode .postlist{
    display: flex;
    gap: var(--margin);
    align-items: center;
    padding: 1rem;
}
.postlist_out.is_post_mode .postlist_title,
.postlist_out.is_list_mode .postlist_title{
    height: 4.5rem;
}
.postlist_out.is_list_mode .postlist_title{
    margin: 0 0 1rem;
}
.postlist_out.is_post_mode .postlist_title a,
.postlist_out.is_list_mode .postlist_title a{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 4.5rem;
}
.postlist_out.is_post_mode .postlist_tags,
.postlist_out.is_list_mode .postlist_tags {
    height: 1.5rem;
    overflow: hidden;
    margin-top: 0;
}
.postlist_out.is_post_mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--margin);
}
.postlist_out.is_post_mode .postlist_info{
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.postlist_out.is_list_mode .postlist_info {
    padding-left: 0;
    width: 100%;
}
.postlist_out.is_post_mode .postlist_abstract {
    margin: 0;
    height: 18rem;
    margin-bottom: 1rem;
}
/* 头图 */
.postlist_headpic {
    height: 12.5rem;
}
.postlist_out.is_list_mode .postlist .postlist_headpic {
    width: auto;
    height: 10rem;
    aspect-ratio: 1.5;
    display: flex;
}
.postlist_headpic img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    object-fit: cover;
}


@media (max-width:1300px) {
    .postlist_out.is_post_mode .postlist_headpic img{
        height: 12.5rem;
        aspect-ratio: auto;
    }
}
@media (max-width:650px) {
    .postlist_out.is_post_mode {
        display: block;
    }
    .postlist_out.is_post_mode .postlist_abstract {
        aspect-ratio: unset;
        margin-bottom: 1rem;
    }
    .postlist_out.is_post_mode .postlist_title a{
        height: auto;
    }
    .postlist_headpic img{
        height: auto;
    }
    .postlist_out.is_list_mode .postlist .postlist_headpic {
        aspect-ratio: 1;
        height: 6rem;
    }
    .postlist_out.is_post_mode .postlist_title a,
    .postlist_out.is_list_mode .postlist_title a{
        font-size: 1.1rem;
        line-height: 2rem;
    }
    .postlist_out.is_post_mode .postlist_title{
        height: auto;
    }
    .is_post_mode .postlist_top_part {
        height: auto;
        margin-bottom: 0;
    }
    .postlist_out.is_list_mode .postlist_title{
        height: 4rem;
    }
    .postlist_info {
        padding-left: 0;
    }
}






#search_card .name {
    font-size: 1.5rem;
    padding: 1rem 0 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--colorB);
    text-align: center;
}
#search_card .search {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin-bottom: var(--margin);
}
#search_card .search input {
    flex: 1;
    padding: 0.75rem;
    outline: 1px solid var(--colorA);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#search_card .search input:focus {
    outline: 1px solid var(--theme);
}
#search_card .search button{
    vertical-align: middle;
    background: #fff0;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: var(--main);
    border: unset;
}
#search_card .search button svg{
    width: 1.5rem;
}

.cat_categorymenu{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.cat_categorymenu a:last-child {
    margin-right: auto;
}
.cat_categorymenu a {
    display: inline-block;
    padding: 0;
    text-align: center;
    margin-bottom: 0;
}







/* 侧栏 */
.aside_first_block {
    display: flex;
    gap: var(--margin);
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: var(--margin);
}
.little_card_flex {
    display: flex;
    padding: var(--margin);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.author_flex {
    display: flex;
    gap: var(--margin);
    flex-direction: column;
    align-items: center;
    padding: calc(2 * var(--margin)) var(--margin);
    --one: rgb(255 255 255 / 50%);
    --two: rgb(255 255 255 / 80%);
}
html.darkmode .author_flex {
    --one: rgb(0 0 0 / 50%);
    --two: rgb(0 0 0 / 80%);
}











#music_bar{
    width: 100%;
    position: absolute;
    bottom: -20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#music_bar .bar{
  vertical-align: bottom;
  width:10px;
  height:5px;
  background: red;
  display: inline-block;
  margin: 0 1px;
  border-radius: 5px 5px 0 0;
	-webkit-animation: grow 0.8s infinite;
}
@-webkit-keyframes grow {
	0%, 100% { height: 5px; background: #800 }
    50% { height: 20px; background: #f00; }
}
#music_bar .bar:nth-child(1){
  -webkit-animation-delay: 0.2s;
}
#music_bar .bar:nth-child(2){
  -webkit-animation-delay: 0.3s;
}
#music_bar .bar:nth-child(3){
  -webkit-animation-delay: 0.4s;
}
#music_bar .bar:nth-child(4){
  -webkit-animation-delay: 0.5s;
}
#music_bar .bar:nth-child(5){
  -webkit-animation-delay: 0.6s;
}
#music_bar .bar:nth-child(6){
  -webkit-animation-delay: 0.6s;
}
#music_bar .bar:nth-child(7){
  -webkit-animation-delay: 0.7s;
}
#music_bar .bar:nth-child(8){
  -webkit-animation-delay: 0.8s;
}
#music_bar .bar:nth-child(9){
  -webkit-animation-delay: 0.9s;
}









.author_flex .avatar{
    width: 5rem;
    height: 5rem;
}
.author_flex .title{
    font-size: 1.25rem;
    font-weight: bolder;
}
.author_flex .description{
    font-size: small;
    line-height: 1.75rem;
    text-align: center;
}
.author_flex .bottom,
.author_flex .bottom svg{
    height: 1.25rem;
    width: auto;
    fill: var(--main);
    color: var(--main);
    cursor: pointer;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.author_flex .bottom a{
    display: flex;
    gap: 0.5rem;
}
.clock_frame {
  width: calc((24rem - var(--margin)) / 2);
  height: calc((24rem - var(--margin)) / 2);
  box-sizing: content-box;
  padding: 0;    
  margin: 0;
  cursor: pointer;    
  overflow: hidden;
}
.clock_frame b{
    text-align: center;
    z-index: 5;
    background: var(--background);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.clock_frame:last-child:nth-child(2n+1) {
    width: 100%;
}

.clock {
  width: calc((24rem - var(--margin)) / 2);
  height: calc((24rem - var(--margin)) / 2);
  border-radius: 50%;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}
.clock::after {
  content: "";
  width: 120px;
  height: 120px;
  background-color: inherit;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.clock .marker {
  height: calc(100% - 25px);
  width: 3.2px;
  background-color: var(--B);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.clock .marker:nth-of-type(3n + 1) {
  background: var(--main);
}
.clock .marker:nth-of-type(2) {
  transform: rotate(30deg);
}
.clock .marker:nth-of-type(3) {
  transform: rotate(60deg);
}
.clock .marker:nth-of-type(4) {
  transform: rotate(90deg);
}
.clock .marker:nth-of-type(5) {
  transform: rotate(120deg);
}
.clock .marker:nth-of-type(6) {
  transform: rotate(150deg);
}

.clock .hand {
  transform-origin: center bottom;
  position: absolute;
  z-index: 3;
  bottom: 50%;
  left: 50%;
  width: 3px;
  transition: transform 1s linear;
}
.clock .hand.second {
  height: 55px;
  width: 1.25px;
  left: calc(50% - 1.5px);
  border-radius: 1.5px;
  background-color: #ec231e;
  box-shadow: 4px 6px 0 0 rgba(0, 0, 0, 0.15);
  transform: rotate(40deg);
  z-index: 9;
}
.clock .hand.second::before,
.clock .hand.second::after {
  content: "";
  background-color: inherit;
  position: absolute;
  border-radius: 50%;
  left: 50%;
}
.clock .hand.second::before {
  width: 12px;
  height: 12px;
  bottom: 0;
  transform: translate(-50%, 50%);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.15);
}
.clock .hand.second::after {
  width: 8px;
  height: 8px;
  top: 18px;
  transform: translate(-50%, 0);
  box-shadow: 4px 6px 2px 0 rgba(0, 0, 0, 0.15);
}
.clock .hand.minute {
  height: 50px;
  left: calc(50% - 3px);
  border-radius: 3px;
  background-color: var(--main);
}
.clock .hand.hour {
  height: 40px;
  left: calc(50% - 1.5px);
  border-radius: 3px;
  background-color: var(--main);
}

@-webkit-keyframes rotateArms {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateArms {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}


/* 天气 */
#he-plugin-simple {
    height: 100%;
}
#he-plugin-simple .s-sticker {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--background)!important;
}
#weather-view-he {
    width: 100%!important;
    height: 300px!important;
    border-radius: var(--radius)!important;
    margin-bottom: var(--margin)!important;
    padding: var(--margin)!important;
    background-color: var(--background)!important;
    color: var(--main);
    background-size: cover!important;
}
#he-plugin-simple .s-sticker div{
    color: var(--main)!important;
}
#he-plugin-simple #weather-view-he {
    display: none;
}
.wv-n-h-now span,
.vw-f-cell a{
    color: var(--main)!important;
}
.wv-lt-location a {
    display:none!important;
}

.radio_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    opacity: 0.7;
}
.change_radio{
    position: absolute;
    cursor: pointer;
    right: 1rem;
    top: 1rem;
    fill: var(--B);
}


aside .aside_top{
    height: 100%;
}
aside .aside_copyright p a,
aside .aside_copyright p{
    color: var(--B);
    font-size: smaller;
    line-height: 2rem;
}
aside .need_sticky {
    position: sticky;
}
.smalltext {
    font-size: 0.75rem;
    color: var(--B);
}
.recent_comments {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cat_recentcomment_list{
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--margin));
}
.cat_recentcomment_part{
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}
.cat_recentcomment_part .qrcode_item{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.cat_recentcomment_part .qrcode_item svg{
    width: 3rem;
    fill: var(--A);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_recentcomment_part .qrcode_item:hover svg{
    fill: var(--C);
}
.cat_recentcomment_part .right {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cat_recentcomment_part .right .user {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat_recentcomment_part .right .user .name{
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    align-items: center;
    overflow: hidden;
    width: 100%;
    flex: 1;
    text-align: left;
    line-height: 1.5rem;
}
.cat_recentcomment_part .right .reply {
    font-size: 0.9rem;
    line-height: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}
.cat_recommend_list {
    display: flex;
    position: relative;
    padding: 0.5rem 0;
    flex-direction: row;
    gap: 0.75rem;
}
.cat_recommend_list .left{
    line-height: 1.25rem;
}
.cat_recommend_list .left .num{
    color: #fff;
    background: var(--A);
    width: 0.9rem;
    height: 0.9rem;
    font-size: .75rem;
    line-height: .9rem;
    border-radius: 2px;
    text-align: center;
    display: inline-block;
    letter-spacing: 0;
}
.cat_recommend_list:nth-of-type(1) .left .num {
    background: var(--theme);
}
.cat_recommend_list:nth-of-type(2) .left .num {
    background: var(--theme-60);
}
.cat_recommend_list:nth-of-type(3) .left .num {
    background: var(--theme-30);
}
aside .thatyear .item{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
    margin-bottom: 0.5rem;
}
aside .thatyear .item time {
    font-size: smaller;
    color: var(--B);
}
aside .thatyear .item a{
    line-height: 1.6rem;
}
aside .aside_music .music_start_icon{
    position: relative;
    float: left;
    background-size: cover;
    background-position: 50%;
    cursor: pointer;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}
aside .aside_music .music_start_icon:before {
    content: "";
    background-image: url(data:image/webp;base64,UklGRjgEAABXRUJQVlA4WAoAAAAwAAAAJwAAQAAAQUxQSJsCAAANkC3btmk78+Datn1j27Zt+8m2bdu2eW3btqLDzTiZ8wsigoEAJHGQ2hzoDvcKADAykEs4jUIEZMjMOTUvyvT1vrBImGmkY7voxl9SGX3BnRqIcAgAWreZo9RToGCoGvbbDRp1PWmgRkHOtfv9AdrGSEHAQJSIEiAJTh7W+TeEOQo4qAxfqEZKAUIzHVU4aEC6xXCkP2x31GeQ6Wc9yXNuHHhnKLCC8IXXL3cy9o383Ywq1ipK7Rx7vf/ZBH0q8CU+jSobCMiLuQHQKp4gFfncwJ8g2bIDJc2SgeDAf6n3bZ7BUBghtoOzRSrBJghZTYx8E2mERj+NFJPjyyzNWseRTFjMaeT5pZ6iENKaWzqRGPmE9tD/FYmQ5G3RPYgEkNHMp4FEEDObWljlkQjJbSTdgigmLBTouY9+IBAc2G8FbQK/lpEISW0M/RMoBC6liX7fNxQCX/u5Ud/4eorJCW+GeFrFUgh8TFv9gc8pUq7mc5Mx90QKQXw8xn7gRYqUi2hkN+s8Rcqqo/t3ZOIIijn+QW+7I8u1+JTjqhJHdmh/kODACNf7uG8qvExw0DIbDxgfuv+OwMyUXd1kfvVoMJocwwdVzrI8uz+a4JJwQ3eG3endUegSluGuWk9wPLk1Ht+Q4c55jbS/uCYJ30DLHm0xzO7O0niC5sI+/8lmt3cFockw4gmredbnLjwhEOGC8QyrU0+eaHg8z8oWmZ9q9WwNlpwG7uZtNnIa1WQOh6WWfysfCZLJvRcpsIPW8ufGuANM7Ln8E5ZC1rwLjQHGzVhrEoT8yaB2wtoeAG1P8E+PiMjJVC+cOgwAZHs0G7Ej/LRkbtdfXG4K2FAkdf7VSTIW0LHbexQAlC7E4+vSztOgZiX8DLRnRespcwEAAFZQOCB2AQAA8AgAnQEqKABBAD6dQJxJJaOioSzVXHCwE4lpABPXn2w6C3Oo+S/sqDmsWoZiH9Zt+H+afkcioFGpzc13WuEmja3p8K8RyYArE5Z9RdNuZyAA/t1JoFGje1c7ACd/4srf9DdDIumfJcSyqqCCL+F8T/6CjM7unB5jvnf1vp6Oh+aKj6K2Cy7M+Ag+OJ+4OEWnmP4KGPKYLbaun1yFEY0/T5jw4p88GKa7XOZP8iWvCGP8ktofKbe8jxgAAYAW6/0DNI6Fb1kHYPZl5j7nPXcM97UTKJsKX9OiR03nua+YcMN/Qy7tfCCced8Uo7FvIyOQEuP45XgU48ru2FpibCW7tbnPpwBBWRiEZjZl5kOYk6B+vn354RbssuOX+AWafzfSkW19R0kqBsvne5bydHpoFGzKhZbSqI8yMiV38r1VX96jlV0Q8H8dYnp8f2vN29dk5M38/KIYmKTLz+v0P97wylEcvhuzKlUDHFIzodl93En+pegQAAA=);
    position: absolute;
    top: -2rem;
    right: 1rem;
    width: 2rem;
    height: 100%;
    background-size: 2rem;
    background-repeat: no-repeat;
    z-index: 2;
    background-position: 50% 0;
    transition: 0.5s;
    align-items: center;
    transform-origin: top;
    transform: rotate(-30deg);
}
aside .aside_music.netcloudmusic_play .music_start_icon:before {
    transform: rotate(-10deg);
}
aside .aside_music .music_start_icon:after {
    content: "";
    background-image: url(data:image/webp;base64,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);
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate 5s linear infinite paused;
}
aside .aside_music svg{
    width: 5rem;
    cursor: pointer;
    fill: #e60026;
}
aside .music_card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
    position: fixed;
    right: var(--margin);
    bottom: -10rem;
    z-index: 10;
    width: 18rem;
    box-shadow: var(--box-shadow);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
aside .music_card .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 3rem;
    justify-content: center;
}
aside .music_card .right{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
}
aside .music_card .middle{
    font-size: 1.1rem;
}
aside .music_card .left svg{
    width: 2rem;
    cursor: pointer;
    fill: var(--theme-60);
    animation: rotation 10s linear infinite;
    -webkit-animation: rotation 10s linear infinite;
}
aside .music_card .right svg{
    fill: var(--B);
    cursor: pointer;
}
/* 文章页侧栏目录 */
#post_menu {
    max-height: 30rem;
    overflow-x: auto;
}
#post_menu::-webkit-scrollbar {
    width: 3px;
}
#post_menu::-webkit-scrollbar-thumb {
    background: var(--theme-60);
}
#post_menu span {
    display: flex;
    color: var(--main);
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    align-items: center;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 2rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
#post_menu span:hover {
    background: var(--theme-60);
    color: #fff;
}
#post_menu span:hover i{
    color: #fff;
}
#post_menu i{
    color: var(--theme-30);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
article span[id^='menu'] {
    position: absolute;
}






/* pages */
.links_part_grid {
    display: grid;
    gap: var(--margin);
    margin-bottom: var(--margin);
    grid-template-columns: repeat(auto-fill,minmax(12.5rem,1fr));
}
.links_part_grid .cat_block{
    margin-bottom: 0;
}
.links_part_grid_item {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    gap: 1rem;
}
.links_part_grid_item .links_description {
    font-size: 0.9rem;
    color: var(--B);
}
.links_part_grid_item .links_author {
    font-size: larger;
    font-weight: bold;
}


.link_sq_part {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.link_sq_part label {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    width: 100%;
}
.link_sq_part .item{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}
@media (max-width:650px) {
    .link_sq_part .item{
        flex-direction: column;
    }
}



.little_card_title{
    display: none;
}
.calendar_card {
    display: none;
}
table.calendar {
    width: 100%;
    color: var(--main);
}
table.calendar tr {
    display: flex;
}
table.calendar tr th {
    flex: 1;
    line-height: 2.5rem;
    color: var(--B);
}
table.calendar tr td {
    text-align: center;
    color: var(--C);
    padding: 0.5rem 0 1.5rem;
    margin: 0.1rem 0;
    border: 1px solid #fff0;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    cursor: default;
}
table.calendar tr td .daynum {
    letter-spacing: 0;
}
table.calendar tr td a {
    letter-spacing: 0;
    color: var(--theme-80);
}
table.calendar tr td.today {
    background: var(--theme-80);
    color: #fff;
    box-shadow: 0px 7px 12px 0px var(--theme-30);
}
table.calendar tr td.today a{
    color: #fff;
}
table.calendar tr td:after{
    white-space: nowrap;
    position: relative;
    display: inline-block;
    font-size: 0.5rem;
    pointer-events: none;
    text-align: center;
    color: var(--B);
    height: 0;
}
table.calendar td.today:after {
    content: "今天";
    color: #fff;
}
table.calendar tr td[rel='01-01']:after{content: "元旦";}
table.calendar tr td[rel='02-14']:after{content: "情人节";}
table.calendar tr td[rel='03-12']:after{content: "植树节";}
table.calendar tr td[rel='04-01']:after{content: "愚人节";}
table.calendar tr td[rel='05-01']:after{content: "劳动节";}
table.calendar tr td[rel='05-04']:after{content: "青年节";}
table.calendar tr td[rel='06-01']:after{content: "儿童节";}
table.calendar tr td[rel='07-01']:after{content: "建党节";}
table.calendar tr td[rel='08-01']:after{content: "建军节";}
table.calendar tr td[rel='09-10']:after{content: "教师节";}
table.calendar tr td[rel='10-01']:after{content: "国庆节";}
table.calendar tr td[rel='11-11']:after{content: "光棍节";}
table.calendar tr td[rel='12-25']:after{content: "圣诞节";}








.cat_guidang {
    display: flex;
    flex-direction: row;
    gap: var(--margin);
    margin-top: var(--margin);
}
.cat_guidang .cat_guidang_posts {
    width: 100%;
    overflow-y: auto;
}
.cat_guidang .cat_guidang_years {
    width: 10rem;
    display: flex;
    flex-direction: column;
    gap: var(--margin);
    position: sticky;
    height: 100%;
}
.cat_guidang .cat_guidang_years .cat_guidang_year {
    height: auto;
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: bold;
    padding: 0.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.cat_guidang .cat_guidang_month {
    display: block;
    margin: 1.5rem 0.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}
.cat_guidang .cat_guidang_day {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0.5rem;
    flex-direction: column;
    border: 1px dashed #fff0;
    border-top-color: var(--A);
    border-radius: 0.5rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.cat_guidang .cat_guidang_day_date {
    color: var(--B);
    font-size: 0.75rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.cat_guidang .cat_guidang_day_date .item{
    display: flex;
    align-items: baseline;
}
.cat_guidang .cat_guidang_day_title{
    display: flex;
    gap: 0.2rem;
}






/* 跳动两下动画 */
@keyframes jump{0%,to{transform:translateY(0)}30%{transform:translateY(-2px)}60%{transform:translateY(2px)}80%{transform:translateY(-1px)}90%{transform:translateY(1px)}}
@-webkit-keyframes jump{0%,to{transform:translateY(0)}30%{transform:translateY(-2px)}60%{transform:translateY(2px)}80%{transform:translateY(-1px)}90%{transform:translateY(1px)}}
@-moz-keyframes jump{0%,to{transform:translateY(0)}30%{transform:translateY(-2px)}60%{transform:translateY(2px)}80%{transform:translateY(-1px)}90%{transform:translateY(1px)}}

/* 音乐自转 */
@keyframes rotation {0% {-webkit-transform: rotate(0deg);}100% {-webkit-transform: rotate(360deg);}}


.anniu_on {
    background: var(--theme-80);
    color: #fff;
    box-shadow: 0px 7px 12px 0px var(--theme-30);
    pointer-events: none;
}

html.darkmode {
    --main-color: 232 243 255;
    --under-background: #333742;
    --background: #222734;
    filter: brightness(0.8);
    -webkit-filter: brightness(0.8);
}



/* 高度 */
@media (max-height:800px) {
    #post_menu {
        max-height: 20rem;
    }
}
@media (max-width:1300px) {
    .main_sidebar {
        display: none;
    }
    .cat_menu {
        flex-direction: column;
        align-items: center;
    }
}





@media (max-width:650px) {
    html {
    	--radius: 0.5rem;
    	--margin: 1rem;
    }
    .main_screen {
        margin: var(--margin) var(--margin) calc(6 * var(--margin));
    }
    .cat_comment_respond_form .head {
        flex-direction: column;
    }
    .postlist_abstract{
        -webkit-line-clamp: 4;
    }
    .postlist_out.is_post_mode .postlist_article .post_content {
        height: 100%;
        aspect-ratio: 0;
        margin-bottom: 1rem;
    }
    .postlist_out.is_list_mode .postlist_tags {
        display: none;
    }
    .cat_menu {
        padding: 0;
        margin: 0;
    }
    .cat_menu .left {
        display: flex;
        position: fixed;
        left: 0;
        right: auto;
        top: 0;
        bottom: 0;
        z-index: 50;
        width: 20rem;
        max-width: 80vw;
        height: 100%;
        padding: var(--margin);
        transform: unset;
        overflow-y: auto;
        justify-content: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        background: var(--background);
        left: -20rem;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }
    .cat_menu .left .item {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        border-top: 1px dashed var(--A);
        width: 100%;
        padding: 1rem 0;
    }
    .cat_menu .left .item .bottom_infos{
        display: block;
        font-size: 0.9rem;
        color: var(--B);
        padding: 0.5rem;
    }
    .cat_menu .left .item .bottom_infos a{
        color: var(--B);
        padding: 0;
    }
    .cat_menu .item:hover:after {
        opacity: 0;
    }
    .cat_menu .left .item:first-child {
        border-top: unset;
    }
    .cat_menu .left .item.arrow:after{
        content: '';
    }
    .cat_menu .item .mainmenu_nav_child:before{
        content: '';
        position: absolute;
        top: 0;
        left: -0.5rem;
        width: 0.2rem;
        height: 100%;
        background: var(--theme-30);
    }
    .cat_menu .item .mainmenu_nav_child {
        flex-direction: row;
        flex-wrap: wrap;
        position: relative;
        opacity: 1;
        padding: 0;
        margin-left: 1.5rem;
        visibility: visible;
        gap: 0.5rem;
        box-shadow: unset;
        transform: unset!important;
    }
    .cat_menu .item .mainmenu_nav_child li {
        width: auto;
    }
    .cat_menu .item .mainmenu_nav_child a {
        width: auto;
        box-shadow: var(--box-shadow);
        margin: 0.5rem
    }
    .cat_menu .right{
        padding: 0.75rem;
        background: var(--background);
        box-shadow: var(--box-shadow);
        border-radius: 2.5rem;
        position: fixed;
        bottom: 0;
        gap: 1rem;
        margin-bottom: var(--margin);
        max-width: 90vw;
    }
    .cat_menu .right .anniu{
        width: 2.5rem;
        height: 2.5rem;
        line-height: 1.6rem;
        display: flex;
        border-radius: 50%;
        box-shadow: var(--box-shadow);
        justify-content: center;
        align-items: center;
    }
    .cat_menu .right .anniu:active{
        box-shadow: inset var(--box-shadow);
    }
    .cat_menu .right .anniu svg{
        width: 1.2rem;
    }
    .mobile_menu{
        display: block;
    }
    
    .menu_off{
        width: 100vw;
        height: 100vh;
        background: var(--A);
        display: block;
        position: fixed;
        inset: 0;
        left: -100vw;
        backdrop-filter: blur(0.5rem);
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }
}
















@media screen and (min-width: 650px) {
    *[cat_title] {
        overflow: hidden;
        position: relative;
    }
    *[cat_title]:before, *[cat_title]:after {
        position: absolute;
        z-index: 10;
        opacity: 0;
        transform: translate3d(-50%, 0, 0);
        transition: 300ms ease;
    }
    *[cat_title]:before {
        content: attr(cat_title);
        top: calc(-1.5em - 6px - 5px);
        left: 50%;
        padding: 3px 6px;
        line-height: 1.5;
        border-radius: 4px;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        font-size: 1rem;
        white-space: nowrap;
        box-sizing: content-box;
    }
    *[cat_title]:after {
        content: "\20";
        top: -5px;
        left: 50%;
        border: 5px solid transparent;
        border-top-color: rgba(0, 0, 0, 0.8);
    }
    *[cat_title]:hover {
        overflow: visible;
    }
    *[cat_title]:hover:before, *[cat_title]:hover:after {
        opacity: 1;
        transform: translate3d(-50%, -3px, 0);
    }
}
/* 下上淡入（card） */
@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}
@-webkit-keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}
@-moz-keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}
/* 左右摆动 */
@-webkit-keyframes horizontal{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}6%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}12%{-webkit-transform:translate(0,0);transform:translate(0,0)}18%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}24%{-webkit-transform:translate(0,0);transform:translate(0,0)}30%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}100%,36%{-webkit-transform:translate(0,0);transform:translate(0,0)}}
@keyframes horizontal{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}6%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}12%{-webkit-transform:translate(0,0);transform:translate(0,0)}18%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}24%{-webkit-transform:translate(0,0);transform:translate(0,0)}30%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}100%,36%{-webkit-transform:translate(0,0);transform:translate(0,0)}}
