.breadcrumb{
  padding:12px 0 10px;
}
.b-hero{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  display:grid;
  grid-template-columns:minmax(300px,420px) minmax(0,1fr);
  gap:24px;
  align-items:start;
}
.b-hero-media{min-width:0;}
.b-hero .plate{
  width:100%;
  aspect-ratio:4/3;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--serif);
  font-size:30px;
  font-weight:700;
  color:var(--ink-soft);
  text-align:center;
  line-height:1.5;
}
.hero-gallery{position:relative;}
.hero-gallery-main{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(221,227,237,.95);
  border-radius:24px;
  background:linear-gradient(180deg,#fbfcff 0%,#f2f5fb 100%);
  aspect-ratio:4/3;
  box-shadow:0 18px 40px rgba(29,53,87,.10);
}
.hero-gallery-main::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:38%;
  background:linear-gradient(180deg,rgba(12,22,34,0) 0%,rgba(12,22,34,.16) 100%);
  pointer-events:none;
}
.hero-gallery-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .26s ease,transform .42s ease,filter .26s ease;
  transform:scale(1.001);
}
.hero-gallery-main.is-switching img{
  opacity:.35;
  transform:scale(1.035);
  filter:saturate(.92);
}
.hero-gallery-badge,
.hero-gallery-count{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.hero-gallery-badge{
  top:14px;
  left:14px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(226,232,240,.95);
  color:var(--ink);
  font-size:12px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(15,23,42,.08);
}
.hero-gallery-count{
  right:14px;
  bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(15,23,42,.62);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
}
.hero-gallery-thumbs{
  display:flex;
  gap:10px;
  margin-top:14px;
  padding:10px;
  border:1px solid rgba(226,232,240,.92);
  border-radius:18px;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  overflow-x:auto;
  overflow-y:hidden;
  flex-wrap:nowrap;
  scrollbar-width:none;
  -ms-overflow-style:none;
  scroll-snap-type:x proximity;
}
.hero-gallery-thumbs::-webkit-scrollbar{display:none;}
.hero-media-note{
  margin-top:10px;
  padding:8px 12px;
  border-radius:12px;
  background:#f1f4f8;
  color:#7a8597;
  font-size:12px;
  line-height:1.7;
}
.hero-gallery-thumb{
  position:relative;
  flex:0 0 78px;
  width:78px;
  height:78px;
  padding:0;
  border:1px solid #dbe3f1;
  border-radius:16px;
  background:#fff;
  overflow:hidden;
  cursor:pointer;
  opacity:.88;
  box-shadow:0 8px 16px rgba(15,23,42,.06);
  transition:border-color .18s ease,opacity .18s ease,transform .18s ease,box-shadow .18s ease;
  scroll-snap-align:start;
}
.hero-gallery-thumb::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:2px solid transparent;
  transition:border-color .18s ease,background .18s ease;
}
.hero-gallery-thumb::before{
  content:attr(data-label);
  position:absolute;
  top:6px;
  left:6px;
  z-index:2;
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  background:rgba(15,23,42,.62);
  color:#fff;
  font-size:11px;
  font-weight:700;
  line-height:22px;
  text-align:center;
  box-shadow:0 8px 18px rgba(15,23,42,.18);
}
.hero-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease;
}
.hero-gallery-thumb.active,
.hero-gallery-thumb:hover{
  opacity:1;
  border-color:rgba(216,140,61,.55);
  transform:translateY(-2px);
  box-shadow:0 14px 24px rgba(216,140,61,.16);
}
.hero-gallery-thumb.active::after,
.hero-gallery-thumb:hover::after{
  border-color:rgba(216,140,61,.78);
  background:linear-gradient(180deg,rgba(255,255,255,0) 55%,rgba(216,140,61,.08) 100%);
}
.hero-gallery-thumb.active::before,
.hero-gallery-thumb:hover::before{background:rgba(216,140,61,.92);}
.hero-gallery-thumb.active img,
.hero-gallery-thumb:hover img{transform:scale(1.05);}
.hero-gallery-thumb.is-single{
  cursor:default;
  opacity:1;
}
.hero-gallery-thumb:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(216,140,61,.18),0 14px 24px rgba(216,140,61,.16);
  opacity:1;
}
.b-hero-main{min-width:0;}
.b-hero-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}
.b-hero h1{
  font-family:var(--serif);
  font-size:26px;
  margin:0 0 8px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
.b-hero .rank-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:3px 4px 3px 10px;
  border-radius:999px;
  background:linear-gradient(180deg,#fffdfa 0%,#fff7eb 100%);
  border:1px solid rgba(217,119,6,.16);
  box-shadow:0 6px 16px rgba(15,23,42,.05),inset 0 1px 0 rgba(255,255,255,.75);
  vertical-align:middle;
}
.b-hero .rank-tag-label{
  position:relative;
  padding-left:10px;
  font-size:11.5px;
  color:#8a5618;
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
}
.b-hero .rank-tag-label::before{
  content:'';
  position:absolute;
  left:0;
  top:50%;
  width:5px;
  height:5px;
  margin-top:-2.5px;
  border-radius:50%;
  background:#d97706;
  box-shadow:0 0 0 4px rgba(217,119,6,.10);
}
.b-hero .rank-tag-no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  height:26px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(135deg,#8a5618 0%,#b56b1b 100%);
  color:#fff;
  font-size:11.5px;
  font-weight:800;
  letter-spacing:.4px;
  box-shadow:0 8px 16px rgba(181,107,27,.18);
}
.b-hero .meta-line{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 10px;
}
.b-hero .meta-chip{
  display:inline-flex;
  align-items:center;
  max-width:100%;
  padding:6px 12px;
  border:1px solid rgba(215,180,106,.32);
  border-radius:999px;
  background:rgba(215,180,106,.10);
  color:var(--ink);
  font-size:12.5px;
  line-height:1.5;
}
.b-hero .meta-chip b{
  margin-right:6px;
  color:var(--ink-soft);
  font-weight:600;
}
.b-hero .meta-chip span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.b-hero .meta-chip-location{
  color:var(--ink);
  text-decoration:none;
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease,background .15s ease;
}
.b-hero .meta-chip-location:hover{
  transform:translateY(-1px);
  border-color:rgba(217,119,6,.30);
  background:rgba(245,158,11,.12);
  box-shadow:0 8px 16px rgba(15,23,42,.06);
}
.location-link{
  display:inline-flex;
  align-items:center;
  min-width:0;
  max-width:100%;
}
.location-link-text{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.location-icon{
  position:relative;
  width:12px;
  height:12px;
  margin-right:7px;
  flex:none;
  border:2px solid #d97706;
  border-radius:50% 50% 50% 0;
  box-sizing:border-box;
  background:#fff;
  transform:rotate(-45deg);
}
.location-icon::after{
  content:'';
  position:absolute;
  top:2px;
  left:2px;
  width:4px;
  height:4px;
  border-radius:50%;
  background:#d97706;
}
.b-hero .meta-chip-verify{
  border-color:rgba(21,184,106,.22);
  background:rgba(21,184,106,.08);
}
.b-hero .meta-chip-verify b{
  color:#158b58;
}
.verify-badge{
  position:relative;
  display:inline-flex;
  align-items:center;
  padding-left:18px;
  color:#13814f;
  font-weight:700;
}
.verify-badge::before{
  content:'';
  position:absolute;
  left:0;
  top:50%;
  width:12px;
  height:12px;
  margin-top:-6px;
  border-radius:50%;
  background:
    radial-gradient(circle at center,#ffffff 0 28%,transparent 30%),
    linear-gradient(135deg,#28c76f 0%,#12a150 100%);
  box-shadow:0 0 0 2px rgba(19,129,79,.10);
}
.b-hero .en{
  color:var(--ink-soft);
  font-weight:400;
  font-size:16px;
  line-height:1.8;
  margin-top:2px;
  display:-webkit-box;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  line-clamp:3;
  min-height:5.4em;
}
.b-hero .tags{
  display:flex;
  gap:8px;
  margin-top:10px;
}
.b-hero .tags span{
  font-size:11.5px;
  background:var(--pine-soft);
  color:var(--pine);
  padding:4px 10px;
  border-radius:10px;
}
.b-hero .score{
  min-width:110px;
  text-align:center;
  border-left:1px solid var(--line);
  padding-left:24px;
  flex-shrink:0;
}
.b-hero .score b{
  display:block;
  font-family:var(--serif);
  font-size:38px;
  color:var(--brick);
}
.b-hero .score span{
  font-size:11.5px;
  color:var(--ink-soft);
}
.hero-contact{
  margin-top:14px;
  padding:16px 18px 15px;
  border:1px solid rgba(216,223,236,.92);
  border-radius:22px;
  background:linear-gradient(180deg,#fdfefe 0%,#f6f9f4 100%);
}
.hero-contact-values{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.hero-contact-item{
  padding:12px 14px;
  border:1px solid #e2e8d8;
  border-radius:16px;
  background:#fff;
}
.hero-contact-label{
  display:block;
  margin-bottom:6px;
  color:var(--ink-soft);
  font-size:12px;
}
.hero-contact-mask{
  display:block;
  color:var(--ink);
  font-size:22px;
  font-weight:800;
  letter-spacing:.3px;
}
.hero-contact-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.hero-contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border:0;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,opacity .15s ease;
}
.hero-contact-btn:hover{transform:translateY(-1px);}
.hero-contact-btn.phone{
  background:linear-gradient(135deg,#15b86a 0%,#10a95f 100%);
  color:#fff;
  box-shadow:0 16px 28px rgba(21,184,106,.20);
}
.hero-contact-btn.wechat{
  background:linear-gradient(135deg,#f0fbf5 0%,#e5f7ec 100%);
  border:1px solid rgba(21,184,106,.28);
  color:#119457;
}
.contact-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:120;
  background:rgba(17,23,39,.55);
  padding:24px;
  align-items:center;
  justify-content:center;
}
.contact-modal.is-open{display:flex;}
.contact-modal-panel{
  position:relative;
  width:min(760px,100%);
  padding:28px 28px 24px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 30px 80px rgba(17,23,39,.26);
}
.contact-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:#f2f5fb;
  color:#74809c;
  font-size:22px;
  cursor:pointer;
}
.contact-modal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}
.contact-modal-card{
  padding:18px 20px;
  min-width:0;
}
.contact-modal-card + .contact-modal-card{border-left:1px solid #edf1f7;}
.contact-modal-card h4{
  margin:0 0 8px;
  font-size:20px;
  color:var(--ink);
}
.contact-modal-card p{
  margin:0 0 14px;
  color:var(--ink-soft);
  font-size:13px;
  line-height:1.8;
}
.contact-modal-value{
  display:block;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(180deg,#fbfcff 0%,#f1f5fb 100%);
  color:var(--ink);
  font-size:28px;
  font-weight:800;
  text-align:center;
  word-break:break-all;
}
.contact-modal-action{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  width:max-content;
  min-height:44px;
  margin:16px auto 0;
  padding:0 18px;
  border-radius:12px;
  border:0;
  background:var(--ink);
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}
.contact-modal-note{
  margin-top:18px;
  color:#a06f39;
  font-size:12px;
  text-align:center;
}
.b-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  margin-top:0;
}
.b-stats div{
  background:var(--panel);
  padding:16px 20px;
  font-size:12px;
  color:var(--ink-soft);
}
.b-stats b{
  display:block;
  font-family:var(--serif);
  font-size:18px;
  color:var(--ink);
  margin-bottom:2px;
}
.b-body{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:22px;
  margin-top:20px;
}
.b-article{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:32px;
}
.article-simple-title{
  margin:0 0 12px;
  font-family:var(--serif);
  font-size:36px;
  line-height:1.32;
  color:var(--ink);
}
.article-simple-main{
  min-width:0;
}
.article-simple-page .breadcrumb{
  padding:12px 0 4px;
}
.article-simple-page .b-body{
  margin-top:8px;
  align-items:start;
}
.article-simple-card{
  border-radius:18px;
  box-shadow:0 18px 38px rgba(19,26,43,.06);
}
.article-simple-head{
  padding-bottom:20px;
  border-bottom:1px solid #edf1f7;
}
.article-simple-meta{
  margin:0;
}
.article-simple-meta-desktop{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  margin-top:14px;
  color:var(--ink-soft);
  font-size:13.5px;
}
.article-simple-meta-desktop a{
  color:var(--ink-soft);
  text-decoration:none;
  font-weight:600;
}
.article-simple-meta-desktop a:hover{
  color:var(--brick);
  text-decoration:underline;
}
.article-simple-meta .article-simple-meta-mobile{
  display:none;
}
.article-simple-authorbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:14px;
}
.article-simple-authorbox{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.article-simple-avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  color:#fff;
  font-size:18px;
  font-weight:700;
  flex:none;
  box-shadow:0 10px 18px rgba(19,26,43,.12);
}
.article-simple-avatar-sunset{background:linear-gradient(135deg,#f97316 0%,#ea580c 100%);}
.article-simple-avatar-ocean{background:linear-gradient(135deg,#2563eb 0%,#0f766e 100%);}
.article-simple-avatar-forest{background:linear-gradient(135deg,#16a34a 0%,#15803d 100%);}
.article-simple-avatar-violet{background:linear-gradient(135deg,#7c3aed 0%,#9333ea 100%);}
.article-simple-avatar-gold{background:linear-gradient(135deg,#d97706 0%,#f59e0b 100%);}
.article-simple-avatar-berry{background:linear-gradient(135deg,#e11d48 0%,#be123c 100%);}
.article-simple-authorinfo{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:0 10px;
  min-width:0;
  margin:0;
}
.article-simple-authorname{
  color:var(--ink);
  font-size:14px;
  font-weight:700;
}
.article-simple-authordivider,
.article-simple-authortime{
  color:#9aa4b5;
  font-size:13px;
}
.article-simple-category-follow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  flex:none;
}
.article-simple-category-follow:hover{
  background:#1f2937;
}
.article-simple-intro{
  margin:22px 0 0;
  padding:16px 18px;
  border-radius:16px;
  background:linear-gradient(180deg,#fbfcff 0%,#f4f7fb 100%);
  color:var(--ink-soft);
  font-size:15px;
  line-height:2;
}
.article-simple-content{
  padding-top:24px;
}
.article-simple-card .entry-content{
  font-size:15.5px;
  color:var(--ink-soft);
  line-height:2;
}
.article-simple-card p{
  font-size:15.5px;
  color:var(--ink-soft);
  line-height:2;
  margin:0 0 18px;
}
.article-simple-card h2{
  font-family:var(--serif);
  font-size:22px;
  border-left:3px solid var(--brick);
  padding-left:12px;
  margin:0 0 18px;
}
.article-simple-card h3{
  margin:0 0 16px;
  font-size:19px;
  line-height:1.6;
  color:var(--ink);
}
.article-simple-card ul,
.article-simple-card ol{
  margin:0 0 18px;
  padding-left:24px;
}
.article-simple-card li{
  margin-bottom:10px;
  font-size:15.5px;
  line-height:1.95;
  color:var(--ink-soft);
}
.article-simple-card blockquote{
  margin:0 0 18px;
  padding:14px 18px;
  border-left:3px solid #d9e3f1;
  background:#f8fbff;
  color:#6f7c8f;
  font-size:15px;
  line-height:1.95;
}
.article-simple-postscript{
  margin-top:16px;
  padding-top:10px;
  border-top:1px solid #edf1f7;
}
.b-article .article-simple-author-note{
  margin:0;
  color:#c7cbcf;
  font-size:13.5px;
  line-height:1.85;
  font-weight:400;
  text-align:center;
}
.article-simple-endmark{
  position:relative;
  margin:10px auto 0;
  text-align:center;
}
.article-simple-endmark span{
  position:relative;
  display:inline-block;
  padding:0 10px;
  background:#fff;
  color:#c3cad5;
  font-size:11px;
  letter-spacing:2px;
}
.article-simple-endmark::before{
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:50%;
  border-top:1px solid #edf1f7;
}
.article-simple-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
  padding-top:10px;
  border-top:1px solid #edf1f7;
}
.article-simple-tags a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border:1px solid #e2e8f3;
  border-radius:999px;
  background:#fff;
  color:var(--ink-soft);
  font-size:12px;
  text-decoration:none;
}
.article-simple-tags a:hover{
  border-color:rgba(185,31,40,.22);
  color:var(--brick);
}
.article-simple-postscript + .article-simple-tags{
  margin-top:10px;
  padding-top:0;
  border-top:0;
}
.article-simple-appreciate{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-top:14px;
}
.article-simple-like-button{
  width:98px;
  height:98px;
  border:1px solid #e4eaf3;
  border-radius:999px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  color:#c5ccd8;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,color .18s ease;
}
.article-simple-like-button:hover{
  transform:translateY(-2px);
  border-color:#d9e1ec;
  box-shadow:0 12px 24px rgba(19,26,43,.08);
}
.article-simple-like-button.is-active{
  color:#ef6b56;
  border-color:rgba(239,107,86,.24);
  box-shadow:0 12px 24px rgba(239,107,86,.12);
}
.article-simple-like-button.is-active .article-simple-like-count{
  color:#ef6b56;
}
.article-simple-like-icon svg{
  width:28px;
  height:28px;
  display:block;
}
.article-simple-like-count{
  font-size:20px;
  line-height:1;
  font-weight:700;
}
.b-article .article-simple-appreciate p{
  margin:16px 0 0;
  color:var(--ink);
  font-size:16px;
}
.article-simple-sharebar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:14px;
  padding-top:10px;
  border-top:1px solid #edf1f7;
}
.article-simple-share-group{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.article-simple-share-text{
  color:#9aa4b5;
  font-size:13px;
}
.article-simple-share-actions{
  display:flex;
  align-items:center;
  overflow:hidden;
  border:1px solid #e7edf6;
  border-radius:10px;
  background:#fff;
}
.article-simple-share-btn{
  width:40px;
  height:40px;
  border:0;
  border-left:1px solid #e7edf6;
  background:#fff;
  color:#8f98a8;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  text-decoration:none;
  cursor:pointer;
  transition:background .16s ease,color .16s ease;
}
.article-simple-share-btn:first-child{
  border-left:0;
}
.article-simple-share-btn:hover{
  background:#f7f9fc;
  color:var(--brick);
}
.article-simple-share-btn svg{
  width:18px;
  height:18px;
  display:block;
}
.article-simple-report-btn{
  border:0;
  background:none;
  color:#9aa4b5;
  font-size:13px;
  cursor:pointer;
  padding:0;
}
.article-simple-report-btn:hover{
  color:var(--brick);
}
.article-simple-sidebar-inner{
  display:flex;
  flex-direction:column;
  gap:16px;
  min-width:0;
}
.sidebar{
  position:sticky;
  top:20px;
  align-self:start;
  min-width:0;
}
.article-simple-next-card{
  display:flex;
  flex-direction:column;
  align-self:start;
  width:100%;
  min-width:0;
  padding:18px 18px 16px;
  border:1px solid #e4eaf3;
  border-radius:10px;
  background:#fff;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(19,26,43,.04);
}
.article-simple-next-label{
  color:var(--ink);
  font-size:15px;
  font-weight:700;
  margin-bottom:14px;
}
.article-simple-next-card strong{
  display:block;
  color:var(--ink);
  font-size:18px;
  line-height:1.6;
  font-weight:700;
}
.article-simple-next-intro{
  display:-webkit-box;
  margin-top:10px;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  line-clamp:3;
  color:var(--ink-soft);
  font-size:13.5px;
  line-height:1.9;
}
.article-simple-next-time{
  margin-top:12px;
  color:#98a2b3;
  font-size:12px;
}
.article-simple-next-card:hover strong{
  color:var(--brick);
}
.article-simple-recommend{
  margin-top:18px;
  padding:24px 26px 26px;
  border:1px solid #e7edf6;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:0 14px 30px rgba(19,26,43,.04);
}
.article-simple-recommend-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.article-simple-recommend-head h3{
  margin:0;
  font-family:var(--serif);
  font-size:22px;
  color:var(--ink);
}
.article-simple-recommend-grid{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.article-simple-recommend-card{
  display:grid;
  grid-template-columns:232px minmax(0,1fr);
  gap:18px;
  align-items:stretch;
  min-width:0;
  min-height:190px;
  padding:0;
  border:1px solid #edf1f7;
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff 0%,#fcfdff 100%);
  text-decoration:none;
  overflow:hidden;
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease,background .15s ease;
}
.article-simple-recommend-card:hover{
  transform:translateY(-2px);
  border-color:rgba(185,31,40,.14);
  box-shadow:0 14px 26px rgba(19,26,43,.08);
}
.article-simple-recommend-card.no-thumb{
  grid-template-columns:minmax(0,1fr);
  min-height:148px;
}
.article-simple-recommend-thumb{
  position:relative;
  display:flex;
  align-items:center;
  padding:16px 0 16px 16px;
  min-width:0;
}
.article-simple-recommend-thumb img{
  width:100%;
  height:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  border-radius:14px;
  border:1px solid #e6ebf2;
  box-shadow:none;
  transition:transform .22s ease,border-color .22s ease,filter .22s ease;
}
.article-simple-recommend-card:hover .article-simple-recommend-thumb img{
  transform:scale(1.02);
  border-color:#dde4ee;
  filter:saturate(1.03);
}
.article-simple-recommend-body{
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:18px 20px 18px 0;
}
.article-simple-recommend-card.no-thumb .article-simple-recommend-body{
  padding:16px 18px;
  justify-content:flex-start;
}
.article-simple-recommend-card strong{
  display:block;
  color:var(--ink);
  font-size:17px;
  line-height:1.6;
  font-weight:700;
}
.article-simple-recommend-intro{
  display:-webkit-box;
  margin-top:10px;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  line-clamp:3;
  color:var(--ink-soft);
  font-size:13.5px;
  line-height:1.9;
}
.article-simple-recommend-card.no-thumb .article-simple-recommend-intro{
  -webkit-line-clamp:4;
  line-clamp:4;
  margin-top:8px;
  line-height:1.85;
}
.article-simple-recommend-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  margin-top:auto;
  padding-top:16px;
  color:#98a2b3;
  font-size:12px;
}
.article-simple-sidebox{
  border-radius:16px;
}
.article-simple-related-list{
  padding:8px 16px 16px;
}
.article-simple-related-list li{
  display:grid;
  grid-template-columns:34px minmax(0,1fr) 40px;
  gap:10px;
  align-items:center;
  padding:11px 0;
  border-bottom:1px dashed #edf1f7;
}
.article-simple-related-list li:last-child{
  border-bottom:0;
}
.article-simple-related-list .idx{
  min-width:34px;
  height:22px;
  line-height:22px;
  border-radius:999px;
  background:#f4f7fb;
  color:#8a94a7;
  text-align:center;
  font-size:11px;
  font-weight:700;
}
.article-simple-related-list a{
  display:block;
  min-width:0;
  color:var(--ink);
  font-size:13px;
  line-height:1.65;
  text-decoration:none;
}
.article-simple-related-list a:hover{
  color:var(--brick);
}
.article-simple-related-list small{
  color:#9aa4b5;
  font-size:11px;
  text-align:right;
}
.b-article h2{
  font-family:var(--serif);
  font-size:22px;
  border-left:3px solid var(--brick);
  padding-left:12px;
  margin:0 0 16px;
}
.b-article p{
  font-size:16px;
  color:var(--ink-soft);
  line-height:1.92;
  margin:0 0 16px;
}
.b-article .entry-content{
  font-size:16px;
  color:var(--ink-soft);
  line-height:1.92;
}
.b-article .entry-content img{
  display:block;
  width:min(86%,760px)!important;
  max-width:100%!important;
  height:auto!important;
  margin:18px auto;
  border-radius:14px;
}
.b-article .entry-content a img{
  margin-left:auto;
  margin-right:auto;
}
.b-article .entry-content figure,
.b-article .entry-content .image,
.b-article .entry-content .wp-caption{
  width:min(86%,760px);
  max-width:100%;
  margin:18px auto;
  text-align:center;
}
.b-article .entry-content figcaption,
.b-article .entry-content .wp-caption-text{
  margin-top:10px;
  color:var(--ink-soft);
  font-size:12px;
  line-height:1.7;
  text-align:center;
}
.b-article .entry-content table{
  display:block;
  max-width:100%;
  overflow:auto;
}
.article-simple-page .article-simple-card .entry-content{
  font-size:16px;
  color:var(--ink-soft);
  line-height:1.92;
  min-width:0;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.article-simple-page .article-simple-card .entry-content p{
  font-size:16px;
  color:var(--ink-soft);
  line-height:1.92;
  margin:0 0 16px;
}
.article-simple-page .article-simple-card .entry-content a,
.article-simple-page .article-simple-card .entry-content li,
.article-simple-page .article-simple-card .entry-content td,
.article-simple-page .article-simple-card .entry-content th{
  overflow-wrap:anywhere;
  word-break:break-word;
}
.article-simple-page .article-simple-card .entry-content li{
  font-size:16px;
  line-height:1.9;
  color:var(--ink-soft);
}
.article-simple-page .article-simple-card .entry-content pre{
  max-width:100%;
  padding:14px 16px;
  border-radius:14px;
  background:#f7f9fc;
  overflow-x:auto;
  white-space:pre-wrap;
  word-break:break-word;
  -webkit-overflow-scrolling:touch;
}
.article-simple-page .article-simple-card .entry-content code{
  white-space:break-spaces;
  word-break:break-word;
}
.article-simple-page .article-simple-card .entry-content table{
  display:block;
  width:100%;
  max-width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.article-simple-page .article-simple-card .entry-content iframe,
.article-simple-page .article-simple-card .entry-content embed,
.article-simple-page .article-simple-card .entry-content object,
.article-simple-page .article-simple-card .entry-content video{
  display:block;
  max-width:100%!important;
}
.article-simple-page .article-simple-card .entry-content h2{
  font-size:22px;
  margin:0 0 16px;
}
.article-simple-page .article-simple-card .entry-content h3{
  font-size:19px;
  line-height:1.55;
}
.article-simple-page .article-simple-card .entry-content blockquote{
  font-size:15.5px;
  line-height:1.88;
}
.b-article .factbox{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  margin-bottom:28px;
}
.b-article .factbox div{
  padding:12px 18px;
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  font-size:12.5px;
}
.factbox-location-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#b45309;
  font-weight:600;
  text-decoration:none;
}
.factbox-location-link:hover{
  color:#92400e;
  text-decoration:underline;
}
.factbox-location-link em{
  font-style:normal;
  font-size:12px;
  color:#9ca3af;
}
.b-article .factbox div:nth-child(2n){border-right:none;}
.b-article .factbox b{
  color:var(--ink-soft);
  font-weight:500;
  margin-right:6px;
}
.side-box-hot h4{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.side-box-hot h4::after{
  content:'HOT';
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:22px;
  padding:0 8px;
  border-radius:999px;
  background:linear-gradient(135deg,#fff3e0 0%,#ffe6bf 100%);
  color:#b56b1b;
  font-size:11px;
  font-weight:800;
  letter-spacing:.4px;
}
.side-hot-list{
  margin:0;
  padding:10px 14px 14px;
  list-style:none;
}
.side-hot-item + .side-hot-item{
  margin-top:12px;
}
.side-hot-link{
  display:grid;
  grid-template-columns:112px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:10px;
  border:1px solid #edf1f7;
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  text-decoration:none;
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}
.side-hot-link:hover{
  transform:translateY(-1px);
  border-color:rgba(217,119,6,.22);
  box-shadow:0 14px 24px rgba(15,23,42,.06);
}
.side-hot-thumb{
  display:block;
  overflow:hidden;
  border-radius:12px;
  background:#f3f6fb;
  aspect-ratio:112 / 82;
}
.side-hot-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.side-hot-content{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.side-hot-topline{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:7px;
  flex-wrap:nowrap;
}
.side-hot-rank{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  height:22px;
  padding:0 8px;
  border-radius:999px;
  background:linear-gradient(135deg,#d97706 0%,#f59e0b 100%);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.35px;
}
.side-hot-title{
  display:block;
  overflow:hidden;
  color:var(--ink);
  font-size:13.5px;
  font-weight:700;
  line-height:1.6;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.side-hot-meta{
  margin-top:8px;
  color:var(--ink-soft);
  font-size:11.5px;
}
.side-hot-empty{
  padding:10px 6px 2px;
  color:var(--ink-soft);
  font-size:12.5px;
  text-align:center;
}
.detail-links-panel{
  margin-top:12px;
  padding:16px 20px;
  border:1px solid rgba(215,223,236,.92);
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:var(--shadow-soft);
}
.detail-links-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.detail-links-row{
  display:grid;
  grid-template-columns:118px minmax(0,1fr);
  gap:8px;
  align-items:start;
}
.detail-links-key{
  color:var(--ink);
  font-size:14px;
  font-weight:700;
  line-height:1.9;
  white-space:nowrap;
}
.detail-links-val{
  color:var(--ink-soft);
  font-size:14px;
  line-height:1.9;
}
.detail-links-val a{
  color:var(--ink-soft);
  text-decoration:none;
  margin-right:10px;
  margin-bottom:2px;
  white-space:nowrap;
}
.detail-links-val a:hover{
  color:var(--brick);
  text-decoration:underline;
}
.site-footer{
  margin-top:18px;
}

@media (max-width:960px){
  .b-hero{
    grid-template-columns:1fr;
    gap:18px;
    padding:24px;
  }
  .b-hero-head{
    flex-direction:column;
    gap:16px;
  }
  .b-hero .score{
    border-left:0;
    border-top:1px solid var(--line);
    padding-left:0;
    padding-top:18px;
    min-width:0;
    width:100%;
  }
  .hero-gallery-main{aspect-ratio:16/11;}
  .hero-gallery-thumbs{
    padding:8px;
    gap:8px;
  }
  .b-stats{grid-template-columns:repeat(2,1fr);}
  .b-body{
    grid-template-columns:1fr;
    gap:24px;
  }
  .article-simple-title{
    font-size:30px;
  }
  .article-simple-meta-desktop{
    display:none;
  }
  .article-simple-meta .article-simple-meta-mobile{
    display:flex;
  }
  .article-simple-head{
    padding-bottom:16px;
    border-bottom:1px dotted #cfd6df;
  }
  .article-simple-authorbar{
    gap:12px;
    margin-top:12px;
  }
  .article-simple-authorbox{
    gap:10px;
  }
  .article-simple-avatar{
    width:36px;
    height:36px;
    font-size:16px;
  }
  .article-simple-authorname{
    font-size:13.5px;
  }
  .article-simple-authordivider,
  .article-simple-authortime{
    font-size:12px;
  }
  .article-simple-category-follow{
    min-height:32px;
    padding:0 12px;
    font-size:12px;
  }
  .article-simple-intro{
    font-size:14.5px;
    line-height:1.95;
  }
  .article-simple-card .entry-content,
  .article-simple-card p,
  .article-simple-card li{
    font-size:15px;
    line-height:1.86;
  }
  .article-simple-page .article-simple-card .entry-content{
    font-size:15.5px;
    line-height:1.88;
  }
  .article-simple-page .article-simple-card .entry-content iframe,
  .article-simple-page .article-simple-card .entry-content embed,
  .article-simple-page .article-simple-card .entry-content object,
  .article-simple-page .article-simple-card .entry-content video{
    width:100%!important;
  }
  .article-simple-page .article-simple-card .entry-content p,
  .article-simple-page .article-simple-card .entry-content li{
    font-size:15.5px;
    line-height:1.88;
  }
  .article-simple-card h2{
    font-size:20px;
  }
  .article-simple-page .article-simple-card .entry-content h2{
    font-size:20px;
  }
  .article-simple-card h3{
    font-size:18px;
  }
  .article-simple-page .article-simple-card .entry-content h3{
    font-size:18px;
  }
  .article-simple-card blockquote{
    font-size:14.5px;
    line-height:1.9;
  }
  .article-simple-page .article-simple-card .entry-content blockquote{
    font-size:15px;
    line-height:1.84;
  }
  .article-simple-like-button{
    width:92px;
    height:92px;
  }
  .b-article .article-simple-appreciate p{
    font-size:15px;
  }
  .article-simple-sharebar{
    align-items:center;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:space-between;
  }
  .sidebar{
    position:static;
  }
  .article-simple-recommend{
    padding:20px 18px;
  }
  .article-simple-recommend-card{
    grid-template-columns:144px minmax(0,1fr);
    gap:14px;
    min-height:148px;
  }
  .article-simple-recommend-thumb{
    padding:12px 0 12px 12px;
  }
  .article-simple-recommend-body{
    padding:14px 14px 14px 0;
  }
  .article-simple-recommend-card.no-thumb .article-simple-recommend-body{
    padding:16px;
  }
  .side-hot-link{
    grid-template-columns:104px minmax(0,1fr);
  }
  .detail-links-row{
    grid-template-columns:118px minmax(0,1fr);
  }
  .contact-modal-grid{grid-template-columns:1fr;}
  .contact-modal-card + .contact-modal-card{
    border-left:0;
    border-top:1px solid #edf1f7;
  }
}

@media (max-width:640px){
  .b-stats,
  .b-article .factbox{grid-template-columns:1fr;}
  .b-article{padding:22px 18px;}
  .b-article .entry-content img,
  .b-article .entry-content figure,
  .b-article .entry-content .image,
  .b-article .entry-content .wp-caption{width:100%!important;}
  .b-hero .tags{flex-wrap:wrap;}
  .b-hero h1{font-size:22px;}
  .hero-gallery-badge{
    top:10px;
    left:10px;
    padding:5px 10px;
    font-size:11px;
  }
  .hero-gallery-count{
    right:10px;
    bottom:10px;
    padding:6px 10px;
    font-size:11px;
  }
  .hero-gallery-thumbs{
    margin-top:10px;
    padding:7px;
    gap:7px;
  }
  .hero-gallery-thumb{
    flex:0 0 58px;
    width:58px;
    height:58px;
    border-radius:12px;
  }
  .hero-gallery-thumb::before{
    top:4px;
    left:4px;
    min-width:18px;
    height:18px;
    padding:0 4px;
    font-size:10px;
    line-height:18px;
  }
  .article-simple-recommend{
    padding:18px 14px;
  }
  .article-simple-recommend-head{
    margin-bottom:12px;
  }
  .article-simple-recommend-head h3{
    font-size:20px;
  }
  .article-simple-recommend-grid{
    gap:12px;
  }
  .article-simple-recommend-card{
    grid-template-columns:108px minmax(0,1fr);
    gap:10px;
    min-height:112px;
    align-items:start;
  }
  .article-simple-recommend-thumb{
    padding:10px 0 10px 10px;
    align-items:flex-start;
  }
  .article-simple-recommend-thumb img{
    width:100%;
    height:92px;
    aspect-ratio:auto;
    border-radius:10px;
  }
  .article-simple-recommend-body{
    padding:10px 12px 10px 0;
  }
  .article-simple-recommend-card.no-thumb{
    min-height:0;
    grid-template-columns:minmax(0,1fr);
  }
  .article-simple-recommend-card.no-thumb .article-simple-recommend-body{
    padding:14px 12px;
  }
  .article-simple-recommend-card strong{
    font-size:15px;
    line-height:1.55;
  }
  .article-simple-recommend-intro{
    margin-top:6px;
    font-size:12.5px;
    line-height:1.75;
    -webkit-line-clamp:2;
    line-clamp:2;
  }
  .article-simple-recommend-card.no-thumb .article-simple-recommend-intro{
    -webkit-line-clamp:4;
    line-clamp:4;
  }
  .article-simple-recommend-meta{
    gap:6px 10px;
    padding-top:8px;
    font-size:11px;
  }
  .b-article .article-simple-author-note{
    font-size:12px;
  }
  .article-simple-endmark{
    margin-top:10px;
  }
  .article-simple-like-button{
    width:84px;
    height:84px;
  }
  .article-simple-like-icon svg{
    width:24px;
    height:24px;
  }
  .article-simple-like-count{
    font-size:18px;
  }
  .b-article .article-simple-appreciate p{
    margin-top:14px;
    font-size:14px;
  }
  .article-simple-sharebar{
    margin-top:12px;
    gap:12px;
  }
  .article-simple-share-group{
    width:auto;
    min-width:0;
    flex:1;
    justify-content:flex-start;
    flex-wrap:nowrap;
    gap:8px;
  }
  .article-simple-share-actions{
    max-width:100%;
    flex:none;
  }
  .article-simple-share-btn{
    width:36px;
    height:36px;
  }
  .article-simple-share-text,
  .article-simple-report-btn{
    white-space:nowrap;
  }
  .hero-contact{padding:14px;}
  .hero-contact-values,
  .hero-contact-actions{grid-template-columns:1fr;}
  .hero-contact-mask{font-size:19px;}
  .contact-modal{padding:14px;}
  .contact-modal-panel{padding:22px 18px 18px;}
}
