@charset "utf-8";

article {
    position: relative;
    padding: 2rem 3rem var(--margin);
    color: var(--main);
    box-shadow: var(--box-shadow);
    background: var(--background);
    border-radius: var(--radius);
    text-align: justify;
    outline: 1px solid var(--color-grey);
}
.post_overtime {
    font-size: 0.9rem;
    color: var(--color-white);
    line-height: 1.5rem;
    height: auto;
    margin-bottom: var(--margin);
    background: linear-gradient(to right, var(--th_A), var(--th_B));
    padding: 0.5rem;
    opacity: 0.4;
    border-radius: var(--radius);
}
.post_end {
    font-size: 0.8rem;
    color: var(--colorF);
    padding-top: 2rem;
    line-height: 1.5rem;
}
.post_end a{
	margin: 0;
	color: var(--theme-60);
}
.post_end a:after{
	content: '';
}
.post_lovers_avatar {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 0.6rem;
    padding: var(--margin);
}
.post_lovers_avatar .post_likedavatar img{
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.2rem;
    vertical-align: bottom;
}
.post_nolikenumchange{
    font-size: 0.75rem;
}
article .Post_Like .anniu {
    color: var(--colorD);
    height: 1.5rem;
}
article .post_likeD_button i{
    color: var(--color-red);
    opacity: 0.6;
}
/* 文章页侧栏目录 */
#post_menu {
    max-height: 32rem;
    overflow-x: auto;
    padding-top: 0.5rem;
}
#post_menu::-webkit-scrollbar {
    width: 3px;
}
#post_menu::-webkit-scrollbar-thumb {
    background: var(--theme-60);
}
#post_menu span {
    display: flex;
    color: var(--main);
    padding: calc(0.5 * var(--gap));
    margin-right: 0.5rem;
    align-items: center;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
#post_menu span:hover {
    background: var(--theme-60);
    color: var(--color-white);
}
#post_menu span:hover i{
    color: var(--color-white);
}
#post_menu i{
    color: var(--theme-30);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
article span[id^='menu'] {
    position: absolute;
}
/* 相册预览弹窗 */
.Albumshow_anniu .ri-dashboard-line {
    display: block;
    transform: rotate(90deg);
}
#album_card {
    position: fixed;
    width: 100%;    
    height: 100%;
    flex-flow: column nowrap;
    align-items: center;
    gap: var(--margin);
    justify-content: flex-start;
    overflow-y: auto;
    background: unset;
    box-shadow: unset;
    border-radius: unset;
}
#album_card .title{
    font-size: 2rem;
    padding: 2rem 3rem var(--margin);
    align-items: baseline;
    display: flex;
    gap: 1rem;
}
#album_card .title h1{
    font-size: 2rem;
    display: inline;
}
#album_card::-webkit-scrollbar {
    width: 0;
}
/* 阅读模式 */
#read_card .title{
    font-size: 2rem;
    padding: 2rem 3rem var(--margin);
    color: var(--main-read);
    align-items: baseline;
    display: flex;
    gap: 1rem;
}
#read_card .title h1{
    font-size: 2rem;
    display: inline;
}
#read_card::-webkit-scrollbar {
    width: 0;
}
#read_card article {
    box-shadow: var(--box-shadow-read);
    background: var(--background-colorA-read);
    color: var(--main-read);
}
#read_card article .cat_block{
    background: var(--background-colorB-read);
    box-shadow: inset var(--box-shadow-read);
}
#read_card article table {
    border: 1px solid #ffdab7;
    box-shadow: inset var(--box-shadow-read);
}
#read_card article table tbody td {
    background: var(--background-colorB-read);;
}
#read_card article .post_lovers_avatar{
    display: none;
}
#cat_tanchuang_off.readmode_tanchuang_on {
    background: var(--background-colorB-read);
}
/* 文章标题 */
.post_title_area {
    display: flex;
    position: relative;
    flex-direction: column;
}
.post_title_area_top {
    position: relative;
}
.post_title_area_top .goods_block {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: var(--margin);
    margin: var(--margin) 0;
}
.post_title_area_top .goods_block .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post_title_area_top .goods_block .right .up{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.post_title_area_top .goods_block .right .up .post_title_area_title {
    padding: 1rem 0 0;
}
.post_title_area_top .goods_block .right .up h1{
    font-size: 2rem;
    line-height: 3rem;
}
.post_title_area_top .goods_block .right .up span.point{
    display: inline-block;
    margin: 0.25rem;
}
.post_title_area_top .goods_block .right .down{
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.post_title_area_top .goods_block .right .down a{
    color: var(--color-white);
    display: inline-block;
    padding: 0 0.75rem;
    word-break: break-all;
}
.post_title_area_top .album_clip{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
    border-radius: var(--radius);
    height: 20rem;
}
.post_title_area_top .Albumshow_anniu{
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 2rem;
    padding: 0.5rem;
    color: #fff;
    cursor: pointer;
}
.post_title_area_top .album_clip img{
    min-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.post_title_area_top cat_article_video{
    margin: 0;
    max-width: 100%;
}
.post_title_area_top .swiper .swiper-slide {
    line-height: 0;
}
.post_title_area_top .goods_block .swiper img{
    height: 20rem;
}
.post_title_area_top .swiper img,
.post_title_area_top cat_article_video iframe{
    max-height: 20rem;
    height: 100%;
    width: 100%;
}
.cat_post_top_video_items{
    padding: 0.5rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-direction: row;
}
.cat_post_top_video_items .item{
    color: var(--colorF);
    background: var(--color-grey);
    border: 1px solid var(--color-grey);
    border-radius: 0.2rem;
    padding: 0.5rem;
    word-break: keep-all;
    display: inline-block;
    line-height: 1rem;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_post_top_video_items .item_on{
    background: var(--theme-10);
    border: 1px solid var(--theme-10);
    pointer-events: none;
}
.cat_post_top_video_items .item:hover{
    background: var(--colorA);
    border: 1px solid var(--colorA);
}
#tourmap_post {
    height:20rem;    
    border-radius: var(--radius);
}
.post_title_area_bottom {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    word-break: keep-all;
    text-align: center;
}
.post_title_area_title {
    font-weight: bolder;
    font-size: 1.25rem;
    padding: var(--margin);
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    text-shadow: var(--text-shadow);
}
.post_title_area h1{
    font-weight: bolder;
    font-size: 1.5rem;
    line-height: 2.5rem;
    word-break: break-all;
    background: linear-gradient(to right, var(--th_A), var(--th_B));
    text-shadow: 1px 1px 3px var(--theme-30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.post_title_area_infos {
    font-size: 0.8rem;
    color: var(--colorE);
    cursor: default;
    text-shadow: 1px 1px 3px var(--colorB);
}
.post_title_area_infos a{
    color: var(--colorE);
}
/* QA */
.qa_buttons{
    display: flex;
    flex-wrap: wrap;
    gap: var(--margin);
    margin: var(--margin) 0;
}
.qa_buttons li {
    color: var(--theme-80);
    outline: 1px solid var(--theme-80);
    border-radius: var(--radius);
}
.qa_buttons li .anniu{
    border-radius: var(--radius);
}
.qa_buttons li.cat_comment_title {
    background: var(--theme-80);
    color: var(--background-color);    
    box-shadow: 0px 7px 12px 0px var(--theme-30);
}
.qa_buttons li.qa_has_off {
    color: var(--colorD);
    outline: 1px solid var(--colorD);
    box-shadow: var(--box-shadow);
    cursor: not-allowed;
}
.qa_buttons.underinfo{
    font-size: small;
    align-items: center;
    margin: 0;
    color: var(--colorD);
    margin-left: auto;
}
/* 文章正文 */
.cat_tips {
    position: relative;
    border-radius:var(--radius);
    color: #fff;
    line-height: 2rem;
    padding: 0.75rem 1.5rem;
    margin: var(--margin) 0;
}
.cat_tips_info {
    background: #20a0ff;
    background: -webkit-gradient(linear,left top,right top,from(#20a0ff),to(#20b8ff));
    background: -webkit-linear-gradient(left,#20a0ff,#20b8ff);
    background: linear-gradient(90deg,#20a0ff,#20b8ff);
}
.cat_tips_success {
    background: #61be33;
    background: -webkit-gradient(linear,left top,right top,from(#61be33),to(#8fce44));
    background: -webkit-linear-gradient(left,#61be33,#8fce44);
    background: linear-gradient(90deg,#61be33,#8fce44);
    text-shadow: 0 -1px #61be33;
}
.cat_tips_warning {
    background: #ff953f;
    background: -webkit-gradient(linear,left top,right top,from(#ff953f),to(#ffb449));
    background: -webkit-linear-gradient(left,#ff953f,#ffb449);
    background: linear-gradient(90deg,#ff953f,#ffb449);
    text-shadow: 0 -1px #ff953f;
    -webkit-animation: horizontal 2s ease infinite;
    animation: horizontal 2s ease infinite;
}
.cat_tips_error {
    background: #ff4949;
    background: -webkit-gradient(linear,left top,right top,from(#ff4949),to(#ff7849));
    background: -webkit-linear-gradient(left,#ff4949,#ff7849);
    background: linear-gradient(90deg,#ff4949,#ff7849);
    text-shadow: 0 -1px #ff4949;
    -webkit-animation: horizontal 0.5s ease infinite;
    animation: horizontal 0.5s ease infinite;
}
.cat_tips:before {
    color: #fff;
    border-radius: 50%;
    display: flex;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    left: -0.75rem;
    top: -0.75rem;
    -webkit-box-shadow: 0 0 0 2.5px #fff;
    box-shadow: 0 0 0 2.5px #fff;
    font-weight: bold;
    font-family: "remixicon";
    text-align: center;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}
.cat_tips_info:before {
    background: #20a0ff;
    background: -webkit-gradient(linear,left bottom,left top,from(#0092ff),to(#20b8ff));
    background: -webkit-linear-gradient(bottom,#0092ff,#20b8ff);
    background: linear-gradient(0deg,#0092ff,#20b8ff);
    content: "i";
}
.cat_tips_success:before {
    background: -webkit-gradient(linear,left bottom,left top,from(#52bb1d),to(#95d34b));
    background: -webkit-linear-gradient(bottom,#52bb1d,#95d34b);
    background: linear-gradient(0deg,#52bb1d,#95d34b);
    content: "\eb7b";
    text-shadow: 0 -1px #61be33;
}
.cat_tips_warning:before {
    background: -webkit-gradient(linear,left bottom,left top,from(#ff8f35),to(#ffc149));
    background: -webkit-linear-gradient(bottom,#ff8f35,#ffc149);
    background: linear-gradient(0deg,#ff8f35,#ffc149);
    content: "!";
    text-shadow: 0 -1px #ff953f;
}
.cat_tips_error:before {
    background: -webkit-gradient(linear,left bottom,left top,from(#ff3838),to(#ff7849));
    background: -webkit-linear-gradient(bottom,#ff3838,#ff7849);
    background: linear-gradient(0deg,#ff3838,#ff7849);
    content: "\eb98";
    text-shadow: 0 -1px #ff4949;
}

article h2,article h3,article h4,article h5,article h6 {
    position: relative;
    line-height: 2rem;
    padding: 1.5rem 0;
}
article h2 {
	font-size: 1.5rem;
    counter-increment: h2;
    counter-reset: h3;
}
article h3 {
	font-size: 1.35rem;
    counter-increment: h3;
    counter-reset: h4;
}
article h4 {
	font-size: 1.25rem;
    counter-increment: h4;
    counter-reset: h5;
}
article h5 {
	font-size: 1.15rem;
	padding: 1rem 0;
}
article h6 {
	font-size: 1.05rem;
	padding: 0.5rem 0;
}
article h2::before {
    color: var(--theme);
    font-size: smaller;
    letter-spacing: 0;
    padding-right: 0.5rem;
}
article h3::before {
    color: var(--theme);
    font-size: smaller;
    letter-spacing: 0;
    padding-right: 0.5rem;
}
article h4::before {
    color: var(--theme);
    font-size: smaller;
    letter-spacing: 0;
    padding-right: 0.5rem;
}
article h5::before {
	content: '#';
    color: var(--theme);
    font-size: smaller;
    padding-right: 0.5rem;
}
article h6::before {
	content: '##';
    color: var(--theme);
    font-size: smaller;
    padding-right: 0.5rem;
}
article .post_content>p {
    line-height: 2.5rem;
    word-break: break-all;
    font-size: 1rem;
    margin: 1rem 0;
    font-family: 'catfont';
}
article hr {
    color: var(--colorD);
    border: 0;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    position: relative;
    border-bottom: 2px dashed var(--theme-60);
    margin: 3rem 0;
}
/* 在head.php */
article hr::before {
    position: absolute;
    line-height: 0px;
    right: 0;
}
article del,article s {
    color: var(--colorC);
}
article strong {
    color:var(--theme);
}
article u {
    border-bottom: 2px solid var(--theme-80);
    text-decoration: unset;
    margin: 0 0.25rem;
}
article .e {
    border-bottom: 2px dashed var(--theme-80);
    text-decoration: unset;
}
article .cat_copy {
    border-bottom: 2px dotted var(--theme-80);
    text-decoration: unset;
}

article .cat_copy:before{
    content: '\f1c7 ';
    font-family: "remixicon";
    font-size: 0.9rem;
    line-height: 0rem;
}
article .cat_copy,
article a {
    margin: 0 0.25rem;
    color: var(--theme);
    position: relative;
    word-break: break-all;
    cursor: pointer;
    background: linear-gradient(90deg,var(--theme-60),var(--theme-60)) no-repeat left 100% / 0 2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article a:hover {
    background: linear-gradient(90deg,var(--theme-60),var(--theme-60)) no-repeat left 100% / 100% 2px;
}

article sup a:after,
article .footnotes a:after{
    content: ' ';
}
article a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
article blockquote {
    border-left: 4px solid var(--theme-80);
    padding: calc(0.5 * var(--margin)) var(--margin);
    border-radius: var(--radius);
    margin: var(--margin) 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    line-height: 2.5rem;
    word-break: break-all;
    font-size: 0.9rem;
    background: rgb(181 181 181 / 10%);
}
article blockquote:hover {
    border-left-color: var(--theme-30);
}
article code:not([class]) {
    padding: 0.2rem 0.3rem;
    margin: auto 0.2rem;
    font-size: 0.75rem;
    vertical-align: bottom;
    background: var(--colorF);
    border-radius: 0.25rem;
    color: #fff;
    font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;
    letter-spacing: 0;
}

/* 简单时间轴 */
article .post_timeline_out{
    line-height: 2.5rem;
    margin: 1rem 0 3rem 0;
}
article .post_timeline {
    position: relative;
}
article .post_timeline .text{
    display: block;
    border-radius: var(--radius);
    margin: -2.5rem 0 -2.5rem 2.5rem;
    line-height: 1.75rem;
    font-size: 0.9rem;
    padding: 0.5rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article .post_timeline .text:hover{
    background: var(--colorA);
}
article .post_timeline:before {
    content: '';
    font-family: "remixicon";
    font-size: 0.9rem;
    color: var(--theme);
    vertical-align: middle;
    padding: 0 0.55rem;
}
article .timeline_title {
    font-weight: bold;
}

article .post_timeline:after {
    background: var(--theme-30);
    content: '';
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    width: 0.1rem;
    height: calc(100% + 0.4rem);
    margin-left: -0.05rem;
}
article .timeline_text:not(:first-child) span:after {
    background: var(--theme-30);
    content: '';
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    width: 0.1rem;
    height: 0.75rem;
    margin-left: -0.05rem;
}
article .post_timeline:first-child:before{
    content: '\f050';
}
article .post_timeline:hover:first-child:before{
    content: '\f04f';
}
article .post_timeline_out .post_timeline:not(.timeline_text):last-child:after {
    display: none;
}
article .post_timeline_out .timeline_text:last-child:after{
    height: calc(100% - 2rem);
}
article .timeline_title:before,
article .timeline_0:before {
    content: '\eb7d';
}
article .timeline_title:hover:before,
article .timeline_0:hover:before {
    content: '\eb7c';
}
article .timeline_1:before {
    content: '\eb81';
}
article .timeline_1:hover:before {
    content: '\eb80';
}
article .timeline_2:before {
    content: '\eb97';
}
article .timeline_2:hover:before {
    content: '\eb96';
}
article .timeline_3:before {
    content: '\ea11';
}
article .timeline_3:hover:before {
    content: '\ea10';
}
article .timeline_4:before {
    content: '\ee57';
}
article .timeline_4:hover:before {
    content: '\ee56';
}
article .timeline_5:before {
    content: '\ee59';
}
article .timeline_5:hover:before {
    content: '\ee58';
}
article .timeline_6:before {
    content: '\f045';
}
article .timeline_6:hover:before {
    content: '\f044';
}
article .timeline_7:before {
    content: '\eca1';
}
article .timeline_7:hover:before {
    content: '\eca0';
}
/* 列表 */
article ol li,
article ul li {
    line-height: 1.75rem;
    transition: color 0.2s;
    font-size: 0.9rem;
    margin: 0 0 0 2rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article ul li:hover {
    background: var(--colorA);
}
article ul li::before {
    content: '\f050';
    font-family: "remixicon";
    color: var(--theme-60);
    font-size: 0.75rem;
    margin-right: 0.5rem;
    width: 1rem;
    border-radius: var(--radius);
    position: absolute;
    transform: translateX(-1.5rem);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article ul li:hover::before {
    color: var(--theme);
}
article ol li:hover {
    background: var(--colorA);
}
article ol li::before {
    content: counter(list-item) ".";
    color: var(--theme-60);
    margin-right: 0.5rem;
    position: absolute;
    transform: translateX(-1.5rem);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article ol li:hover::before {
    color: var(--theme);
}
/* 表格 */
article table {
    margin: 1rem 0;
    border: 1px solid var(--background);
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--box-shadow);
}
article table thead {
    background: var(--theme-60);
    color: #fff;
}
article table thead th {
    padding: 0.5rem;
}
article table tbody td {
    border: 1px dashed var(--theme-30);
    padding: 0.5rem;
    word-break: break-all;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
cat_article_hide{
    display: block;
    background: repeating-linear-gradient(135deg,var(--theme-10),var(--theme-10) 1rem,var(--background) 0,var(--background) 2rem)!important;
    text-align: center;
    padding: 5rem!important;
    text-indent: 0;
    color: var(--theme);
    border-radius: var(--radius);
}
article .cat_article_show_word {
    color: var(--colorE);
    font-size: 0.8rem;
    line-height: 2rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article .cat_hideshowbox_open {
    cursor: pointer;
    font-size: 1.5rem;
}
article .cat_hideshowbox_open .ar_hide_icon {
    color: #fff;
    display: none;
}
article .cat_hideshowbox_text {
    display: none;
    padding: 1rem;
    border-top: 1px solid var(--colorA);
    line-height: 2rem;
}
article .cat_article_hideshow,
article .cat_article_download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article .cat_block:not(.cat_article_largecard){
    font-size: 0.9rem;
}
article .cat_block .cat_article_download_key {
    color: var(--colorD);
    font-size: 0.75rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}
article .cat_block:hover .cat_article_download_key {
    opacity: 1;
}
article .cat_block a {
    color: var(--main);
}
article .cat_block a:after {
    content: '';
}
article .cat_article_largecard {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    margin: var(--margin) auto;
    gap: 0.5rem;
    width: fit-content;
    padding: calc(2 * var(--margin));
}
article .cat_article_largecard img{
    max-width: 12rem;
    border-radius: var(--radius);
    object-fit: cover;
}
article .cat_article_bigcard {
    display: flex;
    flex-direction: row;
}
article .cat_article_bigcard .left{
    position: relative;
    overflow: hidden;
    float: left;
    width: 13rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: var(--radius);
}
article .cat_article_bigcard .left .postlist_img{
    filter: brightness(1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article .cat_article_bigcard:hover .left .postlist_img{
    filter: brightness(0.5);
}
article .cat_article_bigcard .left .logo{
    position: absolute;
    font-size: 3rem;
    color: var(--color-white);
    opacity: 0.5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
article .cat_article_bigcard:hover .left .logo{
    opacity: 1;
}
article .cat_article_bigcard .postlist_right_title {
    margin: 0;
    align-items: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 2rem;
    overflow: hidden;
}
article .cat_article_bigcard .postlist_right_info {
    line-height: 1.5rem;
    padding: 0;
    color: var(--main);
    font-size: 0.9rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}
article .cat_article_bigcard .postlist_right {
    padding: 0.4rem var(--margin);
    gap: 0.5rem;
}
article .cat_article_largecard .type,
article .cat_article_bigcard .type{
    color: var(--theme);
    border: 1px solid;
    padding: 3px 6px;
    font-size: 0.75rem;
    border-radius: 0.3rem;
    margin: 0 0.25rem 0 0;
    line-height: 0.75rem;
    display: flex;
    align-items: baseline;
    height: 1.2rem;
    flex-shrink: 0;
}
article .cat_article_largecard .cat_article_largecard_info {
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    -webkit-line-clamp: 7;
    bottom: 0;
    padding: 0.5rem 1rem 0.2rem;
    background: var(--background);
    backdrop-filter: var(--blur);
    border-radius: var(--radius);
}
article .cat_article_largecard img:hover~.cat_article_largecard_info{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
article .cat_article_bigcard .back_img {
    border-radius: var(--radius);
    width: 100%;
    height: 10rem;
    object-fit: cover;
    opacity: 0.5;
}
article .cat_article_bigcard .avatar {
    width: 1.2rem;
    height: 1.2rem;
    padding: 0;;
    border-radius: 50%;
}
article .cat_post_checkbox{
    color:var(--theme);
    cursor: not-allowed;
}
article .copy-to-clipboard-button{
    box-shadow: none!important;
    background: unset!important;    
    color: var(--theme)!important;
}
article .copy-to-clipboard-button span:before {
    content: '\eb91';
    color: var(--theme);
    font-size: 0.9rem;
    font-family: 'remixicon';
}
article .code-toolbar {
    display: grid;
}
article pre[class*=language-].line-numbers {
    font-size: 0.75rem;    
    border-radius: var(--radius);
}
article pre[class*=language-].line-numbers .code-toolbar code span {
    word-break: break-all;
}
article .prism_name {
    padding-top: 1rem;
    display: flex;
    font-size: 0.9rem;
    align-items: baseline;
    vertical-align: middle;
    gap: 0.25rem;
    color: var(--theme);
}
article .article_botton {
    text-indent: 0;
    display: inline-block;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    word-break: break-word;
}
/* 文章图片 */
.gallery_for_imagealt{
    position: relative;
    display: flex;
    justify-content: center;
}


.cat_post_album_out_grid {
    display: grid;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    grid-template-columns: repeat(auto-fill,minmax(15rem,1fr));
    grid-gap: var(--margin);
}
.cat_post_album_out_grid img{
    box-shadow: var(--box-shadow);
    margin-bottom: var(--margin);
    display: block;
    max-width: 100%;
    border-radius: var(--radius);
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}



/* 相恋 */
.cat_welove_things .cat_block {
    margin-bottom: var(--margin);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat_welove_things .cat_block .words {
    display: flex;
    flex-direction: column;
}
.cat_welove_things .cat_block .words time {
    font-size: 0.75rem;
    color: var(--colorB);
}
.cat_welove_things .cat_block .no{
    font-size: 1.5rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: var(--colorA);
}
.cat_welove_things .cat_block .yes{
    font-size: 1.5rem;
    color: var(--theme);
}
.cat_welove_things .cat_block:hover .no{
    color: var(--colorF);
}
.cat_welove_things .cat_block .del{
    text-decoration: line-through;
    color: var(--colorC);
}

/* 文章内的瀑布流 */
/* cat_post_album_cube在main.css */
cat_post_album_column {
    display: flex;
    flex-wrap: wrap;
    gap: var(--margin);
    margin: var(--margin) 0;
}
cat_post_album_column cat_post_image {
    flex-grow: 1;
}
cat_post_album_column img {
    box-shadow: var(--box-shadow);
    display: block;
    max-width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    transition: 0.5s;
    height: 12rem;
    max-height: 30vw;
    flex-grow: 1;
}
cat_post_album_column .isfancy {
    flex-grow: 1;
    display: flex;
}
cat_post_album_flex {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(15rem,1fr));
    grid-gap: var(--margin);
    margin: var(--margin) 0;
}
/* 文章图片 end */



.katex-html {
    display: none;
}


[class*=cat_highlight_]{
    color: black;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    margin: 0 0.2rem;
}
.cat_highlight_yellow {
    background: yellow;
}
.cat_highlight_green {
    background: #76EE00;
}
.cat_highlight_pink {
    background: #ff7890;
}
.cat_highlight_black {
    background: black;
}

