@charset "UTF-8";

/* ================================================================
   1. Design Tokens — 统一变量体系（重复抽取项）
   合并自 channel_ours.html / channel_product.html /
   channel_application.html / channel_application_realm.html /
   article_peoduct_description.html 的 :root 变量块
   ================================================================ */
:root {
  /* ---- 主色调 ---- */
  --color-void: #020617;
  --color-navy: #0a1628;
  --color-steel: #1e3a5f;
  --color-electric: #3b82f6;
  --color-sky: #60a5fa;
  --color-ice: #f0f7ff;
  --color-white: #ffffff;
  --color-mist: #f8fafc;
  --color-slate: #e2e8f0;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;

  /* ---- 字体 ---- */
  --font-mono: 'Consolas', 'Courier New', 'Microsoft YaHei Mono', monospace;

  /* ---- 背景图案（重复抽取项：channel_ours / channel_product / channel_application 共用） ---- */
  --grid-dot: radial-gradient(circle, rgba(59, 130, 246, 0.28) 1.8px, transparent 1.8px);
  --grid-dot-subtle: radial-gradient(circle, rgba(59, 130, 246, 0.08) 1px, transparent 1px);

  /* ---- 间距（重复抽取项：channel_ours / channel_application_realm 共用） ---- */
  --container-gap: 70px;
  --card-radius: 14px;
  --image-radius: 14px;
  --section-padding-x: 56px;
  --section-padding-y: 68px;

  /* ---- 边框（重复抽取项：channel_ours / channel_product 用同一组变量） ---- */
  --border-soft: 1px solid rgba(226, 232, 240, 0.9);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);

  /* ---- 阴影（重复抽取项：channel_ours 多区块共用） ---- */
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-card-subtle: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 16px rgba(15, 23, 42, 0.04);

  /* ---- 过渡（重复抽取项：channel_ours / channel_product / channel_application 共用） ---- */
  --transition-fast: .25s ease;
  --transition-card: .28s ease;
  --transition-image-zoom: .35s ease;
  --transition-image-slow: .45s ease;

  /* ---- sticky 定位（重复抽取项：channel_ours / channel_product 共用） ---- */
  --site-header-sticky-top: 0px;
  --application-tab-height: 52px;

  /* ---- 企业门户统一变量（重复抽取项：channel_product 底部覆盖块 & article_peoduct_description 共用） ---- */
  --portal-bg-dark: #07111f;
  --portal-blue: #2563eb;
  --portal-blue-soft: #eff6ff;
  --portal-border: #e2e8f0;
  --portal-text: #0f172a;
  --portal-muted: #64748b;
  --portal-surface: #ffffff;
  --portal-section: #f8fafc;
  --portal-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);

  /* ---- 产品详情页变量（重复抽取项：article_peoduct_description.html 专用） ---- */
  --pd-primary: #0b1628;
  --pd-primary-light: #1a2d4a;
  --pd-accent: #2563eb;
  --pd-accent-light: #3b82f6;
  --pd-bg: #f8fafc;
  --pd-card-bg: #ffffff;
  --pd-text: #0f172a;
  --pd-text-secondary: #475569;
  --pd-text-muted: #94a3b8;
  --pd-border: #e2e8f0;
  --pd-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --pd-shadow-hover: 0 10px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --pd-radius: 12px;
  --pd-radius-sm: 8px;
  --pd-transition: .25s cubic-bezier(.4,0,.2,1);
}


/* ================================================================
   2. Reset & Base
   ================================================================ */
a,
a:hover,
a:focus {
  text-decoration: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}


/* ================================================================
   3. Navbar System（重复抽取项：main.css 原有 + channel_ours.html 覆盖）
   ================================================================ */
.cm-navbar {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.cm-navbar .navbar-nav .nav-link {
  font-size: 18px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 16px;
  padding-right: 16px;
  color: var(--bs-body-color, #212529);
  transition: color 0.15s ease-in-out;
}

.cm-navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary, #0d6efd);
}

.navbar-nav-scroll {
  max-width: 100%;
  height: 2.5rem;
  overflow: hidden;
}

.navbar-nav-scroll .navbar-nav {
  overflow-x: auto;
  white-space: nowrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  -webkit-overflow-scrolling: touch;
}


/* ================================================================
   4. Utility Classes（原有 + 新增抽取项）
   ================================================================ */
.cm-hidden {
  display: none !important;
}

.cm-pointer {
  cursor: pointer;
}

.cm-ff-yh {
  font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", serif;
}

.cm-block-head-bottom {
  border-bottom: solid 2px;
  border-color: var(--bs-primary, #0d6efd);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.cm-trans-bottom {
  width: 100%;
  bottom: 0;
  position: absolute;
  background-color: rgba(var(--bs-dark-rgb, 0, 0, 0), 0.5);
}

.cm-link {
  color: var(--bs-body-color, #212529);
  text-decoration: none;
}

.cm-link:hover {
  color: var(--bs-primary, #0d6efd);
}


/* ================================================================
   5. Media & Image Utilities（原有 + 重复抽取项）
   ================================================================ */
.cm-media-img,
.cm-d-flex-img {
  max-width: 180px;
  max-height: 120px;
  object-fit: cover;
  border-radius: var(--bs-border-radius);
}

.cm-video-card {
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: var(--bs-border-radius);
  padding: 6px;
  background-color: var(--bs-body-bg, #fff);
}

.cm-video-card .card-img-top {
  border-radius: calc(var(--bs-border-radius) - 4px);
}

/* 通用图片占位符（重复抽取项：channel_ours / channel_product / channel_application_realm 共用） */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #94a3b8;
  font-size: 14px;
  background: var(--color-mist);
  border-radius: inherit;
}

/* 文章内容图片（重复抽取项：article.html + mem_settings_avatar.html 共用） */
.article-content img {
  max-width: 100%;
}


/* ================================================================
   6. Background System — 统一背景系统（重复抽取项）
   合并自 channel_ours.html 的 smooth-bg-system 和
   channel_product / channel_application_realm 的 banner 背景
   ================================================================ */

/* ---- 全屏丝滑背景 ---- */
.smooth-bg-system {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #020617;
  contain: paint;
}

.smooth-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.smooth-bg-system::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.28) 0%, rgba(15, 23, 42, 0.14) 36%, rgba(2, 6, 23, 0.52) 100%),
    linear-gradient(90deg, rgba(248, 250, 252, 0.20) 0%, rgba(15, 23, 42, 0.08) 48%, rgba(2, 6, 23, 0.42) 100%);
}

/* ---- Banner 区通用（重复抽取项：channel_ours / channel_product / channel_application_realm 共用） ---- */
.product-top-bg {
  position: relative;
  min-height: 700px;
  background: #07111f;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.product-top-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: none;
}

.product-hero-title-wrap {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.product-hero-title {
  text-align: center;
}

.product-hero-title h1 {
  font-size: 54px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 12px;
  letter-spacing: 0;
  line-height: 1.2;
}

.product-hero-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
  letter-spacing: 0;
  max-width: 760px;
  margin: 20px auto 0;
}

/* ---- 区块层级（重复抽取项：channel_ours.html 中多个 section 共用） ---- */
.product-top-bg,
.company-profile-section,
.business-system-section,
.development-section {
  position: relative;
  z-index: 1;
}


/* ================================================================
   7. Card System — 统一卡片系统（重复抽取项）
   合并 bs-card / product-sub-card / product-category-card /
   product-list-section .card / pd-doc-card 的共同模式
   ================================================================ */

/* ---- 卡片基础（重复抽取项：5 种卡片共用同一套 border-radius/shadow/transition） ---- */
.bs-card,
.product-sub-card,
.product-category-card {
  border-radius: var(--card-radius, 12px);
  background: var(--color-white);
  border: var(--border-soft);
  box-shadow: var(--shadow-card-subtle);
  transition: transform var(--transition-card), box-shadow var(--transition-card), border-color var(--transition-card);
}

/* ---- 卡片 hover 抬升（重复抽取项：bs-card / product-sub-card / product-category-card / child-card 共用 translateY + shadow） ---- */
.product-sub-card:hover,
.product-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-sky);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}

/* ---- 卡片内图片 hover 放大（重复抽取项：product-sub-card / application-intro-image / product-category-intro-image 共用 scale） ---- */
.product-sub-card-image img,
.application-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-image-slow);
}

.product-sub-card:hover .product-sub-card-image img {
  transform: scale(1.05);
}

/* ---- BS Card (业务体系卡片) hover 增强 ---- */
.bs-card {
  min-height: 172px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-card);
  cursor: default;
}

.bs-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(96, 165, 250, 0.72);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
}

.bs-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.bs-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.35;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.bs-card-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.85);
  overflow: hidden;
  flex-shrink: 0;
}

.bs-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

.bs-card-desc p {
  margin: 0;
}

.bs-card-desc p + p {
  margin-top: 8px;
}

/* ---- Profile Image Box（重复抽取项：channel_ours.html 公司简介左侧图片框） ---- */
.profile-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  aspect-ratio: 4 / 3;
  max-height: 250px;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.profile-image-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ================================================================
   8. Product Sub Card（重复抽取项：channel_ours + channel_application_realm 共用）
   ================================================================ */
.product-sub-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text-main);
}

.product-sub-card:hover {
  text-decoration: none;
  color: var(--color-text-main);
}

.product-sub-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--color-mist);
}

.product-sub-card-body {
  padding: 18px 18px 20px;
}

.product-sub-card-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.product-sub-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ================================================================
   9. Tab System — 统一 Tab 系统（重复抽取项）
   channel_ours.html 和 channel_application_realm.html 共用完整 Tab 组件
   ================================================================ */

/* ---- Tab 导航栏 ---- */
.product-tab-bar {
  position: sticky;
  top: var(--site-header-sticky-top);
  z-index: 900;
  margin-top: calc(var(--application-tab-height) * -1);
  background: rgba(3, 15, 32, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(15, 23, 42, 0.10);
}

.product-tab-list {
  display: flex;
  justify-content: center;
  gap: 0;
  min-height: var(--application-tab-height);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-tab-list::-webkit-scrollbar {
  display: none;
}

.product-tab-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--application-tab-height);
  padding: 0 30px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-bottom-color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-tab-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.product-tab-item.active {
  color: #60a5fa;
  border-bottom-color: #60a5fa;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.08);
}

.product-tab-content {
  display: none;
  scroll-margin-top: calc(var(--site-header-sticky-top) + var(--application-tab-height) + 20px);
}

.product-tab-content.active {
  display: block;
}

/* ---- Tab 更多下拉 ---- */
.product-tab-more {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 11;
}

.product-tab-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color var(--transition-fast), border-bottom-color var(--transition-fast), background var(--transition-fast);
}

.product-tab-more-btn:hover,
.product-tab-more:hover .product-tab-more-btn,
.product-tab-more-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.product-tab-more-btn.active {
  color: #60a5fa;
  border-bottom-color: #60a5fa;
}

.product-tab-more-btn svg {
  transition: transform var(--transition-fast);
}

.product-tab-more:hover .product-tab-more-btn svg {
  transform: rotate(180deg);
}

.product-tab-more-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 170px;
  background: rgba(3, 15, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 0 10px 10px;
  padding: 6px 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  pointer-events: none;
}

.product-tab-more:hover .product-tab-more-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.product-tab-more-item {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.product-tab-more-item.active {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.10);
}

/* Tab 响应式 */
@media (min-width: 769px) {
  .js-tab-more-item {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .product-tab-more {
    display: none !important;
  }
}


/* ================================================================
   10. Layout System — 统一布局系统（重复抽取项）
   合并常见 flex/grid 布局模式
   ================================================================ */

/* ---- 应用领域介绍面板（重复抽取项：channel_ours / channel_application_realm 共用） ---- */
.application-intro-section {
  padding: 64px 0 56px;
  background: var(--color-mist);
}

.application-intro-panel {
  display: flex;
  align-items: flex-start;
  gap: var(--container-gap);
}

.application-intro-image {
  width: 42%;
  flex: 0 0 42%;
  border-radius: var(--image-radius);
  overflow: hidden;
  background: var(--color-mist);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.application-intro-image:hover img {
  transform: scale(1.035);
}

.application-intro-content {
  width: 58%;
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
}

.application-intro-title {
  position: relative;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-main);
  margin-bottom: 28px;
}

/* ---- 标题下划线（重复抽取项：6 处使用相同 gradient underline 模式） ---- */
.application-intro-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-sky));
}

.application-intro-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #4a5568;
  max-width: 680px;
}

/* ---- 子栏目卡片网格 ---- */
.product-sub-list-section {
  padding: 56px 0 68px;
  background: var(--color-white);
}

.product-sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- 公司简介布局（重复抽取项：channel_ours.html 专用） ---- */
.company-profile-section {
  padding: 72px 0 0;
  background: var(--color-white);
  overflow-x: hidden;
}

.company-profile-row {
  display: flex;
  align-items: flex-start;
  gap: var(--container-gap);
}

.company-profile-left {
  width: 34%;
  flex: 0 0 34%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-profile-right {
  width: 66%;
  flex: 0 0 66%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}

.company-profile-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-main);
  position: relative;
}

.company-profile-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-sky));
}

.company-profile-desc {
  font-size: 16px;
  line-height: 2;
  color: #4a5568;
  max-width: 680px;
}

.company-profile-video-wrap {
  margin-top: 72px;
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #020617;
  overflow: hidden;
}

.company-profile-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-profile-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.55) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* ---- 业务体系区块 ---- */
.business-system-section {
  min-height: 85vh;
  padding: 80px 0 90px;
  background: transparent;
  overflow: hidden;
}

.business-system-inner {
  position: relative;
  z-index: 2;
}

.business-system-heading {
  text-align: center;
  margin-bottom: 48px;
}

.business-system-heading h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.25;
  margin: 0;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.business-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* ---- 发展历程区块 ---- */
.development-section {
  --development-title-padding-top: 82px;
  --development-content-width: min(960px, calc(100% - 48px));
  --development-content-margin-top: 44px;
  --development-content-radius: 16px;
  --development-scroll-max-height: min(460px, calc(100vh - 230px));
  --development-scroll-padding: 30px 34px;
  --development-scroll-font-size: 16px;
  --development-scroll-line-height: 1.95;

  height: 100vh;
  min-height: 620px;
  background: transparent;
  overflow: hidden;
}

.development-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.25;
  color: #0f172a;
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: var(--development-title-padding-top);
  text-align: center;
  text-shadow: 0 14px 34px rgba(255, 255, 255, 0.72), 0 8px 22px rgba(15, 23, 42, 0.14);
}

.development-content {
  position: relative;
  z-index: 2;
  width: var(--development-content-width);
  margin: var(--development-content-margin-top) auto 0;
  border-radius: var(--development-content-radius);
  background: rgba(15, 23, 42, 0.35);
  border: var(--border-glass);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* ================================================================
   11. Scroll System — 统一滚动容器系统（重复抽取项）
   合并 development-scroll / product-tab-list 的滚动样式
   ================================================================ */
.development-scroll {
  width: min(1100px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
  max-height: var(--development-scroll-max-height);
  padding: var(--development-scroll-padding);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.48) rgba(255, 255, 255, 0.10);
  font-size: var(--development-scroll-font-size);
  line-height: var(--development-scroll-line-height);
  color: rgba(248, 250, 252, 0.92);
}

.development-scroll p {
  margin: 0;
}

.development-scroll::-webkit-scrollbar {
  width: 8px;
}

.development-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 999px;
}

.development-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
}

.development-scroll p + p {
  margin-top: 12px;
}


/* ================================================================
   12. Empty & Error States（重复抽取项：多处共用空状态样式）
   ================================================================ */
.company-profile-empty,
.product-sub-empty,
.business-system-empty,
.development-empty {
  text-align: center;
  padding: 40px 0;
  font-size: 15px;
}

.company-profile-empty,
.product-sub-empty {
  color: #94a3b8;
}

.business-system-empty {
  color: #64748b;
  background: rgba(255, 255, 255, 0.86);
  border: var(--border-soft);
  border-radius: 12px;
}

.development-empty {
  color: rgba(241, 245, 249, 0.78);
}


/* ================================================================
   13. ES Highlight
   ================================================================ */
.es-highlight em {
  color: var(--bs-danger, #dc3545);
  font-style: normal;
  font-weight: bold;
}


/* ================================================================
   14. global Responsive — 共享响应式断点（重复抽取项）
   合并 channel_ours / channel_application_realm / channel_product
   共同的 responsive 模式
   ================================================================ */

/* ---- Hero 标题响应式 ---- */
@media screen and (max-width: 767.98px) {
  .cm-media-img,
  .cm-d-flex-img {
    max-width: 120px;
    max-height: 80px;
  }
}

/* ---- 1200px 断点 ---- */
@media (max-width: 1200px) {
  :root {
    --container-gap: 36px;
  }

  .product-hero-title h1 {
    font-size: 42px;
  }

  .product-hero-subtitle {
    font-size: 16px;
  }

  .application-intro-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .application-intro-image,
  .application-intro-content {
    width: 100%;
    flex-basis: auto;
  }

  .application-intro-image img {
    height: 320px;
  }

  .application-intro-title {
    font-size: 32px;
  }

  .application-intro-desc {
    font-size: 15px;
    max-width: none;
  }

  .product-sub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-profile-row {
    flex-direction: column;
    gap: 36px;
  }

  .company-profile-left {
    width: 100%;
    flex: none;
  }

  .profile-image-box {
    width: min(100%, 300px);
    max-height: 230px;
  }

  .company-profile-right {
    width: 100%;
    flex: none;
  }

  .business-system-heading h2 {
    font-size: 36px;
  }
}

/* ---- 992px 断点 ---- */
@media (max-width: 992px) {
  .business-system-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-system-section {
    min-height: auto;
    padding: 56px 0;
  }
}

/* ---- 768px 断点 ---- */
@media (max-width: 768px) {
  .product-hero-title-wrap {
    padding: 32px 0;
  }

  .product-tab-list {
    justify-content: flex-start;
  }

  .product-tab-item {
    padding: 0 20px;
    font-size: 14px;
  }

  .application-intro-section {
    padding: 40px 0 36px;
  }

  .product-sub-card-image {
    height: 150px;
  }

  .company-profile-section {
    padding: 44px 0 40px;
  }

  .profile-image-box {
    width: min(100%, 260px);
    max-height: 200px;
    padding: 14px;
  }

  .company-profile-title {
    font-size: 26px;
  }

  .company-profile-desc {
    font-size: 15px;
    line-height: 1.85;
  }

  .company-profile-video-wrap {
    margin-top: 36px;
  }

  .company-profile-video-wrap video {
    max-height: 300px;
  }

  .development-section {
    --development-title-padding-top: 58px;
    --development-content-width: calc(100% - 32px);
    --development-content-margin-top: 30px;
    --development-content-radius: 14px;
    --development-scroll-max-height: 400px;
    --development-scroll-padding: 24px 22px;
    --development-scroll-font-size: 15px;
    --development-scroll-line-height: 1.85;
    min-height: 560px;
  }

  .development-title {
    font-size: 32px;
  }
}

/* ---- 576px 断点 ---- */
@media (max-width: 576px) {
  :root {
    --application-tab-height: 46px;
  }

  .product-hero-title-wrap {
    padding: 24px 0;
  }

  .product-hero-title h1 {
    font-size: 30px;
    letter-spacing: 0;
  }

  .product-hero-subtitle {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.7;
    margin-top: 14px;
  }

  .product-tab-item {
    padding: 0 16px;
    font-size: 13px;
  }

  .application-intro-image img {
    height: 230px;
  }

  .application-intro-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .application-intro-title::after {
    margin-top: 14px;
  }

  .application-intro-desc {
    font-size: 14px;
    line-height: 1.85;
  }

  .product-sub-grid {
    grid-template-columns: 1fr;
  }

  .product-sub-card-image {
    height: 190px;
  }

  .profile-image-box {
    width: min(100%, 220px);
    max-height: 170px;
    padding: 12px;
  }

  .company-profile-title {
    font-size: 22px;
  }

  .company-profile-desc {
    font-size: 14px;
  }

  .business-system-grid {
    grid-template-columns: 1fr;
  }

  .business-system-heading h2 {
    font-size: 28px;
  }

  .business-system-heading {
    margin-bottom: 32px;
  }

  .bs-card {
    min-height: auto;
    padding: 22px;
  }

  .bs-card-title {
    font-size: 18px;
  }

  .bs-card-figure {
    width: 52px;
    height: 52px;
  }
}


/* ================================================================
   15. Animation Keyframes（重复抽取项）
   ================================================================ */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pdFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================================================
   16. AJAX Product Loading & Pagination（重复抽取项）
   channel_product.html 专用，前置到 main.css 便于复用
   ================================================================ */
.ajax-product-loading,
.ajax-product-empty,
.ajax-product-error {
  padding: 64px 0;
  text-align: center;
  color: #94a3b8;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 12px;
  border: 1px solid var(--portal-border);
  background: var(--portal-section);
}

.ajax-product-loading::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  border: 2px solid var(--color-slate);
  border-top-color: var(--color-electric);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.ajax-product-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.ajax-product-page-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all .2s ease;
}

.ajax-product-page-btn:hover {
  border-color: var(--color-sky);
  color: var(--color-electric);
  background: var(--color-ice);
}

.ajax-product-page-btn.active {
  background: var(--color-electric);
  color: var(--color-white);
  border-color: var(--color-electric);
}

.ajax-product-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}


/* ================================================================
   17. Product Category Card Sticky & Grid（重复抽取项）
   channel_product.html 第一层卡片区
   ================================================================ */
.product-category-sticky {
  position: sticky;
  top: var(--site-header-sticky-top);
  z-index: 900;
  padding: 14px 0;
  background: var(--grid-dot-subtle),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94));
  background-size: 16px 16px, 100% 100%;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(59, 130, 246, 0.12), 0 8px 24px rgba(15, 23, 42, 0.08);
}

.product-category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-category-card {
  min-height: 150px;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  text-decoration: none;
}

.product-category-card:hover {
  transform: translateY(-3px);
  background: var(--color-ice);
  border-color: var(--color-sky);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.06), 0 8px 24px rgba(59, 130, 246, 0.10);
}

.product-category-card.active {
  background: linear-gradient(135deg, var(--color-electric) 0%, #2563eb 100%);
  color: var(--color-white);
  border-color: transparent;
  animation: none;
}

.product-category-card-image {
  width: 112px;
  height: 112px;
  border-radius: 16px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--color-slate);
}

.product-category-card.active .product-category-card-image {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.product-category-card-image img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.product-category-card-body { min-width: 0; }

.product-category-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-electric);
  margin-bottom: 8px;
  padding: 2px 8px;
  display: inline-block;
  border: 1px solid rgba(59, 130, 246, 0.20);
  border-radius: 3px;
  background: rgba(59, 130, 246, 0.04);
}

.product-category-card.active .product-category-card-tag {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.10);
}

.product-category-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-category-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-height: 44px;
  overflow: hidden;
}

.product-category-card.active .product-category-card-desc {
  color: rgba(255, 255, 255, 0.86);
}


/* ================================================================
   18. Product Category Intro Panel（重复抽取项）
   channel_product.html 第二层说明面板
   ================================================================ */
.product-category-intro-section {
  padding: 28px 0 30px;
  background: var(--grid-dot-subtle), var(--color-mist);
  background-size: 16px 16px, 100% 100%;
}

.product-category-intro-panel {
  display: none;
  align-items: center;
  gap: 64px;
  min-height: 420px;
  padding: 56px 70px;
  border-radius: 28px;
  background: var(--grid-dot),
    radial-gradient(ellipse at 15% 30%, rgba(59, 130, 246, 0.16), transparent 55%),
    linear-gradient(160deg, #0f172a 0%, var(--color-navy) 60%, var(--color-void) 100%);
  background-size: 18px 18px, 100% 100%, 100% 100%;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.06), 0 24px 60px rgba(10, 22, 40, 0.32);
}

.product-category-intro-panel.active {
  display: flex;
}

.product-category-intro-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(59, 130, 246, 0.10) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.product-category-intro-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.05) 3px, rgba(0, 0, 0, 0.05) 6px);
  pointer-events: none;
  z-index: 2;
}

.product-category-intro-image {
  width: 360px;
  height: 360px;
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.product-category-intro-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.40));
}

.product-category-intro-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.product-category-intro-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 4px 14px;
  display: inline-block;
  border: 1px solid rgba(59, 130, 246, 0.30);
  border-radius: 3px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--color-sky);
}

.product-category-intro-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 28px;
}

.product-category-intro-desc {
  font-size: 18px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.86);
}

/* Product intro 响应式 */
@media (max-width: 1200px) {
  .product-category-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-category-card {
    min-height: 140px;
    padding: 18px 20px;
    gap: 16px;
  }

  .product-category-card-image {
    width: 90px;
    height: 90px;
  }

  .product-category-card-image img {
    max-width: 72px;
    max-height: 72px;
  }

  .product-category-card-title {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .product-category-intro-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 32px;
  }

  .product-category-intro-image {
    width: 260px;
    height: 260px;
    flex-basis: auto;
  }

  .product-category-intro-title {
    font-size: 32px;
  }

  .product-category-intro-desc {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .product-category-sticky {
    padding: 12px 0;
  }

  .product-category-list {
    grid-template-columns: 1fr;
  }

  .product-category-card {
    min-height: 130px;
    padding: 16px;
  }
}


/* ================================================================
   19. Product List Section（重复抽取项）
   channel_product.html 第三层产品列表
   ================================================================ */
.product-list-section {
  padding-top: 36px;
  padding-bottom: 36px;
  background: var(--grid-dot-subtle), var(--color-white);
  background-size: 16px 16px, 100% 100%;
}

.product-list-header {
  text-align: center;
  margin-bottom: 32px;
}

.product-list-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
  letter-spacing: 1px;
}

.product-list-header::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--color-electric), var(--color-sky));
  border-radius: 2px;
}

.product-list-section .card {
  border: 1px solid var(--color-slate);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: var(--shadow-card-subtle);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}

.product-list-section .card:active {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15), 0 6px 16px rgba(59, 130, 246, 0.12);
  border-color: var(--color-electric);
}

.product-list-section .card a:focus-visible {
  outline: 2px solid var(--color-electric);
  outline-offset: -2px;
  border-radius: 14px;
}

.product-list-section .card .card-body {
  padding: 14px 12px;
  background: var(--color-white);
}

.product-list-section .card .card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
  min-height: 20px;
}

.product-list-section .card .card-keywords .kw {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid var(--color-slate);
  color: #6b7280;
  background: var(--color-mist);
  white-space: nowrap;
}

.product-list-section .card .card-text {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.product-list-section .card a {
  position: relative;
  display: block;
}

.product-list-section .card:hover {
  overflow: visible;
}

/* Element Plus style tooltip */
.product-list-section .card a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 6px 12px;
  background: #303133;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 4px;
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1000;
}

.product-list-section .card a::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 3px;
  border: 5px solid transparent;
  border-top-color: #303133;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1000;
}

.product-list-section .card a:hover::after,
.product-list-section .card a:hover::before {
  opacity: 1;
}

/* Product list 响应式 */
@media (max-width: 576px) {
  .product-list-header h2 {
    font-size: 28px;
  }
}


/* ================================================================
   企业门户公共视觉底座
   仅提供全站基础视觉变量、排版、通用组件与响应式基线。
   不处理单页模块深度重排，不依赖写死宽高。
   ================================================================ */
:root {
  --enterprise-primary: #005BAC;
  --enterprise-primary-dark: #003F7D;
  --enterprise-primary-soft: #EAF4FF;
  --enterprise-primary-tint: #F3F8FF;
  --enterprise-accent: #22A6F2;
  --enterprise-ink: #102033;
  --enterprise-text: #1F2937;
  --enterprise-muted: #667085;
  --enterprise-border: #E3EAF2;
  --enterprise-border-strong: #CBD7E5;
  --enterprise-bg: #F7FAFD;
  --enterprise-surface: #FFFFFF;
  --enterprise-section: #F4F8FC;
  --enterprise-radius-sm: 6px;
  --enterprise-radius: 8px;
  --enterprise-radius-lg: 10px;
  --enterprise-container: 1200px;
  --enterprise-gutter: 24px;
  --enterprise-section-y: 64px;
  --enterprise-shadow-sm: 0 6px 18px rgba(16, 32, 51, 0.06);
  --enterprise-shadow-md: 0 14px 34px rgba(16, 32, 51, 0.10);
  --enterprise-transition: .22s ease;

  --bs-primary: var(--enterprise-primary);
  --bs-primary-rgb: 0, 91, 172;
  --bs-link-color: var(--enterprise-primary);
  --bs-link-hover-color: var(--enterprise-primary-dark);
  --bs-body-color: var(--enterprise-text);
  --bs-body-bg: var(--enterprise-bg);
  --bs-border-color: var(--enterprise-border);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  color: var(--enterprise-text);
  background: var(--enterprise-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--enterprise-primary);
  transition: color var(--enterprise-transition), opacity var(--enterprise-transition), background-color var(--enterprise-transition), border-color var(--enterprise-transition);
}

a:hover,
a:focus {
  color: var(--enterprise-primary-dark);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(0, 91, 172, 0.35);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

img:not([height]):not([style*="height"]) {
  height: auto;
}

.container {
  padding-left: max(var(--bs-gutter-x, .75rem), var(--enterprise-gutter));
  padding-right: max(var(--bs-gutter-x, .75rem), var(--enterprise-gutter));
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--enterprise-container);
  }
}

section {
  scroll-margin-top: 96px;
}

.btn {
  border-radius: var(--enterprise-radius-sm);
  font-weight: 600;
  transition: color var(--enterprise-transition), background-color var(--enterprise-transition), border-color var(--enterprise-transition), box-shadow var(--enterprise-transition);
}

.btn-primary {
  background-color: var(--enterprise-primary);
  border-color: var(--enterprise-primary);
  box-shadow: 0 8px 18px rgba(0, 91, 172, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--enterprise-primary-dark);
  border-color: var(--enterprise-primary-dark);
  box-shadow: 0 10px 24px rgba(0, 91, 172, 0.22);
}

.btn-outline-primary {
  color: var(--enterprise-primary);
  border-color: rgba(0, 91, 172, 0.42);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background-color: var(--enterprise-primary);
  border-color: var(--enterprise-primary);
}

.card {
  border-color: var(--enterprise-border);
  border-radius: var(--enterprise-radius);
  box-shadow: var(--enterprise-shadow-sm);
  transition: border-color var(--enterprise-transition), box-shadow var(--enterprise-transition);
}

.card:hover {
  border-color: rgba(0, 91, 172, 0.24);
  box-shadow: var(--enterprise-shadow-md);
}

.card-img,
.card-img-top,
.card-img-bottom {
  background-color: var(--enterprise-primary-tint);
}

.cm-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--enterprise-border);
  box-shadow: 0 6px 22px rgba(16, 32, 51, 0.06);
  backdrop-filter: saturate(160%) blur(12px);
}

.cm-navbar .navbar-brand img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
}

.cm-navbar .navbar-nav .nav-link {
  position: relative;
  border-radius: var(--enterprise-radius-sm);
  color: var(--enterprise-ink);
  font-size: 16px;
  font-weight: 600;
}

.cm-navbar .navbar-nav .nav-link:hover,
.cm-navbar .navbar-nav .nav-link:focus {
  color: var(--enterprise-primary);
  background: var(--enterprise-primary-tint);
}

.cm-navbar .navbar-nav .nav-link.active {
  color: var(--enterprise-primary);
  background: var(--enterprise-primary-soft);
}

.site-footer {
  color: var(--enterprise-muted);
  border-top: 1px solid var(--enterprise-border);
}

.site-footer h3 {
  color: var(--enterprise-ink);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--enterprise-primary-dark);
}

.site-footer img {
  border-radius: var(--enterprise-radius-sm);
}

@media (max-width: 1024px) {
  :root {
    --enterprise-section-y: 56px;
    --enterprise-gutter: 20px;
  }

  .cm-navbar .navbar-nav .nav-link {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }

  .card {
    border-radius: var(--enterprise-radius-sm);
  }
}

@media (max-width: 768px) {
  :root {
    --enterprise-section-y: 48px;
    --enterprise-gutter: 16px;
  }

  .container {
    max-width: 100%;
  }

  section {
    scroll-margin-top: 78px;
  }

  .cm-navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .navbar-nav-scroll {
    width: 100%;
    height: auto;
    margin-top: .75rem;
  }

  .navbar-nav-scroll .navbar-nav {
    gap: 4px;
  }

  .cm-navbar .navbar-nav .nav-link {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}

@media (max-width: 575.98px) {
  body {
    overflow-x: hidden;
  }

  .btn {
    white-space: normal;
  }

  .cm-navbar .navbar-brand img {
    max-height: 46px;
  }

  .cm-navbar .navbar-nav .nav-link {
    font-size: 14px;
  }
}

