:root{
  --hanzi-gold:#c89a2b;
  --hanzi-gold-deep:#9d6d14;
  --hanzi-gold-soft:#e5c977;
  --hanzi-black:#0f0d0c;
  --hanzi-black-soft:rgba(18,15,13,.76);
  --hanzi-black-glass:rgba(15,13,12,.62);
  --hanzi-line:rgba(255,223,145,.26);
  --hanzi-line-strong:rgba(255,223,145,.45);
  --hanzi-text:#f8edd1;
  --hanzi-text-soft:rgba(248,237,209,.74);
  --hanzi-shadow:0 18px 45px rgba(0,0,0,.28);
  --hanzi-shadow-hover:0 24px 55px rgba(0,0,0,.35);
  --hanzi-radius:22px;
  --hanzi-radius-sm:16px;
  --hanzi-wrap: min(1280px, calc(100% - 32px));
}

html[data-app-id],
body{
  background:
    radial-gradient(circle at top left, rgba(255,219,121,.18), transparent 30%),
    radial-gradient(circle at right center, rgba(137,96,14,.22), transparent 24%),
    linear-gradient(180deg, #d0a23a 0%, #bf8a22 38%, #ae7818 100%);
  color:var(--hanzi-text);
}

.hanzi-wrap{
  width:var(--hanzi-wrap);
  margin:0 auto;
}

.hanzi-header{
  position:sticky;
  top:0;
  z-index:1000;
  padding:14px 0;
  backdrop-filter:blur(12px);
}

.hanzi-header__veil{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(15,13,12,.82), rgba(23,18,13,.72) 50%, rgba(15,13,12,.82)),
    linear-gradient(180deg, rgba(255,220,133,.08), transparent);
  border-bottom:1px solid rgba(255,223,145,.18);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.hanzi-header__inner{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  min-height:76px;
  padding:10px 18px;
  border:1px solid var(--hanzi-line);
  border-radius:26px;
  background:
    linear-gradient(135deg, rgba(255,226,155,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.58);
  box-shadow:var(--hanzi-shadow);
  overflow:hidden;
}

.hanzi-header__inner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,227,159,.18), transparent 22%, transparent 78%, rgba(255,227,159,.18));
  pointer-events:none;
}

.hanzi-header__brand,
.hanzi-header__center,
.hanzi-header__tools{
  position:relative;
  z-index:1;
}

.hanzi-header__logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  min-height:52px;
  padding:8px 14px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(255,223,145,.08), rgba(255,255,255,.02));
  border:1px solid rgba(255,223,145,.18);
  text-decoration:none;
}

.hanzi-header__logo img{
  display:block;
  max-width:120px;
  height:40px;
  object-fit:contain;
}

.hanzi-header__center{
  display:flex;
  justify-content:center;
}

.hanzi-nav--desktop{
  width:100%;
}

.hanzi-nav__list{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px 12px;
  margin:0;
  padding:0;
  list-style:none;
}

.hanzi-nav__item a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  color:var(--hanzi-text);
  text-decoration:none;
  font-size:15px;
  letter-spacing:.02em;
  white-space:nowrap;
  transition:all .28s ease;
}

.hanzi-nav__item a::before{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:8px;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--hanzi-gold-soft), transparent);
  transform:scaleX(.2);
  opacity:0;
  transition:all .28s ease;
}

.hanzi-nav__item a:hover{
  color:#fff7e6;
  background:rgba(255,223,145,.08);
  box-shadow:inset 0 0 0 1px rgba(255,223,145,.14);
}

.hanzi-nav__item a:hover::before{
  transform:scaleX(1);
  opacity:1;
}

.hanzi-header__tools{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}

.hanzi-search{
  display:flex;
  justify-content:flex-end;
}

.hanzi-search__box{
  position:relative;
  display:flex;
  align-items:center;
  width:140px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--hanzi-line);
  background:rgba(15,13,12,.56);
  box-shadow:inset 0 1px 0 rgba(255,223,145,.08);
  overflow:hidden;
  transition:all .28s ease;
}

.hanzi-search__box:hover,
.hanzi-search__box:focus-within{
  border-color:var(--hanzi-line-strong);
  box-shadow:0 0 0 3px rgba(255,223,145,.08), inset 0 1px 0 rgba(255,223,145,.1);
  transform:translateY(-1px);
}

.hanzi-search__box input{
  width:100%;
  height:100%;
  padding:0 42px 0 16px;
  border:0;
  outline:none;
  background:transparent;
  color:var(--hanzi-text);
  font-size:14px;
}

.hanzi-search__box input::placeholder{
  color:var(--hanzi-text-soft);
}

.hanzi-search__box button{
  position:absolute;
  right:4px;
  top:4px;
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:linear-gradient(135deg, var(--hanzi-gold-soft), var(--hanzi-gold-deep));
  color:#1a1208;
  cursor:pointer;
  transition:transform .28s ease, box-shadow .28s ease;
}

.hanzi-search__box button:hover{
  transform:translateY(-1px) scale(1.03);
  box-shadow:0 8px 18px rgba(0,0,0,.24);
}

.hanzi-menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}

.hanzi-menu-toggle__frame{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  border-radius:12px;
  border:1px solid var(--hanzi-line);
  background:rgba(15,13,12,.58);
  color:var(--hanzi-text);
  font-size:20px;
  line-height:1;
  transition:all .28s ease;
}

.hanzi-menu-toggle:hover .hanzi-menu-toggle__frame{
  transform:translateY(-1px);
  border-color:var(--hanzi-line-strong);
  box-shadow:0 10px 24px rgba(0,0,0,.24);
}

.hanzi-mobile-panel{
  display:none;
  position:relative;
  margin-top:10px;
}

.hanzi-mobile-panel.is-open{
  display:block;
}

.hanzi-nav--mobile{
  padding:14px;
  border-radius:22px;
  border:1px solid var(--hanzi-line);
  background:
    linear-gradient(135deg, rgba(255,226,155,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.72);
  box-shadow:var(--hanzi-shadow);
}

.hanzi-nav__mobile-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.hanzi-nav__mobile-list a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 12px;
  border-radius:14px;
  text-decoration:none;
  color:var(--hanzi-text);
  background:rgba(255,223,145,.06);
  border:1px solid rgba(255,223,145,.12);
}

.hanzi-nav__mobile-list a:hover{
  background:rgba(255,223,145,.12);
}

@media (max-width: 1024px){
  .hanzi-header__inner{
    grid-template-columns:auto 1fr auto;
    gap:14px;
  }

  .hanzi-nav__item a{
    padding:0 12px;
    font-size:14px;
  }
}

@media (max-width: 860px){
  .hanzi-header__inner{
    grid-template-columns:auto 1fr auto;
  }

  .hanzi-nav--desktop{
    display:none;
  }

  .hanzi-menu-toggle{
    display:inline-flex;
  }

  .hanzi-header__center{
    justify-content:flex-end;
  }
}

@media (max-width: 640px){
  .hanzi-header{
    padding:10px 0;
  }

  .hanzi-header__inner{
    min-height:68px;
    padding:10px 12px;
    border-radius:20px;
  }

  .hanzi-header__logo{
    min-width:auto;
    padding:6px 10px;
  }

  .hanzi-search__box{
    width:124px;
    height:40px;
  }

  .hanzi-nav__mobile-list{
    grid-template-columns:1fr;
  }
}
/* footer */
.hanzi-footer{
  padding:18px 0 34px;
}

.hanzi-footer__panel{
  border:1px solid var(--hanzi-line);
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(255,223,145,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.72);
  box-shadow:var(--hanzi-shadow);
  overflow:hidden;
}

.hanzi-footer__grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:24px;
  padding:30px 28px 24px;
}

.hanzi-footer__brand,
.hanzi-footer__links,
.hanzi-footer__contact{
  min-width:0;
}

.hanzi-footer__logo-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  min-height:72px;
  padding:8px 16px;
  border-radius:18px;
  background:rgba(255,223,145,.06);
  border:1px solid rgba(255,223,145,.14);
}

.hanzi-footer__name{
  margin:16px 0 10px;
  font-size:22px;
  font-weight:700;
  color:#fff4d8;
}

.hanzi-footer__desc{
  margin:0;
  line-height:1.95;
  color:var(--hanzi-text-soft);
  font-size:14px;
}

.hanzi-footer__title{
  margin:6px 0 16px;
  font-size:18px;
  color:#fff4d8;
}

.hanzi-footer__menu{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 12px;
  margin:0;
  padding:0;
  list-style:none;
}

.hanzi-footer__menu a{
  display:flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  text-decoration:none;
  color:var(--hanzi-text);
  background:rgba(255,223,145,.05);
  border:1px solid rgba(255,223,145,.1);
  transition:all .28s ease;
}

.hanzi-footer__menu a:hover{
  transform:translateY(-2px);
  background:rgba(255,223,145,.1);
  border-color:rgba(255,223,145,.22);
}

.hanzi-footer__contact-list{
  display:grid;
  gap:12px;
}

.hanzi-footer__contact-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,223,145,.05);
  border:1px solid rgba(255,223,145,.1);
  color:var(--hanzi-text);
}

.hanzi-footer__contact-item i{
  width:18px;
  margin-top:3px;
  color:var(--hanzi-gold-soft);
  text-align:center;
}

.hanzi-footer__contact-item a,
.hanzi-footer__contact-item em{
  color:var(--hanzi-text);
  text-decoration:none;
  font-style:normal;
  line-height:1.8;
  word-break:break-all;
}

.hanzi-footer__copyright{
  padding:16px 28px 20px;
  border-top:1px solid rgba(255,223,145,.12);
  color:rgba(248,237,209,.72);
  font-size:13px;
  text-align:center;
}

.hanzi-footer__copyright a{
  color:#fff4d8;
  text-decoration:none;
}

.hanzi-backtop{
  position:fixed;
  right:22px;
  bottom:26px;
  width:54px;
  height:54px;
  border:0;
  border-radius:18px;
  background:linear-gradient(135deg, var(--hanzi-gold-soft), var(--hanzi-gold-deep));
  color:#1b1308;
  box-shadow:0 16px 32px rgba(0,0,0,.28);
  cursor:pointer;
  z-index:1200;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .28s ease;
}

.hanzi-backtop.is-show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.hanzi-backtop:hover{
  transform:translateY(-3px);
}

/* common home */
.hanzi-home section{
  padding:24px 0;
}

.hanzi-section-head{
  max-width:760px;
  margin:0 auto 24px;
  text-align:center;
}

.hanzi-section-tag,
.hanzi-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,223,145,.1);
  border:1px solid rgba(255,223,145,.18);
  color:#fff0c6;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
}

.hanzi-section-title{
  margin:14px 0 0;
  color:#fff5dc;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.2;
}

.hanzi-section-desc{
  margin:16px 0 0;
  color:var(--hanzi-text-soft);
  line-height:1.95;
  font-size:15px;
}

.hanzi-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 22px;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
  transition:all .28s ease;
}

.hanzi-btn--gold{
  color:#211507;
  background:linear-gradient(135deg, #f0cd77, #b57a17);
  box-shadow:0 14px 28px rgba(0,0,0,.2);
}

.hanzi-btn--ghost{
  color:#fff2ce;
  background:rgba(15,13,12,.48);
  border:1px solid rgba(255,223,145,.18);
}

.hanzi-btn--block{
  width:100%;
}

.hanzi-btn:hover{
  transform:translateY(-2px);
}

/* hero */
.hanzi-hero{
  padding-top:28px !important;
}

.hanzi-hero__panel{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:center;
  padding:34px 30px;
  border-radius:34px;
  border:1px solid var(--hanzi-line);
  background:
    linear-gradient(135deg, rgba(255,223,145,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.7);
  box-shadow:var(--hanzi-shadow);
  overflow:hidden;
}

.hanzi-hero__title{
  margin:18px 0 14px;
  color:#fff7e5;
  font-size:clamp(34px, 5vw, 60px);
  line-height:1.1;
}

.hanzi-hero__title span{
  color:#ffd889;
}

.hanzi-hero__desc{
  margin:0;
  max-width:720px;
  color:var(--hanzi-text-soft);
  font-size:16px;
  line-height:2;
}

.hanzi-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.hanzi-hero__visual{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hanzi-hero__fan{
  position:absolute;
  width:250px;
  height:320px;
  padding:10px;
  border-radius:28px;
  border:1px solid rgba(255,223,145,.18);
  background:rgba(15,13,12,.58);
  box-shadow:var(--hanzi-shadow);
  overflow:hidden;
}

.hanzi-hero__fan img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

.hanzi-hero__fan--a{
  transform:rotate(-14deg) translateX(-90px);
}

.hanzi-hero__fan--b{
  z-index:2;
}

.hanzi-hero__fan--c{
  transform:rotate(14deg) translateX(90px);
}

.hanzi-hero__seal{
  position:absolute;
  right:24px;
  bottom:16px;
  z-index:3;
  width:82px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#2c1a08;
  background:linear-gradient(135deg, #f1cf7d, #b87917);
  box-shadow:0 14px 26px rgba(0,0,0,.28);
  font-size:28px;
}

/* intro */
.hanzi-intro__grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:center;
}

.hanzi-intro__media,
.hanzi-intro__content,
.hanzi-stat-card,
.hanzi-puzzle-card,
.hanzi-liquid-card,
.hanzi-service-card,
.hanzi-qa-card,
.hanzi-faq-item,
.hanzi-news-card,
.hanzi-contact__info,
.hanzi-contact__formbox{
  border-radius:28px;
  border:1px solid var(--hanzi-line);
  background:
    linear-gradient(135deg, rgba(255,223,145,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.68);
  box-shadow:var(--hanzi-shadow);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hanzi-intro__media:hover,
.hanzi-intro__content:hover,
.hanzi-stat-card:hover,
.hanzi-puzzle-card:hover,
.hanzi-liquid-card:hover,
.hanzi-service-card:hover,
.hanzi-qa-card:hover,
.hanzi-faq-item:hover,
.hanzi-news-card:hover,
.hanzi-contact__info:hover,
.hanzi-contact__formbox:hover{
  transform:translateY(-4px);
  box-shadow:var(--hanzi-shadow-hover);
  border-color:rgba(255,223,145,.26);
}

.hanzi-intro__media{
  padding:18px;
}

.hanzi-intro__photo{
  aspect-ratio:4 / 5;
  overflow:hidden;
  border-radius:24px;
}

.hanzi-intro__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hanzi-intro__content{
  padding:28px 26px;
}

.hanzi-intro__quote{
  display:flex;
  gap:14px;
  margin-top:22px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,223,145,.05);
  border:1px solid rgba(255,223,145,.12);
}

.hanzi-intro__quote i{
  color:#ffd889;
  margin-top:4px;
}

.hanzi-intro__quote p{
  margin:0;
  color:var(--hanzi-text);
  line-height:1.9;
}

/* stats */
.hanzi-windmill{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.hanzi-stat-card{
  padding:26px 22px;
  text-align:center;
}

.hanzi-stat-card i{
  width:60px;
  height:60px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#261708;
  font-size:22px;
  margin-bottom:14px;
}

.hanzi-stat-card strong{
  display:block;
  margin-bottom:10px;
  color:#fff3cf;
  font-size:38px;
  line-height:1.1;
}

.hanzi-stat-card h3{
  margin:0 0 10px;
  color:#fff7e2;
  font-size:20px;
}

.hanzi-stat-card p{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.85;
  font-size:14px;
}

.hanzi-stat-card--diamond{
  border-radius:34px 18px 34px 18px;
}

.hanzi-stat-card--square{
  border-radius:18px;
}

.hanzi-stat-card--ellipse{
  border-radius:999px;
  padding-left:30px;
  padding-right:30px;
}

.hanzi-stat-card--rect{
  border-radius:18px 34px 18px 34px;
}

/* security */
.hanzi-puzzle-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.hanzi-puzzle-card{
  padding:26px 22px;
}

.hanzi-puzzle-card i,
.hanzi-liquid-card i,
.hanzi-contact__item i{
  width:54px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#261708;
  font-size:20px;
}

.hanzi-puzzle-card h3,
.hanzi-liquid-card h3,
.hanzi-service-card h3,
.hanzi-news-card__body h3{
  margin:16px 0 10px;
  color:#fff5db;
  font-size:20px;
}

.hanzi-puzzle-card p,
.hanzi-liquid-card p,
.hanzi-service-card p,
.hanzi-news-card__body p{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.9;
  font-size:14px;
}

/* strength */
.hanzi-liquid-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.hanzi-liquid-card{
  padding:26px 20px;
  text-align:left;
  border-radius:42px 18px 42px 18px;
}

.hanzi-liquid-card strong{
  display:block;
  margin:10px 0 12px;
  color:#ffd889;
  font-size:34px;
  line-height:1.1;
}

/* services */
.hanzi-service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.hanzi-service-card{
  overflow:hidden;
}

.hanzi-service-card__img{
  aspect-ratio:16/10;
  overflow:hidden;
}

.hanzi-service-card__img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .38s ease;
}

.hanzi-service-card:hover .hanzi-service-card__img img{
  transform:scale(1.06);
}

.hanzi-service-card h3,
.hanzi-service-card p{
  padding-left:20px;
  padding-right:20px;
}

.hanzi-service-card h3{
  margin-top:18px;
}

.hanzi-service-card p{
  padding-bottom:22px;
}

/* qa */
.hanzi-qa-slider{
  position:relative;
  overflow:hidden;
}

.hanzi-qa-track{
  position:relative;
  min-height:260px;
}

.hanzi-qa-card{
  position:absolute;
  inset:0;
  padding:28px 24px;
  opacity:0;
  transform:translateX(30px);
  pointer-events:none;
  transition:all .4s ease;
}

.hanzi-qa-card.is-active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.hanzi-qa-card__avatar{
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#241607;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  font-size:22px;
  margin-bottom:14px;
}

.hanzi-qa-card h3{
  margin:0 0 12px;
  color:#fff6de;
  font-size:24px;
}

.hanzi-qa-card p{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.95;
  font-size:15px;
}

.hanzi-qa-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:18px;
}

.hanzi-qa-dots button{
  width:12px;
  height:12px;
  border:0;
  border-radius:50%;
  background:rgba(255,223,145,.25);
  cursor:pointer;
}

.hanzi-qa-dots button.is-active{
  background:#ffd889;
}

/* faq */
.hanzi-faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.hanzi-faq-item{
  padding:0;
  overflow:hidden;
}

.hanzi-faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:20px 22px;
  color:#fff7e0;
  font-weight:700;
}

.hanzi-faq-item summary::-webkit-details-marker{
  display:none;
}

.hanzi-faq-item p{
  margin:0;
  padding:0 22px 20px;
  color:var(--hanzi-text-soft);
  line-height:1.9;
}

/* news */
.hanzi-news-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.hanzi-news-card{
  overflow:hidden;
}

.hanzi-news-card__thumb{
  aspect-ratio:16/10;
  overflow:hidden;
}

.hanzi-news-card__thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .38s ease;
}

.hanzi-news-card:hover .hanzi-news-card__thumb img{
  transform:scale(1.06);
}

.hanzi-news-card__body{
  padding:20px;
}

.hanzi-news-card__body h3{
  margin-top:0;
  line-height:1.5;
}

.hanzi-news-card__body h3 a{
  color:#fff5dc;
  text-decoration:none;
}

.hanzi-news-card__date{
  display:inline-flex;
  margin-top:14px;
  color:#ffd889;
  font-size:13px;
  font-weight:700;
}

/* contact */
.hanzi-contact__grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
}

.hanzi-contact__info,
.hanzi-contact__formbox{
  padding:28px 24px;
}

.hanzi-contact__list{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.hanzi-contact__item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border-radius:18px;
  background:rgba(255,223,145,.05);
  border:1px solid rgba(255,223,145,.1);
}

.hanzi-contact__item small{
  display:block;
  margin-bottom:6px;
  color:var(--hanzi-text-soft);
}

.hanzi-contact__item span{
  color:#fff5dc;
  line-height:1.75;
  word-break:break-all;
}

.hanzi-form{
  display:grid;
  gap:16px;
}

.hanzi-form__row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.hanzi-form__field{
  display:grid;
  gap:8px;
}

.hanzi-form__field label{
  color:#fff3d2;
  font-size:14px;
  font-weight:700;
}

.hanzi-form__field input,
.hanzi-form__field textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,223,145,.14);
  background:rgba(15,13,12,.48);
  color:#fff6df;
  outline:none;
}

.hanzi-form__field input::placeholder,
.hanzi-form__field textarea::placeholder{
  color:rgba(248,237,209,.52);
}

.hanzi-form__field textarea{
  resize:vertical;
  min-height:150px;
}

/* responsive */
@media (max-width: 1100px){
  .hanzi-footer__grid,
  .hanzi-hero__panel,
  .hanzi-intro__grid,
  .hanzi-contact__grid{
    grid-template-columns:1fr;
  }

  .hanzi-liquid-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .hanzi-service-grid,
  .hanzi-news-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 767px){
  .hanzi-home section{
    padding:18px 0;
  }

  .hanzi-footer__grid{
    grid-template-columns:1fr;
    padding:22px 18px 18px;
  }

  .hanzi-footer__menu{
    grid-template-columns:1fr;
  }

  .hanzi-footer__copyright{
    padding:14px 18px 18px;
  }

  .hanzi-hero__panel,
  .hanzi-intro__media,
  .hanzi-intro__content,
  .hanzi-stat-card,
  .hanzi-puzzle-card,
  .hanzi-liquid-card,
  .hanzi-service-card,
  .hanzi-qa-card,
  .hanzi-faq-item,
  .hanzi-news-card,
  .hanzi-contact__info,
  .hanzi-contact__formbox{
    border-radius:22px;
  }

  .hanzi-hero__panel{
    padding:24px 18px;
  }

  .hanzi-hero__visual{
    min-height:300px;
  }

  .hanzi-hero__fan{
    width:160px;
    height:220px;
  }

  .hanzi-hero__fan--a{
    transform:rotate(-12deg) translateX(-52px);
  }

  .hanzi-hero__fan--c{
    transform:rotate(12deg) translateX(52px);
  }

  .hanzi-windmill,
  .hanzi-puzzle-grid,
  .hanzi-liquid-grid,
  .hanzi-service-grid,
  .hanzi-faq-grid,
  .hanzi-news-grid,
  .hanzi-form__row{
    grid-template-columns:1fr;
  }

  .hanzi-section-title{
    font-size:clamp(24px, 7vw, 32px);
  }

  .hanzi-qa-track{
    min-height:320px;
  }

  .hanzi-backtop{
    right:16px;
    bottom:18px;
    width:48px;
    height:48px;
    border-radius:14px;
  }
}
/* contact + app common */
.hanzi-contact-page,
.hanzi-app-page{
  position:relative;
  z-index:1;
}

.hanzi-page-hero{
  padding:26px 0 18px;
}

.hanzi-page-hero__panel,
.hanzi-quick-contact__card,
.hanzi-contact-accordion__item,
.hanzi-app-get__card,
.hanzi-app-experience__card,
.hanzi-compare-table,
.hanzi-timeline__item,
.hanzi-install__col,
.hanzi-install__step,
.hanzi-app-trust__card,
.hanzi-app-join__panel,
.hanzi-app-cta__panel{
  border-radius:28px;
  border:1px solid var(--hanzi-line);
  background:
    linear-gradient(135deg, rgba(255,223,145,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.68);
  box-shadow:var(--hanzi-shadow);
}

.hanzi-page-hero__panel{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:center;
  padding:32px 28px;
  overflow:hidden;
}

.hanzi-page-hero__title{
  margin:18px 0 14px;
  color:#fff7e5;
  font-size:clamp(32px, 4.5vw, 54px);
  line-height:1.15;
}

.hanzi-page-hero__desc{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.95;
  font-size:16px;
}

.hanzi-page-hero__visual{
  position:relative;
  min-height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hanzi-page-hero__badge{
  width:110px;
  height:110px;
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#241607;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  font-size:40px;
  box-shadow:0 18px 34px rgba(0,0,0,.28);
  position:relative;
  z-index:2;
}

.hanzi-page-hero__ring{
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  border:1px dashed rgba(255,223,145,.24);
  background:radial-gradient(circle, rgba(255,223,145,.12), transparent 70%);
}

.hanzi-page-hero__visual--app .hanzi-page-hero__ring{
  width:320px;
  height:320px;
}

/* contact */
.hanzi-quick-contact__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.hanzi-quick-contact__card{
  padding:24px 20px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hanzi-quick-contact__card:hover,
.hanzi-contact-accordion__item:hover,
.hanzi-app-get__card:hover,
.hanzi-app-experience__card:hover,
.hanzi-timeline__item:hover,
.hanzi-install__col:hover,
.hanzi-install__step:hover,
.hanzi-app-trust__card:hover,
.hanzi-app-join__panel:hover,
.hanzi-app-cta__panel:hover{
  transform:translateY(-4px);
  box-shadow:var(--hanzi-shadow-hover);
  border-color:rgba(255,223,145,.26);
}

.hanzi-quick-contact__card i{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  font-size:22px;
  margin-bottom:16px;
}

.hanzi-quick-contact__card small{
  display:block;
  margin-bottom:8px;
  color:var(--hanzi-text-soft);
  font-size:13px;
}

.hanzi-quick-contact__card a,
.hanzi-quick-contact__card span{
  display:block;
  color:#fff6de;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  line-height:1.6;
  word-break:break-all;
}

.hanzi-quick-contact__card p{
  margin:12px 0 0;
  color:var(--hanzi-text-soft);
  line-height:1.85;
  font-size:14px;
}

.hanzi-contact-scene__head{
  max-width:860px;
  margin:0 auto 24px;
  text-align:center;
}

.hanzi-contact-accordion{
  display:grid;
  gap:16px;
}

.hanzi-contact-accordion__item{
  overflow:hidden;
}

.hanzi-contact-accordion__button{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  padding:20px 22px;
  border:0;
  background:transparent;
  color:#fff7e2;
  text-align:left;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.hanzi-contact-accordion__icon{
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(255,223,145,.1);
  border:1px solid rgba(255,223,145,.14);
  color:#ffd889;
  flex:none;
}

.hanzi-contact-accordion__panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.hanzi-contact-accordion__item.is-open .hanzi-contact-accordion__panel{
  max-height:420px;
}

.hanzi-contact-accordion__body{
  padding:0 22px 22px 22px;
}

.hanzi-contact-accordion__body p{
  margin:0 0 16px;
  color:var(--hanzi-text-soft);
  line-height:1.95;
}

.hanzi-contact-accordion__body ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 14px;
  margin:0;
  padding:0;
  list-style:none;
}

.hanzi-contact-accordion__body li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#fff3d2;
  line-height:1.8;
  font-size:14px;
}

.hanzi-contact-accordion__body li i{
  color:#ffd889;
  margin-top:5px;
}

.hanzi-contact-form-section{
  padding-bottom:30px !important;
}

/* app */
.hanzi-app-phone{
  position:absolute;
  width:190px;
  height:340px;
  border-radius:34px;
  border:1px solid rgba(255,223,145,.18);
  background:
    linear-gradient(180deg, rgba(255,223,145,.16), rgba(255,255,255,.02)),
    rgba(15,13,12,.82);
  box-shadow:var(--hanzi-shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffd889;
  font-size:58px;
}

.hanzi-app-phone::before{
  content:"";
  position:absolute;
  top:14px;
  left:50%;
  transform:translateX(-50%);
  width:72px;
  height:8px;
  border-radius:999px;
  background:rgba(255,223,145,.16);
}

.hanzi-app-phone--back{
  transform:rotate(-12deg) translateX(-56px);
  opacity:.86;
}

.hanzi-app-phone--front{
  transform:rotate(10deg) translateX(56px);
  z-index:2;
}

.hanzi-app-hero__stats{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:24px;
}

.hanzi-app-hero__stats div{
  min-width:120px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,223,145,.06);
  border:1px solid rgba(255,223,145,.12);
}

.hanzi-app-hero__stats h3{
  margin:0 0 6px;
  color:#ffd889;
  font-size:28px;
}

.hanzi-app-hero__stats small{
  color:var(--hanzi-text-soft);
}

.hanzi-app-get__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}

.hanzi-app-get__content,
.hanzi-app-get__card{
  padding:28px 24px;
  border-radius:28px;
  border:1px solid var(--hanzi-line);
  background:
    linear-gradient(135deg, rgba(255,223,145,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.68);
  box-shadow:var(--hanzi-shadow);
}

.hanzi-app-pillbox{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.hanzi-app-pillbox span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,223,145,.08);
  border:1px solid rgba(255,223,145,.14);
  color:#fff2d0;
  font-size:14px;
}

.hanzi-app-downloads{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.hanzi-app-get__card h3{
  margin:16px 0 14px;
  color:#fff5dc;
  font-size:28px;
  line-height:1.35;
}

.hanzi-app-get__card > p{
  margin:0 0 18px;
  color:var(--hanzi-text-soft);
  line-height:1.9;
}

.hanzi-app-feature-list{
  display:grid;
  gap:14px;
}

.hanzi-app-feature-list div{
  padding:16px;
  border-radius:18px;
  background:rgba(255,223,145,.05);
  border:1px solid rgba(255,223,145,.1);
}

.hanzi-app-feature-list h6{
  margin:0 0 8px;
  color:#fff5dc;
  font-size:17px;
}

.hanzi-app-feature-list p{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.85;
  font-size:14px;
}

.hanzi-app-experience__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.hanzi-app-experience__card{
  padding:26px 22px;
  text-align:center;
}

.hanzi-app-experience__card span,
.hanzi-app-trust__card span{
  width:62px;
  height:62px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  font-size:24px;
}

.hanzi-app-experience__card h3{
  margin:16px 0 10px;
  color:#fff4d8;
  font-size:22px;
}

.hanzi-app-experience__card p{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.9;
}

.hanzi-compare-table{
  overflow:hidden;
}

.hanzi-compare-table__row{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:0;
}

.hanzi-compare-table__row span{
  padding:16px 18px;
  border-bottom:1px solid rgba(255,223,145,.1);
  color:var(--hanzi-text-soft);
  line-height:1.7;
}

.hanzi-compare-table__row span + span{
  border-left:1px solid rgba(255,223,145,.08);
}

.hanzi-compare-table__row--head span{
  color:#241607;
  font-weight:800;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
}

.hanzi-compare-table__row:not(.hanzi-compare-table__row--head) span:first-child{
  color:#fff6de;
  font-weight:700;
}

.hanzi-timeline{
  position:relative;
  display:grid;
  gap:18px;
}

.hanzi-timeline__year{
  display:inline-flex;
  width:max-content;
  min-height:42px;
  align-items:center;
  padding:0 16px;
  border-radius:999px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  font-weight:900;
}

.hanzi-timeline__item{
  padding:24px 22px;
}

.hanzi-timeline__item h3{
  margin:0 0 8px;
  color:#fff6de;
  font-size:24px;
}

.hanzi-timeline__date{
  margin:0 0 14px;
  color:#ffd889;
  font-size:14px;
  font-weight:700;
}

.hanzi-timeline__item ul{
  margin:0;
  padding-left:18px;
  color:var(--hanzi-text-soft);
  line-height:1.95;
}

.hanzi-install__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.hanzi-install__col{
  padding:26px 22px;
}

.hanzi-install__col h3{
  margin:0 0 18px;
  color:#fff6de;
  font-size:26px;
}

.hanzi-install__steps{
  display:grid;
  gap:14px;
}

.hanzi-install__step{
  display:grid;
  grid-template-columns:58px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:18px;
}

.hanzi-install__step span{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  font-size:22px;
  font-weight:900;
}

.hanzi-install__step h4{
  margin:2px 0 8px;
  color:#fff4d8;
  font-size:18px;
}

.hanzi-install__step p{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.85;
}

.hanzi-app-trust__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.hanzi-app-trust__card{
  padding:24px 20px;
}

.hanzi-app-trust__card h5{
  margin:16px 0 10px;
  color:#fff4d8;
  font-size:20px;
}

.hanzi-app-trust__card p{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.9;
}

.hanzi-app-trust__foot{
  margin:20px 0 0;
  text-align:center;
  color:#fff1ca;
}

.hanzi-app-join__panel,
.hanzi-app-cta__panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:30px 26px;
}

.hanzi-app-join__code-label{
  margin:18px 0 10px;
  color:var(--hanzi-text-soft);
}

.hanzi-app-join__code{
  display:inline-flex;
  min-height:52px;
  align-items:center;
  padding:0 18px;
  border-radius:16px;
  background:rgba(255,223,145,.1);
  border:1px solid rgba(255,223,145,.16);
  color:#fff4d8;
  font-size:22px;
  font-weight:900;
  letter-spacing:.08em;
}

.hanzi-app-cta__panel{
  flex-direction:column;
  text-align:center;
}

.hanzi-app-cta__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:12px;
}

/* responsive */
@media (max-width: 1100px){
  .hanzi-page-hero__panel,
  .hanzi-app-get__grid,
  .hanzi-install__grid{
    grid-template-columns:1fr;
  }

  .hanzi-quick-contact__grid,
  .hanzi-app-trust__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .hanzi-app-experience__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .hanzi-page-hero{
    padding-top:18px;
  }

  .hanzi-page-hero__panel,
  .hanzi-quick-contact__card,
  .hanzi-contact-accordion__item,
  .hanzi-app-get__content,
  .hanzi-app-get__card,
  .hanzi-app-experience__card,
  .hanzi-compare-table,
  .hanzi-timeline__item,
  .hanzi-install__col,
  .hanzi-install__step,
  .hanzi-app-trust__card,
  .hanzi-app-join__panel,
  .hanzi-app-cta__panel{
    border-radius:22px;
  }

  .hanzi-page-hero__panel{
    padding:24px 18px;
  }

  .hanzi-quick-contact__grid,
  .hanzi-app-trust__grid,
  .hanzi-contact-accordion__body ul{
    grid-template-columns:1fr;
  }

  .hanzi-app-phone{
    width:140px;
    height:250px;
    font-size:42px;
    border-radius:26px;
  }

  .hanzi-app-phone--back{
    transform:rotate(-10deg) translateX(-34px);
  }

  .hanzi-app-phone--front{
    transform:rotate(10deg) translateX(34px);
  }

  .hanzi-compare-table{
    overflow:auto;
  }

  .hanzi-compare-table__row{
    min-width:640px;
  }

  .hanzi-install__step{
    grid-template-columns:1fr;
  }

  .hanzi-app-join__panel{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* list + show */
.hanzi-list-page,
.hanzi-show-page{
  position:relative;
  z-index:1;
}

.hanzi-breadcrumb{
  padding:8px 0 16px;
}

.hanzi-breadcrumb__panel,
.hanzi-side-card,
.hanzi-list-card,
.hanzi-article,
.hanzi-related,
.hanzi-hot-item{
  border-radius:26px;
  border:1px solid var(--hanzi-line);
  background:
    linear-gradient(135deg, rgba(255,223,145,.08), rgba(255,255,255,.02)),
    rgba(15,13,12,.68);
  box-shadow:var(--hanzi-shadow);
}

.hanzi-breadcrumb__panel{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  padding:16px 18px;
}

.hanzi-breadcrumb__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--hanzi-text);
}

.hanzi-breadcrumb__item a{
  color:#fff3d4;
  text-decoration:none;
}

.hanzi-breadcrumb__item.is-current a{
  color:#ffd889;
}

.hanzi-breadcrumb__arrow{
  color:rgba(248,237,209,.54);
  font-size:12px;
}

/* list layout */
.hanzi-list-layout{
  padding-bottom:28px !important;
}

.hanzi-list-layout__grid{
  display:grid;
  grid-template-columns:minmax(0,1.6fr) minmax(300px,.72fr);
  gap:22px;
  align-items:start;
}

.hanzi-list-main__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.hanzi-list-card{
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hanzi-list-card:hover,
.hanzi-side-card:hover,
.hanzi-article:hover,
.hanzi-related:hover,
.hanzi-hot-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--hanzi-shadow-hover);
  border-color:rgba(255,223,145,.26);
}

.hanzi-list-card__thumb{
  display:block;
  aspect-ratio:16 / 10;
  overflow:hidden;
}

.hanzi-list-card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .38s ease;
}

.hanzi-list-card:hover .hanzi-list-card__thumb img{
  transform:scale(1.06);
}

.hanzi-list-card__body{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:20px;
}

.hanzi-list-card__tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,223,145,.08);
  border:1px solid rgba(255,223,145,.14);
  color:#fff0c6;
  font-size:12px;
  font-weight:700;
  width:max-content;
}

.hanzi-list-card__title{
  margin:14px 0 10px;
  font-size:22px;
  line-height:1.45;
}

.hanzi-list-card__title a{
  color:#fff6de;
  text-decoration:none;
}

.hanzi-list-card__desc{
  margin:0;
  color:var(--hanzi-text-soft);
  line-height:1.9;
  font-size:14px;
}

.hanzi-list-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding-top:2px;
}

.hanzi-list-card__meta time{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#ffd889;
  font-size:13px;
  font-weight:700;
}

.hanzi-list-card__more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff4d8;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}

.hanzi-list-side{
  display:grid;
  gap:18px;
}

.hanzi-side-card{
  padding:22px 20px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hanzi-side-card__title{
  margin:0 0 16px;
  color:#fff5dc;
  font-size:22px;
}

.hanzi-side-search__box{
  position:relative;
  display:flex;
  align-items:center;
  min-height:46px;
  border-radius:999px;
  border:1px solid rgba(255,223,145,.14);
  background:rgba(15,13,12,.48);
  overflow:hidden;
}

.hanzi-side-search__box input{
  width:100%;
  height:46px;
  padding:0 48px 0 16px;
  border:0;
  outline:none;
  background:transparent;
  color:#fff6df;
}

.hanzi-side-search__box input::placeholder{
  color:rgba(248,237,209,.52);
}

.hanzi-side-search__box button{
  position:absolute;
  right:4px;
  top:4px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  cursor:pointer;
}

.hanzi-side-menu{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.hanzi-side-menu a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:0 14px;
  border-radius:14px;
  text-decoration:none;
  color:#fff3d4;
  background:rgba(255,223,145,.05);
  border:1px solid rgba(255,223,145,.1);
  transition:all .28s ease;
}

.hanzi-side-menu a:hover{
  background:rgba(255,223,145,.1);
  transform:translateX(4px);
}

/* show layout */
.hanzi-show-layout{
  padding-bottom:28px !important;
}

.hanzi-show-layout__grid{
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.72fr);
  gap:22px;
  align-items:start;
}

.hanzi-article{
  padding:26px 24px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hanzi-article__header{
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,223,145,.1);
}

.hanzi-article__title{
  margin:0 0 16px;
  color:#fff7e2;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.28;
}

.hanzi-article__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hanzi-article__meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,223,145,.06);
  border:1px solid rgba(255,223,145,.12);
  color:#fff1ca;
  font-size:13px;
}

.hanzi-article__content{
  padding:26px 0 8px;
  color:#f7edd3;
  line-height:2;
  font-size:16px;
  word-break:break-word;
}

.hanzi-article__content img{
  max-width:100%;
  height:auto;
  border-radius:18px;
}

.hanzi-article__content p{
  margin:0 0 18px;
}

.hanzi-article__content h2,
.hanzi-article__content h3,
.hanzi-article__content h4{
  color:#fff7e3;
  line-height:1.45;
  margin:26px 0 14px;
}

.hanzi-article__content a{
  color:#ffd889;
}

.hanzi-article__content ul,
.hanzi-article__content ol{
  padding-left:20px;
}

.hanzi-article__pager{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.hanzi-article__pager-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:90px;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(255,223,145,.12);
  background:rgba(255,223,145,.05);
  text-decoration:none;
  transition:all .28s ease;
}

.hanzi-article__pager-item:hover{
  background:rgba(255,223,145,.1);
  transform:translateY(-2px);
}

.hanzi-article__pager-item small{
  display:block;
  margin-bottom:6px;
  color:var(--hanzi-text-soft);
}

.hanzi-article__pager-item strong{
  display:block;
  color:#fff6dd;
  line-height:1.7;
  font-size:14px;
  font-weight:700;
}

.hanzi-article__pager-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  flex:none;
}

.hanzi-article__share{
  margin-top:22px;
  padding:22px 20px;
  border-radius:22px;
  border:1px solid rgba(255,223,145,.12);
  background:rgba(255,223,145,.05);
}

.hanzi-article__share-head h3{
  margin:0;
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff5dc;
  font-size:22px;
}

.hanzi-article__share-head p{
  margin:10px 0 0;
  color:var(--hanzi-text-soft);
}

.hanzi-article__share-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.hanzi-share-btn{
  width:48px;
  height:48px;
  border:0;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  text-decoration:none;
  cursor:pointer;
  transition:transform .28s ease, box-shadow .28s ease;
  box-shadow:0 12px 24px rgba(0,0,0,.2);
}

.hanzi-share-btn:hover{
  transform:translateY(-2px);
}

.hanzi-related{
  margin-top:22px;
  padding:22px 20px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hanzi-related__title{
  margin:0 0 16px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff6de;
  font-size:24px;
}

.hanzi-related__list{
  display:grid;
  gap:14px;
}

.hanzi-related__item{
  display:grid;
  grid-template-columns:48px 108px minmax(0,1fr);
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:18px;
  background:rgba(255,223,145,.05);
  border:1px solid rgba(255,223,145,.1);
}

.hanzi-related__index{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg, #f0cd77, #ab7114);
  color:#241607;
  font-weight:900;
  font-size:18px;
}

.hanzi-related__thumb{
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:14px;
}

.hanzi-related__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hanzi-related__body h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.6;
}

.hanzi-related__body h3 a{
  color:#fff5db;
  text-decoration:none;
}

.hanzi-related__body small{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#ffd889;
}

.hanzi-show-side{
  display:grid;
  gap:18px;
}

.hanzi-hot-list{
  display:grid;
  gap:14px;
}

.hanzi-hot-item{
  display:grid;
  grid-template-columns:100px minmax(0,1fr);
  gap:12px;
  padding:12px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hanzi-hot-item__thumb{
  display:block;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:14px;
}

.hanzi-hot-item__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hanzi-hot-item__body h4{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.6;
}

.hanzi-hot-item__body h4 a{
  color:#fff5dc;
  text-decoration:none;
}

.hanzi-hot-item__body p{
  margin:0 0 8px;
  color:var(--hanzi-text-soft);
  font-size:13px;
  line-height:1.75;
}

.hanzi-hot-item__body time{
  color:#ffd889;
  font-size:12px;
  font-weight:700;
}

/* responsive */
@media (max-width: 1100px){
  .hanzi-list-layout__grid,
  .hanzi-show-layout__grid{
    grid-template-columns:1fr;
  }

  .hanzi-list-main__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .hanzi-breadcrumb__panel,
  .hanzi-side-card,
  .hanzi-list-card,
  .hanzi-article,
  .hanzi-related,
  .hanzi-hot-item{
    border-radius:22px;
  }

  .hanzi-breadcrumb__panel{
    padding:14px 16px;
  }

  .hanzi-article{
    padding:20px 16px;
  }

  .hanzi-article__meta{
    gap:10px;
  }

  .hanzi-article__pager{
    grid-template-columns:1fr;
  }

  .hanzi-related__item{
    grid-template-columns:1fr;
  }

  .hanzi-hot-item{
    grid-template-columns:88px minmax(0,1fr);
  }

  .hanzi-list-card__body,
  .hanzi-side-card,
  .hanzi-related{
    padding-left:16px;
    padding-right:16px;
  }
}