@charset "utf-8";

/*
Theme Name: Sakurairo
Theme URI: https://github.com/mirai-mamori/Sakurairo
Author: Created by Fuukei
Author URI: https://docs.fuukei.org/
Description: A WordPress theme that is built with AI-assisted reading features, colorful, user-friendly, well-rounded, and rich in functionalities. (Based on Theme Sakura)
Version: 3.0.4
Tested up to: 6.8
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sakurairo
Tags: AI-assisted reading, Colorful, User-friendly, Well-rounded, Feature-rich
*/

/* Base HTML Element Styles */

* {
  transition: all 0.4s cubic-bezier(0.07, 0.53, 0.65, 0.95);;
  -webkit-transition: all 0.4s cubic-bezier(0.07, 0.53, 0.65, 0.95);;
}

i,i:hover{
  transition: none;
  -webkit-transition: none;
}

li,ul,ol {
  cursor: pointer;
  padding-inline-start: unset;
}

ol.toc-list {
  list-style-type: none; 
  counter-reset: none;
}

ol.toc-list li {
  counter-increment: none;
}

.entry-content li,
.entry-content ul,
.entry-content ol {
  cursor: unset;
}

ul.commentwrap,
li.comment,
ul.search-no-reasults,
ul.search-no-reasults li,
ul.menu-list{
  cursor: unset;
  list-style-type: none; 
}

ul.al_post_list,
ul.al_mon_list{
  list-style-type: none; 
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  transition: background 0.8s;
}

body {
  margin: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, .1);
  color: var(--theme-skin, #505050);
  font-size: 15px;
  line-height: 1.5;
  background-attachment: fixed;
  background-position: center;
  scrollbar-width: 6px;
  font-weight: var(--global-font-weight);
}

dialog {
  height: 100vh;
  width: 100vw;
  margin: 0;
  border: none;
  max-width: none;
  max-height: none;
  background: transparent;
}

/* Typography */
h1 {
  font-size: 2em;
  margin: .67em 0;
  clear: both;
  font-weight: var(--global-font-weight);
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  font-weight: var(--global-font-weight);
}

sub { 
  bottom: -.25em; 
}

/* Links */
a {
  background-color: transparent;
  text-decoration: none;
  color: var(--theme-skin, #505050);
  outline: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  word-break: break-word;
}

a:hover,a:active,a:focus {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

a:hover {
  color: var(--theme-skin-matching, #505050);
}
/* Layout Components */
.headertop {
  animation: blur .8s;
  position: relative;
  overflow: hidden;
  height: 0;
}

/* 封面滤镜层 */
.headertop::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background-attachment: fixed;
}

.pattern-center {
  animation: blur .8s;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Comments Section */
.comments {
  animation: main .6s;
  clear: both;
  width: 100%;
  padding: 0 10px;
  list-style: none;
  max-width: 860px;
  margin: 1.5% auto 0;
  transition: background 0.8s;
  z-index: 1;
  position: relative;
}

/* Post List Thumbnails */
.post-list-thumb {
  float: left;
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  margin: 15px 0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .80);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  opacity: 0;
  flex-direction: column;
  content-visibility: hidden;
  contain-intrinsic-size: auto none;
}

.post-list-show {
  animation: homepage-load-animation .5s;
  opacity: 1 !important;
  will-change: auto !important;
  content-visibility: auto !important;
}

/* Form Elements */
input, select, textarea {
  color: var(--theme-skin);
  font: inherit;
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
  font-weight: var(--global-font-weight);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  padding: 8px;
  color: #505050;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border: 1px solid #FFFFFF;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  color: rgba(0, 0, 0, .8);
  font-size: .75rem;
  line-height: 1;
  padding: 4px 8px;
  border: 1px solid #FFFFFF;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

/* Misc Elements */
hr {
  background-color: #ccc;
  border: 0;
}

pre {
  font: 15px/22px 'Fira Code', 'Noto Sans SC';
  background: rgba(255, 255, 255, .5);
  border-radius: 10px;
  padding: 1em;
  overflow: auto;
  max-width: 100%;
  color: #000;
}

blockquote {
  margin: 0;
  padding: 30px 60px;
  position: relative;
  quotes: "" "";
}

.wp-block-quote blockquote{
  padding: 15px 30px;
}

.comments blockquote{
  padding: 30px 60px;
}

.wp-block-quote li,
.wp-block-quote ul {
  cursor: auto !important;
}

blockquote:before,
blockquote:after {
  font-family: FontAwesome;
  font-size: 1rem;
  color: var(--theme-skin, #505050);
  position: absolute;
}

blockquote:before {
  content: "\f10d" !important;
  top: 20px;
  left: 30px;
}

blockquote:after {
  content: '\f10e' !important;
  bottom: 15px;
  right: 20px;
}

.wrapper {
  animation: blur .8s;
  -webkit-animation: blur .8s;
  background-color: rgba(255, 255, 255, .8);
}

.site.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh; 
  width: 100%;
  display: flex;
  flex-direction: column;
}

#bgvideo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  min-height: 550px;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9; /* 添加默认宽高比 */
  contain: content; /* 控制布局计算范围 */
}

#video-add {
  position: absolute;
  bottom: 45px;
  right: 5px;
  width: 32px;
  height: 32px;
  z-index: 99;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  opacity: .8;
  -webkit-animation: poi-face 10s linear infinite alternate;
  animation: poi-face 10s linear infinite alternate;
  display: none;
}

#video-btn {
  position: absolute;
  bottom: 3px;
  right: 5px;
  width: 32px;
  height: 32px;
  z-index: 99;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  opacity: .8;
  -webkit-animation: poi-face 10s linear infinite alternate;
  animation: poi-face 10s linear infinite alternate;
}

.video-stu {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 6px 15px;
  text-align: center;
  color: #FFF;
  width: 100%;
  background-color: rgba(0, 0, 0, .8);
  border-radius: 0;
  font-size: 18px;
  font-weight: var(--global-font-weight);
}

.pattern-center::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:linear-gradient( 
    #fff0, 
    #00000080
  );
  backdrop-filter: saturate(150%) blur(1px);
}

.pattern-attachment.bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-origin: border-box;
}

.pattern-center header.pattern-header {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  color: #FFF;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  text-align: center;
}

.pattern-center h1.cat-title {
  color: #FFF;
  font-size: 40px;
  font-weight: var(--global-font-weight, 500);
  width: 80%;
  margin: auto;
  padding: 0;
  border: 0;
}

.pattern-center h1.entry-title {
  color: #FFF;
  font-size: 40px;
  font-weight: var(--global-font-weight, 500);
  margin: auto;
  padding: 0;
  border: 0;
}

.pattern-center header.single-header {
  max-width: 800px;
  padding: 0 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  top: auto;
  bottom: 30px;
}

.single-center .single-header h1.entry-title {
  margin: 0;
  margin-left: 5px;
  font-size: 32px;
  width: 100%;
  font-weight: var(--global-font-weight);
}

.single-center .entry-census {
  color: #fff;
  font-size: 13px;
  padding: 12px 0 0;
  line-height: 30px;
  font-weight: var(--global-font-weight);
  width: 100%;
}

.single-center .entry-census i{
  display: none;
}

.single-center .entry-census a:hover{
  color:var(--article-theme-highlight,var(--theme-skin-matching));
}

.single-center .entry-census span img {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  float: left;
  margin: 4.5px 8px;
  max-height: unset;
}

#moblieGoTop {
  position: fixed;
  bottom: 65px;
  right: 10px;
  font-size: 16px;
  z-index: 99;
  border: 0;
  outline: 0;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.65);
  color: #7D7D7D;
  padding: 6px 16px;
  border-radius: var(--style_menu_radius, 10px);
  transform: scale(0);
  border: 1px solid #FFFFFF;
}

#moblieGoTop i {
  cursor: pointer;
}

#changskin {
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 99;
  border: 0;
  outline: 0;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.65);
  color: #7D7D7D;
  padding: 15px;
  border-radius: var(--style_menu_radius, 10px);
  transform: scale(0);
  border: 1px solid #FFFFFF;
  --fa-animation-duration: 3s;
}

#changskin i {
  cursor: pointer;
}

#moblieGoTop:hover,#changskin:hover {
  color: var(--article-theme-highlight, var(--theme-skin-matching));
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.85);
}

/* 主容器样式 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; 
  z-index: 999;
  padding: 0 20px;
  gap: 20px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  contain: layout;
}

.site-header:hover {
  top: 0px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

/* 共享的背景和过滤器样式 */
.site-branding,
.nav-search-wrapper,
.user-menu-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 50px;
  height: 45px;
  display: flex;
  align-items: center;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
  border: 1px solid #f7f7f7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  -webkit-animation: slide-in-bck-top 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-bck-top 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.site-branding:hover,
.nav-search-wrapper:hover,
.user-menu-wrapper:hover {
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease-in-out;
}

/* Logo区域 */
.site-branding {
  width: fit-content;
  max-width: 240px;
}

.site-branding a{
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-branding img {
  height: 100%;
  width: auto;
  max-height: 35px;
  border-radius: 50px;
}

.site-title-logo {
  margin: 0;
  max-height: 35px;
}

.site-title {
  display: flex;
  white-space: nowrap;
  width: auto;
  transition: all 0.4s ease-out;
  color: var(--theme-skin);
  font-weight: 400;
  white-space: nowrap;
  border-radius: 50px;
  padding: 5px 10px;
  letter-spacing: 1px;
  font-size: 18px;
}

.site-title:hover {
  background-color: var(--theme-skin-matching);
  border-radius: 50px;
  transition: all 0.4s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

/* 导航和搜索区域 */
.menu ul {
  list-style: none;
}

.nav-search-wrapper {
  gap: 3px;
  width: auto;
  height: 45px;
  max-width: calc(100% - 400px);
  position: relative;
  overflow: hidden;
  --dw:0;
}

.nav-search-wrapper li,
.nav-search-wrapper ul {
  cursor: auto;
}

.site-header:not(:hover) .nav-search-wrapper:not(:hover)[data-scrollswap] nav {
  transform:translateY(-100%);
  margin-inline:calc(var(--dw,0px) / 2);
  opacity:0;
}
  
.site-header:not(:hover) .nav-search-wrapper:not(:hover)[data-scrollswap] .nav-article-title {
  transform:translateY(0);
}

.nav-search-wrapper nav {
  flex: 0 1 auto;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-search-wrapper nav .menu {
    height: 100%;
}

.nav-search-wrapper nav ul {
  display: flex;
  gap: 1.5px;
  white-space: nowrap;
  width: auto;
  transition: all 0.4s ease-in-out;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: stretch;
}

.nav-search-wrapper nav ul li {
  flex: 0 0 auto;
  white-space: nowrap;
  transition: all 0.4s ease-in-out;
}

.nav-search-wrapper nav ul li a {
  border-radius: 50px;
  display: flex;
  height: 100%;
  padding: 0px 12px;
  transition: all 0.3s ease-in;
  font-size: 15px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.nav-search-wrapper nav ul li a:hover {
  background-color: var(--theme-skin-matching);
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

/* 二级菜单样式 */
nav .menu > li {
  position: relative;
  display: inline-block;
}

nav .menu > li .sub-menu {
  position: absolute;
  right: 0;
  top: 195%;
  min-width: 90px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 5px 0;
  border: 1px solid #f7f7f7;
  pointer-events: none;
}

.sub-menu.active {
  pointer-events: auto !important;
}

nav .menu > li .sub-menu:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.4s ease-in-out;
}

nav .menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav .menu > li .sub-menu li {
  display: flex;
  padding: 1px 5px;
  justify-content: center;
}

nav .menu > li .sub-menu li:last-child {
  border-bottom: none;
}

nav .menu > li .sub-menu a {
  display: block;
  font-size: 14px;
}

.nav-article-title{
  position: absolute;
  transform: translateY(150%);
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  opacity: 0;
  transition-property: transform, margin;
}

/* 搜索分隔线和搜索框 */
.nav-search-divider {
  margin-left: 4px;
  margin-right: 4px;
  width: 1px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}

.searchbox {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  transition: all .4s ease-in-out;
  height: 100%;
}

.searchbox.js-toggle-search i,.bg-switch i{
  color: var(--theme-skin, #505050);
  cursor: pointer;
  transition: all .4s ease-in-out;
  height: 100%;
  font-size: 16px;
  width: fit-content;
  min-width: 33px;
  aspect-ratio: 1 / 1;
  border-radius: 50px;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchbox.js-toggle-search i:hover,.bg-switch i:hover {
  color: rgba(255, 255, 255, 0.8);
  transition: all .4s ease-in-out;
  background-color: var(--theme-skin-matching);
}

/* 用户菜单区域 */
.user-menu-wrapper {
  width: 45px;
  white-space: nowrap;
  align-items: stretch;
}

.header-user-avatar {
  position: relative;
  max-width: 35px;
  max-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-user-avatar a{
  display: flex;
}

.header-user-avatar img {
  border-radius: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: rotate(0);
  -webkit-transform: rotate(0);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.header-user-menu {
  position: absolute;
  width: 110px;
  right: -105%;
  background: rgba(255, 255, 255, 0.9);
  top: 50px;
  visibility: hidden;
  overflow: hidden;
  box-shadow: 0 1px 40px -8px rgba(0, 0, 0, .2);
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  opacity: 0;
  transform: translateY(-10px);
  border: 1px solid #f7f7f7;
}

.header-user-menu::before {
  content: "";
  position: fixed;
  top: 46px;
  right: 25px;
  margin-left: -10px;
}

.header-user-menu:hover,
.header-user-avatar:hover .header-user-menu {
  background: rgba(255, 255, 255, 0.95);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header-user-name,
.header-user-name.no-logged {
  font-size: 12px;
  padding: 10px 10px;
  color: var(--theme-skin, #505050);
  border-radius: 4px 4px 0 0;
  font-weight: var(--global-font-weight);
}

.header-user-name-u {
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-menu a {
  display: block;
  padding: 6px 10px;
  margin: 2px 0;
  width: 110px;
  text-align: center;
  font-size: 13px;
  font-weight: var(--global-font-weight);
}

.header-user-avatar a i{
  font-size: 26px; 
  padding: 4.5px; 
  color: var(--theme-skin);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.header-user-menu .user-menu-option {
  padding: 5px 0;
  border-radius: 0 0 4px 4px;
  width: 130px;
}

.site-content {
  max-width: 860px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent !important;
}

.feature i {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 25px;
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--theme-skin, #505050);
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
}

.overlay i {
  -webkit-transition: opacity .4s ease-out;
  transition: opacity .4s ease-out;
}

.feature img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #DADADA;
  position: relative;
  object-fit: cover;
}

.post-list h1.entry-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 50px;
  margin: 0 0 0 17%;
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 70%;
}

.p-time {
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 12px;
  color: #989898;
  letter-spacing: 0;
  font-weight: var(--global-font-weight);
}

.post-list p {
  min-height: 60px;
  margin: 0 0 0 17%;
  font-size: 15px;
  color: rgba(0, 0, 0, .66);
  letter-spacing: 0;
  line-height: 30px;
  font-weight: var(--global-font-weight);
}

.post-list-thumb:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1px 20px 10px #e8e8e8;
}

.post-list-thumb i {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.post-list-thumb .post-title h3 {
  color: #505050;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 18px;
  word-wrap: break-word;
  margin: 0;
  letter-spacing: 2px;
}

.post-list-thumb .post-title h3:hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
  letter-spacing: 3px;
}

.post-list-thumb .post-title h3::before{
  display: none;
}

.post-date {
  font-size: 12px;
  width: max-content;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px 5px 10px;
  border-radius: 6px;
  color:rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  font-weight: var(--global-font-weight);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.post-meta {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  white-space: nowrap;
  font-weight: var(--global-font-weight);
  color: rgba(255, 255, 255, 0.8)!important;
  display: inline-flex;
  gap: 4px 12px;
  flex-direction: row;
  padding: 5px 10px 5px 10px;
  border-radius: 6px;
  max-width: 70%;
  top: 10px;
  right: 10px;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.post-meta a {
  color:rgba(255, 255, 255, 0.8);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: var(--global-font-weight);
}

.post-meta a:hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching)) !important;
}

.post-meta .meta-author,.entry-census .meta-author{
  margin:0;
}

.post-title {
  background-color: #ffffffbd;
  margin: 5px;
  padding: 10px 15px;
  bottom: 22%;
  left: 2%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
  position: absolute;
  display: inline-flex;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  z-index: 3;
  height: fit-content;
  max-height: 34%;
  overflow: hidden;
  max-width: 80%;
  width: fit-content;
}

.post-title:hover{
  box-shadow: 0 1px 20px 10px rgba(232,232,232,0.3);
  background: rgba(255, 255, 255, 0.85);
}

.post-thumb a {
  height: 300px;
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.post-thumb a * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-excerpt {
  position: absolute;
  bottom: 5%;
  width: 98%;
  max-height: 15%;
  height: fit-content;
  left: 2%;
  margin: 0;
  margin-top: 5px;
  padding: 0 10px;
  color: rgba(0, 0, 0, .66);
  z-index: 1;
  overflow: hidden;
  font-size: 15px;
}

.ai-excerpt-tip {
  font-size: 12px;
  color:#cccccc;
  float: left;
  padding-bottom: 2px;
  margin-bottom: 0;
  margin-right: 10px;
}

.post-top {
  color:gold !important;
}

.post-top i {
  color:gold !important;
}

.post-excerpt p {
  margin: 0;
  height: fit-content;
  max-height: 48px;
}

.homepage-load-animation:hover{
  background: rgba(255, 255, 255, 1);
}

.navigator a {
  display: inline-block;
  height: 39px;
  line-height: 39px;
  margin: 20px 0;
}

.navigator i {
  font-size: 15px;
  color: #7d7d7d;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 12px;
  border-radius: 10px;
  margin: 0 10px;
  font-weight: 900;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border: 1px solid #FFFFFF;
}

.navigator i:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
  color: var(--theme-skin-matching, #505050);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.site-footer {
  position: fixed;
  bottom: -100%;
  width: 90%;
  max-width: 820px;
  border-radius: 10px;
  margin: 15px auto;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 20px 0;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter; 
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  transition: all 1s ease-in-out; 
}

body.dark .site-footer {
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.site-footer.show {
  bottom: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, background 0.6s ease-in-out, box-shadow 0.6s ease-in-out, bottom 0.9s cubic-bezier(0.22, 0.84, 0.46, 1.04);
}

.site-info {
  margin: 0 auto;
  padding: 0 20px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.hitokoto {
  font-style: italic;
}

.site-footer p {
  margin: 0;
  color: #00000080;
}

.cdn-provider {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cdn-provider img {
  width: 60px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}

.theme-info {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-info a{
  color: #0000004d;
}

.theme-info a:hover{
  color: var(--theme-skin-matching, #505050);
}

.entry-census {
  font-size: 12px;
  margin: 0;
  color: #888;
  font-weight: var(--global-font-weight);
  display: inline-flex;
  flex-wrap: wrap;
  gap:2px 8px;
  max-width: 98%;
  overflow: hidden;
  max-height: 40px;
}

.entry-census i {
  display: none;
}

.entry-census.has-splitter{
  gap:2px 5px;
}

.entry-census.has-splitter>:where(a,span):not(:last-child)::after{
  content: "·";
  margin-left:5px;
  margin-inline-start: 5px;
}

.entry-header hr {
  width: 30%;
  height: 0px;
  border: 0;
  margin: 20px auto;
}

h1.page-title {
  font-size: 20px;
  font-weight: var(--global-font-weight, 400);
  border: 1px solid #ddd;
  padding: 10px 15px;
  color: #505050;
  margin-bottom: 30px;
}

.post-footer {
  padding: 30px 0;
  width: 100%;
  height: auto;
  margin: auto;
  position: relative;
  float: left;
  border: none;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.post-footer a:hover{
  color: var(--article-theme-highlight,var(--theme-skin-matching)) !important;
}

.post-license {
  float: left;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  color: #7D7D7D;
  padding: 12px;
  font-size: 24px;
  position: inherit;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  display:flex;
  gap: 3px;
}

.post-license:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.post-tags {
  float: left;
  font-size: 13px;
  color: #7D7D7D;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 14px 18px;
  text-transform: uppercase;
  position: inherit;
  border-radius: 10px;
  font-weight: var(--global-font-weight);
  border: 1px solid #FFFFFF;
}

.post-tags:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.post-footer .info {
  overflow: hidden;
  float: left;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 9px 9.5px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
}

.post-footer .info:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.post-footer .profile {
  display: block;
  float: left;
}

.post-footer .meta {
  display: block;
  float: left;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
}

.post-footer .meta:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.post-footer .meta a {
  font-size: 16px;
  float: left;
  color: #7d7d7d;
}

.post-modified-time {
  float: left;
  font-size: 13px;
  color: #7D7D7D;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 14.3px 18px;
  text-transform: uppercase;
  position: inherit;
  border-radius: 10px;
  font-weight: var(--global-font-weight);
  border: 1px solid #FFFFFF;
}

.post-modified-time:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.post-squares {
  overflow: hidden;
  background: #000;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 15px;
  z-index: 1;
}

.post-squares .background {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-size: cover;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.post-squares a,
.post-squares article {
  position: relative;
  display: block;
  float: left;
  overflow: hidden;
  height: 100%;
  padding: 55px 25px;
  text-align: center;
}

.post-squares .category {
  font-size: 10px;
  padding: 7px 15px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 90px;
  background: #7fbb00;
  font-weight: var(--global-font-weight);
}

.post-squares h3 {
  font-size: 17px;
  font-weight: var(--global-font-weight, 400);
  line-height: 30px;
  margin: 20px 0;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.post-squares hr {
  width: 15%;
  height: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
}

.post-squares .label {
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--global-font-weight);
}

.post-squares .info {
  position: relative;
  z-index: 99;
}

.post-squares a:hover > .background,
.post-squares article:hover > .background {
  opacity: 0.6;
}

.post-squares h3 a {
  display: block;
  color: #fff;
}

.post-squares .full {
  width: 100%;
}

.post-squares.post-squares-featured {
  height: 250px;
}

/* nextprev 区域的样式 */
.nextprev a {
  height: 150px;
  padding: 55px 40px;
  text-align: left;
  width: 100%;
}

.nextprev > :not(:only-child) {
  width: 50%;
}

.nextprev article {
  height: 150px;
  padding: 55px 40px;
  text-align: left;
}

.nextprev .label {
  position: absolute;
  z-index: 99;
  top: 0;
}

.nextprev .info {
  position: absolute;
  width: 70%;
}

.nextprev a[rel="prev"] {
  text-align: left;
}

.nextprev a[rel="prev"] .info {
  bottom: 40px;
  left: 40px;
}

.nextprev a[rel="prev"] .label {
  top: 40px;
  left: 40px;
}

.nextprev a[rel="prev"] hr {
  float: left;
  margin: 0;
}

.nextprev a[rel="next"] .info {
  text-align: right;
  right: 40px;
  bottom: 40px;
}

.nextprev a[rel="next"] .label {
  top: 40px;
  right: 40px;
}

.nextprev a[rel="next"] hr {
  float: right;
  margin: 0;
}

.post-footer .profile img {
  max-width: 30px;
  max-height: 30px;
  border-radius: 100%;
  float: left;
}

.post-footer .desc {
  font-size: 13px;
  letter-spacing: 0;
  display: block;
  float: left;
  color: #7D7D7D;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 14px 18px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #FFFFFF;
}

.post-footer .desc:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.post-footer .desc i {
  color: #7D7D7D;
  float: none;
  margin-right: 10px;
  font-size: 16px;
}

.author_info {
  min-width: 200px;
  max-width: 70%;
  width: fit-content;
  position: relative;
  height: 110px;
  left: 50%;
  transform: translateX(-50%);
  margin: 10% 0;
  float: left;
  display: flex;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 12px;
  border-radius: 10px;
  border: 1.5px solid #FFFFFF;
  flex-direction: column;
  font-weight: var(--global-font-weight);
}

.author_info .avatar {
  float: left;
  height: 75px;
  width: 75px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -24%;
  display: flex;
  box-shadow: none;
}

.author_info .avatar img {
  border-radius: 100%;
  vertical-align: middle;
}

.author_info .author-center {
  position: relative;
  margin-top: 10px;
  color: #505050;
}

.author_info .author-center h3 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  display: inline-flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  max-height: 36px;
  height: fit-content;
}

.author_info .author-center .description {
  font-size: 14px;
  font-weight: var(--global-font-weight);
  text-align: center;
  overflow: hidden;
  max-height: 20px;
  height: fit-content;
  margin: 0 10px;
}

#loading-comments {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  height: 40px;
  text-align: center;
  line-height: 45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

h3#comments-list-title {
  max-width: 860px;
  width: fit-content;
  margin: 30px auto;
  color: var(--theme-skin);
  font-weight: 600;
  font-size: 20px;
  position: relative;
  display: inline-block;
}

h3#comments-list-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
  left: 15%;
	width: 70%;
	height: 0.7em;
	background-color: var(--article-theme-highlight,var(--theme-skin-matching)) !important;
	opacity: 0.4;
	z-index: 0;
	border-radius: 30px;
	transition: all 0.3s ease;
}

h3#comments-list-title:hover::after {
	width: 85%;
	opacity: 0.7;
}

.butterBar {
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.butterBar-message {
  background: var(--theme-skin, #505050);
  color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 0;
  padding: 12px 25px;
  z-index: 999;
  margin-top: -4px;
  font-weight: var(--global-font-weight);
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  width: auto !important;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image .aligncenter>figcaption{
  text-align: center; 
}

#baguetteBox-overlay .full-image {
  cursor: -webkit-zoom-out;
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figcaption {
  cursor: auto;
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 3;
  color: #eee;
  background-color: rgba(0, 0, 0, .8);
}

#baguetteBox-overlay .full-image img {
  cursor: auto;
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 80%;
  max-width: 80%;
  vertical-align: middle;
  box-shadow: 0 0 170px #ddd;
}

.clear:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.comment-content:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.entry-content:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.site-content:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

#al_expand_collapse{
  cursor: pointer !important;
}

h1.cat-title {
  display: inline-block;
  font-size: 30px;
  font-weight: var(--global-font-weight, 400);
  color: var(--theme-skin, #505050);
}

header.page-header {
  position: relative;
  text-align: center;
  margin-bottom: 6.5%;
  color: #9C9C9C;
}

nav#comments-navi {
  margin: 30px auto;
  max-width: 860px;
  width: 100%;
  color: #9A9A9A;
}

.comments .commentwrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

.comments .commentwrap hr {
  height: 0;
  width: 100%;
  background: #eee;
  border: 0;
  margin: 40px 0;
}

.comments .comments-main {
  -webkit-transition: height 0s ease-out;
  transition: height 0s ease-out;
  padding-bottom: 20px;
}

.comment .contents {
  width: 100%;
  margin-bottom: 5px;
  float: left;
  padding-bottom: 15px;
}

.comment .body {
  line-height: 32px;
  color: #63686d;
  position: relative;
}

.comment .body p {
  font-size: 14px;
  line-height: 30px;
  margin-top: 15px;
  padding-bottom: 10px;
  padding-left: 3px;
  color: #63686d;
}

.comment .profile img {
  width: 100%;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-transition: opacity .15s ease-out;
  transition: opacity .15s ease-out;
}

.comment .commeta {
  font-size: 16px;
  overflow: hidden;
  margin-top: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #9499a8;
  margin-left: 55px;
  font-weight: var(--global-font-weight);
}

.comment-reply-login {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.comment-reply-login:hover {
  color: #7D7D7D;
}

.comment .comment-reply-link {
  font-size: 13px;
  display: block;
  margin-left: 10px;
  float: right;
  text-transform: uppercase;
  color: #FFF;
  background-color: var(--article-theme-highlight,var(--theme-skin-matching));
  line-height: 20px;
  padding: 1px 7px;
  border-radius: 6px;
  opacity: 0;
  font-weight: var(--global-font-weight);
  border: 1px solid var(--article-theme-highlight);
}

.comment .comment-reply-link:hover {
  background-color: #fff;
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.comment .info {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(0, 0, 0, .35);
  font-weight: var(--global-font-weight);
}

.comment .info .useragent-info img {
  vertical-align: sub;
  width: 14px;
  height: 14px;
  border: 0;
}

.comment .info .useragent-info-m {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(0, 0, 0, .35);
  display: none;
  font-weight: var(--global-font-weight);
}

.comment .info .useragent-info-m img {
  vertical-align: sub;
  width: 14px;
  height: 14px;
  border: 0;
}

.comment h4 {
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
  line-height: 20px;
}

.comment h4 img {
  display: none;
  border-radius: 3px;
  margin: 0 5px;
  vertical-align: -4px;
}

.comment hr {
  clear: both;
  width: 100%;
  height: 1px;
  margin: 40px 0 60px;
  border: 0;
  background: #e6e6e6;
}

.comment-respond {
  width: 97.5%;
  max-width: 860px;
  margin: 0 auto;
  background: rgb(255 255 255 / 50%);
  border-radius: 15px;
  display: grid;
  padding: 15px 25px 5px;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  margin-bottom: 8%;
  border: 1.5px solid #FFFFFF;
}

.comment-respond:hover {
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 1px 20px 4px #e8e8e8;
}

.comment-respond .logged-in-as {
  margin-bottom: 0;
  padding: 10px 0;
  border-radius: 3px;
  background: 0 0;
  color: #6F6F6F;
  width: 100%;
  max-width: 100%;
  text-align: left;
  border: 0;
  margin: 0;
}

.comment-respond #cancel-comment-reply-link {
  float: right;
  background-color: rgb(255 255 255 / 80%);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid #FFFFFF;
  color: #454545;
  font-weight: var(--global-font-weight);
}

.comment-respond #cancel-comment-reply-link:hover {
  background: var(--article-theme-highlight,var(--theme-skin-matching));
  color: #fff;
}

.comment-respond input,
.comment-respond textarea {
  font-size: 14px;
  width: 100%;
  margin: 0;
  font-weight: var(--global-font-weight);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  color: #505050;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  transition: all 0.4s ease-in-out,height 0s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out,height 0s ease-in-out;
}

.comment-respond input {
  padding: 12px;
}

.comment-respond textarea {
  padding: 20px;
  display: block;
  float: none;
  height: 180px;
  margin-bottom: 10px;
  resize: vertical;
}

.graybar a{
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.input-label {
  position: absolute;
  left: 16px;
  top: 20px;
  padding: 0 6px;
  transform-origin: 0 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.19, 0.54, 0.68, 1);
  -webkit-transition: all 0.25s cubic-bezier(0.19, 0.54, 0.68, 1);
}

.commentbody:not(:placeholder-shown)~.input-label {
  color: #fff;
  background-color: var(--theme-skin, #505050) !important;
  transform: scale(.75) translate(-2px, -37px);
  border-radius: 3px;
}

.commentbody:focus~.input-label {
  color: #fff;
  background-color: var(--theme-skin, #505050) !important;
  transform: scale(.75) translate(-2px, -37px);
  border-radius: 3px;
}

.comment-respond .form-submit {
  clear: both;
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
  flex-direction: row-reverse;
}

.comment-respond input[type=submit] {
  width: 30%;
  max-width: 140px;
  height: 45px;
  margin: 0;
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  color: #fff;
  background: var(--article-theme-highlight,var(--theme-skin-matching));
  border-right: 0;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  text-shadow: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.notification {
  padding: 16px 24px;
  border-radius: 10px;
  color: #6F6F6F;
  width: auto;
  margin: auto;
  text-align: left;
  background-color: rgb(255 255 255 / 50%);
  float: left;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  margin-bottom: 50px;
  margin-left: 1%;
  margin-top: 2%;
  border: 1px solid #FFFFFF;
}

.notification:hover {
  background-color: rgb(255 255 255 / 80%);
  box-shadow: 0 1px 20px 4px #e8e8e8;
}

.comment-checks{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.comment-captcha{
  display: flex;
  height: 40px;
  width: 30%;
}

.comment-captcha img{
  border-radius: 10px;
}

.siren-checkbox-label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  font-weight: var(--global-font-weight);
}

.siren-checkbox-label input {
  padding: 0;
  margin: 0;
  float: none;
  width: initial;
}

#wp-comment-cookies-consent {
  padding: 0;
  margin: 0;
  float: none;
  width: initial;
}

.siren-checkbox-radioInput {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 100%;
  display: inline-block;
  height: 18px;
  margin-right: 8px;
  margin-top: -7px;
  vertical-align: sub;
  width: 18px;
  line-height: 1;
}

.siren-checkbox-radio:checked+.siren-checkbox-radioInput:after {
  background-color: #FE9600;
  border-radius: 100%;
  content: "";
  display: block;
  height: 12px;
  margin: 2px;
  width: 12px;
}

h1.fes-title,
h1.main-title {
  color: var(--theme-skin, #505050);
  font-size: 18px;
  font-weight: var(--global-font-weight, 400);
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
  opacity: 0;
  content-visibility: hidden;
  contain-intrinsic-size: auto none;
}

.foverlay {
  -webkit-transition: opacity .4s ease-out;
  transition: opacity .4s ease-out;
}

#centerbg {
  width: 100%;
  height: 550px;
  margin: 0;
  padding: 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  z-index: -1;
}

.focusinfo {
  position: relative;
  max-width: 800px;
  padding: 0 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.focusinfo .header-tou {
  display: grid;
  justify-items: center;
  justify-content: center;
  margin: 0;
}

.focusinfo .header-tou img {
  position: relative;
  opacity: 1;
  transform: rotate(0);
  width: 120px;
  height: 120px;
  border-radius: 100%;
}

.focusinfo .header-tou img:hover {
  transform: rotate(360deg);
}

.header-info {
  width: 65%;
  margin: auto;
  font-size: 16px;
  color: var(--theme-skin, #505050);
  background: rgba(255,255,255,var(--homepage_widget_transparency, 1));
  padding: 15px;
  margin-top: 22px;
  line-height: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,var(--homepage_widget_transparency, 1));
  box-sizing: initial;
  white-space: nowrap;
  font-weight: var(--global-font-weight);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
}

.header-info p {
  margin: 0;
  font-family: 'Noto Serif SC';
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-social {
  margin-top: 20px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 65%;
  flex-wrap: wrap;
  z-index: 999;
}

.top-social .inner img {
  background: unset!important;
  border: unset!important;
  box-shadow: unset!important;
}

.top-social img,
.top-social i {
  height: 36px;
  width: 40px;
  padding: 8px 10px;
  border: 0.5px solid rgba(255,255,255,var(--homepage_widget_transparency, 1));
  background: rgba(255,255,255,var(--homepage_widget_transparency, 1));
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-social i {
  font-size: 20px;
  color: var(--theme-skin-matching);
}

.top-social img:hover,
.top-social i:hover{
  box-shadow: 0 1px 6px 3px #e8e8e8;
  background: rgba(255, 255, 255, 0.95);
}

.top-social .socialIconWithInner {
  position: relative;
}

.top-social_v2 {
  height: fit-content;
  display: inline-flex;
  top: 8px;
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.top-social_v2 img,
.top-social_v2 i {
  height: 35px;
  width: 35px;
  min-width: 35px;
  background: 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-social_v2 i {
  font-size: 28px;
  color: var(--theme-skin-matching);
}

.top-social li,
.top-social_v2 li{
  float: left;
  margin: 5px;
  list-style-type: none; 
}

.slider-container {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 105px;
  width: 100%;
}

.prev,
.next {
  width: 35px;
  height: 35px;
  cursor: pointer;
  user-select: none;
  text-align: center;
}

.slider-wrapper {
  flex-grow: 1;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0;
  margin: 0;
  gap: 10px;
  justify-content: center;
  cursor: unset!important;
}

.slider li {
  list-style: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.top-social .inner,
.slider li .inner {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: max-content;
  height: max-content;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-top: 15px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, max-height 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.top-social .inner span,
.slider li .inner span {
  max-width: 300px;
  min-width: 110px;
  padding: 10px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.top-social .inner img,
.slider li .inner img {
  width: 110px;
  height: auto;
  padding: 10px;
}

.top-social li:hover .inner,
.slider li:hover .inner {
  opacity: 1;
  visibility: visible;
  max-height: 121px;
  transform: translateX(-50%) translateY(0);
}

.top-social li:not(:hover) .inner,
.slider li:not(:hover) .inner {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateX(-50%) translateY(10px);
}

.fade-in-left {
  animation: fadeInLeft 0.5s ease-in-out;
}

.fade-in-right {
  animation: fadeInRight 0.5s ease-in-out;
}

.slider-container.enough-space .prev,
.slider-container.enough-space .next {
  visibility: hidden;
}

.search-form--modal {
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
  overflow: hidden;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
}

.search-form--modal .search-form__inner {
  max-width: 640px;
  padding: 0 20px;
  margin: auto;
  text-align: left;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  height: 285px;
  top: 0;
  bottom: 0;
}

.search-form.is-visible {
  visibility: visible;
  opacity: 1;
  animation: elastic .5s;
  background-color: rgba(255, 250, 255, 0.7);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.search-form .search_close {
  position: absolute;
  width: 35px;
  height: 35px;
  background: 0 0;
  top: 20px;
  right: 15px;
  cursor: pointer;
}

.search_close:after {
  background-color: var(--theme-skin);
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  top: 17px;
  left: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.search_close:before {
  background-color: var(--theme-skin);
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  top: 17px;
  left: 2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.search-form input {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  width: 100%;
  outline: 0;
  border-radius: 50px;
  box-sizing: border-box;
  font-weight: var(--global-font-weight);
}

/*search filter style*/
#filter-container {
  background-color: var(--theme-skin);
  opacity: 0.75;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-count {
  background-color: #FFFFFF;
  color: #000000;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

#search-filter-form {
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

#search-filter-form label {
  margin: 0px 5px;
}

#filter-toggle {
  cursor: pointer;
  color: #FFFFFF;
  font-size: 1.2em;
  text-align: right;
}

/*search filter style end*/
.s-search input {
  font-size: 1rem;
  background: none;
  padding: 12px 24px;
  width: 100%;
  outline: 0;
  border-radius: 50px;
  box-sizing: border-box;
  font-weight: var(--global-font-weight);
}

.ins-section-wrapper {
  left: 0;
  right: 0;
  top: 45px;
  bottom: 0;
  margin-top: 45px;
  height: 70vh;
  overflow-y: auto;
  position: absolute;
  border-radius: 14px 0 0 14px;
  scroll-behavior: smooth;
}

.ins-section-container {
  position: relative;
  background: transparent;
  border-radius: 5px;
  font-family: none;
}

.ins-section .fa {
  font-size: 18px;
  color: var(--theme-skin, #505050) !important;
  bottom: unset;
  left: 12px;
  margin-top: -3px;
  line-height: unset;
  font-weight: var(--global-font-weight);
}

.ins-section .ins-section-header {
  padding: 8px 15px;
  position: sticky;
  top: 0;
  background: #fff;
  text-align: center;
  z-index: 1;
  color: var(--theme-skin, #505050);
  border-bottom: 3px solid var(--theme-skin, #505050);
  border-color: var(--theme-skin, #505050);
}

.ins-section .ins-search-item header {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #9a9a9a;
  margin-left: 20px;
}

.ins-section .ins-search-item .ins-search-preview {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #9a9a9a;
  margin-left: 20px;
  font-size: 12px;
  margin: 5px 0 0 0px;
  font-weight: var(--global-font-weight);
}

#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, .8);
  transition: opacity .5s ease;
  animation: elastic .5s;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left .4s ease, transform .4s ease;
}

.baguetteBox-button#next-button {
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
  right: 2%;
  box-shadow: none;
}

.baguetteBox-button#previous-button {
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
  left: 2%;
  box-shadow: none;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
  border-radius: 0;
  color: #ddd;
  font: 1.6em sans-serif;
}

.baguetteBox-button#close-button {
  top: 23px;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
  display: none;
}

.spinner {
  width: 60px;
  height: 60px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  margin: 100px auto;
}

.double-bounce1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #505050;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #505050;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.entry-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.page-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0;
}

.gallery img {
  width: 100%;
  height: 180px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.gallery .gallery-item {
  display: inline-block;
  vertical-align: top;
  width: 280px;
  height: 180px;
  position: relative;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

.gallery:hover .gallery-item:not(:hover) {
  opacity: .7;
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

#nprogress .bar {
  background: var(--theme-skin, #505050);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--theme-skin, #505050), 0 0 5px var(--theme-skin, #505050);
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 999;
  top: 27px;
  right: 24px;
  left: inherit;
  width: auto;
  height: auto;
  margin: 0;
}

#nprogress .spinner-icon {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: solid 3px transparent;
  border-top-color: var(--theme-skin, #505050);
  border-left-color: var(--theme-skin, #505050);
  border-radius: 50%;
  -webkit-animation: nprogress-spinner .4s linear infinite;
  animation: nprogress-spinner .4s linear infinite;
}

#pagination {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  margin: 40px 0 80px;
  display: inline-block;
}

#pagination a:hover {
  color: var(--theme-skin-matching, #505050);
  box-shadow: 0 1px 20px 10px #e8e8e8;
}

#pagination a {
  padding: 13px 35px;
  background: rgb(255 255 255 / 50%);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border: 1.5px solid #FFFFFF;
  border-radius: 50px;
}

#pagination .loading {
  background: var(--load_nextpage_svg);
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  background-size: auto 100%;
}

#pagination .loading:hover {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.no-logged {
  font-size: 13px;
  padding: 15px 10px;
  border-radius: 4px;
  border: 0;
  font-weight: var(--global-font-weight);
}

.no-logged a {
  display: initial;
  font-size: 14px;
  padding: 0 5px;
  text-decoration: underline;
  font-weight: var(--global-font-weight);
}

.reward-open {
  float: left;
  font-size: 24px;
  padding: 6px 12px;
  text-align: center;
  display: block;
  border-radius: 10px;
  color: #7d7d7d;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  font-weight: var(--global-font-weight);
  border: 1px solid #FFFFFF;
  cursor: pointer;
}

.reward-open:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.reward-main {
  position: absolute;
  top: 80px;
  left: -1%;
  margin: 0;
  width: 400px;
  background: 0 0;
  display: none;
  z-index: 99;
  animation: main .4s;
}

.reward-main ul,
.reward-main li {
  cursor: auto;
}

.reward-row {
  margin: 2% 0 0 2%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  display: block;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
}

.reward-row li img {
  width: 150px;
  max-width: 150px;
  border-radius: 3px;
  position: relative;
}

.reward-row li::after {
  display: block;
  padding: 5px 0 0;
  font-size: 13px;
  color: none;
  font-weight: var(--global-font-weight);
}

.dot {
  width: .5rem;
  height: .5rem;
  border-radius: .5rem;
  display: inline-block;
  background-color: #919292;
}

.load-button {
  width: 200px;
  height: 60px;
  margin: auto;
  cursor: pointer;
  perspective: 500px;
  -webkit-perspective: 500px;
}

.load-button div {
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.load-button span {
  width: 100%;
  height: 100%;
  position: absolute;
  box-sizing: border-box;
  border: 5px solid #d34836;
  line-height: 50px;
  font-size: 17pt;
  text-align: center;
  text-transform: uppercase;
  font-weight: var(--global-font-weight);
}

.load-button span:nth-child(2) {
  color: #fff;
  background: #d34836;
  transform: rotateX(90deg) translate3d(0, 0, 30px);
  -webkit-transform: rotateX(90deg) translate3d(0, 0, 30px);
}

input[type=radio]:checked:before {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  font: 400 21px/1 dashicons;
  speak-as: none;
  -webkit-font-smoothing: antialiased;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#Snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(125, 137, 95, 0);
  pointer-events: none;
}

.rotating {
  -webkit-animation: rotating 3s linear infinite;
  animation: rotating 3s linear infinite;
}

.center-text {
  margin: auto;
  font-family: 'Noto Sans SC';
  font-size: 80px;
  text-transform: none;
  font-weight: var(--global-font-weight);
}

.glitch:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  clip: rect(0, 0, 0, 0);
  left: 1px;
  text-shadow: -1px 0 #00a7e0;
}

.glitch:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  clip: rect(0, 0, 0, 0);
  left: -1px;
  text-shadow: 1px 0 #ff3f1a;
  margin-top: initial;
  visibility: visible;
  height: initial;
}

.bb-comment {
  border: 1px solid var(--article-theme-highlight,var(--theme-skin-matching));
  min-width: 30px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: var(--article-theme-highlight,var(--theme-skin-matching));
  border-radius: 6px;
  padding: 1px 3px;
  font-weight: var(--global-font-weight, 400);
}

.itempic {
  min-height: 280px;
  max-height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.finish-icon-container {
  font-size: 1rem;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: var(--global-font-weight);
}

.skill div {
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 4px;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, .22);
  width: 100%;
  text-align: center;
  font-weight: var(--global-font-weight);
}

.toc-container {
  z-index: 99;
  width: 190px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  right: -15vw;
  top: 240px;
  position: absolute;
  padding-top: 10px;
  padding-bottom: 10px;
}

.toc-container li,
.toc-container ol{
  cursor: auto;
}

.toc {
  position: sticky;
  top: 12%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 10px;
  width: fit-content;
  border-radius: 10px;
  border: 1.5px solid #FFFFFF;
}

.toc::-webkit-scrollbar-track {
  margin: 1px !important;
}

.toc:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.toc-link::before {
  content: ' ';
  display: inline-block;
  height: inherit;
  left: 2%;
  margin-top: 2px;
  position: absolute;
  width: 3px;
  height: 20px;
  border-radius: 50px;
}

.flipx {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
}

.flipy {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipV;
}

.comment-reply-title{
  margin: 0;
  margin-bottom: 8px;
}

/* 表情面板 */
#emotion-toggle,
.insert-image-tips,
.markdown-toggle{
  text-align: center;
  width: 45px;
  height: 45px;
  margin: 0;
  padding: 10px;
  text-transform: none;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  color: #505050;
  background: rgba(255, 255, 255, 0.6);
  text-shadow: none;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  font-weight: var(--global-font-weight);
}

#emotion-toggle:hover,
.insert-image-tips:hover,
.markdown-toggle:hover{
  color: var(--article-theme-highlight,var(--theme-skin-matching));
  box-shadow: 0 1px 20px 10px #e8e8e8;
}

.emotion-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  width: 300px;
  height: 300px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  z-index: 99;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  overflow: hidden;
}

.emotion-box.open {
  transform: scale(1);
}

.emotion-header {
  width: 100%;
  background: #f0f0f0;
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.motion-switcher-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
  table-layout: fixed;
}

.motion-container {
  height: 100%;
  overflow: scroll;
  margin-bottom: 5px;
  border-radius: 5px;
  background: transparent;
}

.motion-container::-webkit-scrollbar-track {
  background: transparent;
}

.motion-container::-webkit-scrollbar {
  background-color: transparent;
  height: 0px;
}
/* 表情面板结束 */
/* 表情选区 */
.motion-container span:hover img,
.motion-container .emoji-item:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}

.bili-container,
.tieba-container {
  padding-left: 16px;
}

.tieba-container span {
  width: 32px;
  height: 32px;
}

.tieba-container img,
.bili-container img {
  width: 32px;
  height: 32px;
  margin: 7px;
}

.tieba-container img:hover {
  background-color: rgba(245, 245, 245, .8);
  border-radius: 5px;
}

.motion-switcher-table td,
.motion-switcher-table th {
  padding: 8px;
  text-align: center;
  border-radius: 5px;
}

.motion-switcher-table th:hover {
  background-color: rgba(245, 245, 245, .5);
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.menhera-container .emoji-item {
  padding: 3px 5px;
  margin: 3px 3px;
  display: inline-block;
  border-radius: 4px;
  color: var(--theme-skin, #505050);
}

.menhera-container .emoji-item:hover {
  background-color: rgba(245, 245, 245, .8);
}
/* 表情选区结束 */
/* markdown按钮 */
.markdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.markdown-toggle:has(input:checked) {
  outline: 1px solid var(--article-theme-highlight, var(--theme-skin-matching));
}

.markdown-toggle input {
  display: none;
}

.markdown-toggle input:checked + i {
  color: var(--article-theme-highlight, var(--theme-skin-matching));
}
/* markdown按钮结束 */

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.scrollbar {
  position: fixed;
  top: 0;
  height: 3px;
  background: var(--article-theme-highlight, var(--theme-skin-matching)); 
  transition-property: width, background;
  transition-duration: 1s, 1s;
  z-index: 999;
}

.comment-user-avatar {
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-top: 10px;
  pointer-events: none;
}

.comment-user-avatar .socila-check {
  display: none;
  width: 1.5em;
  height: 1.5em;
  font-size: 1em;
  line-height: 1.4em;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  margin: -25px 0 0 30px;
  font-weight: var(--global-font-weight);
}

.gravatar-check {
  background-color: #FF6347;
}

.cmt-popup {
  margin: 0 0 30px 1%;
  --widthA: 97%;
  --widthB: calc(var(--widthA) - 71px);
  --widthC: calc(var(--widthB) / 3);
  width: var(--widthC);
  margin-top: 10px;
}

.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 3px;
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 50%;
  margin-left: -80px;
}

.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.popup .insert-img-popuptext {
  visibility: hidden;
  width: 66px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 3px;
  position: absolute;
  z-index: 1;
  bottom: 9%;
  right: -180%;
  margin-right: 0;
}

.popup .insert-img-popuptext::after {
  content: "";
  position: absolute;
  top: 33%;
  left: -9%;
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  transform: scaleX(-1);
  border-color: transparent transparent transparent #555;
}

input#upload-img-file {
  display: none;
}

.insert-image-button {
  margin-left: -55px !important;
  width: 45px !important;
  height: 45px !important;
  left: 55px !important;
  position: relative;
  cursor: pointer;
}

.upload-image-preview {
  display: inline-block;
  height: 70px;
  margin-right: 3px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px;
  cursor: pointer;
}

.comment_inline_img {
  display: inline-block;
  height: 150px;
  margin-right: 3px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px;
  cursor: pointer;
}

/* 旧的展示区样式已移除 */

.highlight-wrap:before {
  content: " ";
  position: absolute;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fc625d;
  width: 12px;
  height: 12px;
  left: 12px;
  margin-top: -18px;
  -webkit-box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
  box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
  z-index: 2;
}

.highlight-wrap {
  position: relative;
  background: #21252b;
  border-radius: 10px;
  font: 15px/22px 'Fira Code', 'Noto Sans SC';
  line-height: 1.6;
  margin-bottom: 1.6em;
  margin-left: 8px;
  margin-right: 8px;
  max-width: 100%;
  overflow: auto;
  text-shadow: none;
  color: #000;
  padding-top: 30px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .4);
}

.highlight-wrap .copy-code {
  color: #fff;
  position: absolute;
  float: right;
  right: 10px;
  top: 0;
  padding-top: 4px;
  padding-right: 2px;
  z-index: 2;
  font-size: 16px;
  font-weight: var(--global-font-weight);
}

.highlight-wrap code::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3) !important;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3) !important;
  border-radius: 10px !important;
  background-color: #21252b !important;
}

.highlight-wrap code::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .5) !important;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .5) !important;
  background-color: #21252b !important;
}

.highlight-wrap code {
  background: #1d1f21;
  color: #fff;
  word-break: break-word;
  font-family: 'Fira Code', 'Noto Sans SC';
  padding: 2px;
  text-shadow: none;
  border-radius: 0 0 5px 5px;
}

.highlight-wrap code[data-rel]:before {
  color: #fff;
  content: attr(data-rel);
  height: 30px;
  line-height: 30px;
  background: #21252b;
  font-size: 16px;
  position: absolute;
  margin-top: -30px;
  left: 0;
  width: 100%;
  font-weight: 700;
  padding: 0 80px;
  text-indent: 15px;
  text-align: center;
  float: left;
  z-index: 1;
  border-radius: 5px 5px 0 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  pointer-events: none;
}

.hljs {
  display: block;
  overflow-x: auto;
  padding: .5em;
  color: #abb2bf;
  background: rgba(255, 255, 255, .5);
  border-radius: 10px;
}

td.hljs-ln-numbers {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
  color: #888f96;
  background: #1d1f21;
  font-family: 'Fira Code', 'Noto Sans SC';
  vertical-align: top;
  position: absolute;
  left: 0;
  width: 30px;
}

.code-block-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  z-index: 999;
  margin: 0;
  animation: elastic 1s;
}

.code-block-fullscreen code {
  --widthA: 100%;
  --widthB: calc(var(--widthA) - 30px);
  height: auto;
  min-height: 99%;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-y: hidden;
  overflow-x: auto;
}

.skin-menu {
  position: fixed;
  left: auto;
  bottom: 15px;
  height: auto;
  width: auto;
  padding: 16px;
  padding-bottom: 0;
  border-radius: var(--style_menu_selection_radius, 15px);
  font-size: larger;
  text-align: center;
  box-shadow: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-direction: column;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.35s ease-in-out;
  right: 50px;
  max-height: 85%;
  overflow-y: auto;
}

.skin-menu.show {
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22, 0.84, 0.46, 1.04);
  right: 50px;
}

.skin-menu .row-container {
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: row-reverse;
}

.skin-menu .row-container .menu-list,
.skin-menu .row-container.font-family-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding: 5px;
  margin: 5px;
  flex-grow: 1;
  background-color: rgb(255 255 255 / 80%);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border-radius: var(--style_menu_selection_radius, 20%);
  max-width: 125px;
  border: 1px solid #FFFFFF;
  flex-direction: row;
}

.skin-menu .row-container .menu-list:hover,
.skin-menu .row-container.font-family-controls:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.menu-list li {
  display: inline-block;
  margin: 2.5px;
  line-height: 50px;
  width: 50px;
  background-color: rgb(255 255 255 / 80%);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border-radius: var(--style_menu_radius, 20%);
  border: 1px solid #FFFFFF;
  flex-grow: 1;
  box-sizing: border-box;
}

.font-family-controls button {
  flex-grow: 1;
  box-sizing: border-box;
  box-shadow: none;
  background-color: rgb(255 255 255 / 80%);
  border: 1px solid #FFFFFF;
  border-style: none;
  margin: 2.5px;
  min-height: 30px;
  min-width: 50px;
  padding: 5px;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  color: var(--theme-skin, #505050);
  border-radius: var(--style_menu_radius, 5px);
}

.aplayer {
  background: rgba(255, 255, 255, .3);
  font-family: 'Noto Serif CJK SC', 'Noto Serif CJK', 'Source Han Serif SC', 'Source Han Serif', 'source-han-serif-sc', 'PT Serif', 'SongTi SC', 'MicroSoft Yahei', Georgia, serif;
  box-shadow: 0 0 0 1px #eee;
  border-radius: 3px;
  margin: 15px 0;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
  height: 12px;
  width: 12px;
  right: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .18);
}

.aplayer .aplayer-lrc::before,
.aplayer .aplayer-lrc::after {
  background: rgba(255, 255, 255, 0);
  filter: none;
}

.aplayer .aplayer-info {
  padding: 9px 7px 0 10px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
  margin-left: 1px;
  padding-right: 3px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar,
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded,
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
  height: 6px;
  border-radius: 10px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
  height: 12px;
  width: 12px;
  right: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .18);
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar,
.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar .aplayer-volume {
  border-radius: 10px;
  width: 6px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar {
  right: 10.5px;
}

.aplayer .aplayer-list ol li.aplayer-list-light {
  background: #f8f8f8;
}

#aplayer-float {
  background: rgba(255, 255, 255, 1);
  margin: 0;
}

.ap-hover {
  left: -66px !important;
}

.ap-hover:hover {
  left: 0 !important;
}

#aplayer-float .aplayer-lrc-current {
  color: var(--theme-skin-matching);
  font-size: 15px;
  font-weight: bold;
}

.aplayer-lrc {
  pointer-events: none;
}

.coverVideo-btn {
  all: initial;
  display: inline-block;
  width: 36px;
  font-size: 26px;
  margin-left: 16px;
  padding: 7px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
}

h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
  display: block;
  content: " ";
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

.main .body h1::before {
  content: none;
}

.widget-area {
  display: flex;
  text-align: center;
  padding: 5px;
  margin: 5px;
  background-color: rgb(255 255 255 / 80%);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border-radius: var(--style_menu_selection_radius, 20%);
  min-width: 255px;
  max-width: 385px;
  border: 1px solid #ffffff;
  overflow: hidden;
  max-height: 700px;
}

.widget-area:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.widget-area > * {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.headertop-down {
  position: absolute;
  bottom: 50px;
  left: calc(50% - 42px);
  z-index: 2; 
  animation: float-down 5s infinite;
}

.shortcodestyle{
  margin: 20px 8px !important;
  padding: 15px 15px 15px 30px !important;
  position: relative !important;
  color: #505050;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px !important;
  text-indent: 0 !important;
  border: 1.5px solid #FFFFFF;
  box-sizing: border-box;
}

.shortcodestyle:hover{
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.shortcodestyle i {
  margin-right: 25px;
  font-size: 20px;
}

.shortcodestyle a {
  padding: 5px !important;
}

.warning,
.noway,
.task,
.buy {
  text-indent: 0 !important;
}

.warning i {
  color: #F1C700 !important;
  text-indent: 0 !important;
}

.noway i {
  color: #DC143C !important;
  text-indent: 0 !important;
}

.task i {
  color: #7d7d7d !important;
  text-indent: 0 !important;
}

.buy i {
  color: #32CD32 !important;
  text-indent: 0 !important;
}

.collapse i{
  color: #1E90FF !important;
  text-indent: 0 !important;
}

.task p {
  text-indent: 0 !important;
}

.ghcard {
  position: relative;
}

.ghcard img {
  border-radius: 5px;
}

.showcard {
  position: relative;
  width: 240px;
  height: auto;
  left: 0;
  top: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid #FFFFFF;
}

.showcard:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.showcard .img {
  position: relative;
  height: 200px;
  width: 200px;
  border-radius: 10px;
  margin: auto;
  margin-top: 4%;
  margin-bottom: 0%;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  opacity: 1;
}

.showcard .img:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  height: 180px;
  margin-top: 8%;
  margin-bottom: 5.1%;
  width: 180px;
  opacity: 0.9;
}

.showcard .icon-title{
  left: 5%;
  margin-top: 4%;
  position: relative;
  display: inline-flex;
  overflow: hidden; 
  max-width: 90%; 
  width: fit-content; 
  gap: 10px;
  align-items: center;
  font-size: 12px;
}

.showcard .icon-title i{
  font-size: 11px;
}

.showcard-button {
  position: absolute;
  float: right;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
  padding: 5px;
  font-size: 16px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 100%;
  top: 0;
  right: 0;
  margin: 10px;
}

.showcard .img:hover .showcard-button {
  font-size: 32px;
  width: 60px;
  height: 60px;
  top: 27.5%;
  right: 27.5%;
  box-shadow: 0 1px 20px 8px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.conversations-code{
  display: flex; 
  padding: 10px;
}

.conversations-code img{
  border-radius: 50%;
  width:40px;
  height: 40px;
}

.conversations-code-text {
  margin: auto 10px;
  padding: 8px 14px;
  color: #505050;
  max-width: 80%;
  width: fit-content;
  font-size: 15px;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px !important;
  text-indent: 0 !important;
  border: 1.5px solid #FFFFFF;
}

.conversations-code-text:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.collapse{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.ecbutton {
  color: #7D7D7D !important;
  right: 12px;
  font-size: 13px;
  position: relative;
}

.collapseButton:hover {
  text-decoration: none !important;
}

input#wp-comment-cookies-consent {
  vertical-align: middle;
  margin: 0px;
  width: 18.4px;
  height: 18.4px;
}

#preload li.active {
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
}

.shuoshuo_author_img img {
  border: 1px solid #ddd;
  float: left;
  border-radius: 64px;
  width: 50px;
  height: 50px;
  box-shadow: none;
}

.avatar {
  border-radius: 100% !important;
  box-shadow: inset 0 -1px 0 #333333;
  transition: transform 0.4s ease-out;
  -webkit-transition: -webkit-transform 0.4s ease-out;
}

.screen-reader-text {
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  /* Above WP toolbar. */
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 999;
}

#content {
  animation: main 1s;
  flex: 1; 
  min-height: 500px; 
  width: 100%;
}

.post-list {
  animation: main .6s;
  margin: 0 0 8% 0;
  position: relative;
  display: flex;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
}

::selection,
::-moz-selection {
  background: #444;
  color: #fff;
}

article,
aside,
details,
figcaption,
footer,
header,
main,
menu,
nav,
section,
summary,
.sticky,
.infinity-end.neverending .site-footer,
.reward-open:hover .reward-main,
.block {
  display: block;
}

figure {
  display: block;
  margin: 1em;
}

audio,
canvas,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template,
.single-center::after,
.site-statistics,
.byline,
.updated:not(.published),
span.edit-link,
.archive .format-aside .entry-title,
.blog .format-aside .entry-title,
.notification-hidden,
.comment .isauthor,
.siren-checkbox-radio,
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer,
.gallery-caption,
.emotion-select-child,
.emotion-toggle-on,
.emotion-hide {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong,
dt,
.is-active-link,
.hljs-strong {
  font-weight: 700;
}

dfn,
cite,
em,
i,
.hljs-emphasis {
  font-style: italic;
}

mark {
  background: #fff9c0;
  color: #000;
  text-decoration: none;
}

small {
  font-size: 80%;
  font-weight: var(--global-font-weight);
}

svg:not(:root),
.code-block-fullscreen-html-scroll {
  overflow: hidden;
}

code,
kbd {
  font-family: monospace, monospace;
  font-size: .9375rem;
  font-weight: var(--global-font-weight);
}

samp {
  font-family: monospace, monospace;
  font-size: 1em;
  font-weight: var(--global-font-weight);
}

html input[type=button] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
legend {
  border: 0;
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

td,
th{
  padding: 0;
}

h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

blockquote p {
  margin: 5px 0;
}

address,
.hentry {
  margin: 0 0 1.5em;
}

tt,
var {
  font-size: .9375rem;
  font-weight: var(--global-font-weight);
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
  font-weight: var(--global-font-weight);
}

* {
  box-sizing: border-box;
}

:after,
:before {
  box-sizing: inherit;
}

q:after,
q:before {
  content: "";
}

q {
  quotes: "" "";
}

dd {
  margin: 0 1.5em 1.5em;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: none;
}

button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .5), inset 0 2px 5px rgba(0, 0, 0, .15);
}

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
  color: #111;
}

#video-add:hover,
#video-btn:hover,
.comment .contents .comment-reply-link:hover,
#baguetteBox-overlay.visible {
  opacity: 1;
}

.pattern-attachment {
  width: 100%;
  height: 400px;
}

.pattern-center .cat-des {
  font-size: 16px;
  display: block;
  font-weight: var(--global-font-weight);
  text-align: center;
}

.single-center .entry-census a  {
  color: #fff;
}

.ins-section .ins-search-item:hover .ins-slug,
.ins-section .ins-search-item:hover .ins-search-preview,
.ins-section .ins-search-item:hover header,
.sorry li a:hover,
.art .art-content #archives a:hover {
  color: var(--theme-skin-matching, #505050);
}

.entry-title a:hover,
.post-license a:hover,
.post-tags a:hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.comment h4 a:hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.motion-switcher-table .on-hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching), #505050);
}

.site-description {
  float: right;
}

.header-focus {
  height: 250px;
  background: #F9F9F9;
  margin: 0 auto;
}

embed,
iframe,
object {
  max-width: 100%;
}

.site-main {
  padding: 4% 0 0;
  position: relative;
}

/* 旧的展示区样式已移除 */

.entry-title a{
  color: #504E4E;
}

.p-time i {
  font-size: 14px;
  margin-right: 5px;
  font-weight: var(--global-font-weight);
}

.entry-footer {
  margin: 0 0 0 17%;
  list-style: none;
}

.post-excerpt i {
  color: #CCCCCC !important;
  font-size: 13px;
}

.meta-author {
  margin-right:10px;
}

.entry-census a {
  color: #888;
}

.entry-census a:hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.meta-author img {
  max-height: 18px;
  margin: 0px 5px -3px 0;
}

.post-thumb {
  float: inherit;
  height: 68%;
  position: absolute;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.07,0.53,0.65,0.95);
    -webkit-transition: all 0.5s cubic-bezier(0.07,0.53,0.65,0.95);
}

.post-thumb:hover{
  height: 100%;
}

.post-thumb a *:hover {
  transform: scale(1.1);
}

.shuoshuo-item {
  border-radius: 10px;
  margin: 15px 0 15px;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background-color: rgba(255, 255, 255, 0.7);
  content-visibility: hidden;
  contain-intrinsic-size: auto none;
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  float: left;
  position: relative;
  opacity: 0;
}

.shuoshuo-item:hover{
  transform: translateY(-0.35rem);
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background-color: rgba(255, 255, 255, 0.9);
}

.shuoshuo-item a{
  color: rgba(0, 0, 0, .66);
}

.shuoshuo-item a:hover{
  color: var(--theme-skin-matching);
}

.shuoshuo-content-wrapper{
  padding: 1%;
  width: 100%;
  float: left;
}

.shuoshuo-avatar {
  float: left;
  margin: 10px 15px 10px 10px;
  position: relative;
}

.shuoshuo-avatar img {
  border-radius: 50%;
  border: 2px solid #ffffff30;
  box-shadow: 0 1px 30px -4px #dadada;
}

.shuoshuo-avatar img:hover {
  transform: rotate(360deg);
}

.shuoshuo-wrapper {
  overflow: hidden;
  margin-top: 1.5%;
  position: relative;
}

.shuoshuo-meta {
  margin-bottom: 5px;
  gap: 16px;
  display: flex;
  max-height: 20px;
  overflow: hidden;
  align-items: center;
}

.shuoshuo-author-name {
  font-weight: bold;
  color: #505050;
}

.shuoshuo-title h3 {
  display: inline;
  color: rgba(0, 0, 0, .66);
  font-size: 0.9em;
  margin: 0;
  font-weight: normal;
}

.shuoshuo-comments, .shuoshuo-date {
  color: #ababab;
  font-size: 0.9em;
}

.shuoshuo-comments {
  margin-right: 6px;
}

.shuoshuo-info {
  right: 3.5%;
  position: absolute;
}

.shuoshuo-comments i, .shuoshuo-date i{
  font-size: 0.9em;
  margin-right: 2px;
}

.shuoshuo-content {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1.5;
  color: #14171a;
}

.shuoshuo-content p{
  margin-bottom: 0 !important;
}

.navigator {
  text-align: center;
  margin: 80px 0;
  display: block;
}

.entry-content .post-password-form,
.post .entry-header {
  text-align: center;
}

.entry-header {
  margin: auto;
  text-align: left;
}

.Extendfull img {
  width: 100%;
  border: 5px solid #F3F3F3;
}

h1.page-title.mb- {
  margin-top: 100px;
}

.post-license a {
  color: #7D7D7D;
}

.post-tags a {
  color: #7D7D7D;
  margin-right: 5px;
}

.post-tags i {
  margin-right: 5px;
  font-size: 16px;
}

.post-modified-time i {
  margin-right: 10px;
}

.comment .children .main {
  width: 94.5%;
}

.must-log-in {
  margin-bottom: 2em;
}

.must-log-in a {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.must-log-in a:hover {
  color: #7d7d7d;
}

#comments-list-title span {
  font-size: 13px;
  color: #909090;
  margin-left: 10px;
}

.butterBar--center {
  margin: auto;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.entry-content a img.aligncenter,
.entry-content a img.alignleft,
.entry-content a img.alignright {
  cursor: -webkit-zoom-in;
}

.clear:before,
.comment-content:before,
.entry-content:before,
.site-content:before,
.site-footer:before {
  content: "";
  display: table;
  table-layout: fixed;
}

.group-blog .byline,
.single .byline,
.comment.bypostauthor>.contents .isauthor,
.emotion-show {
  display: inline;
}

.entry-summary,
.page-content {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.ai-excerpt {
  margin: 20px 8px !important;
  padding: 15px 30px !important;
  color: #505050;
  box-shadow: 0 1px 30px -4px #e8e8e8;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px !important;
  line-height: 1.5;
  border: 1.5px solid #FFFFFF;
  letter-spacing: 1px;
}

.ai-excerpt:hover {
  box-shadow: 0 1px 20px 10px #e8e8e8;
  background: rgba(255, 255, 255, 0.8);
}

.ai-excerpt h4 {
  margin: 0;
  width: max-content;
  padding-bottom: 2px;
  margin-bottom: 8px;
  position: relative;
  font-size: 16px;
}

.ai-excerpt h4::after {
	content: '';
	position: absolute;
	bottom: -2px;
  right: -5px;
  width: 55%;
	height: 0.6em;
	background-color: var(--article-theme-highlight,var(--theme-skin-matching));
	opacity: 0.4;
	z-index: 0;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.ai-excerpt h4:hover::after {
	width: 75%;
	opacity: 0.7;
}

.ai-excerpt i {
  margin-right: 8px;
}

.clearer {
  display: block;
  clear: both;
}

.cat-des p {
  display: inline-block;
  font-size: 18px;
}

form#commentform,.comment-respond textarea:active,
.comment-respond textarea:focus{
  outline: 0;
  width: 100%;
}

span.page-numbers.current {
  color: var(--theme-skin-matching);
  padding: 0 5px;
  margin: 30px 10px;
}

span.page-numbers.dots, a.page-numbers {
  color: #ABABAB;
  padding: 0 5px;
  margin: 30px 10px;
}

.comments .comments-hidden {
  display: none;
  cursor: pointer;
}

.comments ul.commentwrap {
  margin: 0 auto 30px;
}

.comnav {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.comnav a {
  padding: 10px;
  color: #7B7B7B;
  margin-bottom: 20px;
}

.comment .body p a {
  color: var(--article-theme-highlight,var(--theme-skin-matching), #505050);
  padding: 0 5px;
  text-decoration: underline;
}

.comment .body .comment-at {
  color: var(--theme-skin, #505050);
  text-decoration: none;
}

.comment .profile {
  float: left;
  margin-right: 10px;
  margin-top: 5px;
}

.comment .profile img:hover {
  opacity: .8;
}

.comment .main {
  float: inherit;
  width: 97.5%;
  padding: 25px;
  margin: 0 auto;
  border-radius: 15px;
  background: rgb(255 255 255 / 50%);
  box-shadow: 0 1px 30px -4px #e8e8e8;
  border: 1.5px solid #FFFFFF;
}

.comment .main:hover {
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 1px 20px 4px #e8e8e8;
}

.comment .contents:hover .comment-reply-link {
  opacity: .9;
}

.comments .body p {
  overflow: hidden;
}

.comment h4 a {
  color: #505050;
  font-size: 15px;
  font-weight: var(--global-font-weight, 600);
}

.comment-edit-link {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.comment-edit-link:hover {
  color: #7D7D7D;
}

.comment .children {
  padding-left: 40px;
  margin: 0;
}

.comment .children .children .children .children .children .children {
  margin: 0;
  padding: 0;
}

.comment .children .profile {
  float: left;
  width: 5%;
  margin-top: 4px;
}

.comment .children .profile img {
  height: 40px;
  width: 40px;
}

.comment-respond input:last-of-type {
  margin-right: 0;
}

.comment-textarea,
.micro {
  position: relative;
  width: 100%;
}

.commentbody:placeholder-shown::placeholder {
  color: transparent;
}

.commentbody:focus {
  border-color: var(--theme-skin, #505050);
}

.comment-respond input[type=submit]:hover {
  background: #fff;
  box-shadow: 0 1px 20px 10px #e8e8e8;
}

.comment-respond input::-webkit-input-placeholder,
.comment-respond textarea::-webkit-input-placeholder,
.comment-respond input:-ms-input-placeholder,
.comment-respond textarea:-ms-input-placeholder {
  color: #535a63;
}

.comment-respond input:-moz-placeholder,
.comment-respond textarea:-moz-placeholder,
.comment-respond input::-moz-placeholder,
.comment-respond textarea::-moz-placeholder {
  opacity: 1;
  color: #535a63;
}

.comment-respond .logged-in-as i,
.notification i {
  margin-right: 10px;
  font-size: 16px;
  font-weight: var(--global-font-weight);
}

.comment-respond .logged-in-as a {
  color: #454545;
}

.comment-respond .logged-in-as a:hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.notification span {
  font-size: 13px;
  color: #B3B3B3;
  font-weight: var(--global-font-weight);
}

.siren-checkbox-radio:checked+.siren-is-private-checkbox.siren-checkbox-radioInput:after,
.siren-is-private-checkbox.siren-checkbox-radioInput {
  border-radius: 100%;
}

.headertop.filter-undertint::before {
  background-color: rgba(255, 255, 255, .3);
}

.headertop.filter-dim::before {
  background-color: rgba(0, 0, 0, .3);
}

.blank {
  padding-top: 80px;
  background-color: rgba(0, 0, 0, 0);
  transition: background 0.8s;
}

.search-form--modal .search-form__inner p {
  padding-left: 24px;
}

.search-form input::-webkit-input-placeholder,
.search-form input:-moz-placeholder,
.search-form input::-moz-placeholder,
.search-form input:-ms-input-placeholder,
.sorry li a,
#comments-navi a.prev,
#comments-navi a.next {
  color: var(--theme-skin);
}

.s-search {
  position: relative;
  margin-bottom: 50px;
}

.search-no-reasults {
  list-style-type: decimal;
}

.ins-section-wrapper header {
  position: unset;
  width: auto;
}

.ins-selectable {
  cursor: pointer;
}

.ins-section {
  font-size: 14px;
  font-weight: var(--global-font-weight);
}

.ins-section .ins-search-item {
  padding: 8px 15px;
}

.ins-section .ins-search-item .search-keyword {
  font-size: 15px;
  border-radius: 5px;
}

.ins-section .ins-search-item header i,
.finish-icon-text {
  margin-right: 8px;
}

.ins-section .ins-search-item:hover,
.ins-section .ins-search-item.active {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
}

.ins-section .ins-search-item.active .ins-slug,
.ins-section .ins-search-item.active .ins-search-preview {
  color: var(--theme-skin, #505050) !important;
}

.sorry ul {
  padding: 0 0 0 20px;
  margin: 0;
}

.sorry {
  color: var(--theme-skin);
  margin-bottom: 80px;
}

.sorry li {
  padding: 10px 0;
}

.sorry-inner {
  padding: 20px;
  border: 1px solid var(--theme-skin);
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
  animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
  animation: bounceFromLeft .4s ease-out;
}

.baguetteBox-button:hover {
  box-shadow: none;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

.wp-smiley {
  height: 2em !important;
  max-height: 2em !important;
  vertical-align: bottom;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: .8075em 0;
}

#nprogress {
  pointer-events: none;
  z-index: 999;
  position: absolute;
}

.nprogress-custom-parent,
.toc>.toc-list {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .bar,
.nprogress-custom-parent #nprogress .spinner {
  position: absolute;
}

#pagination span {
  color: #989898;
  font-size: 15px;
  font-weight: var(--global-font-weight);
}

#pagination.pagination-archive {
  margin: 80px 0;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track{
  background-color: #eee;
}

::-webkit-scrollbar-thumb {
  background-color: var(--theme-skin);
  border-radius: 25px;
}

.user-menu-option a:hover {
  background-color: #f1f1f1;
}

.reward-row li {
  padding: 0 12px;
  display: inline-block;
}

.alipay-code:after {
  content: "支付宝";
}

.wechat-code:after {
  content: "微信";
}

.sm {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.sm:hover {
  color: #7D7D7D;
}

.slide-fade-enter-active {
  transition: all .3s ease;
}

.slide-fade-enter,
.slide-fade-leave-to {
  opacity: 0;
  transform: translateX(-10px);
}

.dot:nth-last-child(1) {
  margin-left: .3rem;
  animation: loading .6s .3s linear infinite;
}

.dot:nth-last-child(2) {
  margin-left: .3rem;
  animation: loading .6s .2s linear infinite;
}

.dot:nth-last-child(3) {
  animation: loading .6s .1s linear infinite;
}

.load-button:hover div {
  transform: rotateX(-90deg);
}

.load-button span:nth-child(1) {
  color: #d34836;
  transform: translate3d(0, 0, 30px);
  -webkit-transform: translate3d(0, 0, 30px);
}

.ap-hover {
  border-radius: 0 6px 6px 0 !important;
  left: -66px !important;
}

.aplayer-icon,
.aplayer-miniswitcher {
  border-radius: 0 6px 6px 0 !important;
}

.keys-line-add {
  text-align: right;
  margin-right: 22px;
}

.img-preload {
  visibility: hidden;
  width: 0;
  height: 0;
}

.inline-block {
  display: inline-block;
}

.glitch {
  position: relative;
  color: #fff;
  mix-blend-mode: lighten;
}

.glitch:hover:before {
  text-shadow: 4px 0 #ff3f1a;
  animation: glitch-loop-1 .8s infinite ease-in-out alternate-reverse;
}

.glitch:hover:after {
  text-shadow: -5px 0 #00a7e0;
  animation: glitch-loop-2 .8s infinite ease-in-out alternate-reverse;
}

.finish-icon {
  vertical-align: text-bottom;
}

.skill-list {
  list-style: none;
  margin: 0;
  padding-top: 25px;
}

.skill {
  margin-bottom: 1em;
  position: relative;
}

.skill ::-webkit-progress-value {
  -webkit-animation: bar-fill 2s;
  animation: bar-fill 2s;
  width: 0;
}

.skill-1::-webkit-progress-value,
.skill-1::-moz-progress-bar {
  background: #ff9e2c;
}

.toc>.toc-list li {
  margin: 3px;
  letter-spacing: 1px;
}

.toc-list {
  margin: 0;
  padding-left: 16px;
  cursor: default;
}

a.toc-link {
  color: currentColor;
  height: 100%;
  font-size: 16px;
}

.toc-list-item > a > #text {
  cursor: pointer;
}

.is-collapsible {
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.is-collapsed {
  max-height: 0;
}

.is-position-fixed {
  position: fixed !important;
  top: 0;
}

.is-active-link::before {
  background-color: var(--article-theme-highlight,var(--theme-skin-matching));
}

#footer-sponsor {
  font-size: 9px;
  font-weight: var(--global-font-weight);
}

.comment-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.qq-check {
  background-color: #6495ED;
}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.cmt-author {
  margin-left: 65px;
}

.popup input:focus+.popuptext {
  visibility: visible;
  -webkit-animation: blur .4s;
  animation: blur .4s;
}

.highlight-wrap .copy-code:hover {
  color: rgba(255, 255, 255, .5);
}

.hljs-ln-line span::-moz-selection,
.hljs-ln-line::-moz-selection,
.hljs span::selection,
.hljs::selection,
.hljs-ln-line span::selection,
.hljs-ln-line::selection {
  background: #fff;
  color: #21252b;
}

.highlight-wrap code::-webkit-scrollbar {
  height: 10x !important;
  width: 10x !important;
  background-color: #1d1f21 !important;
}

.hljs-comment,
.hljs-quote {
  color: #888f96;
  font-style: italic;
}

.hljs-doctag,
.hljs-formula,
.hljs-keyword {
  color: #c678dd;
}

.hljs-deletion,
.hljs-name,
.hljs-section,
.hljs-selector-tag,
.hljs-subst {
  color: #e06c75;
}

.hljs-literal {
  color: #56b6c2;
}

.hljs-addition,
.hljs-attribute,
.hljs-meta-string,
.hljs-regexp,
.hljs-string {
  color: #98c379;
}

.hljs-built_in,
.hljs-class .hljs-title {
  color: #e6c07b;
}

.hljs-attr,
.hljs-number,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-pseudo,
.hljs-template-variable,
.hljs-type,
.hljs-variable {
  color: #d19a66;
}

.hljs-bullet,
.hljs-meta,
.hljs-selector-id,
.hljs-symbol,
.hljs-title {
  color: #61aeee;
}

.hljs-link {
  color: #61aeee;
  text-decoration: underline;
}

.hljs-ln {
  margin: 6px 0 0 0 !important;
}

.hljs-ln-code .hljs-ln-line {
  margin-left: 25px;
  padding-left: 5px;
}

.hljs-ln-code .hljs-ln-line:hover {
  background-color: rgba(255, 255, 255, .1);
}

.code-font {
  font-family: 'Fira Code', 'Noto Sans SC';
}

.Ubuntu-font,
.control-btn-sans-serif {
  font-family: 'Noto Sans SC';
}

.serif,
.control-btn-serif {
  font-family: 'Noto Serif SC';
}

.menu-list li:hover,
.font-family-controls button:hover {
  background-color: var(--article-theme-highlight, var(--theme-skin-matching));
  color: #fff;
}

.font-family-controls button.selected {
  border: 3px solid var(--article-theme-highlight, var(--theme-skin-matching));
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  box-shadow: none;
}

.aplayer .aplayer-lrc::before,
.aplayer .aplayer-lrc::after {
  background: rgba(255, 255, 255, 0);
  filter: none;
}

.aplayer .aplayer-info {
  padding: 9px 7px 0 10px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
  margin-left: 1px;
  padding-right: 3px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar,
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded,
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
  height: 6px;
  border-radius: 10px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar {
  border-radius: 10px;
  width: 6px;
  right: 10.5px;
}

.aplayer .aplayer-info .aplayer-controller .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar .aplayer-volume {
  border-radius: 10px;
  width: 6px;
}

.aplayer .aplayer-list ol li.aplayer-list-light {
  background: #f8f8f8;
}

#aplayer-float {
  background: rgba(255, 255, 255, 1);
  margin: 0;
}

.ap-hover:hover {
  left: 0 !important;
}

#aplayer-float .aplayer-lrc-current {
  color: var(--theme-skin, #505050) !important;
  font-size: 15px;
  font-weight: 700;
}

.aplayer .aplayer-lrc {
  pointer-events: none;
  background: transparent !important;
}

#coverVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverVideo-btn:hover {
  background: #ddd;
  color: black;
}

.widget-area .sakura_widget {
  height: calc(100% - 30px);
  overflow-y: auto;
  max-width: 385px;
  min-width: 255px;
}

.widget-area .sakura_widget figure {
  display: block;
  margin: 1em;
}

.widget-area .sakura_widget h2 {
  border-bottom: 1px solid #000;
}

.active .show-hide-wrap {
  width: 100%;
  right: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.contents span img,
.entry-content span img {
  height: 30px;
}

.comment-form-cookies-consent label {
  vertical-align: middle;
}

.shuoshuo_meta {
  clear: both;
  font-size: 14px;
}

.shuoshuo_meta i {
  margin-right: 5px;
}

.zhuan {
  transform: rotateZ(720deg);
  -webkit-transform: rotateZ(720deg);
}

.show {
  opacity: 1;
  transition: opacity 500ms;
}

.hide {
  opacity: 0;
  transition: opacity 500ms;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.lazyload[src*="#lazyload-blur"],
.lazyload[style*="#lazyload-blur"] {
  -webkit-filter: saturate(.5) blur(10px);
  filter: saturate(.5) blur(10px);
}

.object,
.siren-checkbox-radio:checked+.siren-checkbox-radioInput:after {
  background: var(--theme-skin);
}

.post-share ul li a:hover,
.entry-content a:hover,
.comment-respond input[type='submit']:hover {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
  border-color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.header-info p:hover {
  color: var(--theme-skin-matching);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.header-info {
  white-space: normal;
}

.post-like a,
.post-like i,
.post-share ul li i,
.ins-section.ins-search-item .search-keyword {
  font-weight: var(--global-font-weight);
}

#main-container,
.pattern-center:after,
.headertop-bar::after {
  transition: background 0.8s;
}

.entry-content h3:after,
.entry-content h4:after,
.entry-content h5:after {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.entry-content a {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
}

.entry-content a:hover {
  color: var(--theme-skin-dark, #FCCD00);
  text-decoration: underline var(--theme-skin-dark, #FCCD00);
}

.entry-content code {
  background: var(--inline_code_background_color, #F2F1F1);
  color: var(--article-theme-highlight,var(--theme-skin-matching));
  word-break: break-word;
  font-family: 'Noto Sans SC';
  padding: 0px 3px 0px 3px;
  text-shadow: none;
  border-radius: 5px;
}

/* Steam User Card Styles */
.steam-user-card {
  margin: 1.5%;
}

.steam-profile {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 232, 232, 0.8);
}

.steam-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.steam-profile-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(245, 245, 245, 0.6);
    border-bottom: 1px solid rgba(232, 232, 232, 0.8);
}

.steam-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 16px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.steam-profile-info {
    flex: 1;
}

.steam-username {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
    color: var(--theme-skin, #505050);
    text-decoration: none;
    transition: color 0.2s ease;
}

.steam-username:hover {
    color: var(--theme-skin-matching);
}

.steam-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: #f0f0f0;
    color: #666;
}

.steam-status.status-在线,
.steam-status.status-online,
.steam-status.status-在線,
.steam-status.status-オンライン {
    background: rgba(66, 186, 150, 0.2);
    color: #42ba96;
}

.steam-status.status-离开,
.steam-status.status-away,
.steam-status.status-離開,
.steam-status.status-退席中 {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.steam-status.status-离线,
.steam-status.status-offline,
.steam-status.status-離線,
.steam-status.status-オフライン {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

.steam-game-info {
    padding: 16px;
}

.steam-game-name {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--theme-skin, #505050);
    text-decoration: none;
    transition: color 0.2s ease;
}

.steam-game-name:hover {
    color: var(--theme-skin-matching);
}

.steam-game-banner {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.steam-last-online {
    padding: 12px 16px;
    font-size: 14px;
    color: #6c757d;
    border-top: 1px solid rgba(232, 232, 232, 0.8);
    background: rgba(245, 245, 245, 0.4);
}

.steam-error {
    padding: 16px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    color: #856404;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* 页面注释 */
.iro-term-annotation {
  color: var(--article-theme-highlight,var(--theme-skin-matching));
  cursor: pointer;
  font-size: 0.8em;
  margin-left: 2px;
  vertical-align: super;
}

.iro-annotation-popup {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  will-change: backdrop-filter;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 99;
  max-width: 300px;
  display: none;
}

.iro-annotation-popup .close {
  position: absolute;
  top: 5px;
  right: 8px;
  cursor: pointer;
  font-size: 16px;
  color: #999;
}

.iro-annotation-popup .term {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.iro-annotation-popup .explanation {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* 展示区 */
.exhibition-area-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 4%;
}

/* Bento网格布局 - 使用现代CSS Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(3rem, auto);
  gap: 1.25rem;
  width: 100%;
  margin: 15px 0;
}

/* 卡片基础样式 */
.bento-item {
  background-color: rgba(255, 255, 255, var(--front_background-transparency, 0.8));
  border-radius: 1.25rem;
  box-shadow: 
    0 4px 24px -8px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  content-visibility: hidden;
  contain-intrinsic-size: auto none;
}

.bento-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, 
              rgba(255, 255, 255, 0.08) 0%, 
              transparent 50%);
  pointer-events: none;
}

/* 边框高亮和悬停效果 */
.bento-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, 
              rgba(255, 255, 255, 0.3) 0%, 
              rgba(255, 255, 255, 0.5) 70%, 
              rgba(255, 255, 255, 0.7) 100%);
  transition: all 0.3s ease;
  z-index: 2;
}

.bento-item:hover {
  transform: translateY(-0.35rem);
  box-shadow: 
    0 10px 40px -10px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.bento-item:hover::after {
  height: 0.4rem;
}

/* 卡片尺寸定义 */
.bento-medium {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 18rem;
  overflow: hidden;
  position: relative;
}

.card-title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.25rem;
  z-index: 3;
  background: linear-gradient(to bottom, 
              rgba(0, 0, 0, 0.4) 0%, 
              rgba(0, 0, 0, 0.2) 60%, 
              transparent 100%);
  border-radius: 1.25rem 1.25rem 0 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask-image: linear-gradient(180deg, #000000 20%, #0000004d);
  -webkit-mask-image: linear-gradient(180deg, #000000 20%, #0000004d);
}

.bento-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
}

.card-content {
  margin-top: auto;
  padding: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.card-image {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.bento-item:hover .card-image img {
  transform: scale(1.08);
}

/* 图片覆盖渐变效果 */
.card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
              rgba(0, 0, 0, 0.1) 0%,
              rgba(0, 0, 0, 0.2) 30%,
              rgba(0, 0, 0, 0.4) 100%);
  opacity: 0.8;
  transition: opacity 0.4s;
}

.bento-item:hover .card-image::after {
  opacity: 0.5;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 1.25rem 2rem;
  background: linear-gradient(to top, 
              rgba(0, 0, 0, 0.6) 0%, 
              rgba(0, 0, 0, 0.3) 70%, 
              transparent 100%);
  color: white;
  transition: transform 0.4s ease, opacity 0.3s;
  z-index: 2;
  transform: translateY(1rem);
  opacity: 0.9;
}

.bento-item:hover .card-info {
  transform: translateY(0);
  opacity: 1;
}

.card-description {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.9;
}

/* 统计胶囊样式 - 现代UI设计 */
.stat-capsules-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
  grid-column: span 12;
  padding: 0.25rem 0.1rem;
}

.stat-capsule {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 0.85rem;
  gap: 0.6rem;
  min-width: 110px;
  flex-shrink: 0;
  line-height: 1.2;
  height: 50px;
  opacity: 0;
  content-visibility: hidden;
  contain-intrinsic-size: auto none;
}

.stat-capsule:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.stat-capsule i {
  font-size: 0.9rem;
  color: #888;
  transition: all 0.3s ease;
}

.stat-capsule:hover i {
  transform: scale(1.1);
  color: var(--theme-skin-matching);
}

.capsule-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.2;
}

.capsule-label {
  font-weight: 500;
  color: #555;
  position: relative;
  font-size: 0.8rem;
  margin-bottom: 1px;
}

/* 公告胶囊样式 */
.announcement-capsule {
  min-width: 180px;
}

.announcement-line {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.first-line {
  margin-bottom: 1px;
}

.capsule-value {
  font-weight: 600;
  color: var(--theme-skin, #505050);
  font-size: 0.85rem;
}

.stat-capsule.link-capsule {
  padding: 0.35rem 0.6rem 0.35rem 0.4rem;
  width: auto;
  max-width: 240px;
}

.link-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-avatar img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.stat-capsule:hover .link-avatar img {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.link-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.link-name {
  font-weight: 600;
  color: var(--theme-skin);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.link-name:hover {
  color: var(--theme-skin-matching);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.85;
}

.link-description {
  font-size: 0.75rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  margin-top: 1px;
}

/* 徽章胶囊样式 */
.medal-capsule {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.medal-capsule::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 2.2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.medal-capsule::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -2;
    border-radius: 2.2rem;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    backdrop-filter: blur(10px);
}

.medal-capsule:hover::before {
    opacity: 0.5;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.medal-capsule:hover::after {
    opacity: 0.2;
    transform: scale(1.02);
}

.medal-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
}

.medal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.medal-capsule:hover .medal-particles {
    opacity: 1;
}

.medal-progress-bar {
    height: 100%;
    border-radius: 1.5px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.medal-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.medal-info-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    width: max-content;
    max-width: 230px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    z-index: 100;
    pointer-events: none;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    line-height: 1.5;
}

.medal-info-tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}

.medal-capsule:hover .medal-info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.medal-achievement {
    margin-bottom: 8px;
    font-weight: 500;
}

.medal-next-level {
    font-size: 0.8rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
    margin-top: 5px;
}

/* 铜牌样式 */
.medal-capsule.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e0aa76 50%, #a05c25 100%);
    border-color: #cd7f32;
    box-shadow: 0 2px 10px rgba(205, 127, 50, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.medal-capsule.bronze::before {
    background: radial-gradient(circle at center, rgba(205, 127, 50, 0.8) 0%, rgba(205, 127, 50, 0) 70%);
}
.medal-capsule.bronze::after {
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
    background: rgba(205, 127, 50, 0.1);
}
.medal-capsule.bronze:hover {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: linear-gradient(135deg, #d38c44 0%, #e9b688 50%, #b16b2e 100%);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.5);
    transform: translateY(-3px) scale(1.02);
}
.medal-capsule.bronze .capsule-label,
.medal-capsule.bronze .capsule-value,
.medal-capsule.bronze i {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.medal-capsule.bronze .medal-progress-bar {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 210, 180, 0.9));
}

/* 银牌样式 */
.medal-capsule.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e6e6e6 50%, #a9a9a9 100%);
    border-color: #c0c0c0;
    box-shadow: 0 2px 10px rgba(192, 192, 192, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.medal-capsule.silver::before {
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.8) 0%, rgba(192, 192, 192, 0) 70%);
}
.medal-capsule.silver::after {
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    background: rgba(192, 192, 192, 0.1);
}
.medal-capsule.silver:hover {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: linear-gradient(135deg, #cccccc 0%, #f0f0f0 50%, #b8b8b8 100%);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.5);
    transform: translateY(-3px) scale(1.02);
}
.medal-capsule.silver .capsule-label,
.medal-capsule.silver .capsule-value,
.medal-capsule.silver i {
    color: #333 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
}
.medal-capsule.silver .medal-progress-bar {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(230, 230, 230, 1));
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* 金牌样式 */
.medal-capsule.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 50%, #e6bc00 100%);
    border-color: #ffd700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.medal-capsule.gold::before {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0) 70%);
}
.medal-capsule.gold::after {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}
.medal-capsule.gold:hover {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: linear-gradient(135deg, #ffdf1c 0%, #fff0a0 50%, #f5ca00 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
}
.medal-capsule.gold .capsule-label,
.medal-capsule.gold .capsule-value,
.medal-capsule.gold i {
    color: #5d4b00 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
}
.medal-capsule.gold i {
    animation: pulse-gold 2s infinite;
}

/* 徽章详情模态框样式 */
.medal-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.medal-detail-modal.active {
    opacity: 1;
    visibility: visible;
}

.medal-detail-modal.closing {
    opacity: 0;
    visibility: hidden;
}

.medal-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    z-index: 2;
    overflow: hidden;
}

.medal-detail-modal.active .medal-modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-medal-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
    animation: float-icon 3s ease-in-out infinite;
    position: relative;
}

.modal-medal-icon i {
    transition: all 0.3s ease;
}

.modal-medal-title {
    margin-bottom: 20px;
}

.modal-medal-title h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    padding: 0;
    line-height: 1.2;
}

.modal-medal-value {
    font-size: 1.3rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
}

.modal-medal-achievement {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 10px auto 20px;
    padding: 15px 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.035);
    color: #444;
    max-width: 95%;
    text-align: left;
}

.modal-medal-progress-container {
    margin-top: 20px;
    padding: 0 10px;
}

.modal-medal-progress {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.modal-medal-progress-bar {
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.modal-medal-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 70%) 50%, rgb(255 255 255 / 80%) 100%);
}

.modal-medal-next-level {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.modal-medal-max-level {
    font-size: 1rem;
    color: #555;
    margin: 20px 0 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: pulse-text 2s infinite ease-in-out;
}

.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #888;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
    opacity: 0.6;
}

.modal-close-button:hover {
    opacity: 1;
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.modal-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.modal-particle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* 铜牌模态框样式 */
.medal-detail-modal.bronze .medal-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 230, 0.95) 100%);
    border: 1px solid rgba(205, 127, 50, 0.2);
}

.medal-detail-modal.bronze .modal-medal-icon i {
    color: #cd7f32;
    text-shadow: 0 2px 10px rgba(205, 127, 50, 0.4);
}

.medal-detail-modal.bronze .modal-medal-progress-bar {
    background: linear-gradient(to right, #cd7f32, #e0aa76);
}

/* 银牌模态框样式 */
.medal-detail-modal.silver .medal-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.95) 100%);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.medal-detail-modal.silver .modal-medal-icon i {
    color: #c0c0c0;
    text-shadow: 0 2px 10px rgba(192, 192, 192, 0.6);
}

.medal-detail-modal.silver .modal-medal-progress-bar {
    background: linear-gradient(to right, #c0c0c0, #e6e6e6);
}

/* 金牌模态框样式 */
.medal-detail-modal.gold .medal-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 230, 0.95) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.medal-detail-modal.gold .modal-medal-icon i {
    color: #ffd700;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.6);
    animation: pulse-gold 2s infinite;
}

.medal-detail-modal.gold .modal-medal-max-level {
    color: #5d4b00;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.checkbox-code.inline{
  display: inline-block;
}

.badge
{
    font-size: 66%;
    font-weight: 600;
    line-height: 1;

    display: inline-block;

    padding: .35rem .375rem;

    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;

    border-radius: .25rem;
}

.bagde-rounded{
    border-radius: .5rem;
}

.badge-info{
    color: #1aae6f;
    background-color: rgba(147, 231, 195, .5);
}
.badge-warning{
    color: #ff3709;
    background-color: rgba(254, 201, 189, .5);
}
.badge-severe{
    color: #f80031;
    background-color: rgba(251, 175, 190, .5);
}

.progress-wrapper
{
    position: relative;

    padding-top: 1.5rem;
}
.progress
{
    overflow: hidden;

    height: 8px;
    margin-bottom: 1rem;

    border-radius: .2rem;
    background-color: #e9ecef;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar
{
    height: auto;

    border-radius: 0;
    box-shadow: none;
}
.progress-percentage
{
    text-align: right;
}
.progress-percentage span
{
    font-size: .875rem;
    font-weight: 600;

    display: inline-block;

    color: #8898aa;
}
.progress-info
{
    display: flex;

    margin-bottom: .5rem;

    align-items: center;
    justify-content: space-between;
}
.progress-label span
{
    font-size: .625rem;
    font-weight: 600;

    display: inline-block;

    padding: .25rem 1rem;

    text-transform: uppercase;

    color: var(--theme-skin);
    border-radius: 30px;
    background: rgba(94, 114, 228, .1);
}

.progress-percentage
{
    text-align: right;
}
.progress-percentage span
{
    font-size: .875rem;
    font-weight: 600;

    display: inline-block;

    color: #8898aa;
}
.bg-default
{
    background-color: var(--theme-skin) !important;
}
.bg-info
{
    background-color: #11cdef !important;
}
.bg-warning
{
    background-color: #fb6340 !important;
}
.bg-danger
{
    background-color: #f5365c !important;
}

.hidden-text {
	transition: all 0.3s ease;
}
.hidden-text.hidden-text-blur {
	filter: blur(4px);
}
.hidden-text.hidden-text-blur:hover {
	filter: blur(0px);
}
.hidden-text.hidden-text-background {
	background: #000;
	color: transparent;
	border-radius: 1px;
}
.hidden-text.hidden-text-background:hover {
	background: transparent;
	color: inherit;
	border-radius: 0px;
}