:root{
  --bg: rgba(248, 239, 228, 1);

  --text:#000000;
  --muted:#6b6b6b;
  --accent:#ae4a2b;

  --pill2:#D9E9E8;
  --pill3:#E0EADE;
  --pill4:#D3E5F0;
  --pill5:#E7E7F5;
  --pill6:#F5E5EC;
  --pill7:#D5E7F2;

  --shadow:0 8px 20px rgba(0,0,0,.08);
  --radius:22px;
  --radius2:18px;


  /* 20260512 */

  /* hero 底部黑框高度157px）加自适应 */
  --hero-bar-h: clamp(90px, 9vw, 157px);

  /* 版心宽度1400 */
  --content-w: 1400px;

  /* 间距系统 */
  --gap-section: 64px;  /* section 间 */
  --gap-inner: 24px;    /* section 内部 */
  --gap-group: 24px;    /* 标题与内容块间距（计划64，目前做对齐） */
}

/* 全局 */
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:
    system-ui,-apple-system,
    "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",
    sans-serif;
  background: var(--bg);
  color:var(--text);
}

/* === 整体画板（对应 Pixso：web 1920） === */
.page-bg{
  width: 100%;
  max-width:1920px;
  min-height: 2614px;
  margin: 0 auto;
  background: rgba(248, 239, 228, 1);
  position: relative;
  overflow: visible;
}

/* 顶部站名 */
.site-top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin: 14px auto 10px;

  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: rgba(0,0,0,1);
}

.site-link{
  text-decoration: none;
  color: inherit;
}

.site-link:hover{
  opacity: 0.6;
}

/* 键盘可见焦点 */
.site-link:focus-visible,
.mini-card a:focus-visible{
  outline: 3px solid rgba(178,59,47,.55);
  outline-offset: 3px;
  border-radius: 6px;
}

/* === HERO 图片（矩形1） === */
.hero{
  position: relative;  

  width: 100%;
  height: 470px;

  background-image: url("images/hp_hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  display:flex;
  align-items:flex-end;
  justify-content:center;

  overflow: hidden;
}

/* === 底部遮罩（矩形2） === */
.hero::after{
  content:"";
  position:absolute;

  left:0;
  bottom:0;

  width: 100%;
  height: 157px;

  background: rgba(64, 40, 11, 1);
  opacity: 0.6;

  pointer-events:none;
  z-index: 1;
}

/* === Hero文字容器：放在半透明黑框内 === */
.hero-inner{
  position: absolute;
  z-index: 2;

  width: 1400px;      /* 和主容器一致 */
  left: 260px;        /* (1920 - 1400) / 2 */

  bottom: 41px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* === Hero主标题 === */
.hero h1{
  width: 864px;
  height: 46px;

  margin: 0;

  color: rgba(255,255,255,1);
  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0;
  text-align: left;
}

/* === Hero副标题 === */
.hero p{
  width: 479px;
  height: 29px;

  margin: 6px 0 0;

  color: rgba(255,255,255,1);
  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0;
  text-align: left;
}

/* === 正文主体容器（容器26） === */
.wrap{
  width: 1400px;
  min-height: 1672px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 64px;

  padding: 0;
  margin-top: 64px;   
}
/* === 概要块（容器18） === */
.section{
  width: 1400px;
  height: auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;

  margin: 0;
}

.section-inner{
  width: 100%;
  max-width: none;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;

  gap: var(--gap-inner);
}

.group{
  width: 100%;
  display:flex;
  flex-direction: column;
  justify-content:flex-start;
  align-items: stretch;
  gap: var(--gap-group);
}

/* =========================
   概要块：容器18
========================= */
.overview-section{
  width: 1400px;
  height: 479px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;

  margin: 0;
}

/* 让 section-inner 不额外影响 Pixso 层级 */
.overview-section .section-inner{
  width: 1400px;
  height: 479px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;
}

/* =========================
   概要内容：组合21
========================= */
.overview-card{
  width: 1400px;
  height: 420px;

  position: relative;

  border: none
}

/* 左侧图片：矩形6 */
.overview-image{
  position: absolute;
  left: 0;
  top: 57px;
  z-index: 2;
}

.overview-image img{
  width: 500px;
  height: 306px;
  object-fit: cover;
  display: block;
}

/* 右侧底板：矩形7 */
.overview-bg{
  position: absolute;
  left: 170px;
  right: 0;
  top: 0;
  bottom: 0;

  z-index: 1;

  border-radius: 16px;
  background: rgba(248, 226, 203, 1);

  display: block;
}

/* =========================
   概要文字框：组合20内部
========================= */
.overview-box{
  width: 860px;
  height: auto;

  position: absolute;
  left: 330px;
  top: 48px;

  border: none;
  border-radius: 16px;
  background: transparent;

  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;

  gap: 42px; /* 中线两边留白增大 */
  padding: 0;
}

/* 左列 */
.overview-left{
  width: 320px;
  height: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 12px;
}

/* 右列 */
.overview-right{
  width: 320px;
  height: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 12px;
}

/* 中分线 */
.overview-line{
  width: 1px;

  align-self: stretch;
  height: auto;

  background: rgba(51, 27, 8, 0.35);
}

/* 统一字体 */
.overview-text-1,
.overview-text-2,
.overview-text-3,
.overview-text-4,
.overview-text-5{
  color: rgba(68, 42, 22, 1);
  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

/* 框1 & 框4 */
.overview-text-1,
.overview-text-4{
  height: auto;          /* 删除固定高度 */

  font-size: 26px;
  font-weight: 600;
  line-height: 36px;

  margin-bottom: 12px;   /* 稍微收紧 */

  display: flex;
  align-items: flex-start;
}

.overview-text-1{
  width: 320px;
}

.overview-text-4{
    width: 320px;
  white-space: nowrap;
}

/* 框2 & 框5 */
.overview-text-2,
.overview-text-5{
  width: 301px;
  height: auto;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;

  letter-spacing: 0.2px;

  margin-bottom: 12px;

  color: rgba(68, 42, 22, 1);
}

.overview-text-2{
  text-indent: 1em;
}

/* 框3 */
.overview-text-3{
  width: 301px;
  height: auto;

  font-size: 13px;
  line-height: 18px;
  text-align: right;

  margin-top: 6px;   /* 控制与框2距离 */
}


.overview-more-link{
  position: absolute;
  right: 42px;
  bottom: 30px;
  z-index: 4;

  display: inline-flex;
  align-items: center;

  color: rgba(68, 42, 22, .82);

  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(174, 74, 43, .45);

  transition:
    color .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.overview-more-link:hover{
  color: rgba(174, 74, 43, 1);
  border-color: rgba(174, 74, 43, .9);
  transform: translateX(2px);
}



/* =========================
   概要标题块：组合7
========================= */
.overview-section .group{
  width: 1400px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;
}

/* =========================
   标题栏（统一为组合7 / 容器12）
========================= */
.bar-title{
  width: 1400px;
  height: 35px;
  min-height: 35px;
  max-width: none;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 16px;

  margin: 0;
  padding-left: 24px;

  position: relative;

  color: rgba(0, 0, 0, 1);
  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0;
  text-align: left;
}

/* 标题左侧矩形4 */
.bar-title::before{
  content:"";
  position:absolute;

  left:0;
  top:0;

  width:8px;
  height:35px;

  background: rgba(174, 74, 43, 1);
  border-radius: 0;
}

/* =========================
   图标组三列容器
========================= */
.overview-icon-group{
  width: 390px;
  height: auto;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;

  gap: 18px;
}

/* 单个图标组合（组合16） */
.icon-item{
  width: 110px;
  height: 100px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* 图片框（替代组合15） */
.icon-img{
  width: 40px;
  height: 40px;

  border: none;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 6px;
}

.icon-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 文字（组合16下半部分） */
.icon-text{
  width: 110px;
  height: auto;

  color: rgba(68, 42, 22, 1);

  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;

  text-align: center;
  white-space: normal;
}

/* =========================
   大卡片
========================= */
.big-card{
  width: 1400px;
  height: 104px;
  max-width: none;
  min-height: 104px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  gap: 10px;

  padding: 30px 58px;

  border-radius: 16px;

  background: rgba(217, 233, 232, 1);

  box-shadow: none;
}

/* 大卡片文字框 */
.big-card a{
  width: 1284px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(51, 27, 8, 1);
  text-decoration: none;

  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0;
  text-align: center;
}

.big-card a:hover{
  text-decoration: underline;
}

/* 配色 */
.pill2{ background: var(--pill2); }
.pill3{ background: var(--pill3); }
.pill4{ background: var(--pill4); }
.pill5{ background: var(--pill5); }
.pill6{ background: var(--pill6); }
.pill7{ background: var(--pill7); }

/* mini-card 配色 */
.mini-card.pill2{ background: var(--pill2); }
.mini-card.pill3{ background: var(--pill3); }
.mini-card.pill4{ background: var(--pill4); }
.mini-card.pill5{ background: var(--pill5); }
.mini-card.pill6{ background: var(--pill6); }
.mini-card.pill7{ background: var(--pill7); }


/* =========================
   小卡片外层容器（横向自动）
========================= */
.grid{
  width: 1400px;
  height: auto;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  justify-content: flex-start;
  align-items: flex-start;

  gap: 16px;
}

/* =========================
   小卡片：mini-card
========================= */
.mini-card{
  width: fit-content;
  min-width: 677px;
  height: 104px;

  flex: 0 0 auto;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  gap: 16px;

  padding: 0 58px;

  border-radius: 18px;
  box-shadow: none;

  font-weight: 500;
  font-size: 24px;
  line-height: 35px;

  white-space: nowrap;
  overflow-wrap: normal;
}

/* 小卡片文字框 */
.mini-card a{
  width: auto;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(0, 0, 0, 1);
  text-decoration: none;

  font-family: "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0;
  text-align: center;

  white-space: nowrap;
}

.mini-card a:hover{
  text-decoration: underline;
}

/* =========================
   页脚（矩形5）
========================= */
.footer{
  width: 100%;
  height: 240px;

  margin-top: 90px;

  background: rgba(98, 60, 14, 1);

  color: rgba(255,255,255,0.92);
}

.footer-inner{
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  padding: 28px 18px;

  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand{
  min-width: 260px;
  flex: 1 1 360px;
}

.footer-brand .name{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 10px;
}

.footer-brand .desc{
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.footer-brand .desc a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.footer-brand .desc a:hover{
  text-decoration: underline;
}

/* 小屏适配 */
@media (max-width: 640px){
  /* 小屏让书籍卡片更容易完整显示 */
  .mini-card{
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    height: auto;      /* 小屏允许内容撑开，避免被固定高度裁切 */
    min-height: 208px;
  }
  .mini-card a{
    padding: 24px 0;   /* 内容上下空间 */
  }
}

/* 卡片过渡效果（新增） */
.big-card,
.mini-card{
  transition: all 0.2s ease;
}

.big-card:hover,
.mini-card:hover{
  transform: translateY(-4px); /* 上浮动画 */

  box-shadow: 0px 8px 4px 0px rgba(252, 224, 191, 1);
  filter: brightness(0.95);
}

/* 点击效果 */
.big-card:active,
.mini-card:active{
  box-shadow: 0px 8px 24px 0px rgba(252, 224, 191, 1);
  filter: brightness(0.9);
}

.big-card a,
.mini-card a{
  width: 100%;
  height: 100%;
  display: flex;
}

/* 卡片内链接去除所有状态下划线 */
.big-card a,
.mini-card a{
  text-decoration: none;
}

.big-card a:hover,
.mini-card a:hover,
.big-card a:active,
.mini-card a:active,
.big-card a:focus,
.mini-card a:focus{
  text-decoration: none;
}

/* =========================
   Mobile / tablet responsive patch
   - Desktop layout above 900px is kept unchanged.
   - This block only overrides fixed Pixso sizes on smaller screens.
========================= */
@media (max-width: 900px){
  :root{
    --content-w: 100%;
    --hero-bar-h: clamp(118px, 34vw, 157px);
  }

  body{
    overflow-x: hidden;
  }

  .page-bg{
    width: 100%;
    max-width: none;
    min-height: auto;
    overflow-x: hidden;
  }

  .site-top{
    gap: 10px;
    padding: 0 18px;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.35;
    flex-wrap: wrap;
    text-align: center;
  }

  .hero{
    height: clamp(300px, 72vw, 470px);
    background-position: center center;
  }

  .hero::after{
    height: var(--hero-bar-h);
  }

  .hero-inner{
    width: auto;
    left: 18px;
    right: 18px;
    bottom: clamp(22px, 7vw, 41px);
  }

  .hero h1,
  .hero p{
    width: 100%;
    height: auto;
    white-space: normal;
  }

  .hero h1{
    font-size: clamp(22px, 7vw, 32px);
    line-height: 1.35;
  }

  .hero p{
    font-size: clamp(15px, 4.2vw, 20px);
    line-height: 1.55;
    margin-top: 8px;
  }

  .wrap,
  .section,
  .section-inner,
  .overview-section,
  .overview-section .section-inner,
  .overview-section .group,
  .bar-title,
  .grid,
  .big-card{
    width: 100%;
  }

  .wrap{
    min-height: auto;
    gap: 48px;
    margin-top: 42px;
    padding: 0 18px;
    align-items: stretch;
  }

  .section,
  .section-inner,
  .overview-section,
  .overview-section .section-inner{
    height: auto;
    align-items: stretch;
  }

  .bar-title{
    height: auto;
    min-height: 32px;
    font-size: clamp(20px, 5.4vw, 24px);
    line-height: 1.45;
    padding-left: 20px;
  }

  .bar-title::before{
    height: 100%;
    min-height: 32px;
  }

  /* Overview: change the absolute desktop composition into a safe stacked layout */
  .overview-card{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    background: rgba(248, 226, 203, 1);
    overflow: hidden;
  }

  .overview-bg{
    display: none;
  }

  .overview-image,
  .overview-box{
    position: static;
  }

  .overview-image{
    width: 100%;
    z-index: auto;
  }

  .overview-image img{
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    object-position: center;
  }

  .overview-box{
    width: 100%;
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
  }

  .overview-left,
  .overview-right,
  .overview-text-1,
  .overview-text-2,
  .overview-text-3,
  .overview-text-4,
  .overview-text-5,
  .overview-icon-group{
    width: 100%;
  }

  .overview-text-1,
  .overview-text-4{
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.45;
    margin-bottom: 4px;
    white-space: normal;
  }

  .overview-text-2,
  .overview-text-5{
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 8px;
  }

  .overview-text-3{
    font-size: 12px;
    line-height: 1.6;
  }

  .overview-line{
    width: 100%;
    height: 1px;
    opacity: .35;
  }

  .overview-icon-group{
    justify-content: space-between;
    gap: 10px;
  }

  .icon-item{
    width: 31%;
    height: auto;
  }

  .icon-text{
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }

  .grid{
    gap: 14px;
  }

  .big-card,
  .mini-card{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 86px;
    padding: 22px 20px;
  }

  .big-card a,
  .mini-card a{
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    font-size: clamp(17px, 4.6vw, 22px);
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .mini-card{
    flex: 1 1 100%;
    white-space: normal;
  }

  .footer{
    height: auto;
    margin-top: 64px;
  }

  .footer-inner{
    padding: 28px 18px 20px;
    gap: 22px;
  }
}

@media (max-width: 480px){
  .wrap{
    padding: 0 14px;
    gap: 42px;
  }

  .hero{
    height: 320px;
    /* For narrow phones, keep the main visual from being cropped too aggressively. */
    background-size: cover;
    background-position: center center;
  }

  .hero-inner{
    left: 14px;
    right: 14px;
  }

  .overview-image img{
    max-height: 220px;
  }

  .overview-box{
    padding: 22px 16px 26px;
  }

  .overview-icon-group{
    flex-wrap: wrap;
    justify-content: center;
  }

  .icon-item{
    width: 30%;
    min-width: 86px;
  }

  .big-card,
  .mini-card{
    border-radius: 14px;
    padding: 20px 16px;
  }
}


/* =========================
   Small laptop width guard
   小屏电脑主体宽度限制
========================= */
@media (max-width: 1500px) and (min-width: 901px){

  :root{
    --content-w: calc(100vw - 96px);
  }

  body{
    overflow-x: hidden;
  }

  .wrap{
    width: var(--content-w);
  }

  .section,
  .section-inner,
  .group,
  .overview-section,
  .overview-section .section-inner,
  .overview-section .group,
  .overview-card,
  .bar-title,
  .grid,
  .big-card{
    width: 100%;
  }

  .hero-inner{
    width: var(--content-w);
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =========================
   Mini-card fill row patch
   小卡片自动补齐每行余白
========================= */

.grid{
  width: 100%;
  max-width: 100%;

  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mini-card{
  flex: 1 1 360px;

  min-width: 260px;
  max-width: 100%;

  width: auto;

  white-space: normal;
}

.mini-card a{
  width: 100%;
  max-width: 100%;

  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}





/* =========================
   Overview responsive strategy
   901px以上：整体等比缩放
   900px以下：向下排列
========================= */

/* 小屏电脑：按固定比例分段缩放 */
@media (max-width: 1500px) and (min-width: 1351px){
  .overview-scale-wrap{
    width: 100%;
    height: 391px;
    overflow: hidden;
  }

  .overview-scale-wrap .overview-card{
    width: 1400px;
    height: 420px;
    transform: scale(0.93);
    transform-origin: top left;
  }
}

/* =========================
   Overview middle layout
   761px〜1350px：图片在上，文字两栏在下
========================= */
@media (max-width: 1350px) and (min-width: 761px){

  .overview-section,
  .overview-section .section-inner{
    height: auto;
  }

  .overview-scale-wrap{
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .overview-scale-wrap .overview-card{
    width: 100%;
    height: auto;

    transform: none;
    position: relative;

    display: flex;
    flex-direction: column;

    background: rgba(248, 226, 203, 1);
    border-radius: 16px;
    overflow: hidden;
  }

  .overview-image{
    position: static;
    width: 100%;
  }

  .overview-image img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
  }

  .overview-bg{
    position: static;
    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    background: transparent;
    border-radius: 0;
  }

  .overview-box{
  position: static;

  width: 100%;
  padding: 32px 36px 32px;

  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;

  gap: 36px;
}

  .overview-left,
  .overview-right{
    width: calc((100% - 37px) / 2);
    min-width: 0;
  }

  .overview-line{
  width: 1px;

  height: auto;
  align-self: stretch;

  flex: 0 0 1px;
  opacity: .5;
}

  .overview-text-1,
  .overview-text-4{
    width: 100%;
    font-size: 24px;
    line-height: 1.45;
    white-space: normal;
  }

  .overview-text-2,
  .overview-text-3,
  .overview-text-5{
    width: 100%;
  }

  .overview-icon-group{
    width: 100%;
    justify-content: space-between;
  }

  .overview-more-link{
    position: static;
    align-self: flex-end;
    margin: 0 36px 32px 0;
  }


  .icon-item{
    width: 31%;
  }

  .icon-text{
    width: 100%;
  }
}



/* 手机 / 窄屏：向下排列 */
@media (max-width: 760px){
  .overview-scale-wrap{
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .overview-scale-wrap .overview-card{
    width: 100%;
    height: auto;
    transform: none;
  }
}



/* 修复：概要文字层显示在底板上方 */
.overview-card{
  position: relative;
}

.overview-bg{
  z-index: 1;
}

.overview-image{
  z-index: 2;
}

.overview-box{
  z-index: 3;
}


/* =========================
   Mobile overview fix
   手机端概要文字向下排列
========================= */
@media (max-width: 760px){

  .overview-bg{
    display: flex;
    flex-direction: column;
    position: static;
    width: 100%;
    height: auto;
    background: transparent;
  }

  .overview-box{
    position: static;
    width: 100%;
    padding: 24px 20px 18px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 24px;
  }

  .overview-more-link{
    position: static;
    align-self: flex-end;
    margin: 0 20px 24px 0;
  }
}