html, body { margin:0; padding:0; }
main { display:block; margin:0; padding:0; background:#fff; }
:root{
  --bg:#ffffff;
  --text:#1a1a1a;
  --muted:#6b6f76;
  --line:#e9e9e9;

  --accent:#ED7C16;      /* 你稿子里的橙色短线 */
  --footer:#286795;      /* 底部蓝色 */
  --max:1120px;

  --radius:8px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,
    "PingFang SC","Microsoft YaHei",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max),calc(100% - 40px));margin:0 auto}

/* Header */
/* =========================
   Header / Nav (YQH)
   ========================= */

.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 14px;
}

.brand{ display:flex; align-items:center; }
.brand img{ height: 32px; display:block; }

/* PC Nav */
.nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: .2px;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}

.nav a{ padding: 8px 2px; opacity: .9; text-decoration:none; color: var(--text); }
.nav a:hover{ opacity: 1; }
.nav a.active{
  opacity: 1;
  border-bottom: 2px solid #286795;
}

/* 右侧：Lang 紧挨 Burger */
.header__right{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  z-index: 130; /* 确保不被 nav 挤压时覆盖问题 */
}

/* =========================
   Lang (hover dropdown) - Stable
   ========================= */
.lang-global{
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0; /* hover 容错区 */
  z-index: 160;   /* 确保下拉在 burger 之上 */
}

.lang-trigger{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  opacity: .65;
  padding: 6px 4px;
  transition: opacity .2s ease;
}
.lang-trigger:hover{ opacity: 1; }

.lang-icon{ font-size: 14px; line-height: 1; }
.lang-current{ font-size: 13px; }

/* dropdown */
.lang-list{
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;

  min-width: 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 0;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);

  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}

/* 透明桥（避免移过去选不中） */
.lang-list::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:-8px;
  height:8px;
}

/* hover 展开 */
.lang-global:hover .lang-list{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-list li a{
  display:block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  opacity: .75;
  transition: background .15s ease, opacity .15s ease, color .15s ease;
  white-space: nowrap;
  text-decoration:none;
}

.lang-list li a:hover{
  opacity: 1;
  background: rgba(40,103,149,.06);
}

.lang-list li a.active{
  opacity: 1;
  color: #286795;
  font-weight: 600;
}

/* =========================
   Burger + Mobile Drawer
   ========================= */

.burger{
  display: none; /* PC 默认隐藏 */
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 170; /* 低于 lang dropdown 但高于 header */
}

/* Drawer 容器 */
.nav-drawer{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;

  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);

  /* 默认关闭 */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 120;
}

/* 仅窄屏启用 drawer 占位（PC 不显示也不占） */
@media (max-width: 1024px){
  .nav{ display:none; }
  .burger{ display:inline-flex; }
}

/* 打开状态（由 JS 给 header 加 is-open） */
.header.is-open .nav-drawer{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-drawer__inner{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-drawer__inner a{
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--text);
  opacity: .85;
  text-decoration:none;
}

.nav-drawer__inner a:hover{
  opacity: 1;
  background: rgba(40,103,149,.06);
}

.nav-drawer__inner a.active{
  opacity: 1;
  color: #286795;
  font-weight: 600;
}

/* 概览文字 */
.overviewText{
  color: var(--muted);
  line-height: 1.95;
  font-size: 16px;
}
.overviewText p{ margin: 0 0 14px; }


/* ========== 通用页 Banner（单图平铺） ========== */
.page-banner{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0b2233; /* 图片未加载时的兜底底色 */
}

/* 高度自适应：桌面更高，笔记本适中，移动端更紧凑 */
.page-banner--page{
  height: clamp(260px, 34vw, 520px);
  min-height: 300px;
}

/* 13寸 2560x1600 这类屏幕：banner 不要太矮 */
@media (min-width: 1400px){
  .page-banner--page{
    height: clamp(340px, 28vw, 560px);
  }
}

/* 移动端 */
@media (max-width: 768px){
  .page-banner--page{
    height: 320px;
    min-height: 320px;
  }
}

.page-banner__media{
  position: absolute;
  inset: 0;
}

.page-banner__media img{
  width: 100%;
  height: 100%;

  /* 核心：全宽铺满、不变形，允许裁切 */
  object-fit: cover;
  object-position: center;

  display: block;
}

/* overlay：让文字更清晰（你图里就是这种效果） */
.page-banner__overlay{
  position: absolute;
  inset: 0;

  /* 左侧略深、右侧更淡：更像“办公室banner”常见处理 */
  background: linear-gradient(
    90deg,
    rgba(11,34,51,.55) 0%,
    rgba(11,34,51,.25) 45%,
    rgba(11,34,51,.12) 100%
  );
}

/* 内容区 */
.page-banner__content{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* 文字位置：居中偏左，接近设计稿 */
  padding-left: clamp(16px, 6vw, 72px);
  padding-right: 16px;
}

.page-banner__title{
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;

  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1.15;

  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.page-banner__sub{
  margin: 14px auto 0;
  color: rgba(255,255,255,.92);
  font-weight: 500;

  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.55;

  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ======= 兼容兜底：不支持 object-fit 的老浏览器（极少见） ======= */
@supports not (object-fit: cover){
  .page-banner__media{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .page-banner__media img{ display: none; }
}


/* 标题样式：左对齐的橙色短线 */
/* 标题块：左侧标题 + 橙色短线（与稿子一致） */
.titleBlock{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-bottom: 18px;
}
.titleBlock h2{
  margin:0;
  font-size: 28px;
  font-weight: 800;
}
.titleBlock h2 small{
  margin:0;
  font-size: 18px;
  font-weight: 500;
  color: #666;
}
.titleBlock p{
  font-size: 16px;
  color: #666;
}
.titleBlock__line{
  width: 34px;
  height: 2px;
  background: var(--accent);
  display:block;
}

/* 表单 */
.section--form{ padding-top: 34px; padding-bottom: 54px; }
.formIntro{
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.8;
}
.miniForm{
  width: 260px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.miniForm input{
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  outline:none;
}
.miniForm button{
  width: 70px;
  height: 32px;
  border: 1px solid #333;
  background:#fff;
  cursor:pointer;
}
.miniForm button:hover{ background:#f5f5f5; }
/* 第一段理念：左文右角落“引号”装饰（仿稿子的三段弧线） */
.idea{
  position:relative;
  min-height: 180px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 18px;
}
.idea__text{
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}
.idea__text p{ margin: 0 0 14px; }

/* ✅ about-deco：固定在 grid 底部行 */
.about-deco{
  float: right;
  width: 180px;
  height: 60px;
  background: url("../img/deco-mark.svg") no-repeat center/contain;
  justify-self: end;   /* ✅右对齐 */
  opacity: .9;
}

/* Section title */
.section{padding:52px 0}
.section__title{
  font-size:26px;
  margin:0 0 18px;
  text-align:center;
}
.section__line{
  width:40px;height:2px;background:var(--accent);
  margin:10px auto 0;
}

/* Two-col (文字+图) */
.twocol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:36px;
  align-items:center;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  overflow:hidden;
}

/* business icons */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.feature{
  padding:18px 14px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  text-align:center;
  background:#f5f5f5;
}
.feature img{height:34px;margin:0 auto 10px;opacity:.75}
.feature h3{margin:0;font-size:14px}
.feature p{margin:6px 0 0;font-size:12px;color:var(--muted)}

/* brand blocks */
.brand2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.brand2__item{
  position:relative;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:#eee;
  min-height:260px;
}
.brand2__item img.bg{width:100%;height:100%;object-fit:cover}
.brand2__badge{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:6px;
  padding:12px;
  text-align:center;
  font-size:12px;
  color: #666;
}
.brandwall{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:14px;
}
.brandlogo{
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  padding:14px;
  text-align:center;
}
.brandlogo img{height:38px;margin:0 auto 6px;object-fit:contain}
.brandlogo div{font-size:12px;color:var(--muted)}

/* 品牌墙整体 */
.brand-wall{
  padding: 40px 40px;
}

.brand-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px; /* 行间距 / 列间距 */
}

/* 单个品牌块 */
.brand-item{
  text-align: center;
  cursor: pointer;
}

/* Logo 外框 */
.brand-logo{
  width: 100%;
  height: 110px;
  border: 1px solid #d9d9d9;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

/* logo 图片 */
.brand-logo img{
  max-width: 160px;
  max-height: 60px;
  object-fit: contain;
  transition: all .25s ease;
}

/* 品牌文字 */
.brand-text{
  margin-top: 10px;
  font-size: 14px;
  color: #888;
  transition: color .25s ease;
}

/* hover 效果（你要求的：边框+文字加深） */
.brand-item:hover .brand-logo{
  border-color: #b5b5b5; /* 深一度灰色 */
}

.brand-item:hover .brand-text{
  color: #555; /* 文字略微加深 */
}
.brand-item:hover .brand-logo img{
  transform: scale(1.03);
}


/* 响应式 */
@media (max-width: 1024px){
  .brand-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px){
  .brand-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-logo{
    height: 90px;
  }
}


/* contact strip */
/* =========================
   合作与联系（CTA）版块（合并版）
   - 标题字号与其他模块一致：32px
   - 正文字号：16px
   - 按钮字号：20px
   ========================= */
.cta{
  position: relative;
  padding: 50px 0;
  margin: 40px 0 0 0;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* 灰白蒙层（更接近设计稿的淡灰） */
.cta__mask{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.35);
}

/* 内容层 */
.cta__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 620px;   /* 左标题 / 右表单 */
  column-gap: 60px;
  align-items: start;
}

/* 左侧标题 */
.cta__title{
  padding-top: 22px; /* 让标题下沉一点贴稿 */
  text-align: center;
}

.cta__title h2{
  margin: auto 0;
  font-size: 32px;   /* ✅ 与其他版块标题一致 */
  font-weight: 800;
  letter-spacing: .5px;
  color: #1b1b1b;
}

/* 标题下橙线（与其它标题短线一致） */
.cta__line{
  display: block;
  width: 40px;
  height: 3px;
  margin: 12px auto 0 auto;
  background: var(--accent, #f07c00);
}

/* 右侧表单（位置靠右上） */
.cta__form{
  justify-self: end;
  width: 620px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 6px;
}

.cta__form input{
  height: 46px;
  padding: 0 18px;
  font-size: 16px; /* ✅ 与正文一致 */
  color: #222;
  border: 1px solid #bbb;
  background:#fff;
  border-radius: 2px;
  outline: none;
}

.cta__form input::placeholder{
  color: #8f8f8f;
}

/* 按钮（白底黑边） */
.cta__form button{
  width: 120px;
  height: 46px;
  font-size: 20px; /* ✅ 与卡片标题/按钮一致 */
  font-weight: 500;
  border: 1px solid #bbb;
  background: rgba(255,255,255,.92);
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease;
}

.cta__form button:hover{
  background: rgba(255,255,255,1);
}

/* ========== 响应式 ========== */
@media (max-width: 1100px){
  .cta__inner{
    grid-template-columns: 1fr 520px;
    column-gap: 36px;
  }
  .cta__form{ width: 520px; }
}

@media (max-width: 820px){
  .cta{
    padding: 28px 0 34px;
    min-height: auto;
  }

  .cta__inner{
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .cta__title{
    padding-top: 0;
  }

  .cta__form{
    justify-self: start;
    width: 100%;
    gap: 14px;
  }

  .cta__title h2{
    font-size: 28px; /* 手机稍小，仍保持体系 */
  }

  .cta__line{
    width: 36px;
    height: 3px;
    margin-top: 10px;
  }

  .cta__form input{
    height: 50px;
    font-size: 16px;
  }

  .cta__form button{
    width: 110px;
    height: 42px;
    font-size: 18px;
  }
}




/* =========================
   YQH Footer (ONLY)
   ========================= */
.yqh-foot{
  margin-top: 0;
}

/* 顶部蓝色块 */
.yqh-foot__top{
  background: #286795; /* 截图主蓝 */
}

.yqh-foot__inner{
  max-width: 1200px;   /* 不影响全局 container */
  margin: 0 auto;
  padding: 56px 28px;  /* 还原截图的上/下留白 */
  display: grid;
  grid-template-columns: 420px 1fr 420px; /* 左logo 中导航 右联系 */
  align-items: center;
  column-gap: 120px;
}

/* 左侧 logo：按截图偏大、偏扁 */
.yqh-foot__logo img{
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

/* 中间导航：一列竖排，字号/行距类似截图 */
.yqh-foot__nav{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  min-width: 160px;       /* 防止标题折行 */
  white-space: nowrap;    /* 禁止文字自动换行 */
}

.yqh-foot__nav-title{
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 6px;
  white-space: nowrap;
}

.yqh-foot__nav a{
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  line-height: 1.2;
}

.yqh-foot__nav a:hover{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 右侧联系方式 */
.yqh-foot__contact{
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.92);
}

.yqh-foot__row{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

/* icon 基础风格 */
/* icon 容器 */
.yqh-foot__ico{
  display: flex;           /* 解决 svg baseline 问题 */
  align-items: center;
  justify-content: center;
  width: 22px;             /* 固定宽度，保证对齐 */
  height: 22px;
}
.yqh-foot__ico svg,
.yqh-foot__social-btn svg{
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,.85);
  transition: all .25s ease;
  display: block;          /* 非 inline，避免基线问题 */

}

/* 电话/邮箱 icon 对齐 */
.yqh-foot__contact li{
  display: flex;
  align-items: center;
  gap: 12px;
}
/* 文本 */
.yqh-foot__text{
  font-size: 16px;
  line-height: 1;          /* 防止文字撑高 */
  color: #fff;
  font-weight: 500;
}

/* 社媒按钮高级风格 */
.yqh-foot__social-btn{
  width: 52px;
  height: 52px;
  float: left;
  margin:20px 12px  0 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  backdrop-filter: blur(4px);
}

/* hover 高端官网效果 */
.yqh-foot__social-btn:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}

.yqh-foot__social-btn:hover svg{
  color: #fff;
}


/* 底部白色版权块（截图是白底、深灰字） */
.yqh-foot__bottom{
  padding: 30px 0;
  background: #F2F2F2; /* 贴近截图浅灰白底 */
}

.yqh-foot__copy{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: #888;
}

/* 响应式：窄屏自动堆叠，但仍只影响 foot */
@media (max-width: 980px){
  .yqh-foot__inner{
    grid-template-columns: 1fr;
    row-gap: 28px;
    column-gap: 0;
    justify-items: center;   /* ✅整体居中 */
    text-align: center;       /* ✅文字居中 */
  }

  /* logo 居中 */
  .yqh-foot__logo{
    justify-self: center;
  }
  .yqh-foot__logo img{
    width: 160px; /* 可微调 */
  }

  /* 中间导航居中 */
  .yqh-foot__nav{
    align-items: center;   /* ✅导航居中 */
  }

  /* 联系方式居中 */
  .yqh-foot__contact{
    justify-self: center;
    align-items: center;
  }

  /* 电话/邮箱行居中 */
  .yqh-foot__row{
    justify-content: center;
  }

  /* 社媒按钮居中 */
  .yqh-foot__social{
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .yqh-foot__social-btn{
    margin: 16px 0 0 0;  /* 去掉 float 影响 */
    float: none;
  }
}




/* Responsive */
@media (max-width: 980px){
  .twocol{grid-template-columns:1fr}
  .feature-grid{grid-template-columns: repeat(2,1fr)}
  .brand2{grid-template-columns:1fr}
  .brandwall{grid-template-columns: repeat(3,1fr)}
  .footer__inner{grid-template-columns:1fr}
  .contact-strip__inner{grid-template-columns:1fr}
}

@media (max-width: 820px){
  .nav{display:none; position:fixed; left:20px; right:20px; top:74px; background:#fff;
    border:1px solid var(--line); border-radius:10px; padding:12px; flex-direction:column; gap:8px;}
  .nav.is-open{display:flex}
  .burger{display:inline-flex}
  .hero{height:380px}
  .hero h1{font-size:26px}
  .brandwall{grid-template-columns: repeat(2,1fr)}
}

/* =========================
   YQH 官网字体体系（统一版）
   ========================= */

/* 1️⃣ 全局正文 */
body{
  font-size: 16px;      /* ✅ 国际官网标准 */
  line-height: 1.75;
  letter-spacing: .2px;
}

/* 2️⃣ Hero 标题（首页最大视觉层级） */
.yqh-hero__content h1{
  font-size: clamp(36px, 3.8vw, 56px); /* 更高级 */
  font-weight: 800;
  letter-spacing: 2px;
}

.yqh-hero__content p{
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  opacity: .95;
}

/* 3️⃣ 模块标题（统一 H2） */
.section__title{
  margin: 0 0 40px 0;
  font-size: 48px;  /* ✅ 原来 26px → 提升官网感 */
  font-weight: 800;
  letter-spacing: .5px;
}

/* 4️⃣ about 模块文字 */
.about-text h2{
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p{
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}

/* 5️⃣ 服务模块（service） */
.service-item h3{
  font-size: 20px; /* ✅ 保留，但更标准 */
  font-weight: 700;
}

.service-item p{
  font-size: 15px; /* 原 14px → 提升可读性 */
  line-height: 1.85;
}

/* 6️⃣ 品牌墙文字 */
.brand-text{
  font-size: 15px;
}

/* 7️⃣ CTA / 联系模块 */
.cta__title h2{
  font-size: 32px; /* 已经符合标准 */
}

.cta__form input{
  font-size: 16px;
}

.cta__form button{
  font-size: 18px;
}

/* 8️⃣ Footer */
.footer{
  font-size: 14px;
}

.footer__small{
  font-size: 12px;
}

/* 9️⃣ 响应式（手机端字号体系） */
@media (max-width: 768px){
  body{ font-size: 15px; }

  .section__title{
    font-size: 26px;
  }

  .yqh-hero__content h1{
    font-size: 30px;
  }

  .yqh-hero__content p{
    font-size: 15px;
  }

  .about-text h2{
    font-size: 24px;
  }
}
