@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: 0.5rem;
	height: 0.5rem;
}
::-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 {
	/* 默认颜色 */
	font-size:16px;
	/* --theme在head.php */
	--main-color: 52 73 94;
	--main: rgb(var(--main-color));
	--theme: #ff6a6a;
	--theme-10: #ff6a6a1a;
	--theme-30: #ff6a6a4a;
	--theme-60: #ff6a6a99;
	--theme-80: #ff6a6acc;
    --C: rgb(var(--main-color) / 70%);
    --B: rgb(var(--main-color) / 40%);
    --A: rgb(var(--main-color) / 20%);
    --O: rgb(var(--main-color) / 5%);
    --P: rgb(var(--main-color) / 3%);
    --under-background: #f7f7f7;
    --background: #fff;
    --box-shadow: 0px 7px 15px 0px #a48fff30;
    --title-shadow: 0px 0px 3px #ffffff;
    --box-shadow-thin: 0px 3px 20px 0px rgb(199 186 255 / 30%);
    --box-shadow-grey: 0px 2px 6px 0px rgba(0,0,0,0.1);
    
	/* 默认样式 */
	--radius: 0.5rem;
	--margin: 1.5rem;
}
html, body {
    scroll-behavior: smooth;
    overflow-y: scroll;
}
html.darkmode {
    --main-color: 232 243 255;
    --under-background: #0e131cd9;
    --background: #222734;
    filter: brightness(0.8);
    -webkit-filter: brightness(0.8);
	--box-shadow-thin: 0px 3px 20px 0px rgb(0 0 0 / 30%);
}				
body {
    font-family: user,-apple-system,BlinkMacSystemFont,PingFang SC,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;
}
body:before {
    content: '';
    background: var(--under-background);
    transition: opacity 0.3s ease;
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 1;
}
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.25rem 0.5rem;
    height: auto;
    line-height: 1.25rem;
    background: var(--P);
    color: var(--main);
    width: 100%;
}
input::focus,
textarea::focus,
select::focus {
    background: var(--O);
}
textarea {
    min-height: 4rem;
	resize: vertical;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--B);
}
img{
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
img.lazyloading {
    -webkit-filter: blur(2rem);
    filter: blur(2rem);
    opacity: 0;
}
img.lazyloaded {
    filter: blur(0);
    -webkit-filter: blur(0);
    opacity: 1;
}
.avatar {
    width: 3rem;
    height: 3rem;
    vertical-align: middle;
    border-radius: 50%;
    padding: 0.2rem;
    box-shadow: var(--box-shadow-thin);
    background: var(--background);
    -o-object-fit: cover;
    object-fit: cover;
}
main{
    flex: 1;
    width: calc(100% - 40rem - 2 * var(--margin));
    margin: auto;
    position: absolute;
    left: 20rem;
    right: 20rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.show_dark {
	display:none;
}
html.darkmode .show_dark {
	display:block;
}
html.darkmode .show_light {
	display:none;
}
#comment_tanchuang_off,
#cat_tanchuang_off {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 850;
    margin: auto;
    text-align: center;
    background: rgb(180 180 180 / 50%);
    backdrop-filter: blur(3rem);
}
.cat_block {
    padding: var(--margin);
    color: var(--main);
    background: var(--background);
    border-radius: var(--radius);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.index_title_block {
    margin: var(--margin) 0;
    position: relative;
    height: calc(100dvh - 2 * var(--margin));
    padding: 0;
    animation: fadeInDown 0.5s .2s ease both;
    -webkit-animation: fadeInDown 0.5s .2s ease both;
    -moz-animation: fadeInDown 0.5s .2s ease both;
    animation-delay: 0.5s;
}
.index_title_block video,
.index_title_block img{
    min-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    background:var(--background);
}
.cat_title_mengban{
    border-radius: var(--radius);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;top: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAKUlEQVQImU3IMREAIAgAwJfNkQCEsH8cijjpMf6vnXlQaIiJFx+omEBfmqIEZLe2jzcAAAAASUVORK5CYII=);
}
@media (max-width:650px) {
    .index_title_block{
		margin-top: 0;
		height: 100dvh;
		width: calc(100% + 2 * var(--margin));
		left: calc(0px - var(--margin));
	    border-radius: 0;
    }
	.index_title_block video,
	.index_title_block img,
	.cat_title_mengban {
	    border-radius: 0;
	}
}

.title_block {
    margin: calc(2 * var(--margin)) 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title_block_title {
    gap: 2rem;
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
}
.title_block_title h1{
	margin-top: 3rem;
    font-size: 1.75rem;
    color: var(--main);
    /* text-shadow: var(--title-shadow); */
    text-align: center;
    max-width: 80vw;
    animation: fadeInUp 0.5s .2s ease both;
    -webkit-animation: fadeInUp 0.5s .2s ease both;
    -moz-animation: fadeInUp 0.5s .2s ease both;
    animation-delay: 0.8s;
    height: auto;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
	gap: 0.5rem;
}
.title_block_title h1 i{
    font-weight: normal;
    font-size: 2rem;
}
.title_block_title h1 svg{
    width: 2rem;
}
.title_desc_area {
    display: flex;
    gap: 0.5rem;
    max-width: 80%;
    animation: fadeInUp 0.5s .2s ease both;
    -webkit-animation: fadeInUp 0.5s .2s ease both;
    -moz-animation: fadeInUp 0.5s .2s ease both;
    animation-delay: 1.0s;
}
.title_desc_area_logo {
	flex-shrink: 0;
}
.title_desc_area_logo img {
    width: 1rem;
	vertical-align: bottom;
}
.title_desc_area_logo i {
    color: var(--theme);
	vertical-align: bottom;
}
.title_desc_area_words {
    color: var(--C);
    text-align: left;
    font-weight: bold;
    line-height: 1.75rem;
    height: 5.25rem;
    word-break: break-all;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.title_anniu_area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    gap: 1rem;
}
.title_anniu_area .anniu{
	display: flex;
	align-items: center;
    gap: 0.2rem;
    background: var(--background);
    padding: 0.4rem 0.5rem;
    border-radius: var(--radius);
    color: var(--main);
    cursor: pointer;
    box-shadow: var(--box-shadow-thin);
    animation: fadeInUp 0.5s ease both;
    -webkit-animation: fadeInUp 0.5s ease both;
    -moz-animation: fadeInUp 0.5s ease both;
    animation-delay: calc(1.2s + (0.1s * (var(--i) - 1)));
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.title_anniu_area .anniu:not(a){
    cursor: default;
}	
.title_anniu_area .anniu i {
    font-size: 1rem;
    color: var(--theme);
}
.title_anniu_area .anniu svg {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    width: 1rem;
    fill: var(--theme);
}
.title_anniu_area .anniu img {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
}
.title_anniu_area a.anniu:active{
    box-shadow: inset var(--box-shadow-thin);
}
.title_anniu_area .anniu.ischeck {
	color: #fff;
	background: var(--theme);
	pointer-events: none;
}
.title_anniu_area .anniu.ischeck i{
	color: #fff;
}
.title_anniu_area .anniu.ischeck svg{
	fill: #fff;
}
.title_anniu_area .anniu.child{
	padding-left: 0.75rem;
}
.title_anniu_area .anniu.child:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 25%, calc(0.25* var(--margin)) 50%, 0% 75%);
    background-color: var(--theme-60);
    opacity: 0.5;
}
.title_anniu_area .anniu.child.ischeck:before {
    background-color: #fff;
}
.title_anniu_area_span span.anniu {
	cursor: pointer;
}



























/* 分页 */
.cat_pagination_page{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--margin);
    gap: 0.5rem;
}
.cat_pagination_page li.active span {
    background: var(--theme);
    color: #fff;
    font-weight: 500;
}
.cat_pagination_page span{
    color: var(--main);
    cursor: pointer;
    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 li.active span:hover{
    cursor: not-allowed;
}


.cat_large section.cat_top {
    z-index: 9;
    display: flex;
    gap: var(--margin);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}
.cat_large section.cat_top .logo {
    position: relative;
}
.cat_large section.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_large section.cat_top .logo img{
    width: 5rem;
    height: 5rem;
}
.cat_large section.cat_top .words{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}
.cat_large section.cat_top .webtitle{
    font-size: 1.25rem;
    text-align: center;
    font-weight: bold;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_large section.cat_top .description{
    position: relative;
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
    line-height: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--main);
    padding-top: 0.5rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_large section.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(--background)),color-stop(35%,var(--main)),color-stop(65%,var(--main)),color-stop(100%,var(--background)));
}

.cat_large section.cat_menu_top {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 0;
}
.cat_large section.cat_menu_top .item{
    width: 100%;
    text-align: center;
    position: relative;
    cursor: pointer;
    border-right: 1px solid var(--A);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cat_large section.cat_menu_top .item:last-child{
    border-right: unset;
}
.cat_large section.cat_menu_top .item:hover {
    color: var(--theme);
}
footer .cat_large section {
    display: none;
}
footer .cat_large section:first-of-type {
    display: flex;
}







    
.cat_menu{
    position: relative;
    width: 100%;
    height: 100%;
    gap: 1rem;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    display: none;
    overflow-y: auto;
}
.cat_small .anniu.percentage{
    display: none;
}
footer .cat_small .anniu[cat_title_left='目录'] {
    display: none;
}
header .cat_menu:first-of-type {
    display: flex;
}
header .cat_block,
footer .cat_block{
    box-shadow: var(--box-shadow-thin);
}
/*
body:has(main #tourmap_page) header {
  left: -16rem;
}
body:has(main #tourmap_page) footer {
  right: -16rem;
}
@media (max-width:650px) {
    body:has(main #tourmap_page) header{
        left: -20rem;
    }
    body:has(main #tourmap_page) footer{
        right: -20rem;
    }
}
*/
.cat_map_anniu_position {
    position: fixed;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: var(--margin);
}
.cat_map_anniu {
    background: var(--under-background);
    padding: 0.75rem 1rem;
    border-radius: 1.05rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}
.cat_map_anniu>span{
    background: var(--O);
    border-radius: 0.75rem;
    padding: 0.5rem;
    color: var(--main);
    font-size: 0.9rem;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.cat_map_anniu>span:hover{
    color: #fff;
    background: var(--theme-60);
}
.cat_map_anniu>span.clickon {
    color: #fff;
    background: var(--theme);
}
#map-loading {
	position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	opacity: 0.5;
}
.amap-control.amap-scalecontrol {
	position: fixed !important;
    bottom: 6rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: unset;
    color: var(--main);
    z-index: 1000;
}
.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0,0,0,0.1);
	border-radius: 50%;
	border-top-color: #1890ff;
	animation: spin 1s ease-in-out infinite;
	margin-right: 10px;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}
.amap-marker:hover {
	transform: scale(1.2);
	transition: transform 0.2s;
	z-index: 100 !important;
}
.catmap_avatar .avatar {
	width: 2.5rem;
	height: 2.5rem;
}
.catmap_title{
    margin: 0.2rem 0 1rem;
}
.catmap_time{
    margin: 0.5rem 0;
    color: var(--B);
    font-size: 0.8rem;
}
.catmap_abstract{
    line-height: 1.5rem;
    word-break: break-all;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--C);
    max-width: 12rem;
    margin: 1rem 0;
}





.cat_menu .item {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: flex-start;
    flex-direction: row;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
}
.cat_menu .item.folder_childern{
    flex-direction: column;
    gap: 1rem;
    margin-left: 1rem;
    width: calc(100% - 1rem);
    border-left: 2px solid var(--O);
    padding-left: 1rem;
}
.cat_menu .item .title {
    display: inline-flex;
    position: relative;
    text-align: left;
    align-items: center;
    width: 100%;
    padding: 0.5rem;
    border-radius: var(--radius);
    /* box-shadow: var(--box-shadow-thin); */
    font-size: 14px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.cat_menu .item .title:hover,
.cat_menu .item .title.ischeck {
    background: var(--theme-60);
    color: #fff;
}
.cat_menu .item .title.ischeck{
    background: var(--theme);
    pointer-events: none;
}
.cat_menu .item .title .menu_icon{
    margin-right: 0.5rem;
}
.cat_menu .item .title i {
    color: var(--B);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
}
.cat_menu .item .title img{
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.1rem;
}
.cat_menu .item .title svg{
	color: var(--B);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    width: 1.15rem;
    display: flex;
}
.cat_menu .item .title:hover a,
.cat_menu .item .title:hover i,
.cat_menu .item .title:hover svg,
.cat_menu .item .title.ischeck a,
.cat_menu .item .title.ischeck i,
.cat_menu .item .title.ischeck svg {
    color: #fff;
}
.cat_menu .item .title .num{
	font-size: x-small;
    color: var(--B);
	margin: 0;
}
.cat_menu .item .title .num i{
	font-size: 0.8rem;
    width: 0.8rem;
}
.cat_menu .item .title:hover .num,
.cat_menu .item .title.ischeck .num{
    color: #fff;
}


.cat_menu .item.cat_menuitem_tag{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.cat_menu .item.cat_menuitem_tag a:last-child {
    margin-right: auto;
}
.cat_menu .item.cat_menuitem_tag a {
    display: inline-flex;
    margin-bottom: 0;
    width: auto;
    gap: 0.2rem;
    align-items: baseline;
}



.box_img {
    aspect-ratio: 16 / 9;
    display: block;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    object-fit: cover;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.postlist_out {
    display: grid;
    gap: var(--margin);
    grid-template-columns: repeat(auto-fill,minmax(17.5rem,1fr))
}
.postlist_top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.postlist_top a.imgarea{
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: var(--box-shadow-thin);
	border-radius: var(--radius);
    margin: auto;
}
.postlist_info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}
.postlist_tags {
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
    color: var(--B);
    border-top: 1px dashed var(--A);
    padding-top: calc(0.5 * var(--margin));
    margin-top: calc(0.5 * var(--margin));
    align-items: center;
}
.postlist_tags span.pl,
.postlist_tags span.dz{
    padding-right: 0.5rem;
    border-right: 1px solid var(--O);
}
.postlist_tags .author {
    display: flex;
    gap: 0.75rem;
}
.postlist_tags > span:not(.author):last-child {
    display: none;
}
.postlist:hover .postlist_tags > span:not(.author):not(:last-child) {
    display: none;
}
.postlist:hover .postlist_tags > span:not(.author):last-child {
    display: flex;
}
.postlist_tags > span.hashtag {
    overflow-x: auto; /* 隐藏溢出的部分 */
}
.postlist_tags > span.hashtag::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.postlist_tags span, 
.postlist_tags a {
    position: relative;
    display: flex;
    gap: 0.1rem;
    color: var(--B);
    font-size: 0.75rem;
    font-weight: bold;
    word-break: keep-all;
    font-weight: 400;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    align-items: baseline;
}
.postlist_tags a:hover {
    color: var(--C);
}
.postlist_tags a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 0.1rem;
    bottom: -0.05rem;
    left: 0;
    background-color: var(--theme-60);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.postlist_tags a:hover:after {
    height: 0.1rem;
    visibility: visible;
    -webkit-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.postlist_tags .avatar{
    width: 1rem;
    height: 1rem;
    padding: 0;
}
.postlist_tags .hashtag:before{
    content: '\edfc';
    font-family: 'remixicon';
}
.postlist_title {
    line-height: 2rem;
    height: 2rem;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.postlist_title a{
    display: block;
    word-break: break-word;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.postlist {
    padding-top: 2rem;
	min-width: 0;
}
.links_part_grid > *,
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;
}
.postlist:hover .postlist_title a{
    color: var(--theme);
}
.postlist:hover .box_img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    filter: blur(0) brightness(0.75);
    -webkit-filter: blur(0) brightness(0.75);
}
.postlist:hover .postlist_icon{
    opacity: 1;
}
.postlist_abstract {    
    line-height: 1.75rem;
    height: 5.25rem;
    word-break: break-all;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: var(--C);
}
.postlist_icon{
    position: absolute;
    font-size: 3rem;
    color: #fff;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}
.postlist_icon svg {
    width: 4rem;
}





/* 黄金分割 */
.gold_line {
    margin: var(--margin) 0 0;
    display: grid;
    grid-template-columns: 40% calc(60% - var(--margin));
    grid-gap: var(--margin);
}
.gold_line .gold_line_in{
    max-height: calc(100dvh - 2 * var(--margin));
    position: sticky;
    top: var(--margin);
}
.gold_line .gold_line_in:has(#comments){
    overflow-y: auto;
}
.gold_line .gold_line_in::-webkit-scrollbar {
    width: 0;
}
.gold_line.is_article {
    grid-template-columns: 60% calc(40% - var(--margin));
}


/* mappage */
#tourmap_page {
    width: 100%;
    height: 100%;
    box-shadow: var(--box-shadow);
    border-radius: var(--radius);
    position: fixed;
    left: 0px;
    top: 0px;
}
#tourmap_category {
    height: 100%;
	pointer-events: none;
    mask: radial-gradient(ellipse at center, #000 0%, #0000 70%);
    -webkit-mask: radial-gradient(ellipse at center, #000 0%, #fff0 70%);
}
.amap-marker {
    font-size: 1.5rem;
}
.amap-marker i {
    font-size: 2rem;
    color: green;
}
.amap-ctrl-overlay-layer,
.amap-logo,
.amap-copyright {
    display: none!important;
}
.amap-info-content {
    border-radius: var(--radius);
}
.amap-info-content .map_tanchuang{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
}
.amap-info-content .map_tanchuang .box_img{
    width: 15rem;
    max-width: 80vw;
}











/* 分页 */
.cat_archive_next {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
.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 .next.loading{
    pointer-events: none;
}
.cat_archive_next .over{
    font-size: small;
    color: var(--A);
    padding: 0.5rem;
    text-align: center;
}
.cat_archive_next i {
    color: var(--theme);
}






#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;
}







/* 侧栏 */
header,
footer{
    display: flex;
    flex-direction: row;
    height: 100dvh;
    color: var(--main);
    background: var(--background);
    box-shadow: var(--box-shadow);
    margin-bottom: var(--margin);
    position: fixed;
    top: 0;
    z-index: 999;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    user-select: none;
}
.cat_large{
    display: flex;
    flex-direction: column;
    padding: var(--margin);
    width: 16rem;
    gap: var(--margin);
    overflow-x: hidden;
    overflow-y: auto;
}
.cat_menu::-webkit-scrollbar,
.cat_large::-webkit-scrollbar {
    width: 0;
}
.cat_small{
    padding: var(--margin) 1rem;
    background: var(--O);
    width: 4rem;
    text-align: center;
    fill: var(--C);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header {
    left: 0px;
}
footer {
    right: 0px;
}
.cat_small .anniu{
    border-radius: var(--radius);
    color: var(--main);
    background: #fff0;
    cursor: pointer;
    margin: auto;
    font-size: 1.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
}
.cat_small .anniu .avatar{
    width: 2rem;
    height: 2rem;
    box-shadow: unset;
}
.darkmode_block {
    position: relative;
    display: flex;
}

header .line_top .anniu {
    animation: fadeInRightToLeft 0.5s ease both;
    -webkit-animation: fadeInRightToLeft 0.5s ease both;
    -moz-animation: fadeInRightToLeft 0.5s ease both;
    animation-delay: calc(0.8s + (0.1s * (var(--i) - 1)));
}
footer .line_top .anniu {
    animation: fadeInLeftToRight 0.5s ease both;
    -webkit-animation: fadeInLeftToRight 0.5s ease both;
    -moz-animation: fadeInLeftToRight 0.5s ease both;
    animation-delay: calc(0.8s + (0.1s * (var(--i) - 1)));
}
.anniu:nth-child(1) { --i: 1; }
.anniu:nth-child(2) { --i: 2; }
.anniu:nth-child(3) { --i: 3; }
.anniu:nth-child(4) { --i: 4; }
.anniu:nth-child(5) { --i: 5; }
.anniu:nth-child(6) { --i: 6; }
.anniu:nth-child(7) { --i: 7; }
.anniu:nth-child(8) { --i: 8; }
.anniu:nth-child(9) { --i: 9; }
.anniu:nth-child(10) { --i: 10; }






.line_top,.line_bottom {
    display: flex;
    gap: var(--margin);
    flex-direction: column;
}
.line_bottom .percentage .num {
    letter-spacing: 0;
}
/* 侧栏音乐 */
.cat_large meting-js .aplayer{
    padding: 0;
}
.cat_large meting-js .aplayer .aplayer-pic {
    border: unset;
    margin: 0;
    height: 5rem;
    width: 5rem;
    z-index: 1;
    background-color: var(--P)!important;
}
.cat_large meting-js .aplayer .aplayer-pic:before,
.cat_large meting-js .aplayer .aplayer-pic:after{
    display: none;
}
.cat_large meting-js .aplayer .aplayer-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin-top: 1.5rem;
}
.cat_large meting-js .aplayer .aplayer-icon {
    display: block;
}
.cat_large meting-js .aplayer .aplayer-info .aplayer-controller .aplayer-time .main-button{
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 3px;
}
.cat_large meting-js .aplayer .aplayer-info .aplayer-controller .aplayer-time .main-button .aplayer-icon {
    height: 3.5rem;
}
.cat_large meting-js .aplayer .aplayer-info .aplayer-controller .aplayer-time .main-button .aplayer-icon.aplayer-icon-play {
    display: none;
}
.cat_large meting-js .aplayer .aplayer-info {
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 0.5rem;
    height: auto;
    margin-bottom: 1rem;
}
.cat_large meting-js .aplayer.aplayer-withlist .aplayer-info .aplayer-music {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0 0.5rem;
    font-weight: bold;
}
.cat_large meting-js .aplayer .aplayer-info .aplayer-controller .aplayer-time .other-button {
    display: none;
    /*margin-bottom: 0.5rem;*/
}
.cat_large meting-js .aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
    margin-left: 0.5rem;
    z-index: 1;
}
.cat_large meting-js .aplayer.aplayer-withlist .aplayer-info .aplayer-lrc {
    width: calc(100% - 1rem);
    height: 3.5rem;
    text-align: center;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: var(--O);
}
.cat_large meting-js .aplayer .aplayer-lrc p.aplayer-lrc-current {
    line-height: 1.25rem!important;
}
.cat_large meting-js .aplayer .aplayer-info .aplayer-music .aplayer-title,
.cat_large meting-js .aplayer .aplayer-info .aplayer-controller {
    height: 1rem;
}
.cat_large meting-js .aplayer .aplayer-list ol,
.cat_large meting-js .aplayer.aplayer-withlist .aplayer-list {
    max-height: unset!important;
}

.cat_large meting-js .aplayer .aplayer-list ol{
    height: calc(100dvh - 21.5rem);
}
.cat_large section {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}





.recent_comments {
    position: sticky;
    top: 8.5rem;
}
.cat_recentcomment_list{
    display: flex;
    position: relative;
    flex-direction: row;
    gap: 0.75rem;
}
.cat_recentcomment_list:last-child{
    padding-bottom: 0;
}
.recent_comments .cat_recentcomment_list:nth-child(4) {
    padding-bottom: 1rem;
}
.cat_recentcomment_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_recentcomment_list:nth-of-type(1) .left .num {
    background: var(--theme);
}
.cat_recentcomment_list:nth-of-type(2) .left .num {
    background: var(--theme-60);
}
.cat_recentcomment_list:nth-of-type(3) .left .num {
    background: var(--theme-30);
}
.cat_recentcomment_list .right {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cat_recentcomment_list .right .user {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat_recentcomment_list .right .user .avatar {
    width: 1.5rem;
    height: 1.5rem;
    padding: 2px;
    margin-right: 0.2rem;
}
.cat_recentcomment_list .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_list .right .user time {
    font-size: 0.75rem;
    color: var(--B);
}
.cat_recentcomment_list .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;
    padding: 0.25rem 0.5rem;
    background: var(--O);
    border-radius: 0.5rem;
}
.aside_info_card p{
    color: var(--B);
    font-size: small;
    line-height: 1.5rem;
}
.aside_text_title {
    font-size: 0.9rem;
    color: var(--B);
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}
.aside_text_title b {
    color: var(--theme-60);
    margin: 0 0.2rem;
}
.aside_text_title:before,
.aside_text_title:after{
    content: '';
    background: var(--theme-30);
    width: 1rem;
    height: 2px;
    margin: 0 1rem;
}
.aside_grid_three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
	color: var(--main);
    font-size: 1.1rem;
}
.aside_grid_three .anniu {
	color: var(--main);
}
.aside_grid_three .anniu:hover {
	color: var(--theme);
}
.aside_grid_three .item,
.aside_grid_three .anniu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow-thin);
    cursor: pointer;
	color: var(--main);
}
.aside_grid_three .anniu:active{
    box-shadow: inset var(--box-shadow-thin);
}
.aside_flex_two {
    display: flex;
    gap: 1rem;
}
.aside_flex_two>*{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.kw_block *{
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.kw_block svg{
    width: 100%;
}
.cd_block img{
    max-width: 100%;
	filter: opacity(0.7);
}
.aside_flex_two:has(.cd_block) .kw_block{
    padding: 1rem 0.5rem;
    flex: 1.5;
}
.aside_flex_two:has(.kw_block) .cd_block{
    padding: 0.5rem;
}



.aside_grid_two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.aside_grid_two>* {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow-thin);
    cursor: pointer;
}
.aside_grid_two .cat_block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0;
    pointer-events: none;
}
.aside_grid_two .cat_block .title {
    font-weight: bold;
}
.aside_grid_two .cat_block .desc {
    font-size: 0.9rem;
    color: var(--B);
    text-align: center;
    display: flex;
    align-items: center;
    height: 1rem;
    line-height: 1.5rem;
}



.all_views_block {
	font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.all_views_block .heart {
    color: #cd4246;
    font-size: 1.5rem;
    display: inline-block;
    animation: heartbeat 1s infinite ease-in-out;
    transform-origin: center;
}
@keyframes heartbeat {
  0%   { transform: scale(1); }
  14%  { transform: scale(1.3); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.3); }
  70%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.tag_num{
    font-size: x-small;
    color: var(--B);
}
.copyright{
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem 0;
    line-height: 1.75rem;
    color: var(--B);
}
.copyright a{
    color: var(--C);
}
.footer_copyright {
    padding-top: 6rem!important;
    padding-bottom: 3rem!important;
	text-align: center;
    z-index: 0;
    position: relative;
}
.footer_copyright .under_line{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    transform: translateY(50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.footer_copyright p:last-child{
	display: none;
}
.calendar_card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
table.calendar {
    width: 100%;
    color: var(--main);
    font-size: 0.8rem;
}
table.calendar tr {
    display: flex;
}
table.calendar tr th {
    flex: 1;
    line-height: 2.5rem;
    color: var(--C);
}
table.calendar tr td {
    text-align: center;
    color: var(--B);
    padding: 0.3rem;
    margin: 0.2rem 0;
    border: 1px solid #fff0;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    cursor: default;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
table.calendar tr td:not(.today):hover {
    color: var(--main);
}
table.calendar tr td .daynum {
    letter-spacing: 0;
}
table.calendar tr td a {
    letter-spacing: 0;
    color: var(--theme-80);
    text-shadow: 0 0.2rem 0.1rem var(--theme-30);
}
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.7rem;
    pointer-events: none;
    text-align: center;
    color: var(--B);
    height: 0;
}

.clock {
  width: 100%;
  height: 100%;
    aspect-ratio: 1;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
      border-radius: 50%;
}
.clock::after {
  content: "";
  width: 10rem;
  height: 10rem;
  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% - 2rem);
  width: 3px;
  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);
  }
}

.muyu_block {
    justify-content: center;
    background: linear-gradient(to bottom, var(--background) 0%, var(--background) 90%,var(--muyubg));
    --muyubg: rgb(233, 229, 255);
}
.muyu {
    margin: auto 0;
    display: flex;
    bottom: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.muyu > img {
    width: 5rem;
    user-select: none;
    filter: brightness(0) saturate(100%) invert(33%) sepia(5%) saturate(354%) hue-rotate(173deg) brightness(92%) contrast(92%) opacity(0.2);
    transition: all 0.3s;
}
html.darkmode .muyu > img {
    filter: unset;
}
.muyu .gongde {
    position: relative;
    color: var(--A);
}
.muyu .gongde-item {
    position: absolute;
    left: -50vw;
    width: 100vw;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transform: translateY(0px);
    animation: move 2s;
}
@keyframes move {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}
.muyu .clickDown {
  transform: scale(0.9);
}
.countdown_block{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: calc(0.75 * var(--margin));
    gap: 0.5rem;
}


.huodong_part {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.huodong_part:before {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: 0;
    height: 100%;
    border-left: 2px solid var(--O);
}
.huodong_part .cat_recentcomment_list .leftline:after {
    content: "";
    left: -3px;
    top: 0.75rem;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    position: absolute;
}
.huodong_part .cat_recentcomment_list[type=post] .leftline:after {
    background-color: var(--theme-60);
}
.huodong_part .cat_recentcomment_list[type=comment] .leftline:after {
    background-color: var(--B);
}
.right_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.right_tags a{
    display: inline-flex;
    gap: 0.2rem;
    margin-bottom: 0;
    width: auto;
    position: relative;
    text-align: left;
    font-size: 0.8rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid var(--O);
    padding: 0.2rem 0.3rem;
    border-radius: var(--radius);
    align-items: center;
}
.cat_postpaihang_top img{
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow-thin);
    margin: 1rem 0 0;
    aspect-ratio: 1.5;
    object-fit: cover;
    opacity: 0.6;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.cat_postpaihang_top img:hover{
    opacity: 1;
}
.cat_postpaihang_list {
    padding: 0.5rem 0;
    width: 100%;
}
.cat_postpaihang_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 2.25rem;
    gap: 0.5rem;
}
.cat_postpaihang_list li .left{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8rem;
    width: 100%;
    word-break: break-all;
}
.cat_postpaihang_list li .left .num{
    color: #fff;
    background: #999999;
    width: 0.7rem;
    height: 0.7rem;
    font-size: 0.5rem;
    line-height: 0.8rem;
    border-radius: 2px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0;
}
.cat_postpaihang_list li:nth-child(1) .left .num{
    background: var(--theme);
}
.cat_postpaihang_list li:nth-child(2) .left .num{
    background: var(--theme-80);
}
.cat_postpaihang_list li:nth-child(3) .left .num{
    background: var(--theme-60);
}
.cat_postpaihang_list li .right{
    font-size: 0.75rem;
    line-height: 0.5rem;
    color: var(--A);
    display: inline-flex;
    justify-content: flex-end;
    word-break: keep-all;
    align-items: baseline;
}
footer .paihang_part>div {
    display: none;
}
footer .paihang_part>div:first-child {
    display: block;
}
.paihang .item.check{
	background: var(--theme-80);
    color: #fff;
    box-shadow: 0px 7px 12px 0px var(--theme-30);
}

/* 文章页侧栏目录 */
#post_menu::-webkit-scrollbar {
    width: 0;
}
#post_menu span {
    display: flex;
    color: var(--main);
    padding: 0.5rem;
    margin-right: 0.5rem;
    align-items: center;
    border-radius: var(--radius);
    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;
}

.close_left,
.close_right {
    display: none;
	background: var(--background);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    fill: var(--A);
	position: absolute;
    top: 50%;
}
.close_left {
    left: calc((100vw - 20rem) / 2 + 20rem);
    transform: translate(-50%,-50%);
}
.close_right {
    right: calc((100vw - 20rem) / 2 + 20rem);
    transform: translate(50%,-50%);
}
@media (max-width:650px) {
	header[style="left: 0px;"] .close_left{
		display: flex;
	}
	footer[style="right: 0px;"] .close_right{
		display: flex;
	}
}
.open_aside{
    display: none;
    position: fixed;
    margin: 0;
    padding: 1rem;
    top: 0;
    justify-content: space-between;
    width: 100%;
    z-index: 5;
    background: linear-gradient(to right, var(--O) 0%, #fff0 5rem, #fff0 calc(100% - 5rem), var(--O) 100%), linear-gradient(to bottom, var(--O) 0%, var(--O) calc(100% - 5rem), #fff0 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    backdrop-filter: blur(5rem) saturate(2);
}
.open_aside a{
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
	color: var(--main);
    text-shadow: var(--title-shadow);
    font-weight: bold;
}
.open_aside i{
	color: var(--main);
    font-size: 1.5rem;
    text-shadow: var(--title-shadow);
}
.open_aside img{
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.1rem;
}
.index_title_block .open_aside {
    margin: 1rem 1rem 0;
    width: calc(100% - 2rem);
}
.index_title_block .open_aside i {
    color: #fff;
}
@media (max-width:650px) {
    .open_aside {
        display: flex;
	    align-items: center;
    }
}
.mengban {
    width: 100vw;
    height: 100dvh;
    background: #000;
    position: fixed;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.mengban_on {
    opacity: 0.5;
    pointer-events: unset;
}

[id*=Chart_] {
    padding: 0.5rem;
}

.eclock{
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
	cursor: pointer;
}
#eclock{
	font-family: fantasy;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--C);
}






/* pages */
.links_sort{
    font-size: 1.5rem;
    color: var(--main);
    padding: 3.5rem 1rem 1.5rem;
    font-weight: bold;
    position: relative;
}
.links_sort::before {
    content: '';
    position: absolute;
    top: 4rem;
    bottom: 2rem;
    left: 0;
    width: 4px;
    border-radius: 2px;
    background: var(--theme-60);
}
.links_part_grid {
    display: grid;
    gap: var(--margin);
    grid-template-columns: repeat(auto-fill,minmax(14rem,1fr));
}
@media (max-width:650px) {
	.links_part_grid {
		grid-template-columns: 1fr 1fr;
	}
}
.links_part_grid .links_author {
	font-weight: bold;
}
.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);
    text-align: center;
    display: flex;
    align-items: center;
    height: 3rem;
    line-height: 1.5rem;
}
.links_part_grid_item>.box_img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}
.links_part_flex {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    gap: 0.5rem;
}
.diy_page {
	z-index: 1;
    position: relative;
}
.diy_page section:not(:first-child){
    display: none;
}
.sent_link_form {
    margin-bottom: var(--margin);
}
.link_sq_part{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.link_sq_part label{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.5rem;
    font-weight: bold;
}
.apply_link_anniu {
    margin-top: var(--margin);
    cursor: pointer;
    color: var(--main);
    background: var(--O);
    border-radius: 0.2rem;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-family: monospace;
    font-size: 0.75rem;
    border: unset;
    width: 4rem;
    height: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.apply_link_anniu:hover {
    color: #fff;
    background: var(--theme-60);
}







/* title */
.index_inlogo{
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    -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);
    flex-direction: column;
    gap: 1.5rem;
}
.index_inlogo *{
    color: #fff;
    fill: #fff;
}
.index_inlogo .logo img.avatar{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    animation: fadeInUp 0.5s .2s ease both;
    -webkit-animation: fadeInUp 0.5s .2s ease both;
    -moz-animation: fadeInUp 0.5s .2s ease both;
    animation-delay: 0.8s;
}
.index_inlogo .words{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
}
.index_inlogo .words .webtitle {
    font-size: 1.5rem;
    animation: fadeInUp 0.5s .2s ease both;
    -webkit-animation: fadeInUp 0.5s .2s ease both;
    -moz-animation: fadeInUp 0.5s .2s ease both;
    animation-delay: 1.0s;
}
.index_inlogo .words .description {
    animation: fadeInUp 0.5s .2s ease both;
    -webkit-animation: fadeInUp 0.5s .2s ease both;
    -moz-animation: fadeInUp 0.5s .2s ease both;
    animation-delay: 1.2s;
}
.index_inlogo .social{
    display: flex;
    gap: 0.75rem;
    flex-direction: row;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s .2s ease both;
    -webkit-animation: fadeInUp 0.5s .2s ease both;
    -moz-animation: fadeInUp 0.5s .2s ease both;
    animation-delay: 1.4s;
}
.index_inlogo .social a{
    background: var(--B);
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.index_inlogo .social a:hover{
    background: var(--theme-60);
}





.whosamungus {
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}
.whosamungus img{
    border-radius: var(--radius) var(--radius) 0 0;
}
.whosamungus .waubutton{
    width: 100%!important;
}
.whosamungus a{
	opacity: 0.5;
}
.whosamungus a img{
    display: none;
}
.whosamungus a p{
	font-size: unset!important;
	font-family: unset!important;
    margin: 0!important;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}
.whosamungus a p:before{
    content:'当前 ';
}
.whosamungus a p:after{
    content:' 人在线';
}
.whosamungus>span{
    position: relative;
}



.cat_guidang {
    display: flex;
    flex-direction: row;
    gap: var(--margin);
    margin-top: var(--margin);
}
.cat_guidang .item{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    color: var(--B);
    align-items: baseline;
    gap:1rem;
    padding: 0.5rem 0;
}
.cat_guidang .item span{
    font-size:small;
    width:3rem;
    flex-shrink: 0;
    text-align: right;
}
.cat_guidang .item a{
    line-height: 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)}}





@media (max-width:1840px) {
    .gold_line.is_article,
    .gold_line {
        grid-template-rows: auto;
        grid-template-columns: 100%;
    }
    .gold_line .gold_line_in {
        max-height: unset;
        position: relative;
        top: 0;
        bottom: var(--margin);
    }
}
@media (max-width:1520px) {
    header{
        left: -16rem;
    }
    footer{
        right: -16rem;
    }
    main {
        width: calc(100% - 8rem - 2 * var(--margin));
        left: calc(4rem + var(--margin));
        right: calc(4rem + var(--margin));
    }
}

@media (max-width:820px) {
    #comments.diary_comment > ol > li{
        width: 100%;
    }
}

@media (max-width:650px) {
    html {
        font-size: 14px;
    	--margin: 1rem;
    }
    header{
        left: -20rem;
    }
    footer{
        right: -20rem;
    }
    main {
        width: calc(100% - 2 * var(--margin));
        left: var(--margin);
        right: var(--margin);
    }
    .title_block {
        height: unset;
	    margin-top: 3rem;
    }
}


@media (min-width:649px) {
    body[auto_side_show=close] .index_title_block {
        height: 50dvh;
    }
    body[auto_side_show=close] header {
        left: -16rem;
    }
    body[auto_side_show=close] footer {
        right: -16rem;
    }
}

















@media screen and (min-width: 649px) {
    *[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);
    }
    
    
    
    
    
    
    
    *[cat_title_right] {
        overflow: hidden;
        position: relative;
    }
    *[cat_title_right]:before, *[cat_title_right]:after {
        position: absolute;
        z-index: 10;
        opacity: 0;
        transform: translate3d(0, -50%, 0);
        transition: 300ms ease;
    }
    *[cat_title_right]:before {
        content: attr(cat_title_right);
        top: 50%;
        left: calc(100% + 10px);
        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_right]:after {
        content: "\20";
        top: 50%;
        right: -10px;
        border: 5px solid transparent;
        border-right-color: rgba(0, 0, 0, 0.8);
    }
    *[cat_title_right]:hover {
        overflow: visible;
    }
    *[cat_title_right]:hover:before, *[cat_title_right]:hover:after {
        opacity: 1;
        transform: translate3d(3px, -50%, 0);
    }
    
    
    
    *[cat_title_left] {
        overflow: hidden;
        position: relative;
    }
    *[cat_title_left]:before, *[cat_title_left]:after {
        position: absolute;
        z-index: 10;
        opacity: 0;
        transform: translate3d(0, -50%, 0);
        transition: 300ms ease;
    }
    *[cat_title_left]:before {
        content: attr(cat_title_left);
        top: 50%;
        right: calc(100% + 10px);
        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_left]:after {
        content: "\20";
        top: 50%;
        right: 100%;
        border: 5px solid transparent;
        border-left-color: rgba(0, 0, 0, 0.8);
    }
    *[cat_title_left]:hover {
        overflow: visible;
    }
    *[cat_title_left]:hover:before, *[cat_title_left]:hover:after {
        opacity: 1;
        transform: translate3d(-3px, -50%, 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)}}

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

@keyframes fadeInLeftToRight{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}
@-webkit-keyframes fadeInLeftToRight{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}
@-moz-keyframes fadeInLeftToRight{0%{opacity:0;transform:translateX(-20px)}100%{opacity:1;transform:translateX(0)}}

@keyframes fadeInRightToLeft{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}
@-webkit-keyframes fadeInRightToLeft{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}
@-moz-keyframes fadeInRightToLeft{0%{opacity:0;transform:translateX(20px)}100%{opacity:1;transform:translateX(0)}}

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

.aplayer-pic:has(.aplayer-pause) {
    animation: rotation 10s infinite linear;
}
.aplayer-pic:has(.aplayer-pause):before {
    animation: rotation 10s infinite linear reverse;
}
	
	
	
.music_titleblock {
	border-radius: 1.5rem;
    box-shadow: var(--box-shadow-thin);
    background: var(--background);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    width: fit-content;
    max-width: 20rem;
    position: fixed;
    top: -4rem;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.music_titleblock img{
    animation: rotation 10s infinite linear;
	width: 2rem;
    height: 2rem;
}
.music_titleblock span{
	font-size: 1rem;
    color: var(--main);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
@media (max-width:650px) {
	.music_titleblock {
		display: none;
	}
}