/* 渐变显现动画效果 */
.article-sort-item,
.recent-post-item,
.animgrad {
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s forwards;
  animation-delay: calc(0.2s * var(--i));
}

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



/******************** 公共 ********************/

a:hover {
  color: hsl(var(--red), var(--yellow), var(--blue), 1) !important;
}

::selection {
  background-color: hsl(var(--red), var(--yellow), var(--blue), 1); /* 选中区域的背景颜色 */
  color: white;             /* 选中文本的文字颜色 */
}

#sidebar #menu-mask {
  background: rgba(20,20,20,0.9);
}

/* 滚动条整体样式 */
body::-webkit-scrollbar {
  width: 11px;
}
/* 滚动条滑块（thumb）样式 */
body::-webkit-scrollbar-thumb {
  background: hsl(var(--red), var(--yellow), var(--blue), .2);
  border-radius: 8px;
  /* border: 2px solid #fafafa; */
}
body#homes,
body#type-dynamics {
  overflow: hidden;
}

body,
.post #content-inner,
#body-wrap header {
  background: var(--glmp-bannerBg);
}

#content-inner {
  padding: 0;
  margin: 0;
  max-width: none;
}

#footer {
  background: var(--glmp-post-conmenbg);
}

/* 加载动画 */
#loading-box .loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glmp-bannerBg);
  z-index: 99;
}

#loading-box.loaded .loading-bg {
  display: none;
}

#loading-box .loading-bg .spinner-box {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  border: 6px solid var(--glmp-color);
  -webkit-animation: fill 2s linear infinite alternate;
  animation: fill 2s linear infinite alternate;
  color: hsl(var(--red), var(--yellow), var(--blue), .7);
  border-radius: 0 0 8px 8px;
}
@keyframes fill {
  0% {
    box-shadow: 0 0 inset;
  }
  100% {
    box-shadow: 0 -48px inset;
  }
}

#loading-box .loading-bg .spinner-box::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid var(--glmp-color);
  width: 10px;
  height: 15px;
  border-radius: 0 6px 6px 0;
}

#loading-box .loading-bg .pace {
  width: 50px;
  top: 0;
  overflow: visible;
}

#loading-box .loading-bg .pace .pace-progress {
  background: none;
  color: var(--glmp-color);
  box-shadow: none;
  transform: translate3d(0, 0, 0) !important;
  right: 0;
  top: 27px;
}

#loading-box .loading-bg .pace .pace-activity {
  box-shadow: none;
}

#loading-box .loading-bg .pace .pace-progress:after {
  right: 0;
}




/******************** 导航 开始 ********************/

#page-header.full_page,
#page-header.not-home-page {
  height: var(--nav-height);
  background: none;
}

#page-header:not(.not-top-img):before {
  background: none;
}

#nav {
  height: var(--nav-height);
  padding: 0 3rem;
  inset: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  outline: 1px solid transparent;
}

#nav #blog-info .site-icon {
  margin: 0;
  height: 28px;
  filter: sepia(1) hue-rotate(0deg) saturate(0%) brightness(40%);
  transition: filter 0.3s ease;
}

#nav #blog-info .site-icon:hover {
  filter: none !important;
}

[data-theme="dark"] #nav #blog-info .site-icon {
  filter: sepia(1) hue-rotate(0deg) saturate(0%) brightness(240%);
}

[data-theme="dark"] #nav #blog-info .site-icon:hover {
  filter: sepia(1) hue-rotate(-10deg) saturate(550%) brightness(1.05) !important;
}

.post #nav #blog-info .site-icon,
.message #nav #blog-info .site-icon,
.about #nav #blog-info .site-icon {
  filter: sepia(1) hue-rotate(0deg) saturate(0%) brightness(240%);
}

#page-header.nav-fixed #nav {
  height: 3rem;
  background: var(--glmp-nav-bgColor) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 6px -5px rgb(133 133 133 / 10%);
  outline: 1px solid var(--glmp-nav-ouColor);
}

#page-header.full_page #site-info,
#page-header.full_page #scroll-down{
  display: none;
}

#nav #blog-info {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

#nav #menus {
  flex: 1;
}

#nav #nav-right {
  order: 2;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

#nav #nav-right a {
  margin-left: 1rem;
}

[data-theme=dark] #nav #nav-right .darkmode_navswitch a {
  color: var(--glmp-font-title);
}

#nav #nav-right i {
  font-size: 22px;
}

#nav #nav-right a.totopbtn {
  display: flex;
  font-size: 12px;
  width: 0;
  height: 25px;
  line-height: 2.1;
  margin-left: 0;
  transform: scale(0);
  justify-content: center;
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), 1);
  background: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .2);
  border-radius: 25px;
}

.nav-fixed #nav #nav-right a.totopbtn {
  width: 25px;
  margin-left: 1rem;
  transform: scale(1);
}

#nav #nav-right a.totopbtn:hover {
  background: hsl(var(--red), var(--yellow), var(--blue), 1);
  color: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), 1);
}

#nav #nav-right a.totopbtn i {
  position: absolute;
  font-size: 18px;
  line-height: 1.4;
  color: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), 1);
  opacity: 0;
  transition: .3s;
}

#nav #nav-right a.totopbtn:hover i {
  opacity: 1;
}

#nav #nav-right a.totopbtn:hover span {
  opacity: 0;
}

#nav a,
#nav .site-page,
#nav span.site-page {
  color: var(--glmp-font-Color);
  font-weight: bold;
  text-shadow: none;
  transition: .3s;
}

#nav .site-name {
  text-shadow: none;
  font-size: .9rem;
}

#nav > span .nav-page-title {
  font-size: .9rem;
}

#nav #menus .menus_item span.site-page,
#nav #menus .menus_item a.site-page {
  -webkit-text-stroke: .15px;
}

.post #nav a,
.post #nav .site-page,
.post #nav span.site-page {
  color: #fff;
}

#nav .menus_items .menus_item > span > i:last-child {
  display: none;
}

#nav .menus_items {
  display: flex;
  gap: 1.3rem;
}

#nav .menus_items .menus_item {
  padding: 0;
}

#nav .menus_items .menus_item:hover .site-page,
#page-header.fixed #nav .menus_items .menus_item:hover .site-page {
  color: var(--glmp-font-title);
}

#nav .site-page:not(.child):after {
  display: none;
}

#nav .menus_items .menus_item::before {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  content: '';
  width: 100vw;
  height: 100vh;
  background: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), .8);
  /* backdrop-filter: saturate(180%) blur(20px); */
  pointer-events: none;
  opacity: 0;
  transition: .3s;
}

#nav .menus_items .menus_item:hover::before {
  opacity: 1;
}

#nav .menus_items .menus_item li {
  border-radius: 8px !important;
  transition: .3s;
}

#nav .menus_items .menus_item .menus_item_child {
  display: block;
  opacity: 0;
  animation: none;
  pointer-events: none;
  right: auto;
  left: -25px;
  margin-top: 18px;
  border-radius: 10px;
  padding: 8px;
  transform: translateY(10px);
  border: var(--glmp-navBorder);
  background: var(--glmp-nav-ulColor);
  box-shadow: 0 .2rem 1rem 0 hsl(0deg 0% 15% / 4%);
  transition: .3s;
}

#nav .menus_items .menus_item:hover .menus_item_child {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#nav .menus_items .menus_item .menus_item_child:before {
  top: -20px;
}

#nav .menus_items .menus_item .menus_item_child li:hover {
  background: hsl(var(--red), var(--yellow), var(--blue), .07);
}

#nav .menus_items .menus_item .menus_item_child > li:hover a.site-page {
  color: var(--glmp-font-title) !important;
}

#nav .menus_items .menus_item .menus_item_child li a:hover {
  color: var(--glmp-font-title) !important;
}

#nav .menus_items .menus_item .menus_item_child li i {
  margin-right: 4px;
}

#nav .menus_items .menus_item .menus_item_child .menus_item_sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

#nav .menus_items .menus_item .menus_item_child .menus_item_sub a {
  font-size: .75em;
  /* font-weight: normal; */
  padding: 8px 2.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
}

#nav .menus_items .menus_item .menus_item_child .menus_item_sub a:hover {
  border: 1px solid hsl(var(--red), var(--yellow), var(--blue), .1);
}

/******************** 导航 结束 ********************/






/******************** 中控台 开始 ********************/

#console {
  display: flex;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 9999;
  justify-content: center;
  opacity: 0;
  transition: .3s ease-out;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
#console .close-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 40px;
  color: var(--font-color);
  cursor: pointer;
  transition: .3s;
}
#console .console-card-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 30px;
  max-width: 1400px;
  transform: translateY(20px);
  transition: 0.3s;
  opacity: 0;
}
#console.show .console-card-group {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.1s;
}
#console .console-card-group-left {
  margin-right: 0.5rem;
  width: 40%;
  height: 100%;
}
#console .console-card {
  background: var(--glmp_console_color);
  border-radius: 12px;
  overflow: hidden;
  border: var(--glmp_border_color);
  box-shadow: var(--glmp_shadow_border);
  padding: 40px;
}
#console #card-newest-comments {
  height: 100%;
}
#console .author-content-item-tips {
  opacity: .8;
  font-size: .6rem;
  margin-bottom: 0.5rem;
}
#console .author-content-item-title {
  font-size: 30px;
  font-weight: bold;
  -webkit-text-stroke: .25px;
  line-height: 1;
}
#console .aside-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 1.5rem;
}
#card-newest-comments .aside-list-item {
  background: var(--glmp_console_ulColor);
  border-radius: 12px;
  border: var(--glmp_border_color);
  padding: 12px 16px;
  width: 49%;
  display: flex;
  flex-direction: column;
  height: 150px;
}
#card-newest-comments .aside-list-item:not(:last-child) {
  margin-bottom: 0.6rem;
}
#console .aside-list-item .thumbnail {
  display: flex;
  align-items: center;
  width: fit-content;
}
#card-newest-comments .aside-list-item .thumbnail img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 28px;
}
#card-newest-comments .aside-list-item .name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  /* color: var(--heo-fontcolor); */
}
#console .aside-list-item .content {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0.7rem;
}
#console .aside-list-item .content .comment {
  -webkit-line-clamp: 2;
  color: var(--font-color);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  line-height: 24px;
}
#console .aside-list-item .content time {
  font-size: 12px;
  color: var(--heo-secondtext);
  margin-top: auto;
}
#console .console-mask {
  background: var(--glmp-maskColor);
  backdrop-filter: saturate(100%) blur(0);
  -webkit-backdrop-filter: blur(0);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  transition: .3s;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
#console .console-card-group-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 60%;
  overflow: hidden;
}
#console .console-card.tags {
  height: calc(100% - 413px);
}
.console-card.tags .card-tag-cloud {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.console-card.tags .card-tag-cloud a {
  color: var(--font-color) !important;
  margin: 6px 4px;
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--glmp_console_ulColor);
  border: var(--glmp_border_color);
  font-size: 14px !important;
  font-weight: 700;
}
.console-card.tags .card-tag-cloud a sup {
  opacity: .6;
}
#console .console-card.history {
  margin-top: 8px;
  padding: 0;
  background: 0 0;
  box-shadow: none;
  border: none;
}
#console .console-card.history .item-headline {
  display: none;
}
#console .console-card.history .card-archive-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
#console .console-card.history .card-archive-list li.card-archive-list-item {
  flex: 0 0 24%;
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
#console .console-card.history .card-archive-list .card-archive-list-link {
  border-radius: 8px;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  color: var(--font-color);
  border: var(--glmp_border_color);
  background: var(--glmp_console_color);
  padding: 8px 16px;
}
#console .console-card.history .card-archive-list .card-archive-list-link .card-archive-list-count {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}
#console .console-card.history .card-archive-list .card-archive-list-link .card-archive-list-count::after {
  content: '篇';
  font-size: 14px;
  margin-left: 3px;
}
a:hover {
  color: var(--heo-main);
}
#console .close-btn:hover {
  color: var(--heo-main-color);
}
#card-newest-comments .aside-list-item .name {
  margin-top: auto;
}
#console .aside-list .aside-list-item .content .name span {
  position: absolute;
  margin: -95px 0 0 35px;
  font-weight: bold;
}
#console .about-statistic .card-content {
  display: flex;
  margin-top: 13px;
  gap: .8em;
}
#console .about-statistic .card-content .statistic {
  display: flex;
  gap: .8em;
  margin-top: 1rem;
}
#console .about-statistic .card-content .widget_invite {
  flex: 1;
  padding: 40px;
  background: var(--glmp_console_color);
  border: var(--glmp_border_color);
  box-shadow: var(--glmp_shadow_border);
  border-radius: 12px;
}
#console .about-statistic .card-content .widget_invite .invite_title_info {
 display: flex;
 align-items: flex-end;
 gap: 1em;
}
#console .about-statistic .card-content .widget_invite .invite_title_info a {
  color: var(--glmp-font-title);
}
#console .about-statistic .card-content .statistic > div {
  flex: 1;
}
#console .about-statistic .card-content .statistic > div .item-count {
  /* font-size: 1.4rem; */
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}
#console .about-statistic .card-content .busuanzi {
  flex: .5;
  padding: 40px;
  background: var(--glmp_console_color);
  border: var(--glmp_border_color);
  box-shadow: var(--glmp_shadow_border);
  border-radius: 12px;
}
/* 中控台预样式 */
#console.show {
  opacity: 1;
  pointer-events: all;
}
#console.show .console-mask {
  backdrop-filter: saturate(180%) blur(20px);
}

/******************** 中控台 结束 ********************/






/******************** 首页 ********************/

/* [data-theme=light] .home #celis .celisbg .scene{
  scale: 1.5;
  top: 85vh;
  transition: .5s;
} */

[data-theme=dark] .home #celis .celisbg .scene{
  scale: 1;
  /* top: 50vh; */
  transition: .5s;
}

[data-theme=dark] .home #celis .celisbg .planet{
  opacity: 1;
  transition: .5s;
  animation-delay: 1.7s;
}

[data-theme=light] .home #celis .celisbg .sun {
  /* transform: translateY(-3vmax); */
  width: 38vmax;
}

.home #celis .celis-welcome {
  display: grid;
  gap: .5rem;
  justify-content: center;
  align-content: center;
  height: calc(100vh - var(--nav-height) - var(--home-layout-height));
  /* height: calc(100vh - var(--nav-height) - var(--home-layout-height) - var(--footer-height)); */
}

.home #celis .celis-welcome .celis-info {
  font-size: 5rem;
  /* font-family: 'kuaikan'; */
  line-height: 5rem;
  -webkit-text-stroke: 3px;
  color: var(--glmp-font-title);
  /* text-shadow: 3px 5px 8px hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), .6); */
  animation: bottom-top 1s;
}

.home #celis .celis-welcome .celis-title {
  font-size: 1.1rem;
  color: var(--glmp-font-title);
  display: flex;
  justify-content: center;
  animation: bottom-top 1s;
}

.home .celisbg {
  z-index: -1;
  display: grid;
  place-items: center;
  background-color: var(--glmp-homeBgColor);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.home #celis .celisbg .planets{
  display: none;
  filter: blur(var(--glmp-planets-fiter));
  transition: .5s;
}

.home #celis .celisbg .planets-2{
  filter: blur(1px);
  transition: .5s;
}

.home #content-inner {
  flex-flow: column;
  padding: 1.5rem calc(var(--home-padding) - 1rem) 1.5rem calc(var(--home-padding) - 1rem);
  max-width: none;
  max-height: var(--home-layout-height);
  position: relative;
  background: var( --glmp-home-layoutbg);
  backdrop-filter: blur(10px);
  box-shadow: 0 -3.5em 3em -4em rgb(0 0 0 / 5%);
  border-top: var(--glmp-border);
}

.home #content-inner .nav-tabs {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 1.5rem;
  background: transparent;
  box-shadow: none;
}

.home #content-inner .nav-tabs .tabsall {
  display: flex;
  min-height: 2.5rem;
  border-radius: 2rem;
  gap: .5rem;
  padding: 2px 6px;
  border: 1px solid hsl(var(--red), var(--yellow), var(--blue), .3);
}

.home #content-inner .nav-tabs .tabsall > div {
  display: flex;
  border-radius: 2rem;
  align-items: center;
}

.home #content-inner .nav-tabs .tabsall > div button {
  color: var(--glmp-font-title);
  background: hsl(var(--red), var(--yellow), var(--blue), .15);
  height: 2em;
  padding: 0 1rem;
  border-radius: 2rem;
  transition: .3s;
}

.home #content-inner .nav-tabs .tabsall > div button:active {
  transform: scale(0.85) rotateZ(1.7deg);
}

.home #content-inner .nav-tabs .tabsall > div.active button {
  color: #fff;
  background: hsl(var(--red), var(--yellow), var(--blue), 1);
}

.home #content-inner .nav-tabs .tabsall > div .pagination {
  display: flex;
  align-items: center;
}

.home #content-inner .nav-tabs .tabsall > div .pagination span,
.home #content-inner .nav-tabs .tabsall > div .pagination a {
  color: var(--glmp-font-title);
  background: hsl(var(--red), var(--yellow), var(--blue), .15);
  border-radius: 2rem;
  text-align: center;
  box-shadow: none;
  width: 0em;
  height: 0em;
  line-height: 0em;
  margin: 0;
  overflow: hidden;
  transition: .3s;
}

.home #content-inner .nav-tabs .tabsall > div.active .pagination span,
.home #content-inner .nav-tabs .tabsall > div.active .pagination a {
  width: 2em;
  height: 2em;
  line-height: 2em;
  margin: 0 6px;
}

.home #content-inner .nav-tabs .tabsall > div .pagination .current {
  background: hsl(var(--red), var(--yellow), var(--blue), 1);
  color: #fff !important;
}

.home #content-inner .recent-posts {
  display: none;
  overflow: hidden;
  animation: hometabshow .5s;
}
@keyframes hometabshow {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.home #content-inner .recent-posts.active {
  display: flex;
}

.home #recent-posts .recent-post-items {
  display: flex;
}

.home #recent-posts .recent-post-items .recent-post-item,
.home #category .article-sort-item {
  width: calc((100vw - (calc(var(--home-padding) - 1rem) * 2)) / 6);
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
  transition: 2s;
}

.home #recent-posts .recent-post-item .recent-post-info>a,
.home #category .article-sort-item-title {
  -webkit-line-clamp: 1;
  font-size: .95rem;
  font-weight: bold;
  color: var(--glmp-font-Color);
  line-height: 1.4;
}

.home #recent-posts .recent-post-items .recent-post-item .post_cover {
  display: none;
}

.home #recent-posts .recent-post-item .recent-post-info,
.home #category .article-sort-item .article-sort-item-info {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  height: 100%;
}

.home #recent-posts .recent-post-item .recent-post-info .article-meta-wrap,
.home #category .article-sort-item .article-sort-item-info .article-sort-item-time {
  order: 3;
  margin: 6px 0;
  font-size: .9em;
  opacity: 1;
  color: hsl(var(--red), var(--yellow), var(--blue), .65);
}

.home .article-sort-item-time time  {
  padding: 0;
}

.home #category .article-sort-item .article-sort-item-info .article-sort-item-time i {
  margin-right: 4px;
}

.home #recent-posts .recent-post-item .recent-post-info .content {
  margin: .7rem 0 .2rem 0;
  font-size: 13px;
  color: var(--glmp-fontconColor);
}

.home #pagination {
  display: none;
}

.home #footer {
  /* position: fixed; */
  /* bottom: 0; */
  display: none;
  width: 100%;
  /* background: var(--glmp-footerbg); */
}

#footer-wrap {
  padding: 0 var(--home-padding);
  /* background: var(--glmp-footerbg); */
  text-align: left;
}

#footer-wrap .glimp-footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  overflow: hidden;
}

#footer-wrap .glimp-footer .footer-banner-right {
  display: flex;
  gap: 8rem;
}

#footer-wrap .glimp-footer .footer-banner-right > div h3 {
  margin: 0;
  color: var(--glmp-font-Color);
}

#footer-wrap .glimp-footer .footer-banner-right .footer-life {
  display: flex;
  flex-direction: column;
}

#footer-wrap .glimp-footer .footer-banner-right .footer-group .footer-link span {
  font-size: .7rem;
  margin-left: 1rem;
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .3);
}

#homes #footer-wrap .glimp-footer {
  display: none;
}

#footer-wrap .footer-wrap-links {
  display: flex;
  height: var(--footer-height);
  justify-content: space-between;
  color: var(--glmp-font-Color);
  border-top: 1px solid hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .08);
  font-size: .8rem;
  align-items: center;
}

.home #footer-wrap .footer-wrap-links {
  border: none;
}

#footer-wrap .footer-wrap-links .footer-banner-right {
  display: flex;
  line-height: var(--footer-height);
}

#footer-wrap a {
  color: var(--glmp-font-Color);
  line-height: var(--footer-height);
  font-size: .8rem;
}

#footer-wrap .glimp-footer .footer-wrap-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 40%;
  color: var(--glmp-font-Color);
}

#footer-wrap .glimp-footer .footer-wrap-left .footer-post span {
  font-weight: bold;
  -webkit-text-stroke: .2px;
}

#footer-wrap .glimp-footer .footer-wrap-left .footer-connet-title {
  /* font-family: 'kuaikan'; */
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-text-stroke: .5px;
}

#footer-wrap .glimp-footer .footer-wrap-left .footer-cocial a {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  border-radius: 2rem;
  margin-right: .5rem;
  background: #e7e7e7;
}

#footer-wrap .footer-wrap-left a>i {
  /* font-size: 1rem; */
  color: var(--glmp-font-Color) !important;
}


/* *** 首页最新动态开始 *** */

.home #category .article-sort {
  display: flex;
  border: none;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 0;
}

.home #category .article-sort-item {
  margin: 0;
  height: auto;
}

.home #category .article-sort-item.year,
.home #category .article-sort-item::before,
.home #category .article-sort-item .article-sort-item-img {
  display: none;
}

.home #category .article-sort-item .article-sort-item-info .content {
  display: -webkit-box;
  font-size: 13px;
  color: var(--glmp-fontconColor);
  overflow: hidden;
  margin: .7rem 0 .2rem 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* *** 首页最新动态结束 *** */


/* *** 首页朋友圈开始 *** */

.home #random-article,
.home #load-more-btn,
.home #stats-container,
.home .card .card-bg {
  display: none;
}

.home #articles-container {
  display: flex;
  /* height: 5rem; */
}

.home #articles-container .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  width: calc((100vw - (calc(var(--home-padding) - 1rem) * 2)) / 6);
  padding: 0 1rem;
  height: 110px;
  color: hsl(var(--red), var(--yellow), var(--blue), 1);
  position: relative;
}

.home #articles-container .card .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  -webkit-line-clamp: 2;
  font-size: .95rem;
  font-weight: 600;
  color: var(--glmp-font-Color);
  line-height: 1.6;
  transition: .3s;
}

.home #articles-container .card .card-author {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.home #articles-container .card .card-author img {
  width: 2rem;
  height: 2rem;
  margin-right: .3rem;
  border-radius: 2rem;
}

.home #articles-container .card .card-date {
  position: absolute;
  right: 1rem;
  bottom: 0;
  opacity: .65;
}

.home #articles-container .card .card-date i {
  margin-right: .3rem;
}

/* *** 首页朋友圈结束 *** */






/******************** 文章页 ********************/

.post #page-header {
  height: 85vh;
  overflow: hidden;
  background-image: none !important;
  animation: none;
}

.post #coverdiv {
  width: 100%;
  height: 85vh;
  position: fixed;
  overflow: hidden;
  pointer-events: none;
  background: #bbbbbb;
}

.post #coverdiv #post-cover {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* object-fit: cover; */
  scale: 1.2;
  animation: header-effect 1s;
}

.post #coverdiv #post-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--glmp-imgMask); /* 半透明黑色遮罩 */
  pointer-events: none; /* 避免遮罩挡住内容交互 */
}

.post #post-info {
  display: grid;
  gap: 1rem;
  text-align: center;
  animation: header-effect 1s;
}

.post #page-header #post-info > * {
  max-width: calc(var(--post-content-width) + 200px);
  padding: 0;
  -webkit-text-stroke: 0;
}

.post #page-header #post-info #post-firstinfo .meta-firstline {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 1rem;
}

.post #page-header #post-info #post-meta {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 1rem;
}

.post #page-header #post-info #post-meta > div {
  display: flex;
  gap: 1rem;
}

.post #page-header #post-info #post-meta > div > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.post #page-header #post-info #post-meta > div span.post-meta-label {
  margin: 0;
}

.post #page-header #post-info #post-meta .post-meta-separator,
.post #page-header #post-info #post-meta .meta-firstline .post-meta-categories {
  display: none;
}

.post #page-header #post-info #post-meta .mate-postshare .post-meta-label {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 5px;
  backdrop-filter: saturate(180%) blur(20px);
}

.post #page-header #post-info #post-meta .mate-postshare .social-share {
  display: flex;
  font-size: 10px;
}

.post #page-header #post-info #post-meta .mate-postshare a {
  /* width: 20px;
  height: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* line-height: 20px; */
  font-size: 15px;
  margin: 0 8px;
  border: none;
  backdrop-filter: saturate(180%) blur(20px);
}

.post #page-header #post-info #post-firstinfo .meta-firstline a {
  font-size: 1rem;
  color: var(--white);
}

.post #post-info h1 {
  font-size: 3rem;
  -webkit-text-stroke: 1.4px !important;
  /* font-family: "kuaikan"; */
}

.post #content-inner {
  /* z-index: 1; */
  max-width: 100%;
  padding: 40px 15px;
  margin: 0 auto;
  position: relative;
  justify-content: center;
}

.post #content-inner #post {
  width: var(--post-content-width);
  padding: 0;
  box-shadow: none;
  color: var(--glmp-postFont-color);
  background: transparent;
}

.post #content-inner #post #article-container {
  font-size: 1rem;
  line-height: 2.44;
}

.post #content-inner #post #article-container a {
  font-weight: bold;
  color: var(--glmp-color);
  -webkit-text-stroke: .2px;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-size: 1.2em;
  line-height: 2;
  color: var(--glmp-font-Color);
  -webkit-text-stroke: .5px;
}

.post .post-content ul {
  background: var(--glmp-post-ulbg);
  border-radius: var(--glmp-border-radius);
  padding: 10px 20px 10px 40px;
}

#article-container .gallery-container .loading-container {
  display: none;
}

.post #content-inner figure {
  border-radius: var(--glmp-border-radius);
  box-shadow: none;
  background: var(--glmp-post-ulbg);
  border: var(--glmp-post-border);
}

/* .post #content-inner figure .code-expand-btn {
  background: var(--glmp-post-ulbtn);
} */

.post #content-inner a {
  color: var(--glmp-font-Color);
  /* text-decoration: underline;
  text-decoration-style: wavy; */
  /* 设置波浪线颜色 */
  /* text-decoration-color: #007bff; */
}

.post #content-inner code {
  color: var(--glmp-font-Color);
  font-weight: bold;
  background: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .04);
}

.post #article-container .highlight-tools .code-lang,
.post #article-container .highlight-tools i {
  font-size: 1em;
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .3);
}

.post #article-container img {
  border-radius: 10px;
}

.post #content-inner figure table pre{
  background: transparent;
}

.post #article-container figure.highlight .gutter pre {
  background: transparent;
  border-radius: 0;
}

.post #article-container .highlight-tools {
  background: transparent;
}

.post #content-inner #aside-content {
  position: absolute;
  height: calc(100% - 10px);
  left: calc((100% - var(--post-content-width)) / 2 + var(--post-content-width));
  width: calc((100% - var(--post-content-width)) / 2);
  padding-left: 25px;
}

.post #content-inner #aside-content #card-toc {
  box-shadow: none;
  opacity: .3;
  padding-top: 0;
  background: none;
}

.post #content-inner #aside-content #card-toc:hover {
  opacity: 1;
}

.post #content-inner #aside-content #card-toc a {
  text-decoration: none;
}

.post #aside-content #card-toc .toc-content .toc-link.active {
  background: none;
  color: var(--glmp-font-title);
}

/* 版权 和 信息 开始 */

.post .post-personalinfo {
  display: grid;
  grid: auto/.7fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.post .post-personalinfo .post-author-detainfo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--glmp-post-conmenbg);
  border-radius: var(--glmp-border-radius);
  padding: 1rem;
}

.post .post-personalinfo .post-author-detainfo .post-author-info {
  display: grid;
  grid: auto/ 1fr 4fr;
  gap: .8rem;
  align-items: center;
}

.post .post-personalinfo .post-author-detainfo .post-author-info a,
.post .post-personalinfo .post-reward-wrap {
  display: flex;
}

.post .post-personalinfo .post-author-detainfo .post-copyright__author {
  line-height: 1.7;
}

.post .post-personalinfo .post-author-detainfo .post-copyright-info {
  font-size: 1rem;
  font-weight: bold;
}

.post .post-personalinfo .post-author-detainfo .post-author__description {
  line-height: 1.5;
  margin: 15px 0;
}

.post .post-personalinfo .post-reward-wrap > div {
  display: flex;
  align-items: center;
  width: auto;
  margin: 0;
}

.post .post-personalinfo .post-reward-wrap > div .reward-button {
  background: var(--glmp-post-rewardBtn);
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .3);
}

.post .post-personalinfo .post-reward-wrap > div a {
  width: 2rem;
  height: 2rem;
  line-height: 1.3rem;
  border-radius: 50%;
  text-align: center;
  background: var(--glmp-post-rewardBtn);
  padding: .4rem;
  margin-left: .5rem;
}

.post .post-personalinfo .post-reward-wrap > div a i {
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .3) !important;
}

.post .post-personalinfo .post-author-detainfo img.post-author__img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--glmp-post-ulbg);
  box-shadow: 0 0 0 2px hsl(var(--red), var(--yellow), var(--blue), .5);
}

#post .post-personalinfo .post-copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 1rem;
  border: none;
  background: var(--glmp-post-conmenbg);
  border-radius: var(--glmp-border-radius);
  overflow: hidden;
}

#post .post-personalinfo .post-copyright .post-copyright__notice {
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

#post .post-personalinfo .post-copyright .post-copyright__notice span {
  color: var(--glmp-font-Color);
}

#post .post-personalinfo .post-copyright .post-copyright__notice span a {
  color: var(--glmp-font-Color);
  text-decoration: none;
  font-weight: bold;
}

#post .post-copyright:before {
  top: -10px;
  right: -15px;
  font-size: 6rem;
  line-height: 5rem;
  transform: rotate(-43deg);
  color: var(--glmp-post-copyrightIcon);
}

#post .post-personalinfo .post-copyright .relatedPosts,
#post .post-personalinfo .post-copyright .pagination-post {
  margin-top: .5rem;
}

#post .post-personalinfo .post-copyright .relatedPosts a {
  width: 100%;
  height: 2.2rem;
  background: var(--glmp-post-rewardBtn);
  margin: 3px 0;
}

#post .post-personalinfo .post-copyright .pagination-post {
  display: flex;
  gap: .2rem;
}

#post .post-personalinfo .post-copyright .pagination-post a {
  height: 2.2rem;
  background: var(--glmp-post-rewardBtn);
}

#post .post-personalinfo .post-copyright .post-copyright-meta i,
#post .post-personalinfo .post-copyright .relatedPosts a img,
#post .post-personalinfo .post-copyright .pagination-post a img,
#post .post-personalinfo .post-copyright .relatedPosts a .info-1 .info-item-1,
#post .post-personalinfo .post-copyright .relatedPosts .headline i {
  display: none;
}

#post .post-personalinfo .post-copyright .relatedPosts a .info > div > div,
#post .post-personalinfo .post-copyright .pagination-post a .info > div > div {
  -webkit-line-clamp: 1;
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .6);
  text-align: left;
  font-size: .8rem;
}

#post .post-personalinfo .post-copyright .pagination-post a .info .info-1 {
  display: flex;
  text-align: left;
  align-items: center;
  gap: .3rem;
}

#post .post-personalinfo .post-copyright .pagination-post a .info .info-1 .info-item-1 {
  white-space: nowrap;
}

#post .post-personalinfo .post-copyright .relatedPosts .headline {
  font-size: 1rem;
}

/* 版权 和 信息 结束 */


/* 评论 开始 */

.custom-hr {
  display: none;
}

#post-comment {
  margin-top: 25px;
}

#post-comment .comment-head {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  /* background: var(--glmp-post-ulbg); */
  margin-bottom: 0;
}

#post-comment .comment-head .comment-headline {
  display: none;
  position: absolute;
  /* transform: rotate(-43deg); */
  left: 0rem;
  /* bottom: 2rem; */
  /* scale: 2; */
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .5);
  pointer-events: none;
}

#post-comment .comment-head .comment-anonymity {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

#post-comment .comment-head .comment-anonymity a {
  /* display: block;
  width: 100%; */
  font-size: 1rem;
  font-weight: bold;
  /* padding: 1rem 0; */
  margin-left: .5rem;
  text-align: center;
  text-decoration: none;
}

.tk-comments-title {
  position: absolute;
  top: -35px;
  /* left: 1.7rem; */
  font-size: 2rem !important;
  color: var(--glmp-font-Color);
  align-items: center !important;
  /* opacity: .5; */
  /* pointer-events: none; */
}

.tk-comments-title span {
  display: flex;
}

.post .tk-comments-title span  {
  font-size: 1rem;
  gap: 3px;
}

.post .tk-comments-count.__hidden {
  visibility: visible;
}

.tk-comments-title span.tk-icon {
  color: var(--glmp-font-title);
  height: 1.1rem; width: 1.1rem;
}

#post-comment .comment-head::after,
.tk-comments-title span.tk-icon:first-of-type {
  display: none;
}

#post-comment .el-loading-spinner .path {
  stroke: var(--glmp-font-title);
}

.tk-comments-container > .tk-comment {
  padding: 1.5rem;
  background: var(--glmp-post-conmenbg);
  border-radius: 10px;
}

.tk-comment div.tk-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.tk-comment .tk-replies .tk-avatar .tk-avatar-img {
  height: 2.5rem;
}

.tk-comment .tk-avatar.tk-clickable img,
.tk-comment .tk-row {
  height: 2.5rem;
  align-items: center;
}

.tk-comment .tk-row .tk-meta {
  display: flex;
  align-items: center;
  margin-left: -.5rem;
  gap: .3rem;
}

.tk-comment .tk-content-expand,
.tk-replies,
.tk-extras {
  margin: 0 0 0 -3.5rem;
}

.tk-comment .tk-submit {
  margin-left: -3.5rem;
}

.twikoo .tk-content p {
  margin: .8em 0 .3em 0;
}

.twikoo .tk-content img {
  max-width: 1.5rem;
}

.tk-replies .tk-comment {
  border-top: 1px solid hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .08);
  padding-top: 1rem;
}

.tk-replies .tk-main .tk-content span:first-child {
  float: left;
  margin-right: .5rem;
}

.tk-comment .tk-content-expand::after {
  content: "";
  display: block;
  clear: both;   /* 清除float: left;浮动后对齐影响 */
}

.tk-comment .tk-replies .tk-content {
  font-size: var(--global-font-size);
  text-decoration: none;
}

#content-inner .tk-comment .tk-nick {
  font-size: 1rem;
}

#content-inner .tk-comment .tk-tag {
  background: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .04);
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .4);
  border: 1px solid hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .2);
  border-radius: 5px;
  line-height: 1.7em;
}

#content-inner .tk-comment a {
  color: var(--glmp-font-Color);
  text-decoration: none;
}

#content-inner .tk-comment a.tk-action-link::before {
  content: "\f27a";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  font-size: 1rem;
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .2);
}

#content-inner .tk-comment a.tk-action-link:first-child,
#content-inner .tk-comment a.tk-action-link .tk-action-icon{
  display: none;
}

#content-inner .tk-comment a.tk-action-link .tk-action-count {
  position: absolute;
  font-weight: bold;
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .3);
  /* margin-top: -10px; */
  margin-left: 20px;
  /* text-shadow: 1px 1px 0 hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .2), -1px -1px 0 hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .2), 1px -1px 0 hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .2), -1px 1px 0 hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .2);  */
}

.tk-comment .tk-expand-wrap,
.tk-comment .tk-collapse-wrap {
  font-size: 1rem;
  margin: .6rem 0 -1rem -3.5rem;
  border-radius: 8px;
  border-top: 1px dashed hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .08);
  overflow: hidden;
}

.tk-comments-container > .tk-expand-wrap {
  font-size: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.tk-comments > .tk-submit {
  /* display: none; */
  position: fixed;
  z-index: 92;
  width: 70%;
  max-width: 900px;
  margin: 0;
  padding: 3.3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 2rem;
  border-radius: 10px;
  /* background: var(--glmp-bannerBg); */
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: .5s;
  animation: none;
  pointer-events: none;
}

.tk-comments > .tk-submit.show,
#post-comment .commentmask.show {
  /* display: block; */
  margin-top: 0;
  pointer-events: auto;
  opacity: 1;
}

#post-comment .commentmask {
  position: fixed;
  z-index: 91;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), .9);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: .5s;
  pointer-events: none;
}

#post-comment .commentmask .comment-close {
  cursor: pointer;
  position: absolute;
  right: 3rem;
  top: 3rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.5rem;
  border-radius: 50%;
  text-align: center;
  color: hsl(var(--bl-red), var(--bl-yellow), var(--bl-blue), .4);
}

#post-comment .commentmask .comment-close:hover {
  transform: rotate(180deg);
  background: hsl(var(--red), var(--yellow), var(--blue), 1);
  color: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), 1) !important;
}

.tk-comments > .tk-submit .tk-avatar {
  position: absolute;
  width: 5rem;
  height: 5rem;
  margin: 0;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3px solid var(--glmp-bannerBg);
}

.tk-comments > .tk-submit .tk-avatar .tk-avatar-img {
  height: 100%;
}

.tk-comments > .tk-submit .tk-avatar img {
  height: 5rem;
}

.tk-comments .tk-comments-container .tk-submit .tk-avatar {
  scale: 11;
  position: absolute;
  /* border-radius: 0 50% 50% 0; */
  left: 5rem;
  opacity: .1;
  z-index: 1;
  pointer-events: none;
}

.tk-comments .tk-comments-container .tk-submit .tk-row:first-child {
  position: relative;
  overflow: hidden;
}

.tk-comments .tk-submit .tk-row {
  margin-left: 0;
  justify-content: space-between;
}

.tk-comments .tk-submit .tk-row .tk-send {
  width: 30%;
  height: 2.5rem;
  border: none;
  border-radius: 10px;
  background-color: hsl(var(--red), var(--yellow), var(--blue), 1);
  color: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), 1);
}

.tk-comments .tk-submit .tk-row .is-disabled {
  background-color: hsl(var(--red), var(--yellow), var(--blue), .3);
}

.tk-comments .tk-submit .tk-row .tk-cancel {
  width: calc(30% / 2);
  height: 2.5rem;
  margin-left: 1rem;
  border-radius: 10px;
  border: none;
  background: #ebebeb;
}

.tk-comments .tk-comments-container .tk-submit .tk-row .tk-send {
  width: calc(30% / 2);
}

.tk-comments .tk-submit .tk-row .tk-row-actions-start {
  flex: none;
  width: calc(70% - 1rem);
  position: relative;
}

.tk-comments .tk-submit .tk-row .tk-row-actions-start .tk-submit-action-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  overflow: hidden;
  /* background: var(--glmp-post-ulbg); */
  margin: 0;
  border-radius: 50%;
}

.tk-comments .tk-submit .tk-row .tk-row-actions-start .tk-submit-action-icon .OwO-logo  {
  width: 100%;
  /* scale: 3; */
  color: hsl(var(--red), var(--yellow), var(--blue), .3);
}

.tk-comments .tk-submit .tk-row .tk-col {
  display: flex;
  flex-direction: row-reverse;
}

.tk-comments .tk-submit .tk-row .tk-col .tk-meta-input {
  flex-direction: column;
  width: 30%;
  margin: 0 0 0 1rem;
  padding: 10px;
  background: var(--glmp-post-ulbg);
  border-radius: 10px;
  overflow: hidden;
  gap: 1rem;
}

.tk-comments .tk-comments-container .tk-submit .tk-row .tk-col .tk-meta-input,
.tk-comments .tk-comments-container .tk-submit .tk-row .tk-col .tk-input textarea {
  background: var(--glmp-commentColor);
}

.tk-comments .tk-submit .tk-row .tk-col .tk-meta-input::after {
  content: '随言：良言三冬暖，恶语六月寒';
  /* text-align: center; */
  line-height: 1.5;
  font-size: .75rem;
  padding: 0 .8rem;
  opacity: .6;
}

.tk-comments .tk-submit .tk-row .tk-col .tk-input textarea {
  min-height: 100% !important;
  background: var(--glmp-post-ulbg);
  border: none;
  box-shadow: none;
  border-radius: 10px;
  padding: 15px;
}

.tk-comments .tk-submit .tk-row .tk-col .tk-meta-input .el-input {
  display: flex;
  width: auto;
  margin: 0;
  border-bottom: 1px solid var(--glmp-comment-infoColor);
}

.tk-comments .tk-submit .tk-row .tk-col .tk-meta-input .el-input div {
  display: inline-flex;
  padding: .8rem;
  width: auto;
  border: none;
  box-shadow: none;
  background: none;
}

.tk-comments .tk-submit .tk-row .tk-col .tk-meta-input .el-input input {
  height: 100%;
  border: none;
}

.tk-comments .tk-submit .tk-row .__markdown, 
.tk-comments .tk-submit .tk-row .tk-preview {
  display: none;
}

.tk-comments .tk-submit .tk-row .OwO-body {
  max-width: none;
  top: 0;
  border-radius: 10px;
  background: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), .8);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.tk-comments .tk-submit .tk-row .OwO-body .OwO-bar .OwO-packages .OwO-package-active {
  background: var(--glmp-font-title);
  color: hsl(var(--wh-red), var(--wh-yellow), var(--wh-blue), 1);
}

#twikoo .tk-comments-container {
  min-height: 5rem;
}

.tk-footer {
  display: none;
}

/* 评论 结束 */






/******************** 动态页开始 ********************/

.post.type-dynamic #coverdiv {
  height: 100vh;
}

.post.type-dynamic #coverdiv img {
  filter: blur(50px);
}

.post.type-dynamic #content-inner {
  background: none;
}

.post.type-dynamic #aside-content {
  display: none;
}

#type-dynamic #footer-wrap {
  background: rgba(67, 67, 67, 0.2);
  backdrop-filter: saturate(1.8) blur(20px);
}

#type-dynamic #footer-wrap a,
#type-dynamic #footer-wrap .footer-wrap-left a>i,
#type-dynamic #footer-wrap .footer-wrap-links .footer-banner-right {
  color: #999999 !important;
}

#footer-wrap a:hover {
  text-decoration: none;
}

/******************** 动态页结束 ********************/






/******************** 留言页开始 ********************/

body#type-messages {
  color: var(--mes-textColor);
}

.message #nav #nav-right .darkmode_navswitch {
  display: none;
}

.message #nav a, 
.message #nav .site-page, 
.message #nav span.site-page {
  color: var(--mes-textColor);
}

.message #page-header.nav-fixed #nav a, 
.message #page-header.nav-fixed #nav span.site-page, 
.message #page-header.nav-fixed #nav #toggle-menu {
  color: var(--mes-textColor);
}

.message #nav .menus_items .menus_item .menus_item_child li a {
  color: var(--mes-textColor) !important;
}

.message #page-header.nav-fixed > #nav, 
.message #page-header.not-top-img > #nav {
  background: #1c1c1c0d !important;
  outline: var(--glmp-navBorder);
}

.message #page-header.nav-fixed #nav {
  box-shadow: 0 5px 6px -5px rgb(45 45 45 / 38%);
}

.message #nav .menus_items .menus_item .menus_item_child {
  background: #181818;
  border: var(--glmp-navBorder);
}

.message #nav .menus_items .menus_item::before {
  background: #141414e6;
}

.message .category-bar .link-title {
  color: var(--glmp-font-title);
}

.message .category-bar span.illustrate {
  color: var(--mes-textColor);
}

.message .twikoo {
  animation: bottom-top 1s;
}

.message #page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem var(--home-padding) 0 var(--home-padding);
}

.message #page #article-container {
  z-index: -1;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: #04030c;
  overflow: hidden;
}

.message#body-wrap .layout > .classify-list {
  width: calc(var(--list-width) + 15%) !important;
  animation: bottom-top 1s;
}

.message #post-comment .comment-head,
.message #post-comment .tk-footer {
  display: none;
}

.message .tk-comments-title {
  top: -50px;
  left: 0;
  /* font-family: "kuaikan"; */
  font-size: 2rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: .1px var(--glmp-font-title);
}

.message .tk-comments-container {
  display: block;
  gap: 1rem;
  columns: 300px 4;
}

.message .tk-comments-container > div.tk-comment {
  overflow: auto;
  margin-top: 0;
  margin-bottom: 1rem;
  background: #55555521;
  border: var(--glmp-navBorder);
  backdrop-filter: blur(20px);
}

.message .tk-comment div.tk-avatar {
  width: 2rem;
  height: 2rem;
}

.message .tk-comment .tk-avatar.tk-clickable img,
.message .tk-comment .tk-row {
  height: 2rem;
}

.message .tk-comment .tk-content-expand, 
.message .tk-replies, 
.message .tk-extras {
  margin: 0 0 0 -3rem;
}

.message #content-inner .tk-comment a,
.message #content-inner .tk-comment a.tk-action-link .tk-action-count {
  color: var(--mes-textColor);
}

.message #content-inner .tk-comment a.tk-action-link::before {
  color: var(--mes-textColor);
}

.message #content-inner .tk-comment .tk-tag {
  color: var(--mes-textColor);
  border: var(--glmp-navBorder);
}

.message #footer-wrap {
  background: #2f2f2f36;
  backdrop-filter: blur(20px);
}

.message #footer-wrap .glimp-footer .footer-wrap-left,
.message #footer-wrap .glimp-footer .footer-banner-right > div h3,
.message #footer-wrap a {
  color: var(--mes-textColor);
}

.message #footer-wrap .glimp-footer .footer-wrap-left .footer-cocial a {
  background: #1e1e1e;
}

.message #footer-wrap .footer-wrap-left a>i {
  color: var(--mes-textColor) !important;
}

.message .tk-comments .tk-comments-container .tk-comment .tk-submit {
  position: relative;
  margin-left: -3rem;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-col .tk-meta-input .el-input input::placeholder {
  color: rgb(117 117 117);
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-col {
  flex-direction: column-reverse;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-col .tk-meta-input {
  width: 100%;
  /* flex-direction: row; */
  margin: 10px 0 0 0;
  background: rgb(24 24 24 / 30%);
  border: 1px solid #7979791a;
}

.message .tk-comments .tk-submit .tk-row .tk-col .tk-meta-input .el-input {
  padding: .5rem 0;
  border-bottom: 1px solid #7979791a;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-col .tk-meta-input .el-input div {
  padding: 0 .3rem;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-col .tk-meta-input::after {
  display: none;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row {
  margin: 10px 0 0 0;
  position: initial;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-row-actions-start {
  width: auto;
  flex: 1;
  position: initial;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .OwO-body {
  top: auto;
  bottom: 2.6rem;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-row-actions-start .tk-submit-action-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  background: rgb(24 24 24 / 30%);
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-row-actions-start .tk-submit-action-icon .OwO-logo::before {
  display: none;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-row-actions-start .tk-submit-action-icon .OwO-logo svg {
  display: block;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-cancel {
  margin-left: .5rem;
  height: 2rem;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-send {
  height: 2rem;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-avatar {
  scale: 2.8;
  left: 1.85rem;
  top: 2.65rem;
  margin: 0;
  opacity: .02;
}

.message .tk-comments .tk-comments-container .tk-replies .tk-comment {
  border-top: var(--glmp-navBorder);
}

.message .tk-comments .tk-comments-container .OwO .OwO-body .OwO-items {
  max-height: 240px !important;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-avatar .tk-avatar-img, 
.message .tk-comments .tk-comments-container .tk-replies .tk-avatar .tk-avatar-img {
  height: 2rem;
}

.message .tk-comments .tk-comments-container .tk-submit .tk-row .tk-col .tk-input textarea {
  background: rgb(24 24 24 / 30%);
  border: 1px solid #7979791a;
}

.message .tk-comments .tk-comments-container .tk-comments-title span:last-child {
  display: none;
}

.message .tk-comments .tk-comments-container .tk-comments-title .tk-comments-count::after {
  content: '条留言';
}

.message #footer {
  background: #1c1c1c0d;
  backdrop-filter: blur(30px);
}

.message #footer-wrap .glimp-footer .footer-banner-right .footer-group .footer-link span {
  color: var(--mes-textColor);
  opacity: .6;
}

.message #footer-wrap .footer-wrap-links {
  border-top: var(--glmp-navBorder);
  color: #979797;
}

/******************** 留言页结束 ********************/






/******************** 关于页开始 ********************/

body#type-abouts {
  overflow-x: hidden;
}

#type-abouts::-webkit-scrollbar-track {
  background: #1a1413 !important; /* 轨道透明 */
  /* border-radius: 4px; */
}
#type-abouts::-webkit-scrollbar-thumb {
  background: #72291c59;
  border: none;
}

.about #page-header.nav-fixed > #nav, 
.about #page-header.not-top-img > #nav {
  background: #7575751f !important;
  backdrop-filter: blur(30px);
  outline: var(--glmp-navBorder);
}

.about #nav a, 
.about #nav .site-page, 
.about #nav span.site-page {
  color: var(--mes-textColor);
}

.about #page-header.nav-fixed #nav a, 
.about #page-header.nav-fixed #nav span.site-page, 
.about #page-header.nav-fixed #nav #toggle-menu {
  color: var(--mes-textColor);
}

.about #nav .menus_items .menus_item .menus_item_child {
  background: #181818;
  border: var(--glmp-navBorder);
}

.about #nav .menus_items .menus_item .menus_item_child li a {
  color: var(--mes-textColor) !important;
}

.about #nav .menus_items .menus_item::before {
  background: #141414e6;
}

.about #content-inner {
  animation: none;
}

.about #page {
  padding: 0 3rem;
  background: none;
  box-shadow: none;
  color: #fff;
}

.about #about .about-info::before {
  position: fixed;
  display: flex;
  justify-content: center;
  white-space: nowrap;
  width: max-content;
  left: 0;
  bottom: 0;
  opacity: .1;
  content: 'blog.glimp.top blog.glimp.top blog.glimp.top';
  /* font-family: 'kuaikan'; */
  font-size: clamp(6.5em, 15vw, 25em);
  letter-spacing: 30px;
  line-height: 1;
  color: #ff6347;
  -webkit-text-stroke: 8px;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  transform: scaleY(0.6);
  animation: rowleft 60s linear infinite;
}
@keyframes rowleft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about #about .about-info {
  display: flex;
  align-items: center;
  /* z-index: -1; */
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
  left: 0;
  top: 0;
  /* pointer-events: none; */
  transition: .3s;
}

.about #about .about-info .about-bannerbg {
  padding-left: 8.5%;
  width: 55%;
  /* margin-top: calc(5rem + 64px); */
}

.about #about .about-info .about-bannerbg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#2a2a2a 1px, transparent 1px);
  background-size: 6px 6px; /* 圆点间距，可根据实际调整 */
  opacity: 0.4; /* 控制点的可见度 */
  pointer-events: none;
  z-index: -1;
}

.about #about .about-info .about-bannerbg .about_title {
  position: relative;
  /* font-family: 'kuaikan'; */
  font-size: 8vw;
  font-weight: bold;
  line-height: 1;
  -webkit-text-stroke: 4px;
}

.about #about .about-info .about-bannerbg .about_title span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: transparent;
}

.about #about .about-info .about-bannerbg .about_title span::after {
  content: attr(data-shadow);
  position: absolute;
  top: .03em;
  left: .03em;
  z-index: -1;
  text-shadow: none;
  background-image: linear-gradient(
    45deg,
    transparent 45%,
    hsla(48,20%,90%,.5) 45%,
    hsla(48,20%,90%,.5) 55%,
    transparent 0
    );
  background-size: .05em .05em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shad-anim 15s linear infinite;
}

@keyframes shad-anim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% -100%;
  }
}

.about #about .about-info .about-bannerbg .copyright {
  /* font-family: 'kuaikan'; */
  font-size: 2.5vw;
  font-weight: bold;
  /* line-height: 1; */
  -webkit-text-stroke: 2px;
}

.about #about .about-info .about-bannerbg .about_cocial {
  display: flex;
  gap: 3em;
  margin: 10em 0 0 .55em;
}

.about #about .about-info .about-bannerbg .about_cocial a>i {
  font-size: 1.7em;
  color: var(--mes-textColor) !important;
}

.about #about .author-content {
  display: flex;
  flex-wrap: wrap;
  width: 35%;
  /* grid: auto / .7fr 1fr 1fr; */
  gap: 1rem;
  margin-top: 1rem;
  margin-right: 10%;
}

.about #about .author-content.authorinfo {
  display: block;
  margin-top: 4rem;
}

.about #about .author-content .about-titleinfo {
  /* display: flex; */
  /* justify-content: space-between; */
  gap: 1em;
  /* font-family: "kuaikan"; */
  font-weight: bold;
  -webkit-text-stroke: .6px;
  /* color: #ff6347; */
  /* font-size: 3em; */
  align-items: flex-end;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.about #about .author-content .about-titleinfo .hello {
  font-size: 3em;
}

/* .about #about .about-info .about-personinfo .author-content {
  width: 100%;
} */

.about #about .author-content-all {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.about #about .author-content-all .person_info .author-career-content {
  display: block;
}

.about #about .author-content-all > .author-content:last-child {
  margin-bottom: 2em;
}

.about #about .author-content .author-content-item {
  flex: auto;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(30px);
  background: #1c1c1c6e;
  border: 1px solid #373737;
  border-radius: 20px;
  overflow: hidden;
}

.about #about .author-content .author-character-bg {
  pointer-events: none;
  position: absolute;
  max-height: 90%;
  right: 0%;
  bottom: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about #about .author-content .about-content-item-tips {
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-text-stroke: .1px;
  /* font-family: "kuaikan"; */
}

.about #about .author-content .about-content-item-escribe {
  max-height: 7em;
  padding-right: .5em;
  margin-bottom: 1.5em;
  overflow: auto;
  -webkit-mask: linear-gradient(#0000, #000 1.5rem, #000 calc(100% - 1.5rem), #0000);
}

.about #about .author-content .about-content-item-escribe::-webkit-scrollbar-thumb {
  background-color: #ccccccab;
  border-radius: 8px;
}

.about #about .author-content .author-career-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about #about .author-content .author-career-content .career-content {
  flex: auto;
}

.about #about .author-content .author-career-content .about-content-title {
  /* font-size: 1rem; */
  font-weight: bold;
  /* -webkit-text-stroke: .15px; */
}

.about #about .author-content .author-career-content span,
.about #about .author-content .character .about-content-item-escribe {
  color: var(--mes-textColor);
}

.about #about .author-content .character .about-content-item-tips,
.about #about .author-content .character .about-content-item-escribe,
.about #about .author-content .character .author-career-content {
  max-width: 60%;
}

.about #about .author-content .character .author-career-content {
  flex-direction: column;
  gap: 10px;
}

.about #about .character .traitbox {
  width: 100%;
  margin-inline-end: -10px;
  cursor: pointer;
  /* position: relative; */
}

.about #about .character .traitbox .sp-traitbar {
  display: flex;
  gap: 1em;
  padding: 1em 1em 1em 0;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.about #about .character .traitbox .sp-traitbar::before {
  content: '';
  width: calc(100% + 1.5em);
  height: 100%;
  border-radius: 12px 0 0 12px;
  background: #302e2e94;
  opacity: 0;
  position: absolute;
  top: 0;
  left: -1em;
  transition: .3s;
  z-index: -1;
}

.about #about .character .traitbox .sp-traitbar .traitbar_inner {
  position: relative;
  flex: auto;
  display: flex;
  align-items: center;
  /* flex-direction: column;
  align-items: flex-start;
  width: 100%;
  order: -1; */
}

.about #about .character .traitbox .sp-traitbar .sp-barlabel {
  display: inline-flex;
  position: absolute;
  bottom: 20px;
  font-size: .8em;
  /* z-index: 1; */
}

.about #about .character .traitbox .sp-traitbar .sp-progressbar {
  width: 100%;
  height: 12px;
  border-radius: 8px;
  margin: 6px 0;
  background-color: #eeeff1;
  position: relative;
}

.about #about .character .traitbox .sp-traitbar .sp-progressbar .progressbar_bar {
  height: 100%;
  border-radius: 8px;
}

.about #about .character .traitbox .sp-traitbar .sp-progressbar .progressbar_bar .bar_dott {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(29,36,50,.15);
  border: 3px solid white;
  top: -2px;
  /* margin-left: 1.5rem; */
}

.about #about .character .traitbox .tw-hidden {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  background: #302e2e94;
  padding: 1em 2em 1em;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.about #about .character .traitbox:hover .tw-hidden {
  opacity: 1;
}

.about #about .character .traitbox .tw-hidden .color-blue {
  margin: 0;
  color: white;
  line-height: 1;
}

.about #about .character .traitbox .tw-hidden .print_content {
  color: var(--mes-textColor);
}

.about #about .character .traitbox:hover ~ .author-character-bg {
  opacity: 0;
}

.about #about .character .traitbox:hover .sp-traitbar::before {
  opacity: 1;
}

/* 中国地图开始 */

.about #about .author-content .author-content-item.map {
  padding: 0;
  height: 400px;
}

.about #about .author-content .author-content-item.map .author_map {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 200%;
  background-position: 55% 70%;
  transition: 1s ease-in-out;
}

.about #about .author-content .author-content-item.map:hover .author_map {
  background-size: 400%;
  background-position: 55% 68%;
}

.about #about .author-content .author-content-item.map .map-title {
  position: absolute;
  width: 100%;
  padding: 1em 2em;
  /* bottom: 0; */
  background: rgb(10 6 6 / 64%);
  backdrop-filter: blur(30px);
}

.about #about .author-content .author-content-item.map .author_map::before {
  content: '\eb33';
  font-family: 'iconfont';
  font-size: 2em;
  width: 15px;
  height: 15px;
  /* border-radius: 15px; */
  color: var(--glmp-font-title);
  /* background: var(--glmp-font-title); */
  position: absolute;
  margin: auto;
  top: 18%;
  bottom: 0;
  left: 3%;
  right: 0;
  opacity: 0;
}

.about #about .author-content .author-content-item.map:hover .author_map::before {
  animation: appear 1s ease-in-out forwards;
  animation-delay: 1s; /* 等待主动画完成再执行 */
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 中国地图结束 */

.about #footer {
  background: #1c1c1c6e;
  backdrop-filter: blur(30px);
}

.about #footer-wrap .glimp-footer .footer-banner-right > div h3 {
  color: #fff;
}

.about #footer-wrap .glimp-footer .footer-wrap-left {
  color: var(--mes-textColor);
}

.about #footer-wrap .glimp-footer .footer-wrap-left .footer-post {
  line-height: 1;
}

.about #footer-wrap .glimp-footer .footer-wrap-left .footer-post span {
  color: #8d8d8d;
}

.about #footer-wrap a {
  color: var(--mes-textColor);
}

.about #footer-wrap .glimp-footer .footer-banner-right .footer-group .footer-link span {
  color: #9d9d9d;
}

.about #footer-wrap .footer-wrap-links {
  color: var(--mes-textColor);
}

/******************** 关于页结束 ********************/






/**************************************************** PC端 ***************************************************/

@media screen and (min-width: 1600px) {
  #rightside.rightside-show {
    display: none;
  }



  /******************** 首页 ********************/

  .home #articles-container .card:nth-child(n+7) {
    display: none;
  }

  

  /******************** 文章页 ********************/

  .post #content-inner #aside-content {
    left: calc((100% - var(--post-content-width)) / 2 + var(--post-content-width));
    width: 300px;
  }
}










/**************************************************** 平板端 ***************************************************/

@media screen and (max-width: 1599px) {
  .home #recent-posts .recent-post-items .recent-post-item,
  .home #category .article-sort-item,
  .home #articles-container .card {
    width: calc((100vw - (calc(var(--home-padding) - 1rem) * 2)) / 4);
    transition: none;
  }
}