
  :root{
    /* Palette */
    --sage:#425D5F;
    --sage-200:#BACACB;
    --cream:#F8F7F2;
    --butter:#FDE7A2;
    --amber:#FAA943;

    --ink:#1b1f23;

    /* Layout */
    --max: 1040px;
    --radius: 18px;
    --line: rgba(66,93,95,.18);
    --shadow: 0 14px 34px rgba(0,0,0,.06);

    /* TYPE (mobile first) */
    --text: 18px;          /* body */
    --text-lg: 19px;       /* lead */
    --h1: clamp(34px, 6vw, 52px);
    --h2: clamp(22px, 3.2vw, 30px);
    --h3: 18px;
  }

  /* 1) Fix VSCode preview white borders (browser default margin) */
html, body{
  margin: 0;
  padding: 0;
  background: var(--cream);
}

/* 2) Keep your About page styles scoped (won't blow up site nav) */
#about-scope{ background: transparent; } /* background handled by body in preview */


  /* Desktop: body >=20px */
  @media (min-width: 821px){
    :root{
      --text: 20px;
      --text-lg: 21px;
      --h3: 19px;
      --h1: clamp(38px, 4.2vw, 58px);
      --h2: clamp(24px, 2.4vw, 32px);
    }
  }

  /* ✅ Scope isolation: affects About only */
  #about-scope, #about-scope *{ box-sizing: border-box; }

  #about-scope{
    background: var(--cream);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
                 Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Big breathing space */
  #about-scope .wrap{
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(26px, 5vw, 70px) clamp(18px, 4vw, 46px);
  }

  /* HERO */
  #about-scope .hero{
    position: relative;
    padding: clamp(16px, 2vw, 20px) 0 clamp(24px, 4vw, 40px);
  }

  #about-scope .kicker{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 850  !important;
    margin: 0 0 16px 0;
  }
  #about-scope .kicker::before{
    content:"";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber), rgba(250,169,67,0));
  }

  #about-scope h1{
    margin:0 0 16px 0;
    font-size: var(--h1);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--sage);
    max-width: 20ch;
  }

  #about-scope .lead{
    margin:0;
    max-width: 78ch;
    font-size: var(--text-lg);
    line-height: 1.95;
    color: rgba(27,31,35,.82);
  }
  #about-scope .lead .hl{
    color: var(--sage);
    font-weight: 900 !important;
  }

  /* CTA */
  #about-scope .cta{
    margin-top: 20px;
    display:flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items:center;
  }

  #about-scope .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 900 !important;
    user-select: none;
    transition: transform .08s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--sage);
  }
  @media (min-width: 821px){
    #about-scope .btn{ font-size: 18px; }
  }

  #about-scope .btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0,0,0,.08);
  }

  #about-scope .btn-primary{
    border: none;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), rgba(250,169,67,.78));
    box-shadow: 0 12px 28px rgba(250,169,67,.22);
  }
  #about-scope .btn-primary:hover{
    filter: brightness(1.02);
    box-shadow: 0 14px 30px rgba(250,169,67,.26);
  }

  #about-scope .micro{
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(27,31,35,.62);
    max-width: 80ch;
  }

  /* Warm guide band (yellow + orange only) */
  #about-scope .guide-band{
    margin-top: clamp(24px, 4vw, 44px);
    border-radius: var(--radius);
    padding: clamp(18px, 3vw, 24px);
    background:
      radial-gradient(900px 260px at 15% 10%, rgba(253,231,162,.72), transparent 60%),
      radial-gradient(900px 300px at 85% 40%, rgba(250,169,67,.35), transparent 62%),
      linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
    border: 1px solid rgba(250,169,67,.22);
  }

  #about-scope .guide-grid{
    display:grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 860px){
    #about-scope .guide-grid{ grid-template-columns: repeat(3, 1fr); }
  }

  #about-scope .guide-item{
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(66,93,95,.14);
    background: rgba(248,247,242,.72);
  }
  #about-scope .guide-item h3{
    margin:0 0 10px 0;
    font-size: var(--h3);
    color: var(--sage);
    letter-spacing: -0.01em;
  }
  #about-scope .guide-item p{
    margin:0;
    font-size: var(--text);
    line-height: 1.95;
    color: rgba(27,31,35,.76);
    max-width: 85ch;
  }

  /* Sections + rules */
  #about-scope .section{
    margin-top: clamp(32px, 5vw, 62px);
    padding-top: clamp(10px, 1.6vw, 14px);
  }

  #about-scope .rule{
    height: 1px;
    background: rgba(66,93,95,.14);
    margin: clamp(20px, 3vw, 30px) 0;
  }

  #about-scope h2{
    margin:0 0 14px 0;
    font-size: var(--h2);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--sage);
  }

  #about-scope p{
    margin:0 0 16px 0;
    font-size: var(--text);
    line-height: 2.0;
    color: rgba(27,31,35,.82);
    max-width: 85ch;
  }

  #about-scope ul{
    margin: 14px 0 0 0;
    padding: 0 0 0 22px;
    max-width: 90ch;
  }
  #about-scope li{
    margin: 12px 0;
    font-size: var(--text);
    line-height: 2.0;
    color: rgba(27,31,35,.80);
  }
  #about-scope li strong{
    color: var(--sage);
    font-weight: 900 !important;
  }

  #about-scope .note{
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px dashed rgba(66,93,95,.26);
    background: rgba(255,255,255,.50);
    color: rgba(27,31,35,.72);
    font-size: 15px;
    line-height: 1.9;
    max-width: 90ch;
  }
  #about-scope .note strong{ color: var(--sage); }

  /* Mobile */
  @media (max-width: 420px){
    #about-scope h1{ max-width: 24ch; }
    #about-scope .btn{ width: 100%; }
    #about-scope ul{ padding-left: 20px; }
  }


/* UeeShop底部email subscribe去圆角 */
    body .ly_footer_81#footer dl dd .default_newsletter_form input.text {
    border-radius:0px;
    }
    body .ly_footer_81 .default_newsletter_style .default_newsletter_form .subscribe {
    border-radius:0px;
    }
    .editor_txt {
        background: transparent !important ;
        padding: 0 !important ;
    }

@media (max-width: 680px){
  .scrollHint{ display:block; }
  
  /*去除UeeShop手机端左右padding*/
  .container_screen {    
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .article_content_box .editor_txt {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
