:root {
      --primary: #2563eb;
      --primary-2: #0ea5e9;
      --text: #111827;
      --sub: #66758f;
      --muted: #8a98ad;
      --line: #e7edf5;
      --line-soft: #edf2f8;
      --bg: #f5f8fc;
      --card: #ffffff;
      --shadow: 0 16px 38px rgba(20, 48, 96, .07);
      --shadow-soft: 0 10px 24px rgba(20, 48, 96, .05);
      --container: 1200px;
    }

    * { box-sizing: border-box; }

    html,
    body {
      margin: 0;
      padding: 0;
      min-width: 1200px;
      background: #fff;
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    }

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

    /* 第一屏：背景图 + 标题 */
    .qcy-about-hero {
      position: relative;
      height: 360px;
      overflow: hidden;
      border-bottom: 1px solid var(--line-soft);
      background-image: url('/static/images/gywm.png');
      background-repeat: no-repeat;
      background-position: center; 
      background-size: cover;
    }

    .qcy-about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 72% 42%, rgba(37, 99, 235, .08), transparent 28%),
        radial-gradient(circle at 82% 10%, rgba(14, 165, 233, .06), transparent 22%);
      pointer-events: none;
    }

    .qcy-about-hero .qcy-container {
      height: 100%;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
    }

    .qcy-hero-title {
      margin: 0;
      font-size: 42px;
      line-height: 1.3;
      font-weight: 900;
      letter-spacing: -1px;
      color: #101a34;
    }

    .qcy-hero-subtitle {
      margin: 12px 0 0;
      font-size: 19px;
      line-height: 1.6;
      color: #66758f;
      font-weight: 500;
    }

    /* 面包屑 */
    .qcy-breadcrumb-wrap {
      padding: 26px 0 10px;
      background: #fff;
    }

    .qcy-breadcrumb {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #7b8ba3;
      font-weight: 600;
    }

    .qcy-breadcrumb a { color: #51647e; }
    .qcy-breadcrumb span { color: var(--primary); }
    .qcy-breadcrumb .home-icon { color: var(--primary); font-size: 17px; }

    /* 通用标题 */
    .qcy-section {
      padding: 64px 0 0;
      background: #fff;
    }

    .qcy-section-head {
      text-align: center;
      margin-bottom: 34px;
    }

    .qcy-section-title {
      margin: 0;
      font-size: 34px;
      line-height: 1.35;
      font-weight: 900;
      color: #101a34;
      letter-spacing: -.6px;
    }

    .qcy-section-desc {
      margin: 13px auto 0;
      max-width: 680px;
      font-size: 15px;
      line-height: 1.8;
      color: #7b8ba3;
    }

    /* 企业介绍 */
    .qcy-company-card {
      display: grid;
      grid-template-columns: 470px 1fr;
      gap: 70px;
      align-items: center;
      padding: 30px 0 36px;
    }

    .qcy-company-img {
      height: 320px;
      border-radius: 18px;
      overflow: hidden;
      background: #f3f7fd;
      box-shadow: var(--shadow);
      border: 1px solid #e6edf6;
      position: relative;
    }

    .qcy-company-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .qcy-company-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 58%, rgba(16, 26, 52, .22));
      pointer-events: none;
    }

    .qcy-company-content {
      position: relative;
      padding-right: 26px;
    }

    .qcy-quote-mark {
      color: var(--primary);
      font-size: 60px;
      line-height: 1;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .qcy-company-title {
      margin: 0;
      font-size: 28px;
      line-height: 1.4;
      font-weight: 900;
      color: #101a34;
      letter-spacing: -.4px;
    }

    .qcy-company-text {
      margin: 22px 0 0;
      font-size: 16px;
      line-height: 2;
      color: #66758f;
    }

    .qcy-company-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .qcy-company-tag {
      height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      background: #f6f9ff;
      border: 1px solid #e3ebf6;
      color: #536985;
      font-size: 13px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
    }

    /* 资质 */
    .qcy-license-wrap {
      background: #f8fbff;
      margin-top: 72px;
      padding: 68px 0 76px;
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
    }

    .qcy-license-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      width: 820px;
      margin: 0 auto;
    }

    .qcy-license-card {
      background: #fff;
      border: 1px solid #e4ebf5;
      border-radius: 18px;
      padding: 14px;
      box-shadow: var(--shadow-soft);
      transition: .22s ease;
    }

    .qcy-license-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .qcy-license-img {
      height: 520px;
      border-radius: 12px;
      overflow: hidden;
      background: #eef3fa;
      border: 1px solid #edf2f8;
    }

    .qcy-license-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    /* 联系方式：无卡片边框版，参考图同款简洁排版 */
    .qcy-contact-simple {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      align-items: start;
      padding: 8px 0 18px;
      text-align: center;
    }

    .qcy-contact-simple-item {
      min-height: 190px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .qcy-contact-simple-icon {
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      color: var(--primary);
    }

    .qcy-contact-simple-icon svg {
      width: 62px;
      height: 62px;
      display: block;
    }

    .qcy-contact-simple-icon path,
    .qcy-contact-simple-icon circle,
    .qcy-contact-simple-icon line,
    .qcy-contact-simple-icon polyline {
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .qcy-contact-simple-qr {
      width: 74px;
      height: 74px;
      margin: 0 auto 15px;
    }

    .qcy-contact-simple-qr img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .qcy-contact-simple-title {
      margin: 0;
      font-size: 22px;
      line-height: 1.35;
      font-weight: 900;
      color: #101a34;
    }

    .qcy-contact-simple-main {
      margin-top: 12px;
      font-size: 16px;
      line-height: 1.7;
      color: #8a98ad;
      font-weight: 500;
    }

    .qcy-contact-simple-time {
      margin-top: 18px;
      font-size: 16px;
      line-height: 1.7;
      color: var(--primary);
      font-weight: 500;
    }

    /* 底部间距 */
    .qcy-page-bottom {
      height: 82px;
      background: #fff;
    }

    @media (max-width: 1360px) {
      :root { --container: 1120px; }
      .qcy-company-card { grid-template-columns: 440px 1fr; gap: 56px; }
      .qcy-license-grid { width: 780px; }
    }