@charset "UTF-8";
/* ==========================================================================
   广东宝丽华电力有限公司 — 静态复刻站样式
   还原自 www.baodian.com 生产环境 CSS（app.4835c88d.css 及各页 chunk）
   主色: --main-color #7d0011 / 标题色 --title-color #dc0011 / 激活色 #E11837
   移动断点沿用原站 500px，并补充 768 / 1024 中间档
   ========================================================================== */

/* ---------- 设计令牌 ---------- */
:root {
  --main-color: #7d0011;      /* 原站 --main-color */
  --title-color: #dc0011;     /* 原站 --title-color */
  --active-color: #e11837;    /* 原站菜单 active-text-color */
  --menu-text: #130c0e;       /* 原站菜单 text-color */
  --logo-text: #60564d;       /* 原站 .main-logo 颜色 */
  --gray-color: #fafafa;
  --gray-text: #6d6d72;
  --line: #c8c8c8;
  --footer-bg: #898989;
  --pop-bg: #403e3e;

  --ink: #23201f;
  --ink-soft: #4a4340;

  /* 背景纵深：米砂底 + 双向暖光晕，避免纯白/纯灰平铺 */
  --page-bg:
    radial-gradient(120% 90% at 8% -10%, rgba(225, 24, 55, .06) 0%, rgba(225, 24, 55, 0) 55%),
    radial-gradient(100% 80% at 100% 0%, rgba(125, 0, 17, .05) 0%, rgba(125, 0, 17, 0) 60%),
    linear-gradient(180deg, #fbf9f7 0%, #f4f1ed 100%);

  --head-h: 90px;
  --shadow-head: 0 3px 3px var(--line);
  --shadow-card: 0 4px 18px rgba(40, 28, 24, .08);
  --shadow-card-hover: 0 12px 32px rgba(125, 0, 17, .14);

  /* 字体令牌统一在 assets/css/typography.css 中定义（全站唯一来源）。
     此处不再声明任何 font-family / 字号，避免出现第二套字体方案。 */
}

/* ---------- 基础重置 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--page-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; border: 0; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-sans); margin: 0; font-weight: var(--fw-bold); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* 键盘可达：所有可交互元素保留可见焦点态 */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--active-color);
  outline-offset: 3px;
  border-radius: 2px;
}

.gray_text { color: var(--gray-text); }
.one_line { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-hidden {
  display: -webkit-box; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--main-color); color: #fff; padding: 12px 20px;
  border-radius: 0 0 6px 6px; transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   顶部导航 —— 原 .ht-head（fixed / 90px / 白底 / 阴影）
   ========================================================================== */
.ht-head {
  position: fixed; inset: 0 0 auto 0;
  height: var(--head-h);
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: var(--shadow-head);
}
.ht-head .head-content {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 30px;
}
.main-logo { display: flex; align-items: center; color: var(--logo-text); }
.main-logo .logo { width: 50px; height: 50px; margin-right: 10px; flex: none; }
.main-logo .title { font-family: var(--font-sans); font-size: var(--fs-md); font-weight: var(--fw-bold); letter-spacing: .5px; line-height: var(--lh-heading); }
.main-logo .english { font-size: var(--fs-xs); color: #8a7f78; line-height: var(--lh-heading); }

.features { display: flex; align-items: center; height: 100%; }
.features .nav-item {
  position: relative;
  display: flex; align-items: center;
  height: var(--head-h);
  padding: 0 18px;
  font-size: var(--fs-body);
  color: var(--menu-text);
  transition: color .2s ease;
}
.features .nav-item::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 22px;
  height: 2px; background: var(--active-color);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.features .nav-item:hover { color: var(--active-color); }
.features .nav-item:hover::after { transform: scaleX(1); }
.features .nav-item.is-active { color: var(--active-color); font-weight: var(--fw-bold); }
.features .nav-item.is-active::after { transform: scaleX(1); }

/* 抽屉开关：触摸目标 ≥ 44×44 */
.features-dot {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-left: 10px;
  font-size: 26px; font-weight: var(--fw-bold); line-height: var(--lh-none); /* 汉堡图标字形尺寸 */
  color: #000; background: none; border: 0; cursor: pointer;
  border-radius: 6px;
}
.features-dot:hover { background: rgba(125, 0, 17, .07); }
.features-dot .bar {
  display: block; width: 24px; height: 2px; margin: 4px 0;
  background: currentColor; transition: transform .25s ease, opacity .2s ease;
}
.features-dot[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.features-dot[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.features-dot[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 抽屉全屏菜单 —— 原 .popMenu + .ht-footer[61c68f9a] 深色版 */
.popMenu {
  position: fixed; inset: var(--head-h) 0 0 0; z-index: 900;
  background: rgba(0, 0, 0, .45);
  visibility: hidden; opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.popMenu.is-open { visibility: visible; opacity: 1; }
.popMenu .pop-inner {
  background: var(--pop-bg); color: #fff;
  padding: 26px 50px 30px;
  transform: translateY(-14px);
  transition: transform .28s ease;
}
.popMenu.is-open .pop-inner { transform: translateY(0); }
.popMenu .pop-cols {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  max-width: 1280px; margin: 0 auto;
}
.popMenu .item_parent {
  display: block; margin-bottom: 10px;
  font-family: var(--font-sans); font-size: var(--fs-md); font-weight: var(--fw-bold);
}
.popMenu .item_parent:hover { color: #ffb3bf; }
.popMenu .item_child {
  display: block; padding: 8px 0; min-height: 44px;
  color: var(--line); font-size: var(--fs-body);
}
.popMenu .item_child:hover { color: #fff; }

/* 头部占位 —— 原 <div class="space"> */
.head-space { height: var(--head-h); }

/* ==========================================================================
   内页壳层 —— 原 .content2（顶图 500px + 二级菜单 + 标题区）
   ========================================================================== */
.content2 .top {
  position: relative; width: 100%;
  padding: 28px 0 22px;
  background: #f7f6f4;
  border-bottom: 1px solid #e4e7ed;
}
.content2 .top .desc {
  padding: 0 20px;
  color: #1a1a1a; text-shadow: none;
}
.content2 .top .desc .title { font-family: var(--font-sans); font-size: var(--fs-h1); line-height: var(--lh-tight); }
.content2 .top .desc .breadcrumb { margin-top: 10px; font-size: var(--fs-lg); color: #666; }
.content2 .top .desc .breadcrumb a { color: #1a1a1a; }
.content2 .top .desc .breadcrumb a:hover { color: var(--main-color); text-decoration: underline; }
.content2 .top .desc .breadcrumb .sep { margin: 0 8px; color: #999; }

.content2 .bottom { padding: 10px 20px 20px; }

/* 二级菜单 —— 原 el-menu.tabs，item 20px / 高 50px */
.tabs {
  display: flex; flex-wrap: wrap; align-items: center;
  border-bottom: 1px solid #e4e7ed;
}
.tabs .tab-item {
  position: relative;
  height: 50px; line-height: 50px; padding: 0 20px;
  font-size: var(--fs-lg); color: var(--menu-text);
  transition: color .2s ease;
}
.tabs .tab-item:hover { color: var(--active-color); }
.tabs .tab-item.is-active { color: var(--active-color); font-weight: var(--fw-bold); }
.tabs .tab-item.is-active::after {
  content: ""; position: absolute; left: 20px; right: 20px; bottom: -1px;
  height: 2px; background: var(--active-color);
}

.content2 .bottom .container { padding: 30px 10%; }
.content2 .top_title { margin-bottom: 50px; text-align: center; }
.content2 .top_title h1 { font-size: var(--fs-h1); color: var(--title-color); line-height: var(--lh-tight); }
.content2 .top_title .en { margin-top: 6px; font-size: var(--fs-lg); color: var(--gray-text); letter-spacing: 1px; }

/* ==========================================================================
   页脚 —— 原 .ht-footer（#898989 / 栏目列 / 公司邮箱 / 版权条）
   ========================================================================== */
.ht-footer {
  background: linear-gradient(180deg, #8f8f8f 0%, var(--footer-bg) 45%, #7e7e7e 100%);
  color: #fff; font-size: var(--fs-sm); padding: 40px 50px 0;
}
.ht-footer .top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 30px; max-width: 1400px; margin: 0 auto 20px;
}
.ht-footer .left { flex: 1; }
.ht-footer .cols { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ht-footer .item { display: flex; flex-direction: column; align-items: flex-start; }
.ht-footer .item_parent { margin-bottom: 8px; font-size: var(--fs-body); font-weight: var(--fw-regular); }
.ht-footer .item_parent:hover { color: #ffd9df; }
.ht-footer .item_child {
  display: block; padding: 8px 0; min-height: 44px;
  color: #ccc; font-size: var(--fs-body);
}
.ht-footer .item_child:hover { color: #fff; }
.ht-footer .right { width: 25%; margin-left: 50px; font-size: var(--fs-article); }
.ht-footer .right .contact { font-size: var(--fs-md); margin-bottom: 8px; }
.ht-footer .right .right_bottom div { margin-bottom: 5px; }
.ht-footer .right .mail {
  display: inline-flex; align-items: center; min-height: 44px;
  cursor: pointer;
}
.ht-footer .right .mail:hover { color: #ffd9df; text-decoration: underline; }
.ht-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, .55);
  padding: 18px; text-align: center; font-size: var(--fs-sm);
}
.ht-footer .copyright a:hover { text-decoration: underline; }

/* ==========================================================================
   首页 —— 原 .home（纵向分屏 swiper，静态化为纵向滚动分节）
   ========================================================================== */
.home-section {
  position: relative;
  min-height: calc(100vh - var(--head-h));
  padding: 70px 4% 80px;
  display: flex; flex-direction: column; justify-content: center;
  scroll-margin-top: var(--head-h);
}
.home-section + .home-section { border-top: 1px solid rgba(125, 0, 17, .08); }
.home-section .sec-head { margin-bottom: 34px; }
.home-section .sec-head h2 {
  font-size: var(--fs-h1); line-height: var(--lh-tight); color: var(--title-color);
}
.home-section .sec-head .english {
  margin: 5px 0 15px; font-size: var(--fs-md); color: var(--gray-text); letter-spacing: 1px;
}
.home-section.align-left .sec-head { text-align: left; }
.home-section.align-center .sec-head { text-align: center; }

/* 分节背景纹理 */
.home-section.tinted {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(125, 0, 17, .07) 0%, rgba(125, 0, 17, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .55) 0%, rgba(250, 246, 243, .35) 100%);
}

/* 首屏 Banner */
.hero {
  position: relative;
  height: calc(100vh - var(--head-h));
  min-height: 460px;
  overflow: hidden;
  background: #241a18;
}
.hero .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero .slide.is-active { opacity: 1; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .06) 40%, rgba(0, 0, 0, .5) 100%);
}
.hero .hero-copy {
  position: absolute; z-index: 3; left: 8%; bottom: 24%;
  color: #fff; max-width: 780px;
}
.hero .hero-copy h1 {
  font-size: var(--fs-display); line-height: var(--lh-tight);
  text-shadow: 0 4px 26px rgba(0, 0, 0, .5);
}
.hero .hero-copy .sub {
  margin-top: 14px; font-size: var(--fs-h5);
  letter-spacing: 2px; opacity: .92;
}
.hero .hero-dots {
  position: absolute; z-index: 4; left: 50%; bottom: 34px;
  transform: translateX(-50%); display: flex; gap: 10px;
}
.hero .hero-dots button {
  width: 44px; height: 44px; padding: 0; border: 0; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.hero .hero-dots button span {
  display: block; width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, .5); transition: background .25s ease, width .25s ease;
}
.hero .hero-dots button[aria-current="true"] span { background: #fff; width: 40px; }
.hero .scroll-hint {
  position: absolute; z-index: 4; left: 50%; bottom: 84px; transform: translateX(-50%);
  color: rgba(255, 255, 255, .8); font-size: var(--fs-xs); letter-spacing: 3px;
  animation: floaty 2.4s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* 首页 · 公司介绍 */
.home-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.home-intro .intro-text {
  font-size: var(--fs-md); line-height: var(--lh-relaxed); color: var(--ink-soft);
  -webkit-line-clamp: 9;
}
.home-intro .intro-text .ellipsis { color: var(--title-color); cursor: pointer; font-weight: var(--fw-bold); }
.home-intro .intro-media {
  border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3; background: #efe9e4;
}
.home-intro .intro-media img { width: 100%; height: 100%; object-fit: cover; }

/* 数字统计条 —— 原 .number.row_around_center */
.number {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 46px;
  padding: 30px 10px;
  border-top: 1px solid rgba(125, 0, 17, .16);
  border-bottom: 1px solid rgba(125, 0, 17, .16);
}
.number .item { text-align: center; }
.number .item_number {
  font-family: var(--font-num);
  font-size: var(--fs-num-xl); line-height: var(--lh-none);
  color: var(--main-color); font-weight: var(--fw-bold); letter-spacing: -1px;
}
.number .item_number .little {
  font-family: var(--font-sans);
  font-size: var(--fs-sm); font-weight: var(--fw-regular); margin-left: 4px; letter-spacing: 0;
}
.number .desc { margin-top: 10px; font-size: var(--fs-body); color: var(--gray-text); }

/* 首页 · 企业理念 */
.ideal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ideal-card {
  padding: 32px 26px; border-radius: 4px;
  background: linear-gradient(160deg, #fff 0%, #fdf7f7 100%);
  border-top: 3px solid var(--main-color);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ideal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.ideal-card h3 { font-size: var(--fs-h4); color: var(--main-color); margin-bottom: 12px; }
.ideal-card p { margin: 0; font-size: var(--fs-body); line-height: var(--lh-relaxed); color: var(--ink-soft); }

/* 首页 · 发展历程时间轴 */
.course-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr);
  gap: 20px; overflow-x: auto; padding: 10px 4px 22px;
  scroll-snap-type: x mandatory;
}
.course-rail::-webkit-scrollbar { height: 8px; }
.course-rail::-webkit-scrollbar-thumb { background: rgba(125, 0, 17, .3); border-radius: 4px; }
.course-item { scroll-snap-align: start; }
.course-item .item_number {
  display: inline-block; margin-bottom: 12px; padding: 6px 16px;
  font-family: var(--font-num); font-size: var(--fs-num-md); font-weight: var(--fw-bold);
  background: var(--main-color); color: #fff; border-radius: 3px;
}
.course-item .item_number .year { font-family: var(--font-sans); font-size: var(--fs-xs); margin-left: 3px; }
.course-item .card {
  background: #fff; border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.course-item .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.course-item .card .desc {
  padding: 18px 18px 12px; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--ink-soft);
  min-height: 82px;
}
.course-item .card .image { display: block; width: 100%; height: 168px; object-fit: cover; background: #efe9e4; }

/* 首页 · 公司资讯 */
.news-pc { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.news-pc .list .item {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 6px; border-bottom: 1px dashed var(--line);
  transition: background .25s ease, padding-left .25s ease;
}
.news-pc .list .item:hover { background: rgba(125, 0, 17, .04); padding-left: 14px; }
.news-pc .list .item h2 {
  flex: none;
  font-family: var(--font-num); font-size: var(--fs-lg); font-weight: var(--fw-bold);
  color: var(--main-color); letter-spacing: .5px;
  white-space: nowrap;       /* 日期不再折行，避免 YYYY-MM-DD 在窄列中断成两行 */
}
.news-pc .list .item .title {
  font-family: var(--font-sans); font-size: var(--fs-md); font-weight: var(--fw-bold);
  margin-bottom: 4px; line-height: var(--lh-snug);
}
.news-pc .list .item:hover .title { color: var(--title-color); }
.news-pc .list .item .desc {
  font-size: var(--fs-sm); line-height: var(--lh-body); -webkit-line-clamp: 2;
}
.news-pc .img-container {
  border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3; background: #efe9e4;
}
.news-pc .img-container img { width: 100%; height: 100%; object-fit: cover; }

/* 首页 · 格言文化 */
/* 「了解更多」箭头 —— 原 arrow-view */
.arrow-view { display: flex; justify-content: center; margin-top: 38px; }
.arrow-view .arrow {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 46px; padding: 10px 30px;
  border: 1px solid var(--main-color); border-radius: 999px;
  color: var(--main-color); font-size: var(--fs-body);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.arrow-view .arrow:hover {
  background: var(--main-color); color: #fff; transform: translateY(-2px);
}
.arrow-view .arrow .ico { font-size: 18px; line-height: var(--lh-none); } /* 图标字形尺寸 */

/* 「展开全文」按钮 —— 原先为内联样式，收归样式表统一管理 */
.btn-expand {
  margin-top: 16px;
  padding: 8px 22px;
  min-height: 44px;
  background: none;
  border: 1px solid var(--main-color);
  border-radius: 999px;
  color: var(--main-color);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn-expand:hover { background: var(--main-color); color: #fff; }

/* ==========================================================================
   列表 / 卡片 / 文章
   ========================================================================== */
.list-list { display: flex; flex-direction: column; }
.link-item {
  display: block; padding: 10px 5px;
  border-bottom: 1px dashed var(--gray-text);
  transition: background .25s ease;
}
.link-item:hover { background: rgba(125, 0, 17, .04); }

.item_news {
  display: flex; align-items: center; gap: 22px;
  padding: 20px 15px;
  transition: padding-left .25s ease;
}
.link-item:hover .item_news { padding-left: 25px; }
.item_news .date-block {
  flex: none; width: 96px; text-align: center;
  padding: 10px 6px; border-radius: 3px;
  background: linear-gradient(160deg, #fff 0%, #fbf2f3 100%);
  border: 1px solid rgba(125, 0, 17, .18);
}
.item_news .date-block .md {
  font-family: var(--font-num); font-size: var(--fs-num-md); font-weight: var(--fw-bold); color: var(--main-color); line-height: var(--lh-none);
}
.item_news .date-block .y { margin-top: 4px; font-size: var(--fs-xs); color: var(--gray-text); }
.item_news .body { flex: 1; min-width: 0; }
.item_news .item_list_title {
  font-family: var(--font-sans); font-size: var(--fs-md); font-weight: var(--fw-bold); line-height: var(--lh-snug);
  margin-bottom: 6px;
}
.link-item:hover .item_list_title { color: var(--title-color); }
.item_news .desc { font-size: var(--fs-sm); color: var(--gray-text); -webkit-line-clamp: 2; }
.item_news .go {
  flex: none; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--line); font-size: var(--fs-lg); transition: color .25s ease, transform .25s ease;
}
.link-item:hover .go { color: var(--main-color); transform: translateX(4px); }
.item_news .tag-pdf {
  display: inline-block; margin-left: 8px; padding: 1px 8px;
  font-size: var(--fs-2xs); border-radius: 3px; vertical-align: middle;
  background: rgba(125, 0, 17, .1); color: var(--main-color);
}

/* 图集（厂区/活动等图片列表通用） */
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.photo-grid figure { margin: 0; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-card); background: #fff; }
.photo-grid img {
  display: block; width: 100%; height: 220px; object-fit: cover;
  background: #efe9e4; transition: transform .4s ease;
}
.photo-grid figure:hover img { transform: scale(1.05); }
.photo-grid figcaption { padding: 12px 14px; font-size: var(--fs-sm); color: var(--ink-soft); }

/* 空态 */
.empty-state {
  padding: 70px 20px; text-align: center; color: var(--gray-text);
  border: 1px dashed var(--line); border-radius: 4px;
  background: rgba(255, 255, 255, .6);
}
.empty-state .ico { font-size: 40px; opacity: .35; } /* 图标字形尺寸，非文本层级 */
.empty-state p { margin: 12px 0 0; font-size: var(--fs-body); }

/* 文章正文 */
.article-body {
  font-size: var(--fs-article); line-height: var(--lh-loose); color: var(--ink-soft);
  word-break: break-word;
}
.article-body img { height: auto !important; border-radius: 3px; margin: 12px 0; }
.article-body p { margin: 0 0 1.1em; }
.article-body table { max-width: 100%; border-collapse: collapse; }
.article-body td, .article-body th { border: 1px solid #e0dad6; padding: 8px 12px; }
.article-meta {
  margin-bottom: 26px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(125, 0, 17, .14);
  color: var(--gray-text); font-size: var(--fs-sm);
}
.article-title {
  font-size: var(--fs-h3); line-height: var(--lh-heading); margin-bottom: 14px; color: var(--ink);
  text-align: center;
}
.article-back { margin-top: 42px; }

/* 分页 */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.pager button, .pager a {
  min-width: 44px; height: 44px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #e0dad6; border-radius: 3px; background: #fff;
  font-size: var(--fs-body); color: var(--ink-soft); cursor: pointer;
  transition: all .2s ease;
}
.pager button:hover:not(:disabled) { border-color: var(--main-color); color: var(--main-color); }
.pager button[aria-current="true"] { background: var(--main-color); border-color: var(--main-color); color: #fff; font-weight: var(--fw-bold); }
.pager button:disabled { opacity: .4; cursor: not-allowed; }

/* ==========================================================================
   公司介绍页 —— 原 .main .item_1
   ========================================================================== */
.intro-main .item_1 { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.intro-main .itme_1_left h1 { font-size: var(--fs-h2); color: var(--title-color); margin-bottom: 20px; }
.intro-main .font_size_18 { font-size: var(--fs-md); line-height: var(--lh-loose); color: var(--ink-soft); }
.intro-main .itme_1_image {
  width: 100%; border-radius: 4px; box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3; object-fit: cover; background: #efe9e4;
}

/* ==========================================================================
   企业理念页 —— 完全对齐原 baodian.com/front-web/companySurvey/philosophy
   原结构 .item_2.row_between_wrap（企业文化）+ #companyIdea + .item.animated
   改造为：
     块1 philo-culture：双列（左 head+4条目 | 右 配图）
     块2 philo-idea   ：head + 全宽 hero 大图 + 双列文本（左安全4 | 右安全意识+工作五每）
   颜色对齐原站计算样式：head h1 #000、head div #e11837、title #7d0011、desc #000。
   ========================================================================== */
.philo-page .top_title h1 { color: #000; }
.philo-page .top_title .en { color: #000; }

.philo-page .head { margin-bottom: 26px; }
.philo-page .head h1 { font-size: var(--fs-h2); color: #000; line-height: var(--lh-tight); }
.philo-page .head div { font-size: var(--fs-md); color: #e11837; letter-spacing: 1px; margin-top: 6px; }

.philo-page .item-item { margin-bottom: 26px; }
.philo-page .item-item .title {
  font-size: var(--fs-h5); color: #7d0011; margin-bottom: 8px;
  padding-left: 12px; border-left: 3px solid #7d0011;
}
.philo-page .item-item div { font-size: var(--fs-body); line-height: var(--lh-relaxed); color: #000; }

/* 块1 企业文化 —— 双列：文本 | 图片（原 itme_2_image 527×480 object-fit:fill） */
.philo-page .philo-culture { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; margin-bottom: 66px; }
.philo-page .philo-media img {
  width: 100%; height: 480px; object-fit: fill;
  border-radius: 0; box-shadow: none; background: #efe9e4; display: block;
}

/* 块2 企业理念 —— head + 全宽 hero（原 itme_3_image 1098×480） + 双列文本 */
.philo-page .philo-idea { margin-bottom: 66px; }
.philo-page .philo-idea .head { display: inline-block; margin-bottom: 30px; }
.philo-page .philo-hero {
  width: 100%; height: 480px; overflow: hidden;
  background: #efe9e4; border-radius: 0; box-shadow: none;
}
.philo-page .philo-hero img {
  width: 100%; height: 100%; object-fit: fill; display: block;
  border-radius: 0; box-shadow: none;
}
.philo-page .philo-idea-cols { display: flex; gap: 44px; margin-top: 26px; }
.philo-page .philo-idea-left,
.philo-page .philo-idea-right { flex: 1 1 0; min-width: 0; }

/* 发展历程页时间轴 */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--main-color) 0%, rgba(125, 0, 17, .18) 100%);
}
.timeline .tl-item { position: relative; margin-bottom: 42px; }
.timeline .tl-item::before {
  content: ""; position: absolute; left: -35px; top: 12px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--main-color);
  box-shadow: 0 0 0 4px rgba(125, 0, 17, .1);
}
.timeline .tl-year {
  font-family: var(--font-num); font-size: var(--fs-num-lg); font-weight: var(--fw-bold);
  color: var(--main-color); line-height: var(--lh-none); margin-bottom: 12px;
}
.timeline .tl-card {
  display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: center;
  background: #fff; border-radius: 4px; padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.timeline .tl-card .desc { font-size: var(--fs-article); line-height: var(--lh-relaxed); color: var(--ink-soft); }
.timeline .tl-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 3px; background: #efe9e4; }

/* 关于我们页 —— 原 .about-main */
.about-main { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.about-main h1 { font-size: var(--fs-h2); color: var(--title-color); margin-bottom: 18px; }
.about-main .contact { font-size: var(--fs-h5); font-weight: var(--fw-bold); margin-bottom: 12px; color: var(--main-color); }
.about-main .left_bottom { font-size: var(--fs-article); line-height: var(--lh-loose); color: var(--ink-soft); }
.about-main .left_bottom a { color: var(--main-color); }
.about-main .left_bottom a:hover { text-decoration: underline; }
.about-main .right img {
  width: 100%; border-radius: 4px; box-shadow: var(--shadow-card);
  object-fit: cover; background: #efe9e4;
}

/* 视频中心 */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.video-card { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-card); background: #fff; }
.video-card video { display: block; width: 100%; background: #000; }
.video-card .cap { padding: 14px 16px; font-size: var(--fs-body); }

/* ==========================================================================
   404 错误页
   ========================================================================== */
.err-page { max-width: 760px; margin: 0 auto; padding: 110px 24px 140px; text-align: center; }
.err-code {
  font-family: var(--font-num); font-size: var(--fs-display);
  font-weight: var(--fw-bold); line-height: var(--lh-none); color: var(--main-color);
}
.err-page h1 { margin: 20px 0 12px; font-size: var(--fs-h3); }
.err-desc { color: var(--ink-soft); font-size: var(--fs-md); margin-bottom: 34px; }
.err-home {
  display: inline-block; min-height: 44px; padding: 12px 34px;
  background: var(--main-color); color: #fff; text-decoration: none; border-radius: 2px;
  font-size: var(--fs-sm); transition: background .22s ease;
}
.err-home:hover { background: var(--title-color); }
.err-nav { margin-top: 46px; display: flex; gap: 10px 26px; justify-content: center; flex-wrap: wrap; }
.err-link {
  min-height: 44px; display: inline-flex; align-items: center;
  font-size: var(--fs-sm); color: var(--ink-soft); text-decoration: none;
}
.err-link:hover { color: var(--main-color); }

/* ==========================================================================
   响应式 —— 每个栅格均给出移动端单列塌缩
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .ht-footer .cols, .popMenu .pop-cols { grid-template-columns: repeat(3, 1fr); }
  .ideal-grid { grid-template-columns: repeat(2, 1fr); }
  .about-main { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 1024px) {
  .features { display: none; }               /* 中屏起改用抽屉菜单 */
  .content2 .bottom .container { padding: 30px 5%; }
  .home-intro, .news-pc, .philo-block,
  .intro-main .item_1 { grid-template-columns: 1fr; gap: 28px; }
  .philo-block.reverse .philo-media { order: 0; }
  .philo-media img { position: static; max-height: 420px; }
  .timeline .tl-card { grid-template-columns: 1fr; }
  .philo-page .philo-idea-cols { flex-direction: column; gap: 28px; }
  .philo-page .philo-hero { height: auto; aspect-ratio: 16 / 9; }
}

@media screen and (max-width: 768px) {
  .number { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .ideal-grid { grid-template-columns: 1fr; }
  .ht-footer { padding: 28px 20px 0; }
  .ht-footer .top { flex-direction: column; }
  .ht-footer .right { width: 100%; margin-left: 0; }
}

@media screen and (max-width: 500px) {
  :root { --head-h: 50px; }
  body { font-size: var(--fs-body); }
  .ht-head .head-content { padding: 0 14px; }
  .main-logo .logo { width: 30px; height: 30px; margin-right: 5px; }
  .main-logo .title { font-size: var(--fs-xs); }
  .main-logo .english { font-size: var(--fs-2xs); }

  .popMenu .pop-inner { padding: 20px 16px 24px; }
  .popMenu .pop-cols { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .popMenu .item_parent { font-size: var(--fs-xs); margin-bottom: 6px; }
  .popMenu .item_child { font-size: var(--fs-2xs); padding: 10px 0; }

  .content2 .top { padding: 18px 0 14px; }
  .content2 .top .desc { padding: 0 10px; }
  .content2 .top .desc .breadcrumb { font-size: var(--fs-xs); }
  .content2 .bottom { padding: 0 5px 10px; }
  .content2 .bottom .container { padding: 16px 10px; }
  .content2 .top_title { margin-bottom: 16px; }
  .content2 .top_title .en { font-size: var(--fs-xs); }
  .tabs .tab-item { font-size: var(--fs-sm); padding: 0 14px; height: 44px; line-height: 44px; }
  .tabs .tab-item.is-active::after { left: 14px; right: 14px; }

  .home-section { padding: 44px 16px 52px; min-height: 0; }
  .home-section .sec-head .english { font-size: var(--fs-sm); margin: 5px 0; }
  .hero { height: 62vh; min-height: 320px; }
  .hero .hero-copy { left: 16px; right: 16px; bottom: 22%; }
  .number { grid-template-columns: repeat(2, 1fr); padding: 20px 4px; margin-top: 28px; }
  .number .desc { font-size: var(--fs-xs); }
  .home-intro .intro-text { font-size: var(--fs-body); -webkit-line-clamp: 12; }

  .news-pc .list .item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .news-pc .list .item h2 { width: auto; font-size: var(--fs-sm); }
  .news-pc .list .item .title { font-size: var(--fs-body); }
  .news-pc .list .item .go { display: none; }

  .item_news { flex-direction: row; gap: 12px; padding: 12px 7px; }
  .item_news .date-block { width: 66px; padding: 6px 4px; }
  .item_news .date-block .md { font-size: var(--fs-md); }
  .item_news .date-block .y { font-size: var(--fs-2xs); }
  .item_news .item_list_title { font-size: var(--fs-sm); }
  .item_news .desc { font-size: var(--fs-xs); }
  .item_news .go { display: none; }

  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 190px; }
  .about-main { grid-template-columns: 1fr; }
  .article-body { font-size: var(--fs-body); line-height: var(--lh-relaxed); }
  .timeline { padding-left: 28px; }
  .timeline .tl-item::before { left: -24px; }
  .ht-footer .cols { grid-template-columns: repeat(2, 1fr); }
  .ht-footer .item_parent { font-size: var(--fs-xs); }
  .ht-footer .item_child { font-size: var(--fs-2xs); padding: 8px 0; min-height: 40px; }
  .ht-footer .copyright { font-size: var(--fs-2xs); padding: 14px 8px; }
}

/* 尊重系统减弱动效偏好 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* 打印 */
@media print {
  .ht-head, .popMenu, .ht-footer, .arrow-view, .pager, .head-space { display: none !important; }
  body { background: #fff; }
  .content2 .top { background: #fff; border-bottom: 1px solid #d8d8d8; }
  .content2 .top .desc { color: #000; }
}

/* ============================================================ *
 * 发展历程 course-view（对齐原站 baodian.com/front-web/companySurvey/developCourse）
 * 原站用 Swiper 横向轮播展示里程碑卡片；本地用离线 swiper-bundle@11 复刻。
 * ============================================================ */
.course-view { padding: 14px 0 8px; }
.course-view .swiper { overflow: hidden; padding: 8px 2px 16px; }
.course-view .swiper-wrapper { display: flex; flex-wrap: nowrap; gap: 20px; }
.course-view .swiper-slide { width: calc((100% - 60px) / 4); flex: 0 0 auto; }
.course-view .item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .course-view .swiper-slide { width: calc((100% - 54px) / 3); }
  .course-view .swiper-wrapper { gap: 18px; }
}
@media (max-width: 768px) {
  .course-view .swiper-slide { width: calc((100% - 32px) / 2); }
  .course-view .swiper-wrapper { gap: 16px; }
}
@media (max-width: 480px) {
  .course-view .swiper-slide { width: 100%; }
  .course-view .swiper-wrapper { gap: 12px; }
}
.course-view .item_number {
  background: var(--main-color, #7d0011);
  color: #fff;
  text-align: center;
  padding: 18px 0 16px;
}
.course-view .item_number h3 { margin: 0; font-size: 30px; font-weight: 700; line-height: 1; }
.course-view .item_number .year { font-size: 15px; margin-left: 3px; font-weight: 500; }
.course-view .bottom { flex: 1; display: flex; flex-direction: column; padding: 0 0 14px; }
.course-view .desc {
  margin: 26px 0 10px 12px;
  height: 60px;
  line-height: 30px;
  font-size: 15px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.course-view .image { width: 100%; height: 280px; }
.course-view .el-image__inner { width: 100%; height: 100%; object-fit: fill; display: block; }
.course-view .bounceIn { animation: cv-bounce-in .6s both; }
@keyframes cv-bounce-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
