/* ===================================================================
   gaokao.html（高考页）—— 只定义中间内容区
   头部 / 底部 / banner 复用 css/common.css + css/tutorinfo.css
   卡片基础样式复用 css/zhongkao.css
   =================================================================== */

/* PC banner：不用图片，纯背景色（移动端用 images/application/gao/gaobannerm.jpg）
   背景 0-80% 为 #F3EFFC，80%-100% 渐变到页面底色 #F6F5FA */
.gaohero {
  background: linear-gradient(180deg, #f3effc 80%, #f6f5fa 100%);
}
/* PC 端首屏：内容图限宽 650，副标题绝对定位（不占位，长文案不影响布局） */
@media (min-width: 769px) {
  .gaohero .tbhero-pic {
    width: auto;
    max-width: 650px;
  }
  .gaohero .tbhero-box {
    position: relative;
  }
  .gaohero .tbhero-title {
    margin-bottom: 80px;
  }
  .gaohero .tbhero-sub {
    position: absolute;
    width: 500px;
  }
}

@media (max-width: 768px) {
  /* 移动端文案区上移量（本页专用，覆盖 tutorinfo.css 的 -120px） */
  .gaohero .tbhero-wrap {
    margin-top: -154px;
  }
}
