@charset "UTF-8";
.pdfp_wrapper .pdf{position:relative}.pdfp_wrapper .iframe_wrapper{width:100%}.pdfp_wrapper .iframe_wrapper:fullscreen iframe{height:100vh !important}.pdfp_wrapper .iframe_wrapper iframe{width:100%}.pdfp_wrapper .iframe_wrapper .close{position:absolute;top:35px;right:12px;padding:0px 7px;background:#fff;color:#222;font-size:36px;cursor:pointer;font-family:sans-serif;border:1px solid #ddd;display:none;z-index:9999;line-height:100%;border-radius:3px}.pdfp_wrapper .iframe_wrapper:fullscreen .close{display:block}.pdfp-adobe-viewer{border:1px solid #ddd;outline:none;border-radius:3px;cursor:pointer;text-decoration:none}.pdfp_download{margin-right:15px}.cta_wrapper{margin-bottom:10px}.pdfp_wrapper p{margin:10px 0;text-align:center}.popout-disabled{right:12px;top:12px;position:absolute;width:50px;height:50px}@media screen and (max-width: 768px){.pdfp_wrapper iframe{height:calc(100vw + 120px)}}iframe{max-width:100%}.ViewSDK_hideOverflow[data-align=center]{margin-left:auto;margin-right:auto}.ViewSDK_hideOverflow[data-align=left]{margin-right:auto}.ViewSDK_hideOverflow[data-align=right]{margin-left:auto}@media screen and (max-width: 768px){.pdfp_wrapper iframe{height:calc(100vw + 120px) !important}}@media screen and (max-width: 576px){.cta_wrapper .pdfp_download{margin-bottom:10px;margin-right:0}.cta_wrapper .pdfp_download button{margin-right:0 !important}.cta_wrapper{display:flex;flex-direction:column;align-items:center}}

/*# sourceMappingURL=public.css.map*/

/*
Theme Name: Boke 1
Theme URI: https://www.yuanjuechan.com
Author: 月印千江
Author URI: https://www.yuanjuechan.com
Description: 禅意风格WordPress主题，适合博客、资讯类网站。PHP 8.4 + WordPress 6.9.1 适配版。
Version: 2.7.0 (基线版1)
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boke-1
Requires at least: 6.0
Requires PHP: 8.0
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, sticky-post, theme-options, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
   Boke-1 主题样式表
   
   目录索引：
   0.  CSS变量系统（设计令牌）
   1.  Reset（重置样式）
   2.  Accessibility（无障碍）
   3.  Media（媒体元素）
   4.  Defaults（默认样式）
   5.  Header（页头）
   6.  Navigation（导航菜单）
   7.  Homepage（首页）
   8.  Single Post/Page（文章/页面）
   9.  Comments（评论）
   10. Sidebar（侧边栏）
   11. Footer（页脚）
   12. Dark Mode（深色模式）
   13. Responsive（响应式）
   14. Print（打印样式）
   15. Components（功能组件）
       15.1 文章目录导航
       15.2 打坐计时器
       15.3 字体大小调节
   16. Misc（杂项）
--------------------------------------------------------------*/

/*--------------------------------------------------------------
0. CSS Variables (Design Tokens)
   CSS变量系统 - 设计令牌
   
   使用方法：
   color: var(--zen-text);
   background: var(--zen-bg);
--------------------------------------------------------------*/
:root {
    /* ===== 颜色系统 ===== */
    /* 主题色 - 禅意金 */
    --zen-primary: #d4af37;
    --zen-primary-light: #e5c17e;
    --zen-primary-dark: #b8962f;
    --zen-primary-rgb: 212, 175, 55;
    
    /* 强调色 */
    --zen-accent: #037ef3;
    --zen-accent-hover: #0265cc;
    
    /* 文字颜色 */
    --zen-text: #333333;
    --zen-text-light: #666666;
    --zen-text-muted: #999999;
    --zen-text-heading: #222222;
    
    /* 背景色 */
    --zen-bg: #ffffff;
    --zen-bg-alt: #f5f5f5;
    --zen-bg-card: #ffffff;
    --zen-bg-hover: #f9f9f9;
    
    /* 边框色 */
    --zen-border: #e9e9e9;
    --zen-border-light: #f0f0f0;
    --zen-border-dark: #e6e6e6;
    
    /* 阴影 */
    --zen-shadow: rgba(0, 0, 0, 0.08);
    --zen-shadow-hover: rgba(0, 0, 0, 0.12);
    
    /* 标签/分类色 */
    --zen-tag-border: #a0ac48;
    --zen-tag-text: #a0ac48;
    
    /* ===== 字体系统 ===== */
    --zen-font-base: 
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans SC",
        "PingFang SC",
        "Microsoft YaHei",
        sans-serif;
    
    --zen-font-serif:
        "Songti SC",
        "Noto Serif SC",
        "Source Han Serif CN",
        "SimSun",
        Georgia,
        serif;
    
    /* 字号 */
    --zen-font-size-xs: 12px;
    --zen-font-size-sm: 13px;
    --zen-font-size-base: 16px;
    --zen-font-size-md: 18px;
    --zen-font-size-lg: 20px;
    --zen-font-size-xl: 24px;
    --zen-font-size-2xl: 30px;
    
    /* 行高 */
    --zen-line-height: 1.6;
    --zen-line-height-heading: 1.25;
    --zen-line-height-article: 1.8;
    
    /* ===== 间距系统 ===== */
    --zen-spacing-xs: 5px;
    --zen-spacing-sm: 10px;
    --zen-spacing-md: 15px;
    --zen-spacing-lg: 20px;
    --zen-spacing-xl: 30px;
    --zen-spacing-2xl: 40px;
    --zen-spacing-3xl: 50px;
    
    /* ===== 圆角系统 ===== */
    --zen-radius-sm: 2px;
    --zen-radius-md: 4px;
    --zen-radius-lg: 8px;
    --zen-radius-xl: 12px;
    --zen-radius-full: 50%;
    
    /* ===== 过渡动画 ===== */
    --zen-transition-fast: 0.15s ease;
    --zen-transition-base: 0.2s ease;
    --zen-transition-slow: 0.3s ease;
    
    /* ===== 布局尺寸 ===== */
    --zen-container-width: 1120px;
    --zen-content-width: 790px;
    --zen-sidebar-width: 300px;
    --zen-header-height: 75px;
}

/* 深色模式变量覆盖 */
body.dark-mode {
    --zen-primary: #c5a059;
    --zen-primary-light: #d4af37;
    --zen-primary-dark: #a88a3a;
    --zen-primary-rgb: 197, 160, 89;
    
    --zen-text: #bbbbbb;
    --zen-text-light: #999999;
    --zen-text-muted: #666666;
    --zen-text-heading: #c5a059;
    
    --zen-bg: #121212;
    --zen-bg-alt: #1e1e1e;
    --zen-bg-card: #1e1e1e;
    --zen-bg-hover: #252525;
    
    --zen-border: #333333;
    --zen-border-light: #2d2d2d;
    --zen-border-dark: #444444;
    
    --zen-shadow: rgba(0, 0, 0, 0.3);
    --zen-shadow-hover: rgba(0, 0, 0, 0.4);
    
    --zen-tag-border: #c5a059;
    --zen-tag-text: #c5a059;
}

/*--------------------------------------------------------------
1. Reset
--------------------------------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-wrap: break-word;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

nav ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

th,
td {
  border: 1px solid #e6e6e6;
  padding: 0.5em 1em;
  text-align: left;
}

th {
  background-color: #f1f1f1;
  font-weight: 600;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  color: #333;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #333;
  font-style: normal;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #eee;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

sup {
  top: -.5em;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.no-list-style {
  list-style: none;
  margin: 0;
  padding: 0;
}

figure > img {
  display: block;
}

img[class*="align"],
img[class*="attachment-"] {
  height: auto;
}

embed,
iframe,
object {
  max-width: 100%;
  width: 100%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Alpine.js x-cloak - 防止未初始化时闪烁 */
[x-cloak] {
  display: none !important;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.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: 0.5075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
1. Defaults
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-weight: normal;
}

strong,
b {
  font-weight: bold;
}

input,
textarea,
select {
  -webkit-appearance: none;
  box-sizing: border-box;
}

input,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea {
  font-size: 15px;
  font-weight: normal;
  background-color: #fff;
  border: 1px solid #ddd;
  outline: none;
  color: #333;
}

input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #bfbfbf;
  outline: none;
}

textarea {
  padding: 10px 15px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"] {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
}

button,
.btn,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border: none;
  color: #fff;
  padding: 0 15px;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -webkit-backface-visibility: hidden;
}

button:hover,
.btn:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  opacity: 0.85;
  text-decoration: none;
}

button:focus,
textarea:focus {
  outline: 0;
}

table {
  font-size: 14px;
  color: #333333;
  border-width: 1px;
  border-color: #e9e9e9;
  border-collapse: collapse;
  width: 100%;
}

table th {
  border-width: 1px;
  padding: 8px;
  border-style: solid;
  border-color: #e6e6e6;
  background-color: #f0f0f0;
}

table tr:hover td {
  background-color: #f9f9f9;
}

table td {
  border-width: 1px;
  padding: 8px;
  border-style: solid;
  border-color: #e6e6e6;
  background-color: #ffffff;
}

body.dark-mode table {
  border-color: #333;
}

body.dark-mode table th {
  background-color: #1e1e1e;
  color: #aaa;
  border-color: #333;
}

body.dark-mode table td {
  border-color: #333;
  background-color: #252525;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
  clear: both;
}

.alignnone {
  display: block;
}

/* Clear Floats */
.clear:before,
.clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  clear: both;
}

.sticky,
.bypostauthor {
  background: inherit;
  color: inherit;
}

body {
  background: var(--zen-bg-alt, #f5f5f5);
  color: var(--zen-text, #333);
  font-family: var(--zen-font-base);
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
}

a {
  color: var(--zen-text-heading, #222);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  color: var(--zen-text-heading, #222);
}

a:active, a:focus {
  outline: 0;
}

.container {
  margin: 0 auto;
  width: 1120px;
}

/* =Genericons, thanks to FontSquirrel.com for conversion!
-------------------------------------------------------------- */
@font-face {
  font-family: 'Genericons';
  src: url(//www.yuanjuechan.com/wp-content/themes/boke-1/genericons/font/genericons-regular-webfont.eot);
  src: url(//www.yuanjuechan.com/wp-content/themes/boke-1/genericons/font/genericons-regular-webfont.eot?#iefix) format("embedded-opentype"), url(//www.yuanjuechan.com/wp-content/themes/boke-1/genericons/font/genericons-regular-webfont.woff) format("woff"), url(//www.yuanjuechan.com/wp-content/themes/boke-1/genericons/font/genericons-regular-webfont.ttf) format("truetype"), url(//www.yuanjuechan.com/wp-content/themes/boke-1/genericons/font/genericons-regular-webfont.svg#genericonsregular) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Genericons */
.bypostauthor > article .fn:before,
.comment-edit-link:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.comment-list .children li:before,
.contributor-posts-link:before,
.menu-toggle:before,
.search-toggle:before,
.slider-direction-nav a:before,
.widget_happythemes_ephemera .widget-title:before {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font: normal 16px/1 Genericons;
  text-decoration: inherit;
  vertical-align: text-bottom;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#masthead .container {
  position: relative;
}

.wp-custom-header {
  position: absolute;
  top: 0;
  height: 75px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.wp-custom-header img {
  margin: 0 auto;
}

.site-header {
  background-color: var(--zen-bg, #fff);
  width: 100%;
  height: 75px;
  line-height: 1;
}

.site-header .search-icon {
  display: block;
  position: absolute;
  top: 27px;
  right: 0;
}

.site-header .search-icon:hover {
  cursor: pointer;
}

.site-header .search-icon span:before {
  color: #222;
  font-size: 22px;
  vertical-align: middle;
}

.site-header .search-icon .genericon {
  font-family: 'Genericons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.site-header .search-icon .genericon-search {
  display: inline-block;
}

.site-header .search-icon .genericon-search.active {
  display: none;
}

.site-header .search-icon .genericon-search:before {
  content: "\f400";
}

.site-header .search-icon .genericon-close {
  display: none;
}

.site-header .search-icon .genericon-close.active {
  display: inline-block;
}

.site-header .search-icon .genericon-close:before {
  content: "\f405";
}

.search-input {
  background: #fff;
  border: 1px solid #ddd;
  outline: none;
  height: 38px;
  line-height: 38px;
  color: #333;
  text-indent: 5px;
}

.search-input:focus {
  background-color: #fff;
  border-color: #bfbfbf;
}

.search-submit {
  border-left: none;
  color: #fff;
  font-size: 16px;
  height: 38px;
  line-height: 1;
  outline: none;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

/* Header Search */
.header-search {
  display: none;
  background-color: var(--zen-bg, #fff);
  border-top: 3px solid var(--zen-primary, #d4af37);
  line-height: 1;
  width: 300px;
  height: 60px;
  position: absolute;
  top: 75px;
  right: 0;
  z-index: 999;
  box-shadow: var(--zen-shadow, rgba(0, 0, 0, 0.08)) 0px 1px 5px;
  -webkit-box-shadow: var(--zen-shadow, rgba(0, 0, 0, 0.08)) 0px 1px 5px;
}

.header-search:after {
  color: #999;
  font-family: 'Genericons';
  font-size: 22px;
  content: '\f400';
  position: absolute;
  top: 19px;
  left: 24px;
}

.header-search .search-input {
  background: #f5f5f5;
  border: none;
  color: #222;
  font-size: 16px;
  width: 249px;
  height: 32px;
  padding-left: 38px;
  position: absolute;
  top: 13px;
  left: 13px;
}

.header-search .search-submit {
  border: none;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  height: 32px;
  position: absolute;
  top: 13px;
  right: 13px;
  width: 60px;
  text-align: center;
  text-transform: uppercase;
}

.header-search .search-submit:hover {
  opacity: 0.85;
}

/*--------------------------------------------------------------
2.1 Logo
--------------------------------------------------------------*/
.site-branding {
  float: left;
  text-align: left;
}

.site-branding #logo {
  height: 75px;
}

.site-branding .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.site-branding img {
  max-height: 75px;
  vertical-align: middle;
  width: auto;
}

.site-title {
  font-size: 1.4em;
  line-height: 75px;
}

.site-title a {
  color: #333;
  display: block;
  text-decoration: none;
}

.site-title a:hover {
  text-decoration: none;
}

.site-description {
  color: #999;
  font-size: 0.85em;
}

/*--------------------------------------------------------------
2.1 Navigation Menu
--------------------------------------------------------------*/
/* Essential Styles */
.sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-menu li {
  position: relative;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}

.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.sf-menu ul ul {
  top: 1px;
  left: 225px;
}

.sf-menu > li {
  float: left;
}

.sf-menu a {
  display: block;
  position: relative;
}

/* Theme Navigation Skin */
.sf-menu {
  float: left;
}

.sf-menu ul {
  background-color: var(--zen-bg, #fff);
  width: 240px;
  padding: 0 15px;
  box-shadow: var(--zen-shadow, rgba(0, 0, 0, 0.08)) 0px 1px 5px;
  -webkit-box-shadow: var(--zen-shadow, rgba(0, 0, 0, 0.08)) 0px 1px 5px;
}

.sf-menu a {
  text-decoration: none;
  zoom: 1;
}

.sf-menu li {
  white-space: nowrap;
  line-height: 75px;
}

.sf-menu li a {
  color: var(--zen-text-heading, #2c3644);
  font-size: 15px;
  padding: 0 15px;
  text-transform: uppercase;
}

.sf-menu li a:before {
  border-bottom: 3px solid var(--zen-primary, #d4af37);
  display: block;
  content: '';
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

.sf-menu li a:hover {
  background-color: var(--zen-bg-hover, #f9f9f9);
}

.sf-menu li a:hover:before {
  transform: scaleX(1);
}

.sf-menu li.sfHover a,
.sf-menu li.current-menu-item a,
.sf-menu li.current-menu-item a:hover {
  background-color: var(--zen-bg-hover, #f9f9f9);
}

.sf-menu li.sfHover a:before,
.sf-menu li.current-menu-item a:before,
.sf-menu li.current-menu-item a:hover:before {
  transform: scaleX(1);
}

.sf-menu li li {
  height: auto;
  line-height: 1.5;
  border-bottom: 1px solid #f0f0f0;
}

.sf-menu li li:last-child {
  border-bottom: none;
}

.sf-menu li li a {
  background: none !important;
  color: #222;
  font-size: 15px;
  padding: 12px 0;
}

.sf-menu li li a:before {
  content: none;
}

.sf-menu li li ul {
  margin-top: -1px;
}

.sf-menu li:hover li a,
.sf-menu li.sfHover li a {
  color: #222;
  display: block;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
  padding-right: 27px;
}

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -8px;
  height: 0;
  width: 0;
  content: '\f431';
  font: normal 14px/1 'Genericons';
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
  right: 5px;
  margin-top: -5px;
  margin-right: 0;
  content: '\f501';
  font: normal 9px/1 'Genericons';
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Primary Menu */
#primary-menu {
  margin-left: 25px;
}

/*--------------------------------------------------------------
3. Homepage
--------------------------------------------------------------*/
.entry-title a,
.entry-title a:visited {
  color: #222;
}

/* Site Content */
.site-content {
  padding: 30px 0;
}

#primary {
  float: left;
  width: 790px;
}

.site-main {
  background-color: var(--zen-bg, #fff);
  padding: 25px;
}

.thumbnail-wrap {
  position: relative;
}

.thumbnail-wrap .video-length {
  display: none;
  position: absolute;
  right: 3px;
  bottom: 3px;
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  font-size: 11px;
  padding: 2px 3px;
}

/*--------------------------------------------------------------
3.2 Recent Content
--------------------------------------------------------------*/
.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs h1 {
  color: #999;
}

.entry-category {
  margin-right: 15px;
}

.entry-category a {
  border: 1px solid var(--zen-primary, #d4af37);
  border-radius: 2px;
  color: var(--zen-primary, #d4af37) !important;
  display: inline-block;
  line-height: 1;
  padding: 5px 6px;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
}

.entry-category a:hover {
  background-color: var(--zen-primary, #d4af37);
  color: #fff !important;
  text-decoration: none;
}

.post-link {
  display: block;
  position: relative;
}

.content-list {
  margin-bottom: -25px;
}

.content-list .thumbnail-link {
  float: left;
  width: 210px;
  margin: 0 25px 0 0;
  line-height: 0.5;
}

.content-list .thumbnail-link img {
  width: 100%;
  height: auto;
}

.content-list .hentry {
  border-bottom: 1px solid var(--zen-border, #e9e9e9);
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}

.content-list .hentry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.content-list .entry-title {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 20px;
  clear: both;
}

.content-list .entry-title a:hover {
  text-decoration: none;
}

.content-list .entry-summary {
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-list .entry-summary p {
  margin: 0;
}

.content-list .content-ad {
  line-height: 1;
  margin-bottom: 25px;
  text-align: center;
}

.content-list .content-ad .widget-title {
  display: none;
}

.content-list .content-ad img {
  line-height: 0.8;
  max-width: 100%;
}

.read-more a,
.read-more a:visited {
  font-size: 14px;
  text-transform: uppercase;
}

.read-more a:hover {
  text-decoration: none;
}

.content-list .entry-meta,
.content-search .entry-meta,
.single #primary .entry-meta {
  font-size: 13px;
  position: relative;
  color: var(--zen-text-muted, #999);
}

.content-list .entry-meta:after,
.content-search .entry-meta:after,
.single #primary .entry-meta:after {
  clear: both;
  content: " ";
  display: block;
}

.content-list .entry-meta a,
.content-search .entry-meta a,
.single #primary .entry-meta a {
  color: #999;
}

.content-list .entry-meta a:hover,
.content-search .entry-meta a:hover,
.single #primary .entry-meta a:hover {
  color: var(--zen-text-heading, #222);
}

.content-list .entry-meta .meta-right,
.content-search .entry-meta .meta-right,
.single #primary .entry-meta .meta-right {
  float: right;
}

.content-list .entry-meta .entry-date,
.content-search .entry-meta .entry-date,
.single #primary .entry-meta .entry-date {
  margin-right: 15px;
}

.content-list .entry-meta .entry-comment,
.content-search .entry-meta .entry-comment,
.single #primary .entry-meta .entry-comment {
  margin-left: 8px;
  position: relative;
}

.content-list .entry-meta .entry-comment:before,
.content-search .entry-meta .entry-comment:before,
.single #primary .entry-meta .entry-comment:before {
  background-color: var(--zen-border, #e9e9e9);
  content: " ";
  display: inline-block;
  height: 14px;
  width: 1px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}

.content-search .hentry {
  border-bottom: 1px solid var(--zen-border-light, #eee);
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}

.content-search .hentry.last {
  border-bottom: 0;
  margin: 0;
  padding: 0;
}

.content-search .entry-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.content-search .entry-meta {
  font-size: 12px;
}

.content-search .thumbnail-link {
  float: left;
  width: 96px;
  margin: 0 18px 0 0;
  line-height: 0.5;
}

body.dark-mode .content-search .hentry {
  border-bottom-color: #333;
}

body.dark-mode .content-search .entry-meta a:hover {
  color: #c5a059;
}

/*--------------------------------------------------------------
3.3 Pagination
--------------------------------------------------------------*/
.pagination {
  margin: 40px 0 10px 0;
  width: 100%;
  text-align: center;
}

.pagination .page-numbers {
  background-color: var(--zen-bg, #fff);
  display: inline-block;
  font-size: 16px;
  height: 44px;
  line-height: 44px;
  padding: 0 15px;
  text-transform: uppercase;
}

.pagination .page-numbers:hover {
  color: #fff;
  text-decoration: none;
}

.pagination .page-numbers.dots:hover {
  color: #333;
  background-color: transparent;
}

.pagination .page-numbers.current {
  color: #fff;
}

.pagination .prev,
.pagination .next {
  position: relative;
}

body.dark-mode .pagination .page-numbers {
  background-color: #1e1e1e;
  color: #aaa;
}

body.dark-mode .pagination .page-numbers:hover {
  background-color: #333;
  color: #c5a059;
}

body.dark-mode .pagination .page-numbers.current {
  background-color: #c5a059;
  color: #fff;
}

body.dark-mode .pagination .page-numbers.dots:hover {
  color: #aaa;
  background-color: transparent;
}

/*--------------------------------------------------------------
4. Single Post/Page
--------------------------------------------------------------*/
.page-title {
  font-size: 30px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.entry-share {
  position: relative;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.entry-share a,
.entry-share a:visited {
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  height: 38px;
  margin: 0 8px 0 0;
  padding: 0 13px;
  -webkit-backface-visibility: hidden;
}

.entry-share a img,
.entry-share a:visited img {
  display: block;
  float: left;
  width: 14px;
  height: auto;
  margin: 12px 0 0 0;
}

.entry-share a span,
.entry-share a:visited span {
  display: inline-block;
  height: 14px;
  line-height: 14px;
  margin-top: 12px;
}

.entry-share a.twitter span, .entry-share a.facebook span,
.entry-share a:visited.twitter span,
.entry-share a:visited.facebook span {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 10px;
  padding-left: 10px;
}

.entry-share a.google-plus span, .entry-share a.pinterest span,
.entry-share a:visited.google-plus span,
.entry-share a:visited.pinterest span {
  text-indent: -9999em !important;
}

.entry-share a:hover {
  color: #fff;
  opacity: 0.85;
}

.social-twitter {
  background-color: #29c5f6;
}

.social-facebook {
  background-color: #516eab;
}

.social-pinterest {
  background-color: #ca212a;
}

.social-google-plus {
  background-color: #eb4026;
}

.single .entry-header {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.single .entry-header .entry-meta .entry-author {
  margin-right: 15px;
}

.single .entry-header .entry-meta .enrty-date {
  float: right;
}

.single .entry-footer {
  margin-top: 25px;
}

.error404 .site-main .entry-thumbnail,
.single .site-main .entry-thumbnail,
.page .site-main .entry-thumbnail {
  margin-bottom: 10px;
}

.error404 h1.entry-title,
.single h1.entry-title,
.page h1.entry-title {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 15px;
  font-family: "Songti SC", "SimSun", "Kaiti SC", "KaiTi", serif;
  letter-spacing: 0.05em;
}

.error404 .entry-content label,
.error404 .page-content label {
  display: inline-block;
}

/* Related  Posts */
.entry-related {
  border-top: 1px solid var(--zen-border, #e9e9e9);
  margin: 25px 0 -25px 0;
  padding: 25px 0 0 0;
}

.entry-related h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.entry-related .hentry {
  float: left;
  width: 230px;
  margin: 0 25px 25px 0;
}

.entry-related .hentry.last {
  margin-right: 0;
}

.entry-related .hentry:nth-of-type(3n+1) {
  clear: left;
}

.entry-related .hentry .entry-title {
  font-size: 16px;
  line-height: 1.35;
  display: table;
}

.entry-related .hentry .entry-meta {
  font-size: 13px;
}

.entry-related .hentry .thumbnail-link {
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
}

.entry-related .hentry .thumbnail-wrap {
  height: auto;
  line-height: 0.8;
}

/* Zen Related Posts (六宫格) */
.zen-related-posts {
  margin: 40px 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.zen-related-posts .related-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
  display: flex;
  align-items: center;
}

.zen-related-posts .related-title::before {
  content: "";
  width: 4px;
  height: 18px;
  background: #d4af37;
  margin-right: 10px;
  display: inline-block;
}

.zen-related-posts .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.zen-related-posts .related-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.zen-related-posts .related-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--zen-bg-alt, #f5f5f5);
  margin-bottom: 10px;
}

.zen-related-posts .related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.zen-related-posts .related-item:hover .related-thumb img {
  transform: scale(1.05);
}

.zen-related-posts .related-text {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Entry Tags */
.entry-tags {
  color: var(--zen-text-muted, #999);
  margin-bottom: -5px;
}

.entry-tags span {
  font-size: 13px;
  margin-right: 10px;
}

.entry-tags .tag-links a {
  background-color: #fff;
  border: 1px solid #a0ac48;
  border-radius: 2px;
  display: inline-block;
  color: #a0ac48;
  font-size: 13px;
  height: 25px;
  line-height: 23px;
  margin: 0 2px 5px 0;
  padding: 0 6px;
  position: relative;
  text-transform: uppercase;
}

.entry-tags .tag-links a:hover {
  background-color: #a0ac48;
  color: #fff;
  text-decoration: none;
}

body.dark-mode .entry-tags {
  color: #666;
}

body.dark-mode .entry-tags .tag-links a {
  background-color: #1e1e1e;
  border-color: #c5a059;
  color: #c5a059;
}

body.dark-mode .entry-tags .tag-links a:hover {
  background-color: #c5a059;
  color: #fff;
}

/* Entry Content */
.page-content a:hover,
.entry-content a:hover {
  text-decoration: underline;
}

/* Entry Reward Button */
.zen-reward-section { 
    text-align: center; 
    margin: 50px 0; 
}

.zen-reward-section .reward-hint {
    color: var(--zen-text-light, #666);
    font-size: 14px;
    margin-bottom: 15px;
}

.zen-reward-section .reward-box {
    display: flex;
    justify-content: center;
}

.reward-trigger {
    background-color: #c8161d !important;
    color: #ffffff !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    padding: 0 24px !important;
    height: 46px !important;
    line-height: 1 !important;
    border-radius: 25px !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(200, 22, 29, 0.2);
}

.reward-trigger:hover {
    background-color: #a01117 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 22, 29, 0.3);
}

.zen-icon {
    margin-right: 8px;
    font-size: 20px;
    line-height: 1;
}

body.dark-mode .zen-reward-section .reward-hint {
    color: #aaa;
}

body.dark-mode .reward-trigger {
    background: linear-gradient(135deg, #c5a059 0%, #d4af37 100%) !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3) !important;
}

body.dark-mode .reward-trigger:hover {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4) !important;
}

.page-content .wp-post-image,
.entry-content .wp-post-image {
  margin-bottom: 20px;
  width: 100%;
}

.page-content img,
.entry-content img {
  margin-bottom: 20px;
  max-width: 100%;
}

.page-content .wp-caption img,
.entry-content .wp-caption img {
  margin-bottom: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-bottom: 25px;
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.page-content h1,
.entry-content h1 {
  font-size: 30px;
}

.page-content h2,
.entry-content h2 {
  font-size: 26px;
}

.page-content h3,
.entry-content h3 {
  font-size: 22px;
}

.page-content h4,
.entry-content h4 {
  font-size: 18px;
}

.page-content h5, .page-content h6,
.entry-content h5,
.entry-content h6 {
  font-size: 16px;
}

.page-content p,
.entry-content p {
  text-indent: 0rem;
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: inherit;
}

.page-content ul,
.page-content ol,
.entry-content ul,
.entry-content ol {
  margin: 0 0 25px 0;
}

.page-content ul ul,
.page-content ul ol,
.page-content ol ul,
.page-content ol ol,
.entry-content ul ul,
.entry-content ul ol,
.entry-content ol ul,
.entry-content ol ol {
  margin: 8px 0 0 25px;
}

.page-content ul li,
.page-content ol li,
.entry-content ul li,
.entry-content ol li {
  font-size: inherit;
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 18px;
  position: relative;
}

.page-content ul li:hover:before,
.entry-content ul li:hover:before {
  color: #333;
}

.page-content ul li:before,
.entry-content ul li:before {
  border-radius: 3px;
  background-color: var(--zen-border, #ccc);
  content: " ";
  display: inline-block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}

.page-content ul li ul li,
.entry-content ul li ul li {
  list-style: none;
}

body.dark-mode .page-content ul li:before,
body.dark-mode .entry-content ul li:before {
  background-color: #555;
}

body.dark-mode .page-content ul li:hover:before,
body.dark-mode .entry-content ul li:hover:before {
  background-color: #888;
}

.page-content ol li,
.entry-content ol li {
  list-style: inside decimal;
  margin: 0 0 10px 0;
}

.page-content select,
.entry-content select {
  padding: 0 5px;
}

.page-content select:focus, .page-content select:active,
.entry-content select:focus,
.entry-content select:active {
  outline: none;
}

.page-content dl,
.entry-content dl {
  margin-bottom: 20px;
}

.page-content fieldset,
.entry-content fieldset {
  border: 1px solid #e9e9e9;
  margin: 0 2px 20px 2px;
  padding: 0.35em 0.625em 0.75em;
}

.page-content input[type="radio"],
.entry-content input[type="radio"] {
  -webkit-appearance: radio;
}

.page-content input[type="checkbox"],
.entry-content input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

.page-content ::-webkit-file-upload-button,
.entry-content ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

.page-content table,
.entry-content table {
  margin-bottom: 20px;
}

.page-content select,
.entry-content select {
  border: 1px solid #e9e9e9;
  font-size: 1em;
  border-radius: 3px;
  height: 2em;
  max-width: 100%;
  -webkit-appearance: menulist;
}

.page-content input[type="text"],
.page-content input[type="email"],
.page-content input[type="url"],
.page-content input[type="search"],
.page-content input[type="password"],
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="url"],
.entry-content input[type="search"],
.entry-content input[type="password"] {
  width: 300px;
}

.page-content input[type="file"],
.entry-content input[type="file"] {
  border: none;
}

.page-content textarea,
.entry-content textarea {
  width: 100%;
  height: 200px;
}

.page-content .wp-caption,
.entry-content .wp-caption {
  background-color: #f7f7f7;
  padding: 0 0 1px 0;
}

.page-content .wp-caption-text,
.entry-content .wp-caption-text {
  font-size: 13px;
  font-style: italic;
  color: #999;
}

body.dark-mode .page-content .wp-caption,
body.dark-mode .entry-content .wp-caption {
  background-color: #1e1e1e;
}

body.dark-mode .page-content .wp-caption-text,
body.dark-mode .entry-content .wp-caption-text {
  color: #666;
}

blockquote {
  color: #999999;
  font-size: 18px;
  font-style: italic;
  padding: 0.25em 50px;
  line-height: 1.45;
  position: relative;
  margin: 1.5em 0;
  font-family: "Kaiti SC", "KaiTi", "Songti SC", "SimSun", serif;
  letter-spacing: 0.02em;
}

blockquote:before {
  display: block;
  content: "\201C";
  font-size: 64px;
  position: absolute;
  left: 0;
  top: -15px;
  color: #cccccc;
  opacity: 0.3;
}

blockquote cite {
  color: #333333;
  display: block;
  margin-top: 10px;
}

body.dark-mode blockquote {
  color: #888;
  border-left: 3px solid #444;
  padding-left: 20px;
}

body.dark-mode blockquote:before {
  color: #555;
}

body.dark-mode blockquote cite {
  color: #aaa;
}

blockquote cite:before {
  content: "\2014 \2009";
}

#primary p,
.widget p,
.entry-summary,
.author-desc {
  line-height: 1.8em;
}

pre,
code {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", monospace;
}

pre {
  background-color: #f9f9f9;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  padding: 1em;
  overflow-x: auto;
  font-size: 0.9em;
  line-height: 1.5;
}

code {
  background-color: #f9f9f9;
  padding: 0.2em 0.4em;
  border-radius: 2px;
  font-size: 0.9em;
}

body.dark-mode pre {
  background-color: #1e1e1e;
  border-color: #333;
  color: #ccc;
}

body.dark-mode code {
  background-color: #2a2a2a;
  color: #ccc;
}

pre code {
  background: none;
  padding: 0;
}

/*--------------------------------------------------------------
5. Archive/Search Page
--------------------------------------------------------------*/
.search-no-results .page-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.no-results .entry-content p,
.no-results .page-content p,
.not-found .entry-content p,
.not-found .page-content p {
  text-indent: 0;
}

/*--------------------------------------------------------------
6. Comments
--------------------------------------------------------------*/
.comment-respond {
  border-top: 1px solid #e9e9e9;
  margin: 25px 0 0 0;
  padding: 25px 0 0 0;
}

.comments-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-top: 1px solid #e9e9e9;
  margin-top: 25px;
  padding-top: 25px;
}

.comment-reply-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.comment-list {
  list-style: none;
}

.comment-author {
  font-size: 14px;
}

.comment-meta {
  margin-bottom: 4px;
}

.comment-list .reply,
.comment-metadata {
  font-size: 13px;
}

.comment-list .reply {
  margin-top: 10px;
}

.comment-author .fn {
  font-weight: normal;
}

.comment-author a {
  color: #2b2b2b;
}

.comment-list .trackback a,
.comment-list .pingback a,
.comment-metadata a,
.comment-list .reply a {
  color: #999;
}

.comment-list .trackback a:hover,
.comment-list .pingback a:hover,
.comment-metadata a:hover,
.comment-list .reply a:hover {
  color: var(--zen-text, #333);
}

.comment-author a:hover {
  color: var(--zen-text-heading, #222);
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
  margin: 0 0 20px 0;
  border-top: 1px solid var(--zen-border-light, #f0f0f0);
  padding-top: 20px;
}

.comment-list > li:first-child > article,
.comment-list > .pingback:first-child,
.comment-list > .trackback:first-child {
  border-top: 0;
  padding-top: 0;
}

.comment-author {
  position: relative;
}

.comment-author .avatar {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: auto;
}

.bypostauthor > article .fn:before {
  color: #fbb034;
  content: "\f408";
  margin: 0 2px 0 -2px;
  position: relative;
  top: -1px;
}

.says {
  display: none;
}

.comment-author,
.comment-awaiting-moderation,
.comment-content,
.comment-list .reply {
  padding-left: 64px;
}

.comment-author {
  display: inline;
}

.comment-metadata {
  display: inline;
  margin-left: 7px;
}

.comment-edit-link {
  margin-left: 10px;
}

.comment-edit-link:hover {
  text-decoration: none;
}

#cancel-comment-reply-link:hover {
  text-decoration: none;
}

.comment-edit-link:before {
  content: "\f411";
}

.comment-reply-link:hover {
  text-decoration: none;
}

.comment-reply-link:before,
.comment-reply-login:before {
  content: '\f467';
  color: #aaa;
  margin-right: 2px;
}

.comment-content {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
}

.comment-content ul,
.comment-content ol {
  margin: 0 0 24px 22px;
}

.comment-content li > ul,
.comment-content li > ol {
  margin-bottom: 0;
}

.comment-content > :last-child {
  margin-bottom: 0;
}

.comment-list .children {
  list-style: none;
  margin-left: 64px;
}

.comment .comment-respond {
  margin: 25px 0;
}

.comment-respond h3 {
  margin-top: 0;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.no-comments,
.form-allowed-tags,
.form-allowed-tags code {
  color: #999;
}

.comment-notes a,
.comment-awaiting-moderation a,
.logged-in-as a,
.no-comments a,
.form-allowed-tags a,
.form-allowed-tags code a {
  color: #999;
}

.comment-notes a:hover,
.comment-awaiting-moderation a:hover,
.logged-in-as a:hover,
.no-comments a:hover,
.form-allowed-tags a:hover,
.form-allowed-tags code a:hover {
  color: #222;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as {
  font-size: 14px;
  margin-bottom: 10px;
}

.no-comments {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 24px;
  text-transform: uppercase;
}

body.dark-mode .comment-list article,
body.dark-mode .comment-list .pingback,
body.dark-mode .comment-list .trackback {
  border-top-color: #333;
}

body.dark-mode .comment-author a {
  color: #aaa;
}

body.dark-mode .comment-list .trackback a,
body.dark-mode .comment-list .pingback a,
body.dark-mode .comment-metadata a,
body.dark-mode .comment-list .reply a {
  color: #666;
}

body.dark-mode .comment-list .trackback a:hover,
body.dark-mode .comment-list .pingback a:hover,
body.dark-mode .comment-metadata a:hover,
body.dark-mode .comment-list .reply a:hover {
  color: #c5a059;
}

body.dark-mode .comment-author a:hover {
  color: #c5a059;
}

body.dark-mode .comment-notes,
body.dark-mode .comment-awaiting-moderation,
body.dark-mode .logged-in-as,
body.dark-mode .no-comments,
body.dark-mode .form-allowed-tags,
body.dark-mode .form-allowed-tags code {
  color: #666;
}

body.dark-mode .comment-notes a,
body.dark-mode .comment-awaiting-moderation a,
body.dark-mode .logged-in-as a,
body.dark-mode .no-comments a,
body.dark-mode .form-allowed-tags a,
body.dark-mode .form-allowed-tags code a {
  color: #888;
}

body.dark-mode .comment-notes a:hover,
body.dark-mode .comment-awaiting-moderation a:hover,
body.dark-mode .logged-in-as a:hover,
body.dark-mode .no-comments a:hover,
body.dark-mode .form-allowed-tags a:hover,
body.dark-mode .form-allowed-tags code a:hover {
  color: #c5a059;
}

.comment-form .comment-form-comment,
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
  margin-bottom: 20px;
}

.comment-form textarea {
  width: 100%;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
  width: 230px;
}

.comment-form .comment-form-author {
  float: left;
  margin-right: 25px;
}

.comment-form .comment-form-email {
  float: left;
  margin-right: 25px;
}

.comment-form .comment-form-url {
  float: left;
}

.comment-form:after {
  content: '';
  display: block;
  clear: both;
}

.comment-form .submit {
  font-size: 14px;
  padding: 0 18px;
}

.comment-form label {
  font-size: 14px;
}

.comment-form-cookies-consent {
  display: none;
  margin-bottom: 20px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
}

.form-allowed-tags,
.form-allowed-tags code {
  font-size: 12px;
  line-height: 1.5;
}

.required {
  color: #c0392b;
}

.comment-reply-title small a {
  color: #2b2b2b;
  float: right;
  height: 24px;
  overflow: hidden;
  width: 24px;
}

.comment-reply-title small a:before {
  content: "\f405";
  font-size: 20px;
}

.comment-navigation {
  font-size: 13px;
}

.comment-navigation:after {
  clear: both;
  content: " ";
  display: block;
}

.comment-navigation .nav-next,
.comment-navigation .nav-previous {
  display: inline-block;
}

.comment-navigation .nav-previous {
  float: left;
}

.comment-navigation .nav-next {
  float: right;
}

#comment-nav-above {
  margin-bottom: 20px;
}

#comment-nav-below {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
7. Sidebar
--------------------------------------------------------------*/
.sidebar {
  float: right;
  width: 300px;
}

.sidebar .widget {
  background-color: var(--zen-bg, #fff);
  margin-bottom: 25px;
  padding: 20px;
  line-height: 1.4;
}

.sidebar .widget .widget-title {
  border-bottom: 1px solid var(--zen-border, #e9e9e9);
  color: var(--zen-text-heading, #222);
  font-size: 18px;
  margin: -3px 0 8px;
  padding-bottom: 5px;
  position: relative;
}

.sidebar .widget .widget-title:before {
  background-color: var(--zen-primary, #037ef3);
  content: " ";
  width: 4px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: -20px;
}

.sidebar .widget p {
  margin-bottom: 15px;
}

.sidebar .widget ul .children,
.sidebar .widget ul .sub-menu {
  padding-left: 1.5em;
}

.sidebar .widget ul .children li:first-child,
.sidebar .widget ul .sub-menu li:first-child {
  padding: 15px 0;
  border-top: 1px solid var(--zen-border, #e9e9e9);
}

.sidebar .widget ul > li {
  list-style: none;
  margin-bottom: 15px;
  position: relative;
}

.sidebar .widget ul > li a {
  color: var(--zen-text, #333);
}

.sidebar .widget ul li:last-child {
  margin-bottom: 0;
}

/* Sidebar Menu Accordion */
.sidebar .widget_categories ul,
.sidebar .widget_archive ul,
.sidebar .widget_nav_menu ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.sidebar .widget_categories ul li,
.sidebar .widget_nav_menu ul li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    line-height: 2.2;
}

.sidebar .widget_categories ul li > a,
.sidebar .widget_nav_menu ul li > a {
    display: inline-block;
    width: auto;
    min-height: 2.2em;
}

.sidebar .widget_categories ul li > .menu-toggle-icon,
.sidebar .widget_nav_menu ul li > .menu-toggle-icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 2.2em;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #d4af37;
    transition: transform 0.3s ease;
    z-index: 5;
    transform-origin: center center;
}

.sidebar .widget_categories ul li > .menu-toggle-icon.is-open,
.sidebar .widget_nav_menu ul li > .menu-toggle-icon.is-open {
    transform: rotate(90deg);
}

.sidebar .widget_categories ul li a,
.sidebar .widget_nav_menu ul li a {
    display: inline-block;
    width: auto;
}

.sidebar .widget_categories ul ul,
.sidebar .widget_nav_menu ul ul {
    display: none;
    padding-left: 20px !important;
    background: rgba(0,0,0,0.02);
}

.sidebar .widget_categories li:has(ul):hover,
.sidebar .widget_nav_menu li:has(ul):hover {
    background-color: rgba(212, 175, 55, 0.05);
}

body.dark-mode .widget_categories ul li {
    border-bottom-color: #333;
}

body.dark-mode .widget_categories ul ul,
body.dark-mode .widget_nav_menu ul ul {
    background: rgba(255,255,255,0.02);
}

.sidebar .widget select {
  width: 100%;
  max-width: 100%;
}

.sidebar .widget_search input[type='search'] {
  width: 180px;
}

.sidebar .widget_search button.search-submit,
.sidebar .widget_search input[type='submit'] {
  width: 75px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.sidebar .widget_social_icons ul li,
.sidebar .widget_posts_thumbnail ul li {
  list-style: none;
}

.sidebar .widget_social_icons ul li:before,
.sidebar .widget_posts_thumbnail ul li:before {
  content: none;
  display: none;
}

.sidebar .widget_posts_thumbnail {
  color: #999;
  line-height: 1.4;
}

.sidebar .widget_posts_thumbnail ul > li {
  margin-bottom: 20px;
  padding: 0 !important;
}

.sidebar .widget_posts_thumbnail .thumbnail-wrap,
.sidebar .widget_posts_thumbnail .wp-post-image,
.sidebar .widget_posts_thumbnail img {
  width: 90px;
  height: auto;
}

/* Posts with Thumbnail Widget */
.widget_posts_thumbnail ul li {
  margin: 0 0 20px 0;
}

.widget_posts_thumbnail li:after {
  content: "";
  display: block;
  clear: both;
}

.widget_posts_thumbnail .entry-thumbnail {
  float: left;
}

.widget_posts_thumbnail .entry-wrap {
  display: table;
  line-height: 1.4;
}

.widget_posts_thumbnail .entry-wrap a {
  font-size: 14px;
}

.widget_posts_thumbnail .thumbnail-wrap {
  float: left;
  margin: 0 12px 0 0;
  line-height: 0;
}

.widget_posts_thumbnail .entry-meta {
  font-size: 13px;
  margin-top: 5px;
}

/* Tag Cloud Widget */
.widget_tag_cloud .tagcloud a {
  border: 1px solid #a0ac48;
  border-radius: 2px;
  display: inline-block;
  color: var(--zen-tag-text, #a0ac48) !important;
  font-size: 13px !important;
  height: 25px;
  line-height: 23px;
  margin: 0 2px 5px 0;
  padding: 0 6px;
  position: relative;
  text-transform: uppercase;
}

.widget_tag_cloud .tagcloud a:hover {
  background-color: var(--zen-tag-border, #a0ac48);
  color: #fff !important;
  text-decoration: none !important;
}

/* Recent Posts Widget */
.widget_recent_entries .post-date {
  font-size: 13px;
  color: var(--zen-text-muted, #999);
  margin-left: 5px;
}

.sidebar,
.site-footer {
  /* Ad Widget */
  /* Newsletter Widget */
  /* Social Icons Widget */
}

.sidebar .widget_ad,
.site-footer .widget_ad {
  background: none;
  padding: 0;
  position: relative;
}

.sidebar .widget_ad .adwidget,
.site-footer .widget_ad .adwidget {
  line-height: 0.8;
}

.sidebar .widget_ad img,
.site-footer .widget_ad img {
  line-height: 0.8;
}

.sidebar .widget_ad .widget-title,
.site-footer .widget_ad .widget-title {
  border-bottom: none;
  color: #fff;
  display: none;
  font-size: 12px;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(50, 50, 50, 0.8);
  padding: 2px 5px;
  border-top-right-radius: 10px;
}

.sidebar .widget_ad .widget-title:before,
.site-footer .widget_ad .widget-title:before {
  content: none;
}

.sidebar .widget_newsletter,
.site-footer .widget_newsletter {
  background-color: #2c3644;
  background-image: url(//www.yuanjuechan.com/wp-content/themes/boke-1/assets/img/icon-mail-trans.png);
  background-repeat: no-repeat;
  background-position: 110% -20px;
  color: #8b95a4;
  width: 100%;
  padding: 20px;
}

.sidebar .widget_newsletter .widget-title,
.site-footer .widget_newsletter .widget-title {
  color: #fff;
}

.sidebar .widget_newsletter .widget-title span,
.site-footer .widget_newsletter .widget-title span {
  background: none;
}

.sidebar .widget_newsletter .widget-title:after,
.site-footer .widget_newsletter .widget-title:after {
  content: none;
}

.sidebar .widget_newsletter p,
.site-footer .widget_newsletter p {
  color: #8b95a4;
}

.sidebar .widget_newsletter form input[type="text"],
.sidebar .widget_newsletter form input[type="email"],
.site-footer .widget_newsletter form input[type="text"],
.site-footer .widget_newsletter form input[type="email"] {
  border: none;
  width: 100%;
  margin-top: 15px;
}

.sidebar .widget_newsletter form input[type="text"]:focus,
.sidebar .widget_newsletter form input[type="email"]:focus,
.site-footer .widget_newsletter form input[type="text"]:focus,
.site-footer .widget_newsletter form input[type="email"]:focus {
  border: none;
}

.sidebar .widget_newsletter form input[type="submit"],
.sidebar .widget_newsletter form input[type="button"],
.sidebar .widget_newsletter form button,
.site-footer .widget_newsletter form input[type="submit"],
.site-footer .widget_newsletter form input[type="button"],
.site-footer .widget_newsletter form button {
  border: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
  margin-top: 15px;
}

.sidebar .widget_social_icons,
.site-footer .widget_social_icons {
  padding: 20px 0;
}

.sidebar .widget_social_icons:before,
.site-footer .widget_social_icons:before {
  display: none;
}

.sidebar .widget_social_icons .widget-title,
.site-footer .widget_social_icons .widget-title {
  text-align: center;
  margin-bottom: 5px;
}

.sidebar .widget_social_icons .widget-title span,
.site-footer .widget_social_icons .widget-title span {
  background: none;
  padding: 0 10px;
}

.sidebar .widget_social_icons .widget-title:after,
.site-footer .widget_social_icons .widget-title:after {
  content: none;
}

.sidebar .widget_social_icons .desc,
.site-footer .widget_social_icons .desc {
  color: var(--zen-text-muted, #999);
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.sidebar .widget_social_icons ul,
.site-footer .widget_social_icons ul {
  text-align: center;
}

.sidebar .widget_social_icons ul li,
.site-footer .widget_social_icons ul li {
  border: none;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

.sidebar .widget_social_icons ul li a,
.site-footer .widget_social_icons ul li a {
  display: block;
  width: 32px;
  text-align: center;
}

/*--------------------------------------------------------------
7. Footer
--------------------------------------------------------------*/
.footer-columns {
  background: var(--zen-bg, #fff);
  border-bottom: 1px solid var(--zen-border, #e9e9e9);
  padding: 40px 0 20px 0;
}

.footer-columns .section-header {
  font-size: 32px;
  margin-bottom: 20px;
}

.footer-columns .widget {
  margin-bottom: 20px;
}

.footer-columns .widget_posts_thumbnail .thumbnail-wrap,
.footer-columns .widget_posts_thumbnail .wp-post-image,
.footer-columns .widget_posts_thumbnail img {
  width: 80px;
  height: auto;
}

.footer-columns .footer-column-1,
.footer-columns .footer-column-2,
.footer-columns .footer-column-3,
.footer-columns .footer-column-4 {
  float: left;
  width: 242px;
  margin: 0 30px 0 0;
  box-sizing: content-box;
  position: relative;
}

.footer-columns .footer-column-4 {
  margin-right: 0;
}

.site-footer .widget {
  font-size: 13px;
  margin-bottom: 25px;
}

.site-footer .widget .widget-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.site-footer .widget p {
  margin-bottom: 15px;
}

.site-footer .widget ul .children,
.site-footer .widget ul .sub-menu {
  padding-left: 1.5em;
}

.site-footer .widget ul .children li:first-child,
.site-footer .widget ul .sub-menu li:first-child {
  border-top: none;
  padding-top: 0;
}

.site-footer .widget ul .children li:last-child,
.site-footer .widget ul .sub-menu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.site-footer .widget ul > li {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.site-footer .widget ul > li a {
  color: var(--zen-text, #333);
}

.site-footer .widget ul li:first-child {
  border-top: none;
  padding-top: 0;
}

.site-footer .widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.site-footer .widget select {
  width: 100%;
  max-width: 100%;
}

.site-footer .widget_posts_thumbnail ul li {
  margin-bottom: 20px;
}

.site-footer .widget_posts_thumbnail ul li a {
  font-size: 13px;
}

.site-footer .widget_posts_thumbnail .thumbnail-wrap {
  line-height: 0.5;
}

.site-footer .widget_posts_thumbnail .entry-meta {
  color: var(--zen-text-muted, #999);
}

.site-footer .widget_search input[type='search'] {
  width: 100%;
  margin-bottom: 10px;
}

.site-footer .widget_search input[type='submit'] {
  width: 100%;
}

/* Back to top button */
#back-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 59px;
  z-index: 9999;
}

#back-top a {
  display: block;
  width: 30px;
  height: 30px;
  background: transparent;
  text-align: center;
  line-height: 30px;
  transition: opacity 0.2s;
}

#back-top a span,
#back-top a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 24px;
  display: block;
  line-height: 30px;
  text-decoration: none;
  vertical-align: middle;
}

#back-top a:hover {
  text-decoration: none;
}

#back-top a:hover span,
#back-top a:hover {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

body.dark-mode #back-top a span {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode #back-top a:hover span {
  color: rgba(255, 255, 255, 0.8);
}

/* Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  background: transparent;
}

.progress-bar {
  height: 3px;
  background: var(--zen-primary, #d4af37);
  width: 0%;
}

/* Zen Notice */
.zen-notice {
  background-color: var(--zen-bg-alt, #fdfaf2);
  border: 1px solid var(--zen-border, #e2d7c0);
  border-left: 5px solid var(--zen-primary, #d4af37);
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 4px;
  color: var(--zen-text-light, #856404);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

.zen-notice::before {
  content: "🙏";
  margin-right: 8px;
}

.zen-notice a {
  color: #c8161d;
  text-decoration: underline;
  font-weight: bold;
}

/* Path Grid */
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.path-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #d4af37;
}

.path-step-num {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #d4af37;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.path-card h3 {
  margin: 15px 0 10px 0 !important;
  color: #333;
  font-size: 1.25rem;
}

.path-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 15px 0 0 0 !important;
}

.path-links li {
  margin-bottom: 12px !important;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}

.path-links li::before {
  content: "◈";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 12px;
}

.path-links a {
  text-decoration: none;
  color: #666;
  transition: color 0.2s;
}

.path-links a:hover {
  color: #d4af37 !important;
}

/* Reading Page H2 H3 */
.entry-content h2,
.entry-content h3 {
  border-left: 4px solid #d4af37;
  padding-left: 12px;
  margin-top: 2em;
  margin-bottom: 1em;
  color: #222;
  font-family: "Songti SC", "SimSun", "Kaiti SC", "KaiTi", serif;
  letter-spacing: 0.05em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Mobile Capsule Nav */
.zen-capsule-nav {
  display: none;
}

@media (max-width: 768px) {
  .zen-capsule-nav {
    position: fixed;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%) !important;
    display: inline-flex !important;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    padding: 5px 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 5;
    gap: 13px;
    align-items: center;
    width: auto !important;
    transition: background 0.2s ease, backdrop-filter 0.2s ease;
  }

  .zen-capsule-nav:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  body.dark-mode .zen-capsule-nav {
    background: rgba(30, 30, 30, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.1);
  }

  body.dark-mode .zen-capsule-nav:hover {
    background: rgba(30, 30, 30, 0.15) !important;
  }

  .zen-capsule-nav a {
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    font-size: 19.5px;
    color: #222;
    text-decoration: none;
    display: block;
    -webkit-tap-highlight-color: transparent;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.4);
    opacity: 0.45;
    transition: opacity 0.2s ease;
  }

  .zen-capsule-nav:hover a {
    opacity: 1;
  }

  body.dark-mode .zen-capsule-nav a {
    color: #ddd;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  }

  #back-top {
    bottom: calc(100px + env(safe-area-inset-bottom)) !important;
    right: 15px !important;
  }

  #back-top a {
    background: transparent !important;
  }

  #back-top a span {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 24px !important;
  }

  body.dark-mode #back-top a span {
    color: rgba(255, 255, 255, 0.6) !important;
  }

  #darkModeToggle {
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    right: 15px !important;
    background: transparent !important;
    font-size: 22px !important;
    opacity: 0.45 !important;
    transition: opacity 0.2s ease !important;
  }

  #darkModeToggle:hover {
    opacity: 1 !important;
  }

  body.dark-mode #darkModeToggle {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.5) !important;
  }
}

@media (min-width: 769px) {
  .zen-capsule-nav {
    display: none !important;
  }
}

/* Zen Reward Section */
.reward-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.reward-modal.active {
  display: block;
}

.reward-content {
  position: relative;
  background: #fff;
  margin: 10% auto;
  padding: 30px;
  width: 95%;
  max-width: 450px;
  border-radius: 15px;
  text-align: center;
}

body.dark-mode .reward-content {
  background: #1e1e1e;
  color: #ccc;
}

.qr-container {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 30px !important;
  margin: 25px auto !important;
  width: 100% !important;
  max-width: 400px !important;
}

.qr-item {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.qr-item img {
  width: 140px !important;
  height: 140px !important;
  border-radius: 8px !important;
  border: 1px solid #f0f0f0 !important;
  display: block !important;
  margin: 0 auto !important;
}

.qr-item b {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

body.dark-mode .qr-item b {
  color: #aaa;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.reward-title {
  color: #d4af37 !important;
  margin-bottom: 5px;
  font-weight: bold;
}

.reward-notice-text {
  width: 100% !important;
  text-align: center !important;
  margin: 15px 0 !important;
}

.reward-footer {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .qr-container {
    gap: 10px;
  }
  .qr-item img {
    max-width: 130px !important;
  }
  .reward-content {
    margin: 30% auto;
    padding: 20px;
  }
}

/* Dark Mode Toggle Button */
#darkModeToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
  width: 36px;
  height: 36px;
  background: var(--zen-bg-card);
  border: 1px solid var(--zen-border);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s;
  opacity: 0.45;
}

#darkModeToggle:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-mode #darkModeToggle {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode #darkModeToggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Dark Mode Global Styles */
body.dark-mode {
  background-color: #121212 !important;
}

body.dark-mode .site-header,
body.dark-mode #site-navigation {
  background-color: #252525 !important;
  border-bottom: 1px solid #333 !important;
}

body.dark-mode article,
body.dark-mode .post,
body.dark-mode .entry-content,
body.dark-mode .content-area,
body.dark-mode .widget,
body.dark-mode aside,
body.dark-mode .sidebar-container,
body.dark-mode #main {
  background-color: #1e1e1e !important;
  color: #bbbbbb !important;
  border-color: #2d2d2d !important;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode .widget-title {
  color: #aaaaaa !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: #c5a059 !important;
}

body.dark-mode a {
  color: #c5a059 !important;
}

body.dark-mode a:hover {
  color: #e5c17e !important;
}

body.dark-mode textarea,
body.dark-mode input {
  background-color: #252525 !important;
  color: #ccc !important;
  border-color: #444 !important;
}

body.dark-mode .sub-menu,
body.dark-mode .children {
  background-color: #252525 !important;
  border-color: #333 !important;
}

body.dark-mode .sub-menu li a,
body.dark-mode .children li a {
  color: #bbb !important;
  background-color: transparent !important;
}

body.dark-mode .sub-menu li a:hover,
body.dark-mode .children li a:hover {
  background-color: #333333 !important;
  color: #c5a059 !important;
}

body.dark-mode .slicknav_menu {
  background-color: #1e1e1e !important;
}

body.dark-mode .slicknav_icon-bar {
  background-color: #c5a059 !important;
}

body.dark-mode .site-header .search-icon span:before {
  color: #c5a059 !important;
}

body.dark-mode .slicknav_nav {
  background: #1e1e1e !important;
}

body.dark-mode .slicknav_nav a {
  background-color: #1e1e1e !important;
  color: #bbb !important;
  border-bottom-color: #444 !important;
}

body.dark-mode .slicknav_nav a:hover {
  background-color: #444 !important;
  color: #c5a059 !important;
}

body.dark-mode .slicknav_nav .slicknav_arrow {
  color: #c5a059 !important;
}

body.dark-mode .slicknav_nav .slicknav_item a {
  background-color: transparent !important;
}

body.dark-mode .slicknav_nav .slicknav_item a:hover {
  background-color: transparent !important;
}

body.dark-mode .nav-menu li a:hover,
body.dark-mode .site-header ul li a:hover {
  background-color: #333333 !important;
  color: #c5a059 !important;
}

body.dark-mode .sf-menu li a {
  color: #c5a059 !important;
}

body.dark-mode .sf-menu li a:hover {
  background-color: #252525 !important;
  color: #c5a059 !important;
}

body.dark-mode .sf-menu li.sfHover > a {
  background-color: #252525 !important;
  color: #c5a059 !important;
}

body.dark-mode .path-card {
  background: #1e1e1e !important;
  border-color: #333 !important;
}

body.dark-mode .path-card h3 {
  color: #d4af37 !important;
}

body.dark-mode .path-links a {
  color: #aaa !important;
}

body.dark-mode .widget_categories ul li {
  border-bottom-color: #333;
}

body.dark-mode .widget_categories ul ul {
  background: rgba(255, 255, 255, 0.02);
}

body.dark-mode .content-list .hentry {
  border-bottom-color: #333;
}

body.dark-mode .content-list .entry-title a {
  color: #ddd;
}

body.dark-mode .content-list .entry-title a:hover {
  color: #c5a059;
}

body.dark-mode .content-list .entry-summary {
  color: #888;
}

body.dark-mode .content-list .thumbnail-link {
  border-radius: 6px;
}

body.dark-mode .content-list .entry-meta,
body.dark-mode .content-search .entry-meta,
body.dark-mode .single #primary .entry-meta {
  color: #888;
}

body.dark-mode .content-list .entry-meta a,
body.dark-mode .content-search .entry-meta a,
body.dark-mode .single #primary .entry-meta a {
  color: #888;
}

body.dark-mode .content-list .entry-meta a:hover,
body.dark-mode .content-search .entry-meta a:hover,
body.dark-mode .single #primary .entry-meta a:hover {
  color: #c5a059;
}

body.dark-mode .content-list .entry-meta .entry-comment:before,
body.dark-mode .content-search .entry-meta .entry-comment:before,
body.dark-mode .single #primary .entry-meta .entry-comment:before {
  background-color: #444;
}

body.dark-mode .entry-related {
  border-top-color: #333;
}

body.dark-mode .entry-related h3 {
  color: #c5a059;
}

body.dark-mode .entry-related .hentry .entry-title a {
  color: #aaa;
}

body.dark-mode .entry-related .hentry .entry-title a:hover {
  color: #c5a059;
}

body.dark-mode .zen-related-posts {
  border-top-color: #333;
}

body.dark-mode .zen-related-posts .related-title {
  color: #c5a059;
}

body.dark-mode .zen-related-posts .related-thumb {
  background: #2d2d2d;
}

body.dark-mode .zen-related-posts .related-text {
  color: #aaa;
}

body.dark-mode .zen-related-posts .related-item:hover .related-text {
  color: #c5a059;
}

body.dark-mode .reward-content {
  background: #1e1e1e;
  color: #ccc;
}

body.dark-mode .qr-item b {
  color: #aaa;
}

body.dark-mode .footer-columns {
  background: #1e1e1e !important;
  border-bottom-color: #333 !important;
}

body.dark-mode #site-bottom {
  background-color: #252525 !important;
}

body.dark-mode #site-bottom .site-info,
body.dark-mode #site-bottom .footer-nav a {
  color: #aaa !important;
}

body.dark-mode #site-bottom .footer-nav a:hover {
  color: #c5a059 !important;
}

body.dark-mode .site-footer .widget a:hover {
  color: #c5a059 !important;
}

/* Site Bottom */
#site-bottom {
  background-color: #fff;
  font-size: 12px;
  padding: 20px 0;
}

#site-bottom .site-info {
  float: left;
}

#site-bottom .footer-nav {
  float: right;
}

#site-bottom .footer-nav li {
  display: inline-block;
  list-style: none;
  line-height: 1;
  margin-left: 25px;
}

#site-bottom .footer-nav li:last-child {
  border-right: none;
  padding-right: 0;
}

#site-bottom .footer-nav li li {
  display: none;
}

/*--------------------------------------------------------------
9. Misc.
--------------------------------------------------------------*/
#wpadminbar ul#wp-admin-bar-root-default > li.yuanjuechan a {
  background: url(//www.yuanjuechan.com/wp-content/themes/boke-1/assets/img/zhutibaba-favicon.png) no-repeat left center;
  background-size: 24px 24px;
  -webkit-backface-visibility: hidden;
  padding-left: 26px;
}

/* CSS3 Effects */
/* Responsive Menu */
.slicknav_menu,
#slick-mobile-menu {
  display: none;
}

.full-width {
  float: none;
  width: 100% !important;
}

/* bxslider */
/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bxslider {
  margin: 0;
  padding: 0;
  position: relative;
  height: 414px;
  overflow: hidden;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}

/** THEME
===================================*/
#featured-content .bx-wrapper,
#featured-content .bxslider,
#featured-content .thumbnail-link {
  width: 100%;
  height: 414px;
  overflow: hidden;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  top: 0;
  right: 10px;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(//www.yuanjuechan.com/wp-content/themes/boke-1/assets/img/bx_loader.gif) center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  background: rgba(50, 50, 50, 0.6);
  border-radius: 9px;
  height: 18px;
  line-height: 18px;
  position: absolute;
  padding: 0 6px;
  right: 10px;
  top: 10px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #fff;
  text-indent: -9999px;
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  outline: 0;
  border-radius: 3px;
  transition: all 0.2s;
}

.bx-wrapper .bx-pager.bx-default-pager a.active {
  width: 18px;
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: middle;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  outline: 0;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: transform 0.2s ease;
}

.bx-wrapper .bx-prev {
  left: 10px;
}

.bx-wrapper .bx-next {
  right: 10px;
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-next:hover {
  transform: scale(1.1);
}

.bx-wrapper .bx-prev::before,
.bx-wrapper .bx-next::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.8);
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease;
}

.bx-wrapper .bx-prev::before {
  transform: rotate(45deg);
  margin-left: 6px;
}

.bx-wrapper .bx-next::before {
  transform: rotate(-135deg);
  margin-right: 6px;
}

.bx-wrapper .bx-prev:hover::before,
.bx-wrapper .bx-next:hover::before {
  border-color: var(--zen-primary, #d4af37);
}

.bx-wrapper .bx-controls-direction a {
  text-indent: -9999px;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

.gradient {
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.45) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  bottom: 0;
  content: "";
  display: none;
  height: 60%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

#featured-content {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 25px;
  position: relative;
}

#featured-content .featured-wrap {
  position: relative;
}

#featured-content .featured-slide {
  position: relative;
}

#featured-content .featured-slide img {
  width: 100%;
}

#featured-content .featured-slide .thumbnail-link {
  display: block;
}

#featured-content .featured-slide .entry-header {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 99;
  padding: 20px;
}

#featured-content .featured-slide .entry-title {
  line-height: 1.1;
  font-size: 28px;
}

#featured-content .featured-slide .entry-title a {
  color: #fff;
}

#featured-content .featured-slide .entry-category {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

#featured-content .featured-slide .entry-category a {
  display: block;
}

#featured-content .featured-slide .entry-summary {
  display: none;
  line-height: 1.8;
}

#featured-content .featured-slide .entry-summary p {
  display: inline;
}

.ribbon {
  position: absolute;
  left: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
  display: none;
}

.ribbon span {
  font-size: 12px;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 100px;
  display: block;
  background: #ffbe02;
  background: linear-gradient(#ffbe02 0%, #fbb034 100%);
  box-shadow: 0 3px 10px -5px black;
  position: absolute;
  top: 19px;
  left: -21px;
}

/* Article Navigation */
.article-nav {
  border-top: 1px solid #f2f2f2;
  background-color: #FBFBFB;
  overflow: hidden;
  padding: 15px 20px;
  font-size: 14px;
  color: #bbb;
}

.article-nav > span {
  float: left;
  position: relative;
}

.article-nav > span.article-nav-next {
  float: right;
  text-align: right;
}

.article-nav a {
  color: #666;
  text-decoration: none;
}

.article-nav a:hover {
  color: #037ef3;
  text-decoration: underline;
}

.article-nav span span {
  color: #999;
  margin-right: 5px;
}

body.dark-mode .article-nav {
  background-color: #1e1e1e;
  border-top-color: #333;
}

body.dark-mode .article-nav a {
  color: #aaa;
}

body.dark-mode .article-nav a:hover {
  color: #c5a059;
}

body.dark-mode .article-nav span span {
  color: #666;
}

.slider-pager {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  display: flex;
  gap: 6px;
  background: rgba(50, 50, 50, 0.6);
  padding: 4px 8px;
  border-radius: 9px;
}

.slider-pager .pager-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.6;
}

.slider-pager .pager-item:hover {
  opacity: 0.9;
}

.slider-pager .pager-item.active {
  width: 20px;
  border-radius: 4px;
  opacity: 1;
}

.ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #fbb034;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #fbb034;
}

.ribbon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #fbb034;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #fbb034;
}

/* Slick Nav */
.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  cursor: pointer;
}

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em;
}

.slicknav_menu {
  *zoom: 1;
}

.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 18px;
  float: right;
}

.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: 0.875em;
  margin: 0.188em 8px 0 0;
}

.slicknav_menu .slicknav_icon:before {
  background: transparent;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute;
}

.slicknav_menu .slicknav_no-text {
  margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  border-radius: 1px;
}

.slicknav_menu:before {
  content: " ";
  display: table;
}

.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both;
}

.slicknav_nav {
  clear: both;
}

.slicknav_nav ul, .slicknav_nav li {
  display: block;
}

.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  color: #333;
  margin: 0 20px 0 0.4em;
  float: right;
}

.slicknav_nav .slicknav_item {
  cursor: pointer;
}

.slicknav_nav .slicknav_item a {
  display: inline;
}

.slicknav_nav .slicknav_row, .slicknav_nav a {
  display: block;
}

.slicknav_nav .slicknav_parent-link a {
  display: inline;
}

.slicknav_brand {
  float: left;
}

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
}

.slicknav_menu * {
  box-sizing: border-box;
}

.slicknav_menu .slicknav_menutxt {
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slicknav_menu .slicknav_menutxt:hover {
  color: #333;
}

.slicknav_menu .slicknav_icon-bar {
  background-color: #333;
}

body.dark-mode .slicknav_menu .slicknav_menutxt {
  color: #fff;
}

body.dark-mode .slicknav_menu .slicknav_menutxt:hover {
  color: #fff;
}

body.dark-mode .slicknav_menu .slicknav_icon-bar {
  background-color: #fff;
}

.slicknav_btn {
  height: 20px;
  margin: 31px 45px 24px;
  text-decoration: none;
}

.slicknav_nav {
  background: #fff;
  border-top: 3px solid;
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.slicknav_nav .sub-menu {
  text-indent: 20px;
}

.slicknav_nav .sub-menu .sub-menu {
  text-indent: 40px;
}

.slicknav_nav ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 0;
}

.slicknav_nav .slicknav_row {
  padding: 0;
  margin: 0;
}

.slicknav_nav a {
  padding: 0 0 0 20px;
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
  text-decoration: none;
  color: #333;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
}

.slicknav_nav a:hover {
  background-color: #f6f6f6;
}

.slicknav_nav .slicknav_txtnode {
  margin-left: 15px;
}

.slicknav_nav .slicknav_item a {
  padding: 0 0 0 20px;
  margin: 0;
  border-bottom: none;
}

.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0;
}

.slicknav_brand {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}

.slicknav_menu {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 70px;
  transition: all .1s ease;
}

.slicknav_btn {
  display: inline-block;
}

#slick-mobile-menu {
  width: 100%;
}

/* Theme fonts and colors */
body,
input,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
table,
.sidebar .widget_ad .widget-title,
.site-footer .widget_ad .widget-title {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#secondary-menu li a,
.footer-nav li a,
.pagination .page-numbers,
button,
.btn,
input[type="submit"],
input[type="reset"],
input[type="button"],
.comment-form label,
label,
h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-title a:hover,
a:hover,
.site-header .search-icon:hover span,
.site-header .search-icon:hover span:before,
.sf-menu li a:hover,
.sf-menu li li a:hover,
.sf-menu li.sfHover a,
.sf-menu li.current-menu-item a,
.sf-menu li.current-menu-item a:hover,
.breadcrumbs .breadcrumbs-nav a:hover,
.read-more a,
.read-more a:visited,
.entry-title a:hover,
article.hentry .edit-link a,
.author-box a,
.page-content a,
.entry-content a,
.comment-author a,
.comment-content a,
.comment-reply-title small a:hover,
.sidebar .widget a,
.site-footer .widget a,
.sidebar .widget ul li a:hover,
.site-footer .widget ul li a:hover {
  color: #037ef3;
}

button,
.btn,
input[type="submit"],
input[type="reset"],
input[type="button"],
#back-top a span {
  background-color: #037ef3;
}

.read-more a:hover,
.author-box a:hover,
.page-content a:hover,
.entry-content a:hover,
.widget_tag_cloud .tagcloud a:hover:before,
.entry-tags .tag-links a:hover:before,
.content-list .entry-title a:hover,
article.hentry .edit-link a:hover,
.comment-content a:hover,
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  color: #037ef3;
}

#back-top a:hover span,
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus,
.widget_newsletter input[type="submit"],
.widget_newsletter input[type="button"],
.widget_newsletter button {
  background-color: #ffbe02;
}

.slicknav_nav,
.sf-menu li a:before {
  border-color: #037ef3;
}

.sidebar .widget a:hover,
.site-footer .widget a:hover {
  color: #ffbe02;
}

.header-search {
  border-color: #ffbe02;
}

/*--------------------------------------------------------------
15.4 阅读体验增强 - v2.4.0
--------------------------------------------------------------*/

.zen-reading-panel {
  position: fixed;
  left: 15px;
  bottom: 60px;
  z-index: 999;
  font-family: var(--zen-font-base);
}

.zen-reading-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--zen-primary);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
}

.zen-reading-toggle:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.zen-reading-toggle .zen-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.zen-reading-toggle .zen-icon-active {
  transform: rotate(15deg);
}

.zen-reading-content {
  position: absolute;
  left: 45px;
  bottom: 0;
  width: 280px;
  background: var(--zen-bg);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 16px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zen-reading-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--zen-border-light);
}

.zen-reading-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.zen-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--zen-text);
  margin: 0 0 10px 0;
}

.zen-like-btn,
.zen-bookmark-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--zen-border);
  border-radius: 8px;
  background: var(--zen-bg);
  cursor: pointer;
  font-size: 14px;
  color: var(--zen-text);
  transition: all 0.2s ease;
}

.zen-like-btn:hover,
.zen-bookmark-btn:hover {
  border-color: var(--zen-primary);
  background: rgba(212, 175, 55, 0.05);
}

.zen-like-btn.zen-liked {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--zen-primary);
  color: var(--zen-primary);
}

.zen-like-icon,
.zen-bookmark-icon {
  font-size: 18px;
}

.zen-like-count {
  margin-left: auto;
  background: var(--zen-bg-alt);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--zen-text-muted);
}

.zen-readers-now {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--zen-text-light);
}

.zen-readers-count {
  background: linear-gradient(135deg, var(--zen-primary), var(--zen-primary-light));
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.zen-hot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zen-hot-list li {
  margin-bottom: 8px;
}

.zen-hot-list li:last-child {
  margin-bottom: 0;
}

.zen-hot-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--zen-text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.zen-hot-list a:hover {
  background: var(--zen-bg-alt);
  color: var(--zen-primary);
}

.zen-empty-text {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--zen-text-muted);
}

.zen-continue-reading {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.zen-continue-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--zen-bg);
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--zen-border);
}

.zen-continue-icon {
  font-size: 20px;
  line-height: 1;
}

.zen-continue-text {
  font-size: 14px;
  color: var(--zen-text-light);
  line-height: 1;
}

.zen-continue-btn {
  padding: 8px 16px;
  background: var(--zen-primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.zen-continue-btn:hover {
  background: var(--zen-primary-dark);
  transform: scale(1.05);
}

.zen-continue-close {
  background: none;
  border: none;
  font-size: 16px;
  color: var(--zen-text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.zen-continue-close:hover {
  color: var(--zen-text);
}

.zen-course-countdown {
  background: linear-gradient(135deg, var(--zen-primary), #b8962f);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #fff;
  margin: 20px 0;
}

.zen-countdown-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.zen-countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.zen-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zen-countdown-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.zen-countdown-label {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.9;
}

.zen-countdown-separator {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.7;
}

.zen-countdown-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: #fff;
  color: var(--zen-primary);
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.zen-countdown-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.zen-countdown-expired {
  background: var(--zen-bg-alt);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  color: var(--zen-text-muted);
}

body.dark-mode .zen-reading-content {
  background: #1a1a1a;
  border: 1px solid #333;
}

body.dark-mode .zen-like-btn,
body.dark-mode .zen-bookmark-btn {
  border-color: #333;
  background: #1a1a1a;
  color: #bbb;
}

body.dark-mode .zen-like-btn:hover,
body.dark-mode .zen-bookmark-btn:hover {
  border-color: var(--zen-primary);
  background: rgba(212, 175, 55, 0.1);
}

body.dark-mode .zen-continue-content {
  background: #1a1a1a;
  border-color: #333;
}

body.dark-mode .zen-hot-list a:hover {
  background: #252525;
}

@media (max-width: 768px) {
  .zen-reading-panel {
    left: 15px;
    bottom: calc(60px + env(safe-area-inset-bottom)) !important;
  }

  .zen-reading-toggle {
    width: 32px;
    height: 32px;
  }

  .zen-reading-content {
    left: 50px;
    width: 260px;
    padding: 12px;
  }

  #darkModeToggle {
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    right: 15px !important;
    width: 32px;
    height: 32px;
  }

  #back-top {
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    right: 55px !important;
  }

  .zen-skin-trigger {
    bottom: calc(60px + env(safe-area-inset-bottom)) !important;
    right: 15px !important;
    width: 32px;
    height: 32px;
  }

  .zen-continue-reading {
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100% - 20px);
  }

  .zen-continue-content {
    flex-wrap: nowrap;
    justify-content: center;
    border-radius: 20px;
    padding: 8px 12px;
    gap: 8px;
  }

  .zen-continue-icon {
    font-size: 16px;
  }

  .zen-continue-text {
    font-size: 12px;
  }

  .zen-continue-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .zen-continue-close {
    font-size: 14px;
  }

  .zen-countdown-num {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
15.5 语音朗读 - v2.5.0
--------------------------------------------------------------*/
.v-mini-wrapper {
  background: var(--zen-bg);
  border: 1px solid var(--zen-border);
  border-radius: 16px;
  padding: 10px 16px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, sans-serif;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v-mini-wrapper.v-docked {
  position: fixed;
  bottom: 20px;
  left: 5%;
  right: 5%;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  z-index: 99999;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
}

body.dark-mode .v-mini-wrapper {
  background: rgba(30, 41, 59, 0.98);
  border-color: #334155;
}

.v-main-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v-btn {
  background: var(--zen-primary);
  border: none;
  cursor: pointer;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: all 0.2s ease;
}

.v-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.v-progress-wrapper {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
}

#v-range {
  position: absolute;
  width: 100%;
  z-index: 10;
  cursor: pointer;
  height: 100%;
  margin: 0;
  opacity: 0;
}

#v-bar-bg {
  width: 100%;
  height: 6px;
  background: var(--zen-border);
  border-radius: 10px;
  overflow: hidden;
  flex-grow: 1;
  pointer-events: none;
}

#v-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--zen-primary), #8b5cf6);
  width: 0%;
  transition: width 0.1s linear;
}

#v-percent {
  font-size: 11px;
  color: var(--zen-text-muted);
  width: 45px;
  text-align: right;
  font-family: monospace;
  flex-shrink: 0;
}

.v-select {
  border: 1px solid var(--zen-border);
  background: none;
  border-radius: 6px;
  font-size: 11px;
  color: var(--zen-text);
  outline: none;
  padding: 4px 6px;
  flex-shrink: 0;
  cursor: pointer;
}

body.dark-mode .v-select {
  border-color: #334155;
  color: #94a3b8;
}

.v-unit {
  transition: background 0.2s;
  border-radius: 4px;
}

.v-active-mode .v-unit {
  cursor: pointer;
}

.v-unit.v-active {
  background: rgba(212, 175, 55, 0.15);
  border-bottom: 2px solid var(--zen-primary);
  color: var(--zen-primary);
}

.v-quick-speaker,
.v-quick-share {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-left: 8px;
  color: var(--zen-primary);
  vertical-align: middle;
  transition: all 0.3s ease;
}

.v-quick-speaker svg,
.v-quick-share svg {
  width: 18px;
  height: 18px;
}

.v-quick-speaker:hover,
.v-quick-share:hover {
  opacity: 0.7;
}

.v-quick-speaker.v-sticky {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 99999;
  background: var(--zen-bg);
  width: 44px;
  height: 44px;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--zen-border);
}

.v-speaking-ani {
  animation: v-pulse 1s infinite;
}

@keyframes v-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

#v-zen-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  z-index: 999999;
  pointer-events: none;
  overflow: hidden;
}

#v-zen-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), var(--zen-primary), rgba(212, 175, 55, 0.4));
  position: relative;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#v-zen-bar::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--zen-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.4);
  animation: zen-breath 3s infinite ease-in-out;
}

@keyframes zen-breath {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.6); }
}

@keyframes zen-complete {
  0% { width: 100%; opacity: 1; }
  100% { width: 0%; opacity: 0; }
}

.zen-complete {
  animation: zen-complete 1.5s ease forwards !important;
}

@media (max-width: 768px) {
  .v-mini-wrapper.v-docked {
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    bottom: 70px;
  }

  .v-select {
    font-size: 10px;
    padding: 2px 4px;
  }

  #v-percent {
    width: 40px;
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
Print Styles
--------------------------------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  a,
  a:visited {
    text-decoration: underline;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
  
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  
  thead {
    display: table-header-group;
  }
  
  tr,
  img {
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
  }
  
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  
  h2,
  h3 {
    page-break-after: avoid;
  }
  
  .site-header,
  .site-footer,
  #secondary,
  #back-top,
  .slicknav_menu,
  #featured-content,
  .entry-related,
  .navigation,
  .comments-area,
  .widget,
  .zen-toc,
  .zen-meditation-timer,
  .zen-timer-trigger,
  .zen-font-adjust,
  .dark-mode-toggle,
  .site-header .search-icon,
  .breadcrumbs {
    display: none !important;
  }
  
  #primary {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .entry-content {
    font-size: 12pt;
    line-height: 1.8;
  }
  
  .entry-title {
    font-size: 18pt;
    margin-bottom: 10pt;
    border-bottom: 1pt solid #ccc;
    padding-bottom: 8pt;
  }
  
  article.hentry {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
  }
  
  .entry-meta {
    font-size: 10pt;
    color: #666 !important;
    margin-bottom: 15pt;
  }
  
  .entry-content p {
    margin-bottom: 12pt;
    text-align: justify;
  }
  
  .entry-content blockquote {
    border-left: 3pt solid #ccc;
    padding-left: 15pt;
    margin: 15pt 0;
    font-style: italic;
  }
  
  .entry-content pre,
  .entry-content code {
    font-family: "Courier New", Courier, monospace;
    font-size: 10pt;
  }
  
  .entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15pt auto;
  }
  
  .entry-content h2 {
    font-size: 14pt;
    margin-top: 20pt;
    margin-bottom: 10pt;
    page-break-after: avoid;
  }
  
  .entry-content h3 {
    font-size: 13pt;
    margin-top: 15pt;
    margin-bottom: 8pt;
    page-break-after: avoid;
  }
  
  .entry-content ul,
  .entry-content ol {
    margin: 10pt 0;
    padding-left: 20pt;
  }
  
  .entry-content li {
    margin-bottom: 5pt;
  }
  
  @page {
    margin: 2cm;
    size: A4;
  }
  
  @page :first {
    margin-top: 1.5cm;
  }
}

/*--------------------------------------------------------------
17. Skin Switcher - 皮肤切换器
--------------------------------------------------------------*/
[x-cloak] {
  display: none !important;
}

.zen-skin-switcher {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zen-skin-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.zen-skin-panel {
  position: relative;
  background: var(--zen-bg-card, #fff);
  border-radius: var(--zen-radius-xl, 12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 420px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  animation: zenPanelIn 0.25s ease;
}

@keyframes zenPanelIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.zen-skin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--zen-border, #e9e9e9);
  background: var(--zen-bg-alt, #f5f5f5);
}

.zen-skin-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--zen-text-heading, #222);
  letter-spacing: 0.5px;
}

.zen-skin-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--zen-bg, #fff);
  font-size: 22px;
  color: var(--zen-text-muted, #999);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--zen-transition-base, 0.2s ease);
  line-height: 1;
}

.zen-skin-close:hover {
  background: var(--zen-primary, #d4af37);
  color: #fff;
  transform: rotate(90deg);
}

.zen-skin-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 60vh;
  overflow-y: auto;
}

.zen-skin-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid var(--zen-border, #e9e9e9);
  border-radius: var(--zen-radius-lg, 8px);
  background: var(--zen-bg, #fff);
  cursor: pointer;
  transition: all var(--zen-transition-base, 0.2s ease);
  text-align: left;
  width: 100%;
  position: relative;
}

.zen-skin-item:hover {
  border-color: var(--zen-primary, #d4af37);
  background: var(--zen-bg-hover, #f9f9f9);
  transform: translateX(4px);
}

.zen-skin-item.active {
  border-color: var(--zen-primary, #d4af37);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.zen-skin-item.active::after {
  content: "✓";
  position: absolute;
  right: 16px;
  color: var(--zen-primary, #d4af37);
  font-size: 16px;
  font-weight: bold;
}

.zen-skin-icon {
  font-size: 32px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zen-bg-alt, #f5f5f5);
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid var(--zen-border-light, #f0f0f0);
}

.zen-skin-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}

.zen-skin-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--zen-text-heading, #222);
  line-height: 1.3;
  white-space: nowrap;
}

.zen-skin-desc {
  font-size: 13px;
  color: var(--zen-text-muted, #999);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zen-skin-trigger {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--zen-bg-card);
  border: 1px solid var(--zen-border);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s;
  z-index: 1000;
  opacity: 0.45;
}

.zen-skin-trigger:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zen-skin-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zen-fade-enter {
  animation: zenFadeIn 0.2s ease forwards;
}

.zen-fade-leave {
  animation: zenFadeOut 0.2s ease forwards;
}

@keyframes zenFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zenFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .zen-skin-panel {
    max-width: 95%;
    margin: 20px;
  }
  
  .zen-skin-trigger {
    bottom: 60px;
    right: 60px;
  }
}