:root {
    --site-width: 1240px;
    /*
   * 全站默认蓝色亮度调整入口：只改下一行 --theme-blue-primary。
   * 后台也可直接输出 --theme-primary，现代浏览器会自动派生深色、浅色和边框色。
   * 下方 .theme-blue 中的固定色仅供不支持 color-mix 的旧版 Safari 回退使用。
   */
    --theme-blue-primary: #1a68ea;
    --theme-green-primary: #168668;
    --theme-red-primary: #c43e48;
    --theme-purple-primary: #7c3aed; /* ← 新增 */
    --theme-orange-primary: #ea7a1a; /* ← 新增 */
    --theme-primary: var(--theme-blue-primary);
    /* iOS 15 及更早版 Safari 不支持 color-mix，先提供默认蓝色回退值。 */
    --theme-hover: #1555c0;
    --theme-deep: #114396;
    --theme-soft: #edf3fe;
    --theme-border: #c9dafb;
    --heading-rule: #a7b4bf;
    --ink: #1f2d3d;
    --muted: #5f6b78;
    --quiet: #8a949f;
    --border: #d7e0e8;
    --line: #e6ebf0;
    --page: #f4f7fa;
    --white: #fff;
    --warning: #b87812;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 14px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}
button,
select {
  cursor: pointer;
}
img {
  max-width: 100%;
}
.theme-blue {
  --theme-primary: var(--theme-blue-primary);
  --theme-hover: #1555c0;
  --theme-deep: #114396;
  --theme-soft: #edf3fe;
  --theme-border: #c9dafb;
}
.theme-green {
  --theme-primary: var(--theme-green-primary);
  --theme-hover: #126b53;
  --theme-deep: #0e5642;
  --theme-soft: #edf8f4;
  --theme-border: #c5e1d8;
}
.theme-red {
  --theme-primary: var(--theme-red-primary);
  --theme-hover: #9d323a;
  --theme-deep: #7d282e;
  --theme-soft: #fbf0f1;
  --theme-border: #e7cbd0;
}
/* =======20260912 自己添加两个主题色尝试======================= */
.theme-purple {
    --theme-primary: var(--theme-purple-primary);
    --theme-hover: #6528d4;
    --theme-deep: #5420b0;
    --theme-soft: #f3edff;
    --theme-border: #ddd0fb;
}

.theme-orange {
    --theme-primary: var(--theme-orange-primary);
    --theme-hover: #c9650f;
    --theme-deep: #a8540b;
    --theme-soft: #fef3e8;
    --theme-border: #fbd9b5;
}
/* =======20260912 自己添加两个主题色尝试======================= */

.site-shell {
  /*
   * 派生色必须在主题类所在节点重新计算。否则只覆盖 --theme-primary 时，
   * 从 :root 继承的 --theme-deep/soft 等仍会保留默认蓝色。
   */
  min-height: 100vh;
}

/* 现代浏览器仍只需改 --theme-primary，其余色自动派生。 */
@supports (color: color-mix(in srgb, #000 50%, #fff)) {
    :root,
    .theme-blue,
    .theme-green,
    .theme-red,
    .theme-purple, /* ← 新增 */
    .theme-orange, /* ← 新增 */
    .site-shell {
        --theme-hover: color-mix(in srgb, var(--theme-primary) 82%, black);
        --theme-deep: color-mix(in srgb, var(--theme-primary) 64%, black);
        --theme-soft: color-mix(in srgb, var(--theme-primary) 8%, white);
        --theme-border: color-mix(in srgb, var(--theme-primary) 24%, white);
    }
}
.site-width {
  width: calc(100% - 48px);
  max-width: var(--site-width);
  margin-right: auto;
  margin-left: auto;
  width: min(calc(100% - 48px), var(--site-width));
  margin-inline: auto;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Shared institutional header */
.utility-bar {
  height: 34px;
  color: #697582;
  background: #f5f7f9;
  border-bottom: 1px solid #e2e7ec;
  font-size: 12px;
}
.utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-inner nav {
  display: flex;
  height: 100%;
  align-items: center;
}
.utility-inner nav a {
  padding: 0 13px;
  border-right: 1px solid #dce2e8;
}
.utility-inner nav a:last-child {
  padding-right: 0;
  border: 0;
}
.utility-inner nav a:hover {
  color: var(--theme-primary);
}
.site-header {
  height: 82px;
  background: #fff;
}
.header-main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
}
.site-logo > img {
  display: block;
  width: 190px;
  height: auto;
}
.site-logo > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #dce2e8;
}
.site-logo b {
  color: #445160;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.site-logo small {
  color: #8b95a0;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.header-service {
  text-align: right;
}
.header-service span {
  color: var(--theme-primary);
  font-size: 13px;
  font-weight: 600;
}
.header-service p {
  margin: 7px 0 0;
  color: #7d8792;
  font-size: 12px;
}
.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 38px;
  padding: 8px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 3px;
}
.mobile-nav-toggle i {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}
.main-nav {
  position: sticky;
  z-index: 120;
  top: 0;
  height: 50px;
  background: #fff;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #cfd8e1;
  box-shadow: 0 3px 12px rgba(24, 47, 66, 0.06);
}
.main-nav-row {
  height: 100%;
  display: grid;
  grid-template-columns: 0.7fr repeat(7, 1fr);
}
.main-nav-row > a,
.main-nav-row > button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  border: 0;
  background: #fff;
  color: #2d3946;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.main-nav-row > button span {
  margin-left: 7px;
  color: #8a949d;
  font-size: 10px;
}
.main-nav-row > a::after,
.main-nav-row > button::after {
  position: absolute;
  right: 22%;
  bottom: -1px;
  left: 22%;
  height: 2px;
  background: var(--theme-primary);
  content: "";
  opacity: 0;
}
.main-nav-row > a:hover,
.main-nav-row > button:hover,
.main-nav-row > button.active {
  color: var(--theme-primary);
}
.main-nav-row > a:hover::after,
.main-nav-row > button:hover::after,
.main-nav-row > button.active::after {
  opacity: 1;
}
.sticky-nav-marker {
  display: block;
  width: 1px;
  height: 1px;
  margin-bottom: -1px;
  pointer-events: none;
}
.nav-is-stuck .nav-stage.nav-stage-open {
  position: sticky;
  z-index: 115;
  top: 50px;
}

/* Banner and in-place website map */
.nav-stage {
  height: 310px;
  overflow: hidden;
  background: #eef2f5;
  border-bottom: 1px solid #d9e0e6;
}
.nav-banner {
  position: relative;
  height: 310px;
  overflow: hidden;
  color: #fff;
  background: #1b4261;
}
.nav-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.banner-shade {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--theme-deep) 0%, var(--theme-primary) 68%, transparent 100%);
  opacity: 0.82;
}
.banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 6px;
}
.banner-content > span {
  color: #d7e6f2;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.banner-content h1 {
  max-width: 620px;
  margin: 16px 0 12px;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.banner-content p {
  margin: 0;
  color: #e3edf5;
  font-size: 16px;
}
.banner-content > div {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.banner-content a {
  min-width: 166px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 3px;
  text-align: center;
  font-size: 13px;
}
.banner-content a:first-child {
  border-color: #fff;
  background: #fff;
  color: var(--theme-deep);
}
.banner-content a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.banner-content a:first-child:hover {
  background: #f1f6fa;
  color: var(--theme-deep);
}
.banner-label {
  position: absolute;
  right: max(24px, calc((100vw - var(--site-width)) / 2));
  bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 12px 0 12px 18px;
  border-left: 3px solid rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.banner-label b {
  font-size: 14px;
}
.banner-label span {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.site-map-panel {
  height: 310px;
  background: #fff;
}
.site-map-inner {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  height: 100%;
  padding: 30px 0 26px;
}
.map-heading {
  padding-right: 30px;
  border-right: 1px solid var(--border);
}
.map-heading > span {
  color: var(--theme-primary);
  font-size: 12px;
}
.map-heading h2 {
  margin: 9px 0;
  font-size: 27px;
  font-weight: 600;
}
.map-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.map-heading a {
  display: inline-block;
  margin-top: 22px;
  color: var(--theme-primary);
  font-weight: 600;
}
.map-content,
.map-column {
  min-width: 0;
}
.map-columns {
  --map-column-count: 4;

  display: grid;
  grid-template-columns: repeat(var(--map-column-count), minmax(0, 1fr));
  gap: 36px;
  padding-top: 3px;
}
.map-columns--1 {
  --map-column-count: 1;
}
.map-columns--2 {
  --map-column-count: 2;
}
.map-columns--3 {
  --map-column-count: 3;
}
.map-columns--4 {
  --map-column-count: 4;
}
.map-columns--5 {
  --map-column-count: 5;

  gap: clamp(18px, 2vw, 28px);
}
.map-columns h3 {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--theme-soft);
  color: #273544;
  font-size: 16px;
}
.map-columns a {
  display: block;
  padding: 5px 0;
  color: #52606d;
  font-size: 13px;
}
.map-columns a:hover {
  color: var(--theme-primary);
}
.site-map-panel.has-search {
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}
.site-map-panel.has-search .site-map-inner {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 22px;
}
.site-map-panel.has-search .map-heading {
  padding-top: 3px;
}
.nav-search-area {
  margin-right: 38px;
}
.nav-literature-search {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 114px;
  height: 44px;
  overflow: hidden;
  border: 1px solid #b9cbd9;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(24, 64, 96, 0.08);
}
.nav-literature-search:focus-within {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 2px var(--theme-soft);
}
.nav-literature-search select,
.nav-literature-search input,
.nav-literature-search button {
  min-width: 0;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
}
.nav-literature-search select {
  padding: 0 12px;
  border-right: 1px solid var(--border);
  background: #f7f9fb;
  color: #42505d;
  font-size: 12px;
}
.nav-literature-search input {
  width: 100%;
  padding: 0 15px;
  background: #fff;
  color: #293744;
  font-size: 13px;
}
.nav-literature-search input::placeholder {
  color: #929ca5;
}
.nav-literature-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.nav-literature-search button:hover {
  background: var(--theme-deep);
}
.nav-literature-search button:focus-visible {
  box-shadow: inset 0 0 0 2px #fff;
}
.nav-literature-search svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.nav-search-hints {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 14px;
    min-height: 28px;
    padding: 6px 2px 0;
    margin-bottom: 6px;
    color: #75818c;
    font-size: 11px;
}
.nav-search-hints > span {
  color: #919ba4;
}
.nav-search-hints a {
  color: #667582;
}
.nav-search-hints a:hover,
.nav-search-hints .nav-advanced-search {
  color: var(--theme-primary);
}

/*========20260912 主导航综合检索按钮优化=========================*/
    .nav-search-hints .nav-advanced-search {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
        padding: 4px 12px 4px 10px;
        border: 1px solid var(--theme-border);
        border-radius: 4px;
        background: var(--theme-soft);
        color: var(--theme-primary);
        font-size: 12px;
        font-weight: 600;
        transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    }

        .nav-search-hints .nav-advanced-search::after {
            content: "";
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 4px solid currentColor;
            border-top: 3px solid transparent;
            border-bottom: 3px solid transparent;
            transition: transform 0.25s ease;
        }

        .nav-search-hints .nav-advanced-search:hover {
            background: var(--theme-primary);
            border-color: var(--theme-primary);
            color: #fff;
            box-shadow: 0 6px 16px color-mix(in srgb, var(--theme-primary) 28%, transparent);
            transform: translateX(-3px);
        }

            .nav-search-hints .nav-advanced-search:hover::after {
                transform: translateX(3px);
            }

        .nav-search-hints .nav-advanced-search:active {
            transform: translateX(-3px) scale(0.97);
        }
/*========20260912 主导航综合检索按钮优化=========================*/
.site-map-panel.has-search .map-columns {
  grid-template-columns: repeat(var(--map-column-count), minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}
.site-map-panel.has-search .map-column {
  min-height: 126px;
  padding: 12px 13px 10px;
  border: 1px solid #e1e8ee;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(29, 62, 88, 0.04);
}
.site-map-panel.has-search .map-columns h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  padding: 0 0 8px;
  border-bottom: 1px solid #e8edf1;
  font-size: 14px;
}
.site-map-panel.has-search .map-columns h3::before {
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--theme-primary);
  content: "";
}
.site-map-panel.has-search .map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
}
.site-map-panel.has-search .map-columns a {
  display: inline-flex;
  width: auto;
  padding: 4px 7px;
  border-radius: 2px;
  font-size: 11px;
}
.site-map-panel.has-search .map-columns a:hover {
  background: var(--theme-soft);
}
.map-close {
  position: absolute;
  top: 18px;
  right: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: #73808c;
  font-size: 21px;
  line-height: 1;
}
.map-close:hover {
  border-color: var(--theme-primary);
  color: var(--theme-primary);
}

/* Global search */
.search-band {
  padding: 28px 0 25px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.global-search {
  max-width: 1080px;
  margin-inline: auto;
}
.search-mode-tabs {
  display: flex;
  height: 35px;
  margin-bottom: 8px;
}
.search-mode-tabs button {
  position: relative;
  min-width: 132px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #66727e;
}
.search-mode-tabs button.active {
  color: var(--theme-primary);
  font-weight: 600;
}
.search-mode-tabs button.active::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--theme-primary);
  content: "";
}
.ordinary-search {
  display: grid;
  grid-template-columns: 160px 1fr 132px;
  min-height: 52px;
  border: 2px solid var(--theme-primary);
  background: #fff;
}
.ordinary-search select,
.ordinary-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: #fff;
}
.ordinary-search select {
  padding: 0 15px;
  border-right: 1px solid var(--border);
  color: #52606c;
}
.ordinary-search input {
  padding: 0 18px;
  font-size: 15px;
}
.ordinary-search button {
  border: 0;
  background: var(--theme-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.ordinary-search button:hover {
  background: var(--theme-hover);
}
.search-hot {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  min-height: 32px;
  padding-top: 11px;
  color: #7e8994;
  font-size: 12px;
}
.search-hot a:hover {
  color: var(--theme-primary);
}
.search-hot .advanced-link {
  margin-left: auto;
  color: var(--theme-primary);
}
.global-search.compact {
  max-width: none;
  margin-bottom: 22px;
}
.global-search.compact .search-mode-tabs {
  display: none;
  margin-bottom: 0;
}
.global-search.compact .ordinary-search {
  grid-template-columns: 140px 1fr 110px;
  min-height: 46px;
  border-width: 1px;
}

/* Reusable page pieces */
.inner-page {
  padding-bottom: 70px;
  background: #fff;
}
.page-heading {
  padding-top: 25px;
  padding-bottom: 25px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #7a8590;
  font-size: 12px;
}
.breadcrumb a:hover {
  color: var(--theme-primary);
}
.page-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 24px;
  padding-bottom: 19px;
  border-bottom: 2px solid #2d3946;
}
.page-heading h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}
.page-heading p {
  margin: 9px 0 0;
  color: var(--muted);
}
.page-heading-mark {
  color: #a0a9b3;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 23px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--heading-rule);
}
.section-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.section-title div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--theme-primary);
  font-size: 11px;
}
.section-title > a {
  color: #687581;
  font-size: 12px;
}
.section-title > a:hover {
  color: var(--theme-primary);
}
.ad-slot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 22px;
  min-height: 82px;
  margin: 34px 0;
  padding: 16px 22px;
  border: 1px solid var(--theme-border);
  border-left: 4px solid var(--theme-primary);
  background: #f4f8fb;
  color: #4d5b68;
}
.ad-slot__badge {
  color: var(--theme-primary);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.ad-slot__fallback {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ad-slot__title {
  font-weight: 600;
}
.ad-slot__note {
  color: #8a949e;
}
.ad-slot__code {
  color: #87929d;
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
}
.ad-slot__creative {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}
.ad-slot__creative > a,
.ad-slot__creative > img,
.ad-slot__creative iframe {
  display: block;
  width: 100%;
}
.ad-slot__creative img {
  display: block;
  width: 100%;
  height: auto;
}
.ad-slot__creative iframe {
  border: 0;
}
.ad-slot--compact {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 108px;
  margin: 24px 0 0;
  border-left-width: 3px;
}
.ad-slot--compact .ad-slot__badge {
  grid-column: 1;
}
.ad-slot--compact .ad-slot__code {
  grid-column: 2;
}
.ad-slot--compact .ad-slot__fallback {
  grid-column: 1 / -1;
}
.ad-slot[data-ad-status="loaded"] {
  padding: 0;
  border: 0;
  background: transparent;
}
.ad-slot[data-ad-status="loaded"] .ad-slot__badge,
.ad-slot[data-ad-status="loaded"] .ad-slot__fallback,
.ad-slot[data-ad-status="loaded"] .ad-slot__code {
  display: none;
}
.ad-slot[data-ad-status="empty"] {
  display: none;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 34px 0;
}
.pagination a,
.pagination button,
.pagination span {
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border: 1px solid var(--border);
  background: #fff;
  color: #5f6c78;
  text-align: center;
  line-height: 32px;
}
.pagination a.active,
.pagination a:hover,
.pagination button:hover:not(:disabled) {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #fff;
}
.pagination button:disabled {
  color: #b0b7bf;
  cursor: default;
}
.plain-panel {
  border: 1px solid var(--border);
  background: #fff;
}
.plain-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}
.plain-panel h2 {
  margin: 0;
  font-size: 17px;
}
.plain-panel-body {
  padding: 18px;
}

/* Homepage */
.home-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.home-shortcuts > a {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  min-height: 92px;
  padding: 17px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.home-shortcuts .shortcut-icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  color: var(--theme-primary);
  fill: currentColor;
}
.home-shortcuts > a > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.home-shortcuts strong {
  font-size: 15px;
  font-weight: 600;
}
.home-shortcuts small {
  color: #7d8893;
  font-size: 11px;
}
.home-shortcuts b {
  color: #a0a9b2;
  font-size: 18px;
  font-weight: 400;
}
.home-shortcuts > a:hover {
  background: var(--theme-soft);
}
.home-section {
  padding: 58px 0;
}
.home-news-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 0.72fr;
  gap: 28px;
}
.headline-news {
  border-right: 1px solid var(--border);
  padding-right: 27px;
}
.headline-image {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}
.headline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.headline-image:hover img {
  transform: scale(1.025);
}
.headline-image span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 13px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 11px;
}
.headline-news > div {
  padding-top: 18px;
}
.headline-news time {
  color: #9099a2;
  font-size: 11px;
}
.headline-news h3 {
  margin: 9px 0 8px;
  font-size: 20px;
  line-height: 1.5;
}
.headline-news h3 a:hover {
  color: var(--theme-primary);
}
.headline-news p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.detail-link {
  display: inline-block;
  margin-top: 13px;
  color: var(--theme-primary);
  font-size: 12px;
}
.news-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.news-column header,
.notice-box header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--theme-primary);
}
.news-column header h3,
.notice-box header h3 {
  margin: 0;
  font-size: 17px;
}
.news-column header a,
.notice-box header a {
  color: #8a949e;
  font-size: 11px;
}
.dated-link {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 8px;
  min-height: 58px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #334150;
}
.dated-link > span {
  line-height: 1.65;
}
.dated-link i {
  margin-right: 7px;
  padding: 2px 5px;
  border: 1px solid #d8e0e7;
  border-radius: 2px;
  color: #7a8793;
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}
.dated-link time {
  padding-top: 3px;
  color: #9aa3ad;
  font-size: 10px;
}
.dated-link:hover > span {
  color: var(--theme-primary);
}
.dated-link__thumb {
  display: none;
}
.notice-box {
  padding: 18px;
  background: var(--page);
}
.notice-box > a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  min-height: 73px;
  padding: 10px 0;
  border-bottom: 1px solid #dce3e9;
}
.notice-box > a:last-child {
  border: 0;
}
.notice-box time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d4dce4;
}
.notice-box time b {
  color: var(--theme-primary);
  font-size: 21px;
  font-weight: 500;
}
.notice-box time span {
  color: #929ca6;
  font-size: 9px;
}
.notice-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
}
.topic-banner {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  background: #123f69;
  box-shadow: 0 8px 24px rgba(24, 49, 70, 0.08);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.topic-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.42s ease;
}
.topic-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 35, 64, 0.88),
    rgba(7, 35, 64, 0.56) 47%,
    rgba(7, 35, 64, 0.08) 78%
  );
  content: "";
}
.topic-banner > div {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 55%;
  height: 100%;
  padding: 34px 48px;
}
.topic-banner span {
  color: #d4e5f2;
  font-size: 12px;
}
.topic-banner h2 {
  margin: 12px 0 9px;
  font-size: 25px;
  font-weight: 600;
}
.topic-banner p {
  margin: 0;
  color: #e0e9f1;
  line-height: 1.75;
}
.topic-banner a {
  align-self: flex-start;
  margin-top: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  font-size: 12px;
}
.home-literature {
  background: #f3f6f8;
}
.literature-entry-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.literature-entry-row a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 132px;
  padding: 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.literature-entry-row a > span {
  color: #a1abb5;
  font-size: 10px;
}
.literature-entry-row strong {
  margin-top: 20px;
  font-size: 18px;
}
.literature-entry-row small {
  margin-top: 5px;
  color: #7d8893;
  font-size: 11px;
}
.literature-entry-row b {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--theme-primary);
  font-weight: 400;
}
.literature-entry-row a:hover {
  background: var(--theme-soft);
}
.literature-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.literature-info-card {
  min-width: 0;
  padding: 15px 16px 10px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-border);
  border-radius: 3px;
  background: #fff;
}
.literature-info-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.literature-info-card header span {
  color: #2d3b48;
  font-size: 15px;
  font-weight: 600;
}
.literature-info-card header a {
  flex: 0 0 auto;
  color: var(--theme-primary);
  font-size: 10px;
}
.literature-info-card > a {
  position: relative;
  display: block;
  min-height: 47px;
  padding: 10px 36px 9px 10px;
  border-bottom: 1px solid var(--line);
  color: #4b5966;
  font-size: 12px;
  line-height: 1.55;
}
.literature-info-card > a::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--theme-primary);
  content: "";
}
.literature-info-card > a:last-child {
  border-bottom: 0;
}
.literature-info-card > a:hover {
  color: var(--theme-primary);
}
.literature-info-card time {
  position: absolute;
  top: 12px;
  right: 0;
  color: #9aa4ad;
  font-size: 9px;
}
.journal-home-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(6, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.journal-home-intro {
  padding: 18px 30px 0 0;
}
.journal-home-intro > span {
  color: var(--theme-primary);
  font-size: 11px;
}
.journal-home-intro h3 {
  margin: 8px 0 11px;
  font-size: 23px;
}
.journal-home-intro p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.journal-home-intro a {
  display: inline-block;
  margin-top: 13px;
  color: var(--theme-primary);
  font-size: 12px;
}
.journal-tile {
  text-align: center;
}
.journal-tile img {
  display: block;
  width: 100%;
  height: 224px;
  border: 1px solid #d5dce3;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(35, 52, 68, 0.08);
}
.journal-tile strong {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.journal-tile small {
  display: block;
  margin-top: 4px;
  color: #8d97a1;
  font-size: 10px;
}
.journal-tile:hover strong {
  color: var(--theme-primary);
}
.industry-service-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
}
.industry-directory {
  border-top: 2px solid #2d3946;
}
.industry-directory > a {
  display: grid;
  grid-template-columns: 38px 1fr 88px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--border);
}
.industry-directory > a > span {
  color: #9da6af;
  font-size: 10px;
}
.industry-directory h3 {
  margin: 0;
  font-size: 16px;
}
.industry-directory p {
  margin: 6px 0 0;
  color: #7a8590;
  font-size: 12px;
}
.industry-directory b {
  color: var(--theme-primary);
  font-size: 11px;
  font-weight: 500;
}
.industry-directory > a:hover {
  background: var(--theme-soft);
}
.service-directory {
  overflow: hidden;
  padding: 25px 28px;
  border-radius: 4px;
  background: var(--theme-deep);
  color: #fff;
  box-shadow: 0 9px 24px color-mix(in srgb, var(--theme-deep) 18%, transparent);
  transition:
    box-shadow 0.24s ease,
    transform 0.24s ease;
}
.service-directory header > span {
  color: #bfd3e4;
  font-size: 11px;
}
.service-directory header h3 {
  margin: 8px 0 18px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}
.service-directory > div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.service-directory > div a {
  display: grid;
  grid-template-columns: 90px 1fr 12px;
  align-items: center;
  min-height: 60px;
  padding: 0 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.service-directory > div strong {
  font-size: 13px;
}
.service-directory > div small {
  color: #c4d1dc;
  font-size: 10px;
}
.service-directory > div span {
  color: #c7d4df;
}
.service-hall-link {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  font-size: 11px;
}
.home-industry-services .industry-directory {
  border-top: 0;
}
.industry-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.industry-info-group {
  min-width: 0;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-border);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(29, 55, 76, 0.06);
}
.industry-info-group > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px 11px;
  border-bottom: 1px solid var(--line);
}
.industry-info-group > header h3 {
  margin: 0;
  font-size: 17px;
}
.industry-info-group > header a {
  color: var(--theme-primary);
  font-size: 10px;
}
.industry-info-list {
  padding: 4px 14px 8px;
}
.industry-info-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.industry-info-card:last-child {
  border-bottom: 0;
}
.industry-info-card:hover {
  background: var(--theme-soft);
  transform: translateX(2px);
}
.industry-info-card__media {
  display: block;
  height: 68px;
  overflow: hidden;
  border-radius: 2px;
  background: #dfe7ed;
}
    .industry-info-card__media img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* cover → contain，显示完整图片 */
        transition: transform 0.35s ease;
    }
.industry-info-card:hover .industry-info-card__media img {
  transform: scale(1.035);
}
.industry-info-card__copy {
  align-self: center;
  min-width: 0;
}
.industry-info-card__copy > span {
  color: var(--theme-primary);
  font-size: 10px;
  font-weight: 600;
}
.industry-info-card__copy h4 {
  display: -webkit-box;
  margin: 3px 0 4px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.industry-info-card__copy h4 a:hover {
  color: var(--theme-primary);
}
.industry-info-card__copy time {
  color: #8b969f;
  font-size: 10px;
}
.soft-section {
  background: var(--page);
}
.home-media-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 46px;
}
.home-video-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}
.home-video-feature > a {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
}
.home-video-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-video-feature i,
.channel-video-card > i,
.video-cover > i,
.video-channel-hero > i,
.company-video-row i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(13, 40, 63, 0.45);
  color: #fff;
  font-style: normal;
  transform: translate(-50%, -50%);
}
.home-video-feature > div > span {
  color: var(--theme-primary);
  font-size: 11px;
}
.home-video-feature h3 {
  margin: 8px 0 10px;
  font-size: 19px;
  line-height: 1.55;
}
.home-video-feature p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.home-video-feature > div > a {
  display: inline-block;
  margin-top: 12px;
  color: var(--theme-primary);
  font-size: 12px;
}
.recommend-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.recommend-list li {
  display: grid;
  grid-template-columns: 32px 1fr 42px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--border);
}
.recommend-list li > span {
  color: #9ca6af;
  font-size: 10px;
}
.recommend-list li > a {
  line-height: 1.5;
}
.recommend-list li > a:hover {
  color: var(--theme-primary);
}
.recommend-list em {
  padding: 3px 5px;
  border: 1px solid #cbd4dc;
  color: #7d8893;
  text-align: center;
  font-size: 9px;
  font-style: normal;
}

/* Category channels */
.channel-subnav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 26px;
  border: 1px solid var(--border);
  background: #fff;
}
.channel-subnav a {
  position: relative;
  padding: 14px 20px;
  color: #52606d;
}
.channel-subnav a.active,
.channel-subnav a:hover {
  color: var(--theme-primary);
}
.channel-subnav a.active::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: var(--theme-primary);
  content: "";
}
.channel-lead-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}
.channel-lead {
  position: relative;
  height: 390px;
  overflow: hidden;
}
.channel-lead > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel-lead::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(7, 27, 44, 0.87));
  content: "";
}
.channel-lead > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  color: #fff;
}
.channel-lead span {
  font-size: 11px;
}
.channel-lead h2 {
  margin: 8px 0;
  font-size: 23px;
}
.channel-lead p {
  margin: 0;
  color: #dce5ec;
}
.channel-lead a {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
}
.channel-fast-news {
  border-top: 2px solid #2c3946;
}
.channel-fast-news header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  border-bottom: 1px solid var(--border);
}
.channel-fast-news header h2 {
  margin: 0;
  font-size: 20px;
}
.channel-fast-news header a {
  color: #8b959f;
  font-size: 11px;
}
.channel-fast-news > a {
  display: grid;
  grid-template-columns: 62px 1fr 38px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
}
.channel-fast-news > a > span {
  color: var(--theme-primary);
  font-size: 12px;
}
.channel-fast-news > a > b {
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.channel-fast-news > a > time {
  color: #9aa3ad;
  font-size: 10px;
}
.channel-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 52px;
}
.channel-image-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.channel-image-news article > img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.channel-image-news article > div {
  padding-top: 12px;
}
.channel-image-news span {
  color: var(--theme-primary);
  font-size: 10px;
}
.channel-image-news h3 {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.55;
}
.channel-image-news p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.policy-list > a {
  display: grid;
  grid-template-columns: 30px 1fr 70px;
  gap: 10px;
  align-items: center;
  min-height: 63px;
  border-bottom: 1px solid var(--line);
}
.policy-list > a > span {
  color: #9ca5ae;
  font-size: 10px;
}
.policy-list > a > div {
  min-width: 0;
}
.policy-list i {
  margin-right: 7px;
  color: var(--theme-primary);
  font-size: 9px;
  font-style: normal;
}
.policy-list b {
  font-weight: 500;
}
.policy-list time {
  color: #929ca6;
  font-size: 10px;
  text-align: right;
}
.channel-resource-section {
  margin-top: 52px;
  padding: 28px 30px 32px;
  background: var(--page);
}
.knowledge-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.knowledge-directory > a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92px;
  padding: 17px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.knowledge-directory strong {
  font-size: 15px;
}
.knowledge-directory span {
  margin-top: 7px;
  color: #8c96a0;
  font-size: 11px;
}
.knowledge-directory b {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--theme-primary);
  font-weight: 400;
}
.channel-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 0.75fr;
  gap: 34px;
  margin-top: 52px;
}
.channel-video-card {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
}
.channel-video-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel-video-card::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(6, 28, 45, 0.85));
  content: "";
}
.channel-video-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 17px;
  color: #fff;
}
.channel-video-card span {
  font-size: 10px;
}
.channel-video-card h3 {
  margin: 5px 0 0;
  font-size: 16px;
}
.channel-video-card > i {
  z-index: 3;
}
.simple-notice-list,
.simple-directory-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.simple-notice-list li {
  display: grid;
  grid-template-columns: 1fr 72px;
  min-height: 49px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.simple-notice-list a {
  font-size: 12px;
  line-height: 1.5;
}
.simple-notice-list time {
  color: #929ca6;
  font-size: 10px;
  text-align: right;
}
.simple-directory-list li {
  display: grid;
  grid-template-columns: 1fr 38px;
  min-height: 49px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.simple-directory-list a {
  font-size: 12px;
}
.simple-directory-list span {
  padding: 2px 4px;
  border: 1px solid #d0d8df;
  color: #89939d;
  font-size: 9px;
  text-align: center;
}
.video-channel-lead {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 28px;
}
.video-channel-hero {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
}
.video-channel-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-channel-hero::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 29, 47, 0.9));
  content: "";
}
.video-channel-hero > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 29px;
  color: #fff;
}
.video-channel-hero > div span {
  font-size: 11px;
}
.video-channel-hero h2 {
  margin: 8px 0;
  font-size: 24px;
}
.video-channel-hero p {
  margin: 0;
  color: #dfe8ef;
}
.video-channel-hero > i {
  z-index: 3;
}
.video-channel-lead > aside {
  padding: 24px;
  background: var(--theme-deep);
  color: #fff;
}
.video-channel-lead > aside header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 13px;
}
.video-channel-lead aside h2 {
  margin: 0;
  font-size: 18px;
}
.video-channel-lead aside header a {
  color: #c7d5df;
  font-size: 10px;
}
.live-date {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 22px;
}
.live-date b {
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}
.live-date span {
  color: #c9d5df;
  font-size: 11px;
}
.video-channel-lead aside h3 {
  margin: 15px 0 8px;
  font-size: 18px;
  line-height: 1.55;
}
.video-channel-lead aside p {
  color: #c8d4de;
  font-size: 11px;
}
.reserve-button {
  display: block;
  margin: 17px 0;
  padding: 10px;
  background: #fff;
  color: var(--theme-deep);
  text-align: center;
}
.live-links {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.live-links a {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #d8e0e7;
  font-size: 11px;
}
.video-channel-section {
  margin-top: 52px;
}
.compact-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.two-video-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.two-video-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.two-video-columns li {
  display: grid;
  grid-template-columns: 32px 1fr 42px;
  align-items: center;
  min-height: 55px;
  border-bottom: 1px solid var(--line);
}
.two-video-columns li > span {
  color: #a0a9b2;
  font-size: 10px;
}
.two-video-columns li em {
  color: #8e98a1;
  font-size: 10px;
  font-style: normal;
}
.company-video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.company-video-row a {
  position: relative;
  display: block;
}
.company-video-row img {
  display: block;
  width: 100%;
  height: 145px;
  object-fit: cover;
}
    .company-video-row i {
        width: 38px;
        height: 38px;
        top: 0;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, 0);
        margin-top: 53px;
    }

@media (max-width: 430px) {
    .company-video-row i {
        margin-top: 37px;
    }
}
.company-video-row span {
  display: block;
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.55;
}

/* General lists */
.list-page-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
}
.channel-sidebar {
  align-self: start;
  border-top: 3px solid var(--theme-primary);
  background: var(--page);
}
.channel-sidebar > h2 {
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
}
.channel-sidebar > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 47px;
  padding: 0 19px;
  border-bottom: 1px solid #e1e6ea;
  color: #52606c;
}
.channel-sidebar > a.active {
  background: var(--theme-primary);
  color: #fff;
}
.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-top: 16px;
  border-bottom: 2px solid #2d3946;
  color: #697581;
}
.list-toolbar button {
  padding: 5px 11px;
  border: 0;
  background: transparent;
}
.list-toolbar button.active {
  color: var(--theme-primary);
}
.text-list article {
  display: grid;
  grid-template-columns: 72px 1fr 64px;
  gap: 22px;
  min-height: 132px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.text-list article > time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-right: 1px solid var(--border);
}
.text-list time b {
  color: var(--theme-primary);
  font-size: 26px;
  font-weight: 400;
}
.text-list time span {
  color: #949ea8;
  font-size: 10px;
}
.text-list article > div > span {
  color: var(--theme-primary);
  font-size: 10px;
}
.text-list h2 {
  margin: 7px 0 7px;
  font-size: 17px;
}
.text-list h2 a:hover {
  color: var(--theme-primary);
}
.text-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.text-list article > a {
  align-self: center;
  color: #85909a;
  font-size: 11px;
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  min-height: 58px;
  margin-bottom: 26px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  background: var(--page);
}
.category-filter b {
  margin-right: 12px;
}
.category-filter button {
  padding: 7px 13px;
  border: 0;
  background: transparent;
  border-radius: 2px;
}
.category-filter button.active,
.category-filter button:hover {
  background: var(--theme-primary);
  color: #fff;
}
.image-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
}
.image-list-grid article {
  display: grid;
  grid-template-columns: 185px 1fr;
  min-height: 172px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
}
.image-list-grid article > a {
  height: 145px;
  overflow: hidden;
}
.image-list-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-list-grid article > div {
  padding-left: 18px;
}
.image-list-grid article > div > span {
  color: var(--theme-primary);
  font-size: 10px;
}
.image-list-grid h2 {
  margin: 7px 0;
  font-size: 16px;
  line-height: 1.5;
}
.image-list-grid h2 a:hover {
  color: var(--theme-primary);
}
.image-list-grid p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.image-list-grid footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #909aa4;
  font-size: 10px;
}
.image-list-grid footer a {
  color: var(--theme-primary);
}
.video-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.video-list-grid article {
  min-width: 0;
}
.video-cover {
  position: relative;
  display: block;
  height: 165px;
  overflow: hidden;
  background: #273b4d;
}
.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-cover:hover img {
  transform: scale(1.03);
}
.video-cover i {
  width: 42px;
  height: 42px;
  font-size: 11px;
}
.video-cover time {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 3px 5px;
  background: rgba(0, 0, 0, 0.67);
  color: #fff;
  font-size: 9px;
}
.video-list-grid article > span {
  display: block;
  margin-top: 11px;
  color: var(--theme-primary);
  font-size: 10px;
}
.video-list-grid h2 {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.55;
}
.video-list-grid h2 a:hover {
  color: var(--theme-primary);
}
.video-list-grid article > p {
  margin: 0;
  color: #8c96a0;
  font-size: 10px;
}

/* Cross-search workbench and results */
.cross-workbench {
  border: 1px solid var(--border);
  background: #fff;
}
.cross-workbench > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.cross-workbench h2 {
  margin: 0;
  font-size: 21px;
}
.cross-workbench header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.cross-workbench header a {
  color: var(--theme-primary);
  font-size: 12px;
}
.cross-workbench form {
  padding: 24px;
}
.query-labels,
.query-row {
  display: grid;
  grid-template-columns: 95px 165px 120px 1fr 76px;
  gap: 8px;
}
.query-labels {
  margin-bottom: 7px;
  color: #7a8590;
  font-size: 11px;
}
.query-row {
  min-height: 44px;
  margin-bottom: 9px;
}
.query-row select,
.query-row input {
  min-width: 0;
  padding: 0 10px;
  border: 1px solid var(--border);
  outline: 0;
  background: #fff;
}
.query-row select:focus,
.query-row input:focus {
  border-color: var(--theme-primary);
}
.row-actions {
  display: flex;
  gap: 5px;
}
.row-actions button {
  width: 34px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--theme-primary);
  font-size: 18px;
}
.workbench-filters {
  margin-top: 18px;
  padding: 15px 18px;
  background: var(--page);
}
.workbench-filters fieldset {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin: 0;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
}
.workbench-filters fieldset:last-child {
  border: 0;
}
.workbench-filters legend {
  float: left;
  width: 88px;
  padding: 5px 14px 0 0;
  font-weight: 600;
}
.workbench-filters label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #52606d;
}
.workbench-filters select {
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  background: #fff;
}
.workbench-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.workbench-buttons button {
  min-width: 106px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
}
.workbench-buttons button.primary {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #fff;
}
.search-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: 35px;
}

.search-results-layout.filter-is-open {
  grid-template-columns: 245px minmax(0, 1fr);
}
.filter-sidebar {
  align-self: start;
  border: 1px solid var(--border);
}
.filter-sidebar > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.filter-sidebar h2 {
  margin: 0;
  font-size: 16px;
}
.filter-sidebar header button,
.filter-sidebar fieldset > button {
  border: 0;
  background: transparent;
  color: var(--theme-primary);
  font-size: 10px;
}
.selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}
.selected-filters span {
  padding: 4px 6px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: var(--theme-soft);
  color: var(--theme-primary);
  font-size: 10px;
}
.filter-sidebar fieldset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 13px;
  border: 0;
  border-bottom: 1px solid var(--border);
}
.filter-sidebar legend {
  width: 100%;
  margin-bottom: 4px;
  font-weight: 600;
}
.filter-sidebar label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #596672;
  font-size: 12px;
}
.filter-sidebar fieldset > button {
  align-self: flex-start;
  padding: 3px 0;
}
.result-expression {
  min-height: 44px;
  padding: 13px 15px;
  border: 1px solid var(--theme-border);
  background: var(--theme-soft);
  color: #53616d;
  font-size: 12px;
}
.result-expression b {
  color: var(--theme-deep);
}
.result-expression em {
  margin-left: 15px;
  color: #17734f;
  font-style: normal;
}
.result-search-form {
  display: grid;
  grid-template-columns: 90px 1fr 105px;
  min-height: 44px;
  margin-top: 12px;
}
.result-search-form label {
  display: flex;
  align-items: center;
  padding-left: 13px;
  border: 1px solid var(--border);
  border-right: 0;
  background: var(--page);
  font-weight: 600;
}
.result-search-form input {
  min-width: 0;
  padding: 0 12px;
  border: 1px solid var(--border);
  outline: 0;
}
.result-search-form button {
  border: 0;
  background: var(--theme-primary);
  color: #fff;
}
.result-toolbar {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 49px;
  margin-top: 17px;
  border-block: 1px solid var(--border);
  color: #65727f;
  font-size: 12px;
}
.result-toolbar button {
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
}
.result-toolbar > span {
  margin-left: auto;
}
.result-toolbar b {
  color: var(--theme-primary);
}
.result-toolbar select {
  height: 30px;
  border: 1px solid var(--border);
}
.document-results article {
  display: grid;
  grid-template-columns: 24px 28px 1fr 70px;
  gap: 9px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.doc-index {
  color: #9aa4ae;
}
.doc-content {
  min-width: 0;
}
.doc-type {
  color: var(--theme-primary);
  font-size: 10px;
}
.doc-content h3 {
  margin: 5px 0 7px;
  font-size: 17px;
  font-weight: 600;
}
.doc-content h3 a:hover {
  color: var(--theme-primary);
}
.doc-authors {
  margin: 0 0 8px;
  color: #65727e;
  font-size: 11px;
}
.doc-abstract {
  margin: 0;
  color: #566471;
  font-size: 12px;
  line-height: 1.75;
}
.doc-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}
.doc-keywords span {
  padding: 2px 5px;
  border-radius: 2px;
  background: var(--page);
  color: #6d7984;
  font-size: 9px;
}
.doc-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  color: var(--theme-primary);
  font-size: 11px;
}
.document-results article > aside {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #87919b;
  font-size: 10px;
}
.document-results article > aside b {
  color: #4d5a66;
  font-size: 13px;
}

/* Journals */
.journal-search {
  display: grid;
  grid-template-columns: 90px 1fr 100px;
  max-width: 780px;
  min-height: 45px;
  margin-bottom: 20px;
  border: 1px solid var(--theme-primary);
}
.journal-search label {
  display: flex;
  align-items: center;
  padding-left: 14px;
  border-right: 1px solid var(--border);
  color: #55626e;
}
.journal-search input {
  min-width: 0;
  padding: 0 12px;
  border: 0;
  outline: 0;
}
.journal-search button {
  border: 0;
  background: var(--theme-primary);
  color: #fff;
}
.journal-filter {
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--page);
}
.journal-filter > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 43px;
  border-bottom: 1px solid var(--border);
}
.journal-filter > div:last-child {
  border: 0;
}
.journal-filter b {
  width: 86px;
}
.journal-filter button {
  padding: 6px 9px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #596672;
}
.journal-filter button.active,
.journal-filter button:hover {
  background: var(--theme-primary);
  color: #fff;
}
.journal-count {
  margin: 20px 0 14px;
  color: #687480;
}
.journal-count b {
  color: var(--theme-primary);
}
.journal-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.journal-catalog-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 19px;
  min-height: 195px;
  padding: 18px;
  border: 1px solid var(--border);
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
.journal-catalog-grid article > a {
  display: block;
  height: 170px;
  overflow: hidden;
}
.journal-catalog-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(30, 47, 63, 0.12);
  transition:
    box-shadow 0.3s ease,
    transform 0.36s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.journal-catalog-grid h2 {
  margin: 5px 0 13px;
  font-size: 17px;
}
.journal-catalog-grid h2 a:hover {
  color: var(--theme-primary);
}
.journal-catalog-grid p {
  margin: 6px 0;
  color: #66737f;
  font-size: 10px;
  line-height: 1.55;
}
.journal-catalog-grid p span {
  color: #8e98a2;
}
.journal-catalog-grid article > div > div {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.journal-catalog-grid article > div > div a {
  padding: 6px 8px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  color: var(--theme-primary);
  font-size: 10px;
}
.journal-detail-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
}
.journal-profile {
  align-self: start;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--page);
}
.journal-profile > img {
  display: block;
  width: 150px;
  height: 205px;
  margin: 0 auto 16px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(31, 47, 62, 0.14);
}
.journal-profile h2 {
  text-align: center;
  font-size: 19px;
}
.journal-profile > p {
  margin: 7px 0;
  color: #66737f;
  font-size: 10px;
  line-height: 1.55;
}
.journal-profile > a {
  display: block;
  margin-top: 15px;
  padding: 9px;
  background: var(--theme-primary);
  color: #fff;
  text-align: center;
  font-size: 11px;
}
.journal-intro {
  padding: 21px 24px;
  border: 1px solid var(--border);
}
.journal-intro h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.journal-intro > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.journal-intro > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}
.journal-intro > div span {
  color: #7a8590;
  font-size: 11px;
}
.journal-intro > div b {
  margin-left: 8px;
  color: var(--theme-primary);
  font-size: 17px;
}
.issue-browser {
  margin-top: 25px;
  border: 1px solid var(--border);
}
.issue-browser > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 19px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.issue-browser h2 {
  margin: 0;
  font-size: 17px;
}
.issue-browser header button {
  padding: 6px 10px;
  border: 0;
  background: transparent;
}
.issue-browser header button.active {
  color: var(--theme-primary);
  font-weight: 600;
}
.issue-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 18px;
  gap: 9px;
}
.issue-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 5px;
  border: 1px solid var(--border);
}
.issue-grid a.current,
.issue-grid a:hover {
  border-color: var(--theme-primary);
  background: var(--theme-soft);
}
.issue-grid b {
  color: var(--theme-primary);
  font-size: 18px;
}
.issue-grid span {
  margin-top: 5px;
  color: #7b8691;
  font-size: 9px;
}
.issue-articles {
  margin-top: 26px;
  border-top: 2px solid #2d3946;
}
.issue-articles > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-bottom: 1px solid var(--border);
}
.issue-articles > header span {
  color: var(--theme-primary);
  font-size: 10px;
}
.issue-articles > header h2 {
  margin: 5px 0 0;
  font-size: 20px;
}
.issue-articles > header a {
  color: var(--theme-primary);
  font-size: 11px;
}
.issue-articles article {
  display: grid;
  grid-template-columns: 38px 1fr 55px 45px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}
.issue-articles article > span {
  color: #9ba5af;
  font-size: 10px;
}
.issue-articles h3 {
  margin: 0 0 6px;
  font-size: 14px;
}
.issue-articles h3 a:hover {
  color: var(--theme-primary);
}
.issue-articles p {
  margin: 0;
  color: #87919b;
  font-size: 10px;
}
.issue-articles time {
  color: #8b959f;
  font-size: 10px;
}
.issue-articles article > a {
  color: var(--theme-primary);
  font-size: 10px;
}
.issue-page-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
}
.issue-cover {
  align-self: start;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--page);
}
.issue-cover > img {
  display: block;
  width: 142px;
  height: 196px;
  margin: 0 auto 15px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(25, 43, 60, 0.14);
}
.issue-cover h2 {
  margin: 0;
  text-align: center;
  font-size: 17px;
}
.issue-cover > p {
  color: #7b8690;
  text-align: center;
  font-size: 10px;
}
.issue-cover > a {
  display: block;
  margin: 15px 0;
  padding: 8px;
  background: var(--theme-primary);
  color: #fff;
  text-align: center;
  font-size: 10px;
}
.issue-cover > div {
  display: grid;
  gap: 6px;
}
.issue-cover label {
  margin-top: 7px;
  font-size: 11px;
}
.issue-cover select {
  height: 34px;
  border: 1px solid var(--border);
  background: #fff;
}
.issue-article-list {
  border-top: 2px solid #2d3946;
}
.issue-article-list > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid var(--border);
}
.issue-article-list header h2 {
  display: inline;
  margin: 0 13px 0 0;
  font-size: 20px;
}
.issue-article-list header span {
  color: #8a949e;
  font-size: 11px;
}
.issue-article-list header form {
  display: grid;
  grid-template-columns: 210px 64px;
  height: 34px;
}
.issue-article-list header input {
  min-width: 0;
  padding: 0 9px;
  border: 1px solid var(--border);
}
.issue-article-list header button {
  border: 0;
  background: var(--theme-primary);
  color: #fff;
}
.issue-article-list article {
  display: grid;
  grid-template-columns: 24px 32px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.issue-article-list article > span {
  color: #9ba4ad;
}
.issue-article-list article i {
  color: var(--theme-primary);
  font-size: 9px;
  font-style: normal;
}
.issue-article-list article h3 {
  margin: 5px 0;
  font-size: 15px;
}
.issue-article-list article p {
  margin: 0;
  color: #7d8791;
  font-size: 10px;
}
.issue-article-list article > div > div {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  color: var(--theme-primary);
  font-size: 10px;
}

/* Academic and general details */
.article-page {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  padding-top: 25px;
}
.article-page > .breadcrumb {
  grid-column: 1/-1;
  margin-bottom: 3px;
}
.academic-article {
  border-top: 2px solid #2d3946;
}
.academic-article > header {
  padding: 28px 22px 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.academic-article > header > span {
  color: var(--theme-primary);
  font-size: 11px;
}
.academic-article h1 {
  margin: 10px 0 14px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.45;
}
.authors {
  color: var(--theme-primary);
  font-size: 15px;
}
.organizations {
  color: #687581;
  font-size: 11px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  color: #7e8993;
  font-size: 10px;
}
.article-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.article-actions button {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  font-size: 11px;
}
.article-actions button.primary {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #fff;
}
.article-metrics {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 13px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
  color: #7b8690;
  font-size: 10px;
}
.article-metrics b {
  color: var(--theme-primary);
  font-size: 14px;
}
.article-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.article-tabs a {
  position: relative;
  padding: 14px 18px;
}
.article-tabs a.active,
.article-tabs a:hover {
  color: var(--theme-primary);
}
.article-tabs a.active::after {
  position: absolute;
  right: 17px;
  bottom: -1px;
  left: 17px;
  height: 2px;
  background: var(--theme-primary);
  content: "";
}
.academic-article > section {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}
.academic-article section h2 {
  margin: 0 0 12px;
  font-size: 17px;
}
.academic-article section p,
.academic-article section li {
  color: #495764;
  line-height: 1.95;
}
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.keyword-row a {
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--theme-soft);
  color: var(--theme-primary);
}
.academic-article ol {
  padding-left: 22px;
}
.related-academic {
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-academic li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.related-academic li span {
  color: #8c96a0;
  font-size: 10px;
}
.article-side {
  align-self: start;
  padding-top: 2px;
}
.article-side > div {
  padding: 18px;
  border: 1px solid var(--border);
}
.article-side h2 {
  margin: 0 0 13px;
  font-size: 16px;
}
.article-side p {
  margin: 8px 0;
  color: #65727e;
  font-size: 10px;
  line-height: 1.6;
}
.article-side a {
  display: inline-block;
  margin-top: 9px;
  color: var(--theme-primary);
  font-size: 11px;
}
.article-page > .ad-slot,
.article-page > .comment-panel {
  grid-column: 1/-1;
}
.comment-panel {
  margin-top: 28px;
  border: 1px solid var(--border);
}
.comment-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 55px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.comment-panel h2 {
  margin: 0;
  font-size: 17px;
}
.comment-panel header span {
  color: #8a949e;
  font-size: 10px;
}
.comment-panel form {
  padding: 20px;
}
.comment-panel form > div {
  display: grid;
  grid-template-columns: 55px 1fr 70px 1fr;
  gap: 9px;
  align-items: center;
}
.comment-panel label {
  display: block;
  margin: 12px 0 6px;
  color: #576571;
}
.comment-panel input,
.comment-panel textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 9px;
  outline: 0;
}
.comment-panel textarea {
  resize: vertical;
}
.comment-panel .captcha-label {
  display: inline-block;
  margin-right: 8px;
}
.comment-panel .captcha-input {
  display: inline-block;
  width: 120px;
}
.captcha-box {
  display: inline-block;
  margin-left: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--page);
  letter-spacing: 0.25em;
}
.comment-panel form > button {
  display: block;
  min-width: 110px;
  margin-top: 17px;
  padding: 9px 15px;
  border: 0;
  border-radius: 2px;
  background: var(--theme-primary);
  color: #fff;
}
.general-detail {
  grid-template-columns: 1fr 280px;
}
.news-detail-article {
  border-top: 2px solid #2d3946;
}
.news-detail-article > header {
  padding: 28px 20px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.news-detail-article header > span {
  color: var(--theme-primary);
  font-size: 10px;
}
.news-detail-article h1 {
  margin: 9px 0 15px;
  font-size: 27px;
  line-height: 1.5;
}
.news-detail-article header > div {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #89939d;
  font-size: 10px;
}
.news-detail-article > p,
.news-detail-article > h2,
.news-detail-article > blockquote {
  margin-right: 25px;
  margin-left: 25px;
}
.news-detail-article > p {
  color: #384653;
  font-size: 15px;
  line-height: 2.1;
  text-indent: 2em;
}
.news-detail-article p.lead {
  padding: 14px 18px;
  background: var(--page);
  color: #586572;
  font-size: 13px;
  line-height: 1.8;
  text-indent: 0;
}
.news-detail-article > img {
  display: block;
  width: calc(100% - 50px);
  max-height: 480px;
  margin: 20px auto;
  object-fit: cover;
}
.news-detail-article > blockquote {
  padding: 14px 18px;
  border-left: 3px solid var(--theme-primary);
  background: var(--theme-soft);
  color: #53616d;
  line-height: 1.8;
}
.news-detail-article > h2 {
  margin-top: 27px;
  font-size: 20px;
}
.news-detail-article > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding: 18px 25px;
  border-top: 1px solid var(--border);
  color: #7f8993;
  font-size: 10px;
}
.news-detail-article footer button {
  margin-left: 5px;
  padding: 5px 8px;
  border: 1px solid var(--border);
  background: #fff;
}
.news-detail-side {
  align-self: start;
}
.news-detail-side > section {
  margin-top: 22px;
  border-top: 2px solid #2d3946;
}
.news-detail-side section h2 {
  margin: 0;
  padding: 14px 0 10px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
}
.news-detail-side section > a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
}
.news-detail-side section > a time {
  flex: none;
  color: #959fa9;
  font-size: 9px;
}
.news-detail-side section > a b {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 400;
}
.general-detail > .ad-slot,
.general-detail > .comment-panel {
  grid-column: 1/-1;
}
.product-page {
  padding-top: 25px;
}
.product-summary {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 38px;
  margin-top: 24px;
  padding-top: 26px;
  border-top: 2px solid #2d3946;
}
.product-gallery > img {
  display: block;
  width: 100%;
  height: 330px;
  border: 1px solid var(--border);
  object-fit: cover;
}
.product-gallery > div {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.product-gallery button {
  width: 72px;
  height: 52px;
  padding: 2px;
  border: 1px solid var(--border);
  background: #fff;
}
.product-gallery button.active {
  border-color: var(--theme-primary);
}
.product-gallery button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info > span {
  color: var(--theme-primary);
  font-size: 11px;
}
.product-info h1 {
  margin: 9px 0 13px;
  font-size: 26px;
  line-height: 1.5;
}
.product-intro {
  color: #596672;
  line-height: 1.8;
}
.product-info dl {
  margin: 18px 0 0;
  border-top: 1px solid var(--border);
}
.product-info dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-height: 39px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.product-info dt {
  color: #87919b;
  font-size: 11px;
}
.product-info dd {
  margin: 0;
  color: #43515d;
  font-size: 12px;
}
.product-actions {
  display: flex;
  gap: 9px;
  margin-top: 21px;
}
.product-actions a,
.product-actions button {
  min-width: 110px;
  padding: 10px 16px;
  border: 1px solid var(--theme-primary);
  border-radius: 2px;
  background: #fff;
  color: var(--theme-primary);
  text-align: center;
}
.product-actions a {
  background: var(--theme-primary);
  color: #fff;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 32px;
  margin-top: 43px;
}
.product-description {
  border: 1px solid var(--border);
}
.product-description > nav {
  display: flex;
  min-height: 50px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.product-description nav a {
  position: relative;
  padding: 16px 22px;
}
.product-description nav a.active {
  color: var(--theme-primary);
}
.product-description nav a.active::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: var(--theme-primary);
  content: "";
}
.product-description > section {
  padding: 23px 26px;
  border-bottom: 1px solid var(--border);
}
.product-description section h2 {
  margin: 0 0 13px;
  font-size: 19px;
}
.product-description section p,
.product-description section li {
  color: #4e5c68;
  line-height: 1.95;
}
.product-description section > img {
  display: block;
  width: 78%;
  max-height: 380px;
  margin: 20px auto 0;
  object-fit: cover;
}
.service-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-process li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-process li::after {
  position: absolute;
  top: 16px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: var(--theme-border);
  content: "";
}
.service-process li:last-child::after {
  display: none;
}
.service-process b {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #fff;
  font-size: 10px;
}
.service-process span {
  margin-top: 8px;
  font-size: 11px;
}
.product-detail-layout > aside {
  align-self: start;
}
.product-detail-layout aside > section {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid var(--border);
}
.product-detail-layout aside h2 {
  margin: 0 0 12px;
  font-size: 16px;
}
.product-detail-layout aside strong {
  display: block;
  line-height: 1.55;
}
.product-detail-layout aside p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}
.product-detail-layout aside section a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: var(--theme-primary);
  font-size: 11px;
}
.inquiry-panel {
  border: 1px solid var(--border);
}
.inquiry-panel > header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.inquiry-panel header h2 {
  margin: 0;
  font-size: 18px;
}
.inquiry-panel header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.inquiry-panel form {
  padding: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.inquiry-panel label,
.register-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #55626e;
}
.inquiry-panel input,
.inquiry-panel textarea,
.register-card input,
.register-card select {
  min-height: 39px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  outline: 0;
}
.inquiry-panel > form > label {
  margin-top: 17px;
}
.agreement {
  flex-direction: row !important;
  align-items: center;
  margin-top: 14px;
  font-size: 11px;
}
.agreement input {
  min-height: auto !important;
}
.inquiry-panel form > button {
  margin-top: 16px;
  padding: 10px 25px;
  border: 0;
  border-radius: 2px;
  background: var(--theme-primary);
  color: #fff;
}

/* Authentication and member center */
.auth-page {
  padding: 25px 0 70px;
  background: var(--page);
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  min-height: 500px;
  margin-top: 24px;
  border: 1px solid var(--border);
  background: #fff;
}
.auth-intro {
  padding: 68px 70px;
  background: var(--theme-deep);
  color: #fff;
}
.auth-intro > span {
  color: #c8d8e5;
  font-size: 12px;
}
.auth-intro h1 {
  margin: 13px 0;
  font-size: 31px;
  font-weight: 500;
}
.auth-intro > p {
  max-width: 460px;
  color: #d3dfe8;
  line-height: 1.85;
}
.auth-intro ul {
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}
.auth-intro li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #e0e7ed;
}
.auth-card {
  padding: 44px 45px;
}
.auth-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}
.auth-card h2 {
  margin: 0;
  font-size: 23px;
}
.auth-card header a {
  color: var(--theme-primary);
  font-size: 11px;
}
.auth-card form > label {
  display: block;
  margin: 14px 0 7px;
  color: #53606c;
}
.auth-card form > input {
  width: 100%;
  height: 43px;
  padding: 0 11px;
  border: 1px solid var(--border);
  outline: 0;
}
.auth-options {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
}
.auth-options a {
  color: var(--theme-primary);
}
.auth-captcha {
  display: grid;
  grid-template-columns: 1fr 85px 52px;
  gap: 7px;
  height: 41px;
  margin-top: 17px;
}
.auth-captcha input {
  min-width: 0;
  padding: 0 9px;
  border: 1px solid var(--border);
}
.auth-captcha span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page);
  border: 1px solid var(--border);
  letter-spacing: 0.2em;
}
.auth-captcha button {
  border: 0;
  background: transparent;
  color: var(--theme-primary);
  font-size: 10px;
}
.auth-submit {
  width: 100%;
  height: 43px;
  margin-top: 18px;
  border: 0;
  border-radius: 2px;
  background: var(--theme-primary);
  color: #fff;
}
.auth-note {
  margin-top: 16px;
  color: #929ca6;
  text-align: center;
  font-size: 9px;
}
.register-card {
  margin-top: 24px;
  border: 1px solid var(--border);
  background: #fff;
}
.register-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.register-card h1 {
  margin: 0;
  font-size: 24px;
}
.register-card header p {
  margin: 7px 0 0;
  color: var(--muted);
}
.register-card header > span {
  font-size: 11px;
}
.register-card header a {
  color: var(--theme-primary);
}
.register-card form {
  max-width: 920px;
  margin: 0 auto;
  padding: 27px 30px 36px;
}
.register-card fieldset {
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid var(--border);
}
.register-card legend {
  padding: 0 10px;
  color: var(--theme-primary);
  font-weight: 600;
}
.register-code {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 9px;
  max-width: 450px;
}
.register-code button {
  margin-top: 25px;
  border: 1px solid var(--theme-primary);
  border-radius: 2px;
  background: #fff;
  color: var(--theme-primary);
}
.register-card .auth-submit {
  width: 180px;
}
.member-page {
  padding: 25px 0 70px;
  background: var(--page);
}
.member-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  margin-top: 22px;
}
.member-sidebar {
  align-self: start;
  border: 1px solid var(--border);
  background: #fff;
}
.member-sidebar > header {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}
.member-sidebar > header > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #fff;
}
.member-sidebar header div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.member-sidebar header small {
  color: #8e98a2;
  font-size: 9px;
}
.member-sidebar > div h2 {
  margin: 0;
  padding: 15px 17px 6px;
  color: #8b959f;
  font-size: 10px;
  font-weight: 500;
}
.member-sidebar > div a {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  border-left: 3px solid transparent;
}
.member-sidebar > div a.active {
  border-left-color: var(--theme-primary);
  background: var(--theme-soft);
  color: var(--theme-primary);
}
.member-sidebar > div a:hover {
  color: var(--theme-primary);
}
.member-main {
  min-width: 0;
}
.member-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 145px;
  padding: 25px 30px;
  background: var(--theme-deep);
  color: #fff;
}
.member-welcome span {
  color: #c7d6e2;
  font-size: 11px;
}
.member-welcome h1 {
  margin: 8px 0;
  font-size: 27px;
  font-weight: 500;
}
.member-welcome p {
  margin: 0;
  color: #ccd8e1;
}
.member-welcome a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  font-size: 10px;
}
.member-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.member-stat-row a {
  display: flex;
  flex-direction: column;
  min-height: 105px;
  padding: 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.member-stat-row span {
  color: #6d7984;
  font-size: 11px;
}
.member-stat-row strong {
  margin-top: 9px;
  color: var(--theme-primary);
  font-size: 25px;
  font-weight: 500;
}
.member-stat-row small {
  margin-top: auto;
  color: #98a1aa;
  font-size: 9px;
}
.member-panel {
  border: 1px solid var(--border);
  background: #fff;
}
.member-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}
.member-panel h2 {
  margin: 0;
  font-size: 16px;
}
.member-panel header a {
  color: var(--theme-primary);
  font-size: 10px;
}
.member-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.member-services > a {
  display: grid;
  grid-template-columns: 34px 1fr 12px;
  gap: 9px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.member-services > a > span {
  color: #a0a9b2;
  font-size: 10px;
}
.member-services > a > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.member-services strong {
  font-size: 13px;
}
.member-services small {
  color: #87919b;
  font-size: 9px;
}
.member-services b {
  color: var(--theme-primary);
}
.member-services > a:hover {
  background: var(--theme-soft);
}
.member-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.member-panel ul {
  margin: 0;
  padding: 10px 17px;
  list-style: none;
}
.member-panel li {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  align-items: center;
  min-height: 45px;
  border-bottom: 1px solid var(--line);
}
.member-panel li > span {
  color: var(--theme-primary);
  font-size: 9px;
}
.member-panel li > span.processing {
  color: #b16e0d;
}
.member-panel li > span.done {
  color: #187452;
}
.member-panel li a {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.member-panel li time {
  color: #949ea8;
  font-size: 9px;
}

/* Legacy ASPX adapters */
.legacy-result-scope {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 14px;
  color: #53616d;
  font-size: 11px;
}
.legacy-result-scope input,
.result-search-form input.sec_checked {
  width: auto;
  min-width: 0;
  margin: 0;
  accent-color: var(--theme-primary);
}
.journal-count[type="text"] {
  display: block;
  width: 100%;
  height: auto;
  margin: 20px 0 14px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #687480;
  font: inherit;
}
.journal-count[type="text"]:disabled {
  color: #687480;
  opacity: 1;
  -webkit-text-fill-color: #687480;
}
#datalist > .c-company__body-item:not(article),
#list > .c-company__body-item:not(article) {
  position: relative;
  display: block;
  padding: 20px 78px 20px 0;
  border-bottom: 1px solid var(--border);
}
#datalist > .c-company__body-item:not(article) .c-company__body-title,
#list > .c-company__body-item:not(article) .c-company__body-title {
  margin: 5px 0 7px;
  font-size: 17px;
  font-weight: 600;
}
#datalist > .c-company__body-item:not(article) .c-company__body-content,
#list > .c-company__body-item:not(article) .c-company__body-content {
  color: #566471;
  font-size: 12px;
  line-height: 1.75;
}
#datalist > .c-company__body-item:not(article) .c-company__body-item-more,
#list > .c-company__body-item:not(article) .c-company__body-item-more {
  position: absolute;
  top: 20px;
  right: 0;
  color: #87919b;
  font-size: 10px;
}
#list.dataList > li,
#list.dataList > ul > li {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}
#list.dataList > li h2,
#list.dataList > ul > li h2 {
  margin: 5px 0 7px;
  font-size: 17px;
}
#list.dataList > li p,
#list.dataList > ul > li p {
  margin: 6px 0;
  color: #66737f;
  font-size: 12px;
  line-height: 1.75;
}
#list.dataList > li .c-company__body-info,
#list.dataList > ul > li .c-company__body-info {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  color: var(--theme-primary);
  font-size: 11px;
}
a.c-company-top-link:hover {
  color: var(--theme-primary);
}
.journal-catalog-grid > .divjournallist:not(article) {
  position: relative;
  min-height: 195px;
  padding: 18px;
  border: 1px solid var(--border);
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
.journal-catalog-grid > .divjournallist:not(article) > a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  height: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}
.journal-catalog-grid > .divjournallist:not(article) img {
  width: 90px;
  height: 132px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(30, 47, 63, 0.12);
  transition:
    box-shadow 0.3s ease,
    transform 0.36s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .journal-catalog-grid article:hover,
  .journal-catalog-grid > .divjournallist:not(article):hover {
    z-index: 2;
    border-color: color-mix(in srgb, var(--theme-primary) 32%, var(--border));
    box-shadow:
      0 19px 38px rgba(25, 55, 78, 0.18),
      0 5px 12px rgba(25, 55, 78, 0.08);
    transform: translateY(-5px);
  }

  .journal-catalog-grid article:hover > a img,
  .journal-catalog-grid > .divjournallist:not(article):hover img {
    box-shadow: 0 8px 18px rgba(26, 48, 66, 0.2);
    transform: scale(1.04);
  }
}
.issue-grid .ck-fl-img img {
  display: block;
  width: 58px;
  height: 78px;
  margin-bottom: 7px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(30, 47, 63, 0.12);
}
.issue-grid .ck-fl-content {
  margin-top: 5px;
  color: #7b8691;
  text-align: center;
  font-size: 9px;
}
.issue-grid .ck-fl-content .ck-fl-name {
  margin: 0;
}
#list > a.c-catalog__item-web {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
#list > a.c-catalog__item-web .c-catalog__item-div {
  margin: 5px 0;
  font-size: 15px;
  font-weight: 600;
}
#list > a.c-catalog__item-web .c-catalog__item-subdiv {
  color: #7d8791;
  font-size: 10px;
}
#morelist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: -1px;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--page);
  color: var(--theme-primary);
  font-size: 11px;
}
.aspx-bridge-toast {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 11px 15px;
  border-radius: 3px;
  background: #263746;
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 37, 50, 0.2);
  font-size: 12px;
  transition: opacity 0.2s ease;
}
.aspx-bridge-toast.is-error {
  background: #9f2f2f;
}
.aspx-loading {
  min-height: 150px;
  padding: 52px 20px;
  color: #7c8791;
  text-align: center;
}
.workbench-head-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.workbench-head-actions button {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: var(--theme-primary);
  font-size: 11px;
}
.cross-primary-search {
  display: grid;
  grid-template-columns: 1fr 120px;
  min-height: 48px;
  margin-bottom: 21px;
  border: 2px solid var(--theme-primary);
}
.cross-primary-search input {
  min-width: 0;
  padding: 0 15px;
  border: 0;
  outline: 0;
  font-size: 14px;
}
.cross-primary-search button {
  border: 0;
  background: var(--theme-primary);
  color: #fff;
  font-weight: 600;
}
.workbench-filters input[type="text"],
.workbench-filters input[inputmode="numeric"] {
  width: 76px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  background: #fff;
}
.compat-menu {
  display: none;
}
.c-filter-block-select {
  background: var(--theme-soft);
  color: var(--theme-primary);
}
.literature-type-select {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--border);
}
.literature-type-select #selecttype_a.select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
  color: #52606c;
}
.literature-type-select .select-menu {
  position: absolute;
  z-index: 8;
  top: calc(100% + 2px);
  right: -1px;
  left: -2px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--theme-primary);
  background: #fff;
  box-shadow: 0 5px 12px rgba(34, 52, 68, 0.12);
}
.select-menu-inner {
  padding: 5px 0;
}
.select-menu-item {
  display: block;
  padding: 9px 15px;
  color: #53616e;
  font-size: 12px;
}
.select-menu-item:hover,
.select-menu-item[aria-selected="true"] {
  background: var(--theme-soft);
  color: var(--theme-primary);
}
.search-mode-tabs > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 0 10px;
  color: #66727e;
}
.search-mode-tabs > a:hover {
  color: var(--theme-primary);
}
.issue-article-list header form {
  grid-template-columns: 88px 1fr 72px;
}
.issue-article-list header form select {
  min-width: 0;
  border: 1px solid var(--border);
  border-right: 0;
  background: #fff;
  padding: 0 7px;
}
.related-issues {
  margin: 22px 0;
  border: 1px solid var(--border);
}
.related-issues h2 {
  margin: 0;
  padding: 13px 15px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
  font-size: 15px;
}
.related-issues > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.related-issues a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-right: 1px solid var(--line);
}
.related-issues .c-suggest__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--theme-soft);
  color: var(--theme-primary);
  font-weight: 600;
}
.related-issues .c-suggest__test {
  font-size: 11px;
}
.article-actions a {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  font-size: 11px;
}
.article-actions a.primary {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #fff;
}
.comment-list {
  margin: 18px 22px 22px;
  border-top: 1px solid var(--border);
}
.comment-list article {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.comment-list article header {
  display: flex;
  justify-content: space-between;
  color: #66737f;
}
.comment-list article p {
  margin: 8px 0 0;
  color: #596672;
  line-height: 1.7;
}

/* Expanded authentication */
.auth-bind {
  width: 100%;
  height: 38px;
  margin-top: 9px;
  border: 1px solid var(--theme-primary);
  border-radius: 2px;
  background: #fff;
  color: var(--theme-primary);
}
.third-party-login {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.third-party-login > span {
  display: block;
  margin-bottom: 9px;
  color: #89939d;
  font-size: 10px;
}
.third-party-login > div {
  display: flex;
  gap: 7px;
}
.third-party-login button {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: #5e6b77;
  font-size: 10px;
}
.third-party-login > #wxscan {
  width: 100%;
  margin-top: 8px;
  border-color: var(--theme-border);
  color: var(--theme-primary);
}
.register-code {
  grid-template-columns: 1fr 90px 60px;
}
.register-code > span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  border: 1px solid var(--border);
  background: var(--page);
  letter-spacing: 0.18em;
}
.company-suggest {
  position: relative;
}
.company-suggest > input {
  width: 100%;
}
.company-suggest #suggestionBox {
  position: absolute;
  z-index: 7;
  top: calc(100% + 2px);
  right: 0;
  left: 0;
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 5px 12px rgba(34, 52, 68, 0.12);
}
.company-suggest:focus-within #suggestionBox {
  display: block;
}
.company-suggest #suggestionBox button {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: left;
  font-size: 11px;
}
.agreement-summary {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 3px solid var(--theme-border);
  background: var(--page);
  color: #7d8791;
  font-size: 10px;
}

/* Complete member center */
.member-sidebar > div button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 18px;
  border: 0;
  border-left: 3px solid transparent;
  background: #fff;
  text-align: left;
}
.member-sidebar > div button.active {
  border-left-color: var(--theme-primary);
  background: var(--theme-soft);
  color: var(--theme-primary);
}
.member-sidebar > div button:hover {
  color: var(--theme-primary);
}
.member-welcome > button {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 10px;
}
.member-stat-row > button {
  display: flex;
  flex-direction: column;
  min-height: 105px;
  padding: 16px;
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  text-align: left;
}
.member-stat-row > button:hover,
.member-services > button:hover {
  background: var(--theme-soft);
}
.member-services > button {
  display: grid;
  grid-template-columns: 34px 1fr 12px;
  gap: 9px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: left;
}
.member-services > button > span {
  color: #a0a9b2;
  font-size: 10px;
}
.member-services > button > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.member-services > button b {
  color: var(--theme-primary);
}
.member-panel header > button,
.member-panel header > span {
  border: 0;
  background: transparent;
  color: var(--theme-primary);
  font-size: 10px;
}
.member-panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 3px 0 16px;
  border-bottom: 2px solid #2d3946;
}
.member-panel-heading span {
  color: var(--theme-primary);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.member-panel-heading h1 {
  margin: 6px 0;
  font-size: 27px;
}
.member-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.member-panel-heading > a {
  color: var(--theme-primary);
  font-size: 10px;
}
.member-work-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 20px;
}
.member-panel + .member-panel,
.member-work-grid + .member-panel,
.member-panel-heading + .member-panel,
.member-state-samples + .member-panel {
  margin-top: 20px;
}
.member-work-grid > .member-panel {
  margin-top: 0;
}
.member-site-preview .site-preview-banner {
  min-height: 150px;
  padding: 28px 22px;
  background: var(--theme-deep);
  color: #fff;
}
.site-preview-banner b {
  display: block;
  font-size: 18px;
}
.site-preview-banner p {
  color: #cbd8e2;
  line-height: 1.7;
}
.member-site-preview dl {
  margin: 0;
  padding: 10px 18px;
}
.member-site-preview dl > div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}
.member-site-preview dt {
  color: #89939d;
}
.member-site-preview dd {
  margin: 0;
}
.member-site-preview > a {
  display: block;
  padding: 12px 18px;
  color: var(--theme-primary);
  font-size: 10px;
}
.status-published,
.status-processing {
  padding: 3px 7px !important;
  border: 1px solid var(--theme-border) !important;
  background: var(--theme-soft) !important;
  color: var(--theme-primary) !important;
}
.status-processing {
  border-color: #e2cfad !important;
  background: #fbf6eb !important;
  color: #9a6512 !important;
}
.member-form {
  padding: 20px;
}
.member-form > label,
.member-form .form-grid > label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
  color: #52606c;
  font-size: 11px;
}
.member-form input,
.member-form select,
.member-form textarea {
  width: 100%;
  min-height: 39px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 0;
  outline: 0;
  background: #fff;
}
.member-form input:focus,
.member-form select:focus,
.member-form textarea:focus {
  border-color: var(--theme-primary);
}
.member-form label small {
  color: #919aa4;
  font-size: 9px;
}
.field-prefix {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--border);
}
.field-prefix span {
  padding: 0 8px;
  color: #87919b;
  font-size: 9px;
}
.field-prefix input {
  border: 0;
}
.member-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}
.member-form-actions button {
  min-width: 90px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
}
.member-form-actions button.primary {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #fff;
}
.member-data-table {
  overflow-x: auto;
}
.member-data-table > div {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) 100px 100px 100px 100px;
  align-items: center;
  min-width: 650px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}
.member-data-table .table-head {
  background: var(--page);
  color: #75818c;
  font-size: 9px;
}
.member-data-table a,
.member-data-table button {
  color: var(--theme-primary);
}
.member-data-table button {
  border: 0;
  background: transparent;
}
.member-record-list li {
  grid-template-columns: 1fr 65px 85px !important;
  padding: 0 !important;
}
.member-inline-tabs {
  display: flex;
}
.member-inline-tabs button {
  padding: 7px 10px !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  background: #fff !important;
  color: #64717d !important;
}
.member-inline-tabs button.active {
  border-bottom-color: var(--theme-primary) !important;
  color: var(--theme-primary) !important;
}
.member-library-list article {
  display: grid;
  grid-template-columns: 22px 48px 1fr 55px 72px;
  gap: 8px;
  align-items: center;
  min-height: 65px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.member-library-list article > span {
  color: var(--theme-primary);
  font-size: 10px;
}
.member-library-list article > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}
.member-library-list article a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.member-library-list article small {
  color: #919aa4;
  font-size: 9px;
}
.member-library-list article > button {
  border: 0;
  background: transparent;
  color: var(--theme-primary);
  font-size: 9px;
}
.member-state-samples {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.member-state-samples > div {
  min-height: 70px;
  padding: 13px;
  border: 1px solid var(--border);
  background: #fff;
}
.member-state-samples b {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
}
.member-state-samples span {
  color: #87919b;
  font-size: 9px;
}
.feedback-timeline {
  margin: 0;
  padding: 18px 22px;
  list-style: none;
}
.feedback-timeline li {
  position: relative;
  display: block !important;
  padding: 0 0 20px 18px !important;
  border-left: 1px solid var(--theme-border) !important;
}
.feedback-timeline li::before {
  position: absolute;
  top: 2px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-primary);
  content: "";
}
.feedback-timeline b {
  display: block;
}
.feedback-timeline span {
  display: inline-block;
  margin-top: 6px;
  color: var(--theme-primary) !important;
}
.feedback-timeline p {
  color: #66737f;
  font-size: 10px;
}
.verification-status > dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 20px;
}
.verification-status dl > div {
  padding: 10px 14px;
  border-right: 1px solid var(--border);
}
.verification-status dt {
  color: #89939d;
  font-size: 9px;
}
.verification-status dd {
  margin: 6px 0 0;
  font-size: 11px;
}
.verification-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 20px 8px;
}
.verification-steps > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #9099a2;
}
.verification-steps > div::after {
  position: absolute;
  top: 13px;
  left: 62%;
  width: 76%;
  height: 1px;
  background: var(--border);
  content: "";
}
.verification-steps > div:last-child::after {
  display: none;
}
.verification-steps b {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #e7ecf0;
}
.verification-steps .done b,
.verification-steps .active b {
  background: var(--theme-primary);
  color: #fff;
}
.verification-steps .done,
.verification-steps .active {
  color: var(--theme-primary);
}
.document-upload-list > div {
  display: grid;
  grid-template-columns: 45px 1fr 65px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.document-upload-list > div > span {
  padding: 7px;
  background: var(--theme-soft);
  color: var(--theme-primary);
  font-size: 8px;
  text-align: center;
}
.document-upload-list > div > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.document-upload-list small {
  color: #929ba4;
  font-size: 9px;
}
.document-upload-list em {
  color: var(--theme-primary);
  font-size: 9px;
  font-style: normal;
}
.password-panel {
  display: grid;
  grid-template-columns: 1fr 260px;
}
.password-panel > header {
  grid-column: 1/-1;
}
.password-panel > aside {
  padding: 20px;
  border-left: 1px solid var(--border);
  background: var(--page);
}
.password-panel aside h3 {
  margin-top: 0;
  font-size: 14px;
}
.password-panel aside ul {
  padding-left: 17px;
}
.password-panel aside li {
  display: list-item !important;
  min-height: 0 !important;
  padding: 6px 0;
  color: #66737f;
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: #1f2c39;
  color: #fff;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.7fr 0.9fr;
  gap: 40px;
  padding: 48px 0 42px;
}
.footer-brand img {
  width: 178px;
  height: auto;
  padding: 7px;
  background: #fff;
}
.footer-brand p {
  max-width: 360px;
  color: #aeb9c3;
  font-size: 11px;
  line-height: 1.85;
}
.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-column h3 {
  margin: 0 0 13px;
  font-size: 13px;
}
.footer-column a {
  padding: 5px 0;
  color: #aeb9c3;
  font-size: 11px;
}
.footer-column a:hover {
  color: #fff;
}
.footer-contact > span {
  color: #aeb9c3;
  font-size: 10px;
}
.footer-contact strong {
  margin-top: 8px;
  font-size: 20px;
}
.footer-contact p {
  color: #8e9aa6;
  font-size: 10px;
}
.footer-contact a {
  padding: 7px 10px;
  border: 1px solid #566473;
  color: #cbd3da;
  font-size: 10px;
}
.footer-bottom {
  border-top: 1px solid #34414d;
  color: #87939f;
  font-size: 9px;
}
.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 53px;
}

@media (max-width: 1060px) {
  .site-width {
    width: min(calc(100% - 34px), var(--site-width));
  }
  .main-nav-row > a,
  .main-nav-row > button {
    font-size: 13px;
  }
  .site-map-inner {
    grid-template-columns: 180px 1fr;
    gap: 25px;
  }
  .map-columns {
    gap: 20px;
  }
  .site-map-panel.has-search .site-map-inner {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
  }
  .nav-literature-search {
    grid-template-columns: 104px minmax(0, 1fr) 102px;
  }
  .site-map-panel.has-search .map-column {
    padding-right: 9px;
    padding-left: 9px;
  }
  .home-news-grid {
    grid-template-columns: 1fr 1.25fr;
  }
  .notice-box {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .notice-box header {
    grid-column: 1/-1;
  }
  .notice-box > a {
    grid-template-columns: 36px 1fr;
  }
  .journal-home-grid {
    grid-template-columns: 1fr repeat(5, 1fr);
    gap: 12px;
  }
  .journal-home-intro {
    grid-column: 1/-1;
  }
  .journal-tile img {
    height: 200px;
  }
  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 0.8fr);
  }
  .footer-contact {
    grid-column: 1/-1;
    padding-top: 18px;
    border-top: 1px solid #34414d;
  }
  .journal-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .site-width {
    width: calc(100% - 24px);
  }
  .utility-inner > span {
    display: none;
  }
  .utility-inner {
    justify-content: flex-end;
  }
  .utility-inner nav a:nth-child(-n + 3) {
    display: none;
  }
  .site-header {
    position: sticky;
    z-index: 130;
    top: 0;
    height: 70px;
  }
  .site-logo > img {
    width: 155px;
  }
  .site-logo > span,
  .header-service {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .main-nav {
    position: sticky;
    z-index: 125;
    top: 70px;
    height: 0;
    min-height: 0;
    border: 0;
    box-shadow: none;
  }
  .main-nav-row {
    display: none;
    grid-template-columns: 1fr 1fr;
    height: auto;
    padding: 8px 0;
  }
  .main-nav.mobile-open .main-nav-row {
    display: grid;
  }
  .main-nav.mobile-open {
    height: auto;
    border-bottom: 3px solid var(--theme-primary);
    box-shadow: 0 7px 18px color-mix(in srgb, var(--theme-primary) 10%, transparent);
  }
  .nav-is-stuck .nav-stage.nav-stage-open {
    top: 70px;
    max-height: calc(100vh - 70px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav-row > a,
  .main-nav-row > button {
    justify-content: flex-start;
    min-height: 45px;
    padding-left: 14px;
    border: 1px solid var(--line);
    font-size: 13px;
  }
  .main-nav-row > a::after,
  .main-nav-row > button::after {
    display: none;
  }
  .nav-stage {
    height: 270px;
  }
  .nav-banner {
    height: 270px;
  }
  .banner-shade {
    background: linear-gradient(
      90deg,
      var(--theme-deep) 0%,
      var(--theme-primary) 72%,
      var(--theme-deep) 100%
    );
    opacity: 0.76;
  }
  .banner-content h1 {
    font-size: 28px;
  }
  .banner-content p {
    font-size: 13px;
  }
  .banner-label {
    display: none;
  }
  .site-map-panel {
    height: 270px;
    overflow-y: auto;
  }
  .site-map-inner {
    display: block;
    padding: 18px 0;
  }
  .map-heading {
    padding: 0 38px 13px 0;
    border: 0;
  }
  .map-heading h2 {
    font-size: 22px;
  }
 /*这儿是主导航左侧标题移动端控制 .map-heading p,
  .map-heading a {
    display: none;
  }换成如下*/
    .map-heading p {
        display: none;
    }
    .map-heading > a { /* > 表示只选择直接子级 */
        display: none;
    }



  .map-columns {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .map-columns--1,
  .site-map-panel.has-search .map-columns--1 {
    grid-template-columns: 1fr;
  }
  .map-columns h3 {
    font-size: 14px;
  }
  .map-columns a {
    display: inline-block;
    width: 50%;
    font-size: 11px;
  }
  .map-close {
    right: 0;
    top: 14px;
  }
  .nav-stage.nav-stage-search,
  .nav-stage.nav-stage-search .site-map-panel {
    height: 400px;
  }
  .site-map-panel.has-search .site-map-inner {
    display: block;
    padding: 16px 0 18px;
  }
  .site-map-panel.has-search .map-heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 0 38px 10px 0;
  }
  .site-map-panel.has-search .map-heading h2 {
    margin: 0;
  }
  .nav-search-area {
    margin-right: 0;
  }
  .site-map-panel.has-search .map-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .site-map-panel.has-search .map-columns a {
    width: auto;
  }
  .ordinary-search {
    grid-template-columns: 110px 1fr 88px;
  }
  .search-hot .advanced-link {
    width: 100%;
    margin-left: 0;
  }
  .home-shortcuts {
    display: none;
  }
  .home-section {
    padding: 43px 0;
  }
  .home-news-grid,
  .channel-lead-grid,
  .channel-two-columns,
  .video-channel-lead,
  .two-video-columns,
  .industry-service-grid,
  .home-media-grid {
    grid-template-columns: 1fr;
  }
  .headline-news {
    border-right: 0;
    padding-right: 0;
  }
  .news-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 14px;
  }
  .news-column + .news-column {
    margin-top: 0;
  }
  .dated-link {
    grid-template-columns: 126px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 2px 13px;
    min-height: 104px;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 3px 10px rgba(29, 62, 88, 0.045);
  }
  .dated-link__thumb {
    display: block;
    grid-row: 1 / 3;
    grid-column: 1;
    width: 100%;
    height: 86px;
    object-fit: cover;
  }
  .dated-link > span {
    display: -webkit-box;
    grid-row: 1;
    grid-column: 2;
    align-self: end;
    overflow: hidden;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .dated-link i {
    display: block;
    width: max-content;
    margin: 0 0 4px;
    border: 0;
    color: var(--theme-primary);
    font-weight: 600;
  }
  .dated-link time {
    grid-row: 2;
    grid-column: 2;
    align-self: start;
    padding-top: 0;
  }
  .news-column .dated-link:nth-of-type(n + 4) {
    display: none;
  }
  .notice-box {
    grid-template-columns: 1fr 1fr;
  }
  .topic-banner {
    height: 240px;
  }
  .topic-banner > div {
    width: 78%;
    padding: 26px;
  }
  .topic-banner h2 {
    font-size: 20px;
  }
  .topic-banner p {
    display: none;
  }
  .literature-entry-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .literature-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .journal-home-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .journal-home-intro {
    grid-column: 1/-1;
  }
  .journal-tile img {
    height: 260px;
  }
  .channel-bottom-grid {
    grid-template-columns: 1fr;
  }
  .knowledge-directory {
    grid-template-columns: 1fr 1fr;
  }
  .channel-image-news {
    grid-template-columns: 1fr 1fr;
  }
  .compact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .list-page-layout,
  .journal-detail-layout,
  .issue-page-layout,
  .search-results-layout.filter-is-open,
  .search-results-layout,
  .list-page-layout,
  .product-detail-layout,
  .member-layout {
    grid-template-columns: 1fr;
  }
  .channel-sidebar,
  .journal-profile,
  .issue-cover,
  .filter-sidebar {
    display: none;
  }
  .image-list-grid {
    grid-template-columns: 1fr;
  }
  .video-list-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journal-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .query-labels {
    display: none;
  }
  .query-row {
    grid-template-columns: 74px 120px 92px 1fr 70px;
  }
  .result-toolbar {
    flex-wrap: wrap;
    padding: 9px 0;
  }
  .result-toolbar > span {
    margin-left: 0;
  }
  .document-results article {
    grid-template-columns: 20px 25px 1fr;
  }
  .document-results article > aside {
    display: none;
  }
  .article-page,
  .general-detail {
    grid-template-columns: 1fr;
  }
  .article-side,
  .news-detail-side {
    display: none;
  }
  .article-page > .breadcrumb {
    grid-column: 1;
  }
  .product-summary {
    grid-template-columns: 1fr;
  }
  .product-gallery > img {
    height: 300px;
  }
  .auth-layout {
    grid-template-columns: 1fr;
  }
  .auth-intro {
    padding: 35px 40px;
  }
  .auth-card {
    padding: 35px 40px;
  }
  .member-services {
    grid-template-columns: 1fr 1fr;
  }
  .member-two-cols {
    grid-template-columns: 1fr;
  }
  .member-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
  }
  .member-sidebar > header {
    grid-column: 1/-1;
  }
  .member-sidebar > div h2 {
    padding-top: 10px;
  }
  .member-work-grid,
  .password-panel {
    grid-template-columns: 1fr;
  }
  .password-panel > aside {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .member-state-samples {
    grid-template-columns: 1fr 1fr;
  }
  .member-library-list article {
    grid-template-columns: 20px 45px 1fr 55px;
  }
  .member-library-list article > button:last-child {
    display: none;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    padding: 13px 0;
    gap: 8px 18px;
  }
}

@media (max-width: 520px) {
  .nav-stage.nav-stage-search,
  .nav-stage.nav-stage-search .site-map-panel {
    height: 400px;
  }
  .nav-literature-search {
    grid-template-columns: minmax(0, 1fr) 92px;
    height: auto;
  }
  .nav-literature-search select {
    grid-column: 1/-1;
    height: 35px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-literature-search input,
  .nav-literature-search button {
    height: 44px;
  }
  .nav-search-hints {
    gap: 2px 10px;
  }

 /*========20260912 主导航综合检索按钮优化=========================*/
    .nav-search-hints .nav-advanced-search {
        margin-left: 0;
        padding: 4px 10px 4px 9px;
        font-size: 11px;
    }
 /*========20260912 主导航综合检索按钮优化=========================*/

  .site-map-panel.has-search .map-column {
    min-height: 0;
    padding: 10px 9px 9px;
  }
  .banner-content h1 {
    font-size: 24px;
  }
  .banner-content p {
    line-height: 1.65;
  }
  .banner-content > div {
    margin-top: 20px;
  }
  .banner-content a {
    min-width: 0;
    padding: 9px 10px;
    font-size: 11px;
  }
  .ordinary-search {
    grid-template-columns: 1fr 88px;
  }
  .ordinary-search select {
    grid-column: 1/-1;
    min-height: 35px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .ordinary-search input,
  .ordinary-search button {
    min-height: 47px;
  }
  .home-shortcuts {
    display: none;
  }
  .section-title h2 {
    font-size: 21px;
  }
  .home-news-grid {
    display: block;
  }
  .news-columns {
    grid-template-columns: 1fr;
  }
  .news-column + .news-column {
    margin-top: 0;
  }
  .notice-box {
    display: block;
    margin-top: 25px;
  }
  .topic-banner > div {
    width: 95%;
  }
  .topic-banner h2 {
    font-size: 17px;
  }
  .literature-entry-row {
    grid-template-columns: 1fr 1fr;
  }
  .literature-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }
  .literature-info-card {
    padding: 12px 11px 7px;
  }
  .literature-info-card header span {
    font-size: 14px;
  }
  .literature-info-card header a {
    font-size: 11px;
  }
  .literature-info-card > a {
    min-height: 61px;
    padding: 10px 0 20px 9px;
    font-size: 13px;
    line-height: 1.5;
  }
  .literature-info-card time {
    top: auto;
    right: 0;
    bottom: 7px;
  }
  .journal-home-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
    margin-top: 28px;
  }
  .journal-home-intro {
    margin-bottom: 2px;
    padding: 17px 18px;
    border-left: 4px solid var(--theme-primary);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--theme-primary) 6%, transparent);
  }
  .journal-tile {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 7px 7px 11px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(35, 52, 68, 0.07);
  }
  .journal-tile img {
    height: var(--home-journal-cover-height, 260px);
    border: 0;
    box-shadow: none;
  }
  .journal-tile strong {
    margin-top: 9px;
    font-size: 14px;
  }
  .journal-tile small {
    margin-top: 5px;
    font-size: 12px;
  }
  .industry-directory > a {
    grid-template-columns: 30px 1fr;
    padding: 11px 0;
  }
  .industry-directory > a > b {
    display: none;
  }
  .home-video-feature {
    grid-template-columns: 1fr;
  }
  .home-video-feature > a {
    height: 210px;
  }
  .page-heading-row {
    align-items: flex-start;
  }
  .page-heading h1 {
    font-size: 24px;
  }
  .page-heading-mark {
    display: none;
  }
  .channel-subnav a {
    padding: 11px 12px;
    font-size: 11px;
  }
  .channel-lead {
    height: 310px;
  }
  .channel-fast-news {
    margin-top: 20px;
  }
  .channel-image-news,
  .knowledge-directory,
  .company-video-row {
    grid-template-columns: 1fr;
  }
  .video-channel-hero {
    height: 310px;
  }
  .compact-grid,
  .video-list-grid {
    grid-template-columns: 1fr !important;
  }
  .video-cover {
    height: 210px;
  }
  .image-list-grid article {
    grid-template-columns: 120px 1fr;
  }
  .image-list-grid article > a {
    height: 115px;
  }
  .image-list-grid p {
    -webkit-line-clamp: 2;
  }
  .category-filter b {
    width: 100%;
  }
  .cross-workbench form {
    padding: 15px;
  }
  .query-row {
    grid-template-columns: 65px 1fr;
    height: auto;
  }
  .query-row select,
  .query-row input {
    min-height: 39px;
  }
  .query-row input {
    grid-column: 1/-1;
  }
  .row-actions {
    grid-column: 1/-1;
  }
  .workbench-filters fieldset {
    align-items: flex-start;
  }
  .workbench-filters legend {
    width: 100%;
    float: none;
  }
  .search-results-layout {
    margin-top: 20px;
  }
  .result-search-form {
    grid-template-columns: 1fr 82px;
  }
  .result-search-form label {
    grid-column: 1/-1;
    min-height: 34px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }
  .result-toolbar label:nth-last-child(1) {
    width: 100%;
  }
  .document-results article {
    grid-template-columns: 18px 1fr;
  }
  .doc-index {
    display: none;
  }
  .doc-content h3 {
    font-size: 15px;
  }
  .journal-catalog-grid {
    grid-template-columns: 1fr;
  }
  .issue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .issue-articles article {
    grid-template-columns: 28px 1fr 42px;
  }
  .issue-articles article > a {
    display: none;
  }
  .issue-article-list > header {
    display: block;
    padding: 13px 0;
  }
  .issue-article-list header form {
    margin-top: 10px;
  }
  .article-actions {
    flex-wrap: wrap;
  }
  .article-meta {
    display: block;
  }
  .article-meta span {
    display: block;
    margin: 5px 0;
  }
  .article-tabs {
    overflow-x: auto;
  }
  .academic-article h1,
  .news-detail-article h1 {
    font-size: 21px;
  }
  .news-detail-article header > div {
    display: block;
  }
  .news-detail-article header > div span,
  .news-detail-article header > div time {
    display: block;
    margin: 5px 0;
  }
  .news-detail-article > p {
    font-size: 14px;
  }
  .comment-panel form > div {
    grid-template-columns: 1fr;
  }
  .comment-panel form > div label {
    margin: 5px 0 0;
  }
  .product-summary {
    gap: 20px;
  }
  .product-gallery > img {
    height: 230px;
  }
  .product-info h1 {
    font-size: 22px;
  }
  .service-process {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-process li {
    flex-direction: row;
    gap: 10px;
  }
  .service-process li::after {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .auth-layout {
    display: block;
  }
  .auth-intro {
    padding: 30px 25px;
  }
  .auth-intro ul {
    display: none;
  }
  .auth-card {
    padding: 30px 22px;
  }
  .auth-card > header {
    align-items: flex-start;
  }
  .register-card > header {
    align-items: flex-start;
    gap: 15px;
  }
  .register-card form {
    padding: 20px 16px 30px;
  }
  .member-welcome {
    display: block;
  }
  .member-welcome a,
  .member-welcome > button {
    display: inline-block;
    margin-top: 18px;
  }
  .member-stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .member-services {
    grid-template-columns: 1fr;
  }
  .cross-primary-search {
    grid-template-columns: 1fr 82px;
  }
  .literature-type-select {
    grid-column: 1/-1;
    min-height: 38px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .literature-type-select .select-menu {
    top: 100%;
    right: 0;
    left: 0;
  }
  .related-issues > div {
    grid-template-columns: 1fr;
  }
  .register-code {
    grid-template-columns: 1fr 80px 52px;
  }
  .register-code > span,
  .register-code button {
    margin-top: 25px;
  }
  .member-sidebar {
    grid-template-columns: 1fr;
  }
  .member-sidebar > header {
    grid-column: 1;
  }
  .member-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .member-panel-heading h1 {
    font-size: 23px;
  }
  .member-state-samples {
    grid-template-columns: 1fr;
  }
  .verification-status > dl {
    grid-template-columns: 1fr;
  }
  .verification-status dl > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .member-library-list article {
    grid-template-columns: 20px 42px 1fr;
  }
  .member-library-list article > button {
    display: none;
  }
  .member-data-table {
    margin: 0 -1px;
  }
  .document-upload-list > div {
    grid-template-columns: 40px 1fr;
  }
  .document-upload-list em {
    grid-column: 2;
  }
  .member-form-actions {
    flex-direction: column;
  }
  .member-form-actions button {
    width: 100%;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
}

.idist-page .channel-subnav {
  margin-bottom: 26px;
}
.idist-lead {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  min-height: 366px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-primary);
  background: #fff;
}
.idist-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 48px;
  background: var(--page);
}
.idist-lead-copy > span {
  color: var(--theme-primary);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.idist-lead-copy h1 {
  margin: 14px 0 15px;
  color: #243241;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.42;
}
.idist-lead-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.idist-lead-copy > div {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.idist-lead-copy a {
  min-width: 138px;
  padding: 10px 17px;
  border: 1px solid var(--theme-primary);
  border-radius: 2px;
  color: var(--theme-primary);
  text-align: center;
}
.idist-lead-copy a.idist-primary-link {
  background: var(--theme-primary);
  color: #fff;
}
.idist-lead-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.idist-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idist-lead-image > div {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  padding: 15px 20px;
  background: rgba(19, 45, 68, 0.92);
  color: #fff;
}
.idist-lead-image b {
  font-size: 14px;
}
.idist-lead-image span {
  margin-top: 4px;
  color: #cbd7e1;
  font-size: 10px;
}
.idist-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: #fff;
}
.idist-stats > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 105px;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
}
.idist-stats strong {
  color: var(--theme-primary);
  font-size: 27px;
  font-weight: 500;
}
.idist-stats strong small {
  margin-left: 4px;
  color: #7b8792;
  font-size: 10px;
}
.idist-stats span {
  margin-top: 7px;
  color: #596673;
  font-size: 11px;
}
.idist-stats > p {
  align-self: center;
  margin: 0;
  padding: 18px 22px;
  color: #8a949e;
  font-size: 10px;
  line-height: 1.8;
}
.idist-overview {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 38px;
  margin-top: 48px;
}
.idist-region-list {
  border-top: 1px solid var(--border);
}
.idist-region-list > a {
  display: grid;
  grid-template-columns: 37px 1fr 76px;
  align-items: center;
  min-height: 61px;
  border-bottom: 1px solid var(--line);
}
.idist-region-list > a > i {
  color: #9aa4ae;
  font-size: 11px;
  font-style: normal;
}
.idist-region-list > a > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.idist-region-list strong {
  min-width: 42px;
  font-size: 15px;
}
.idist-region-list span {
  overflow: hidden;
  color: #75818c;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.idist-region-list > a > b {
  color: var(--theme-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}
.idist-region-list b small {
  color: #8a959f;
  font-size: 9px;
}
.idist-region-list > a:hover {
  background: var(--theme-soft);
}
.idist-mini-map {
  align-self: start;
  border: 1px solid var(--border);
  background: #f7f9fb;
}
.idist-mini-map > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.idist-mini-map header span {
  font-weight: 600;
}
.idist-mini-map header small {
  color: #8a959f;
  font-size: 9px;
}
.idist-map-canvas {
  position: relative;
  height: 322px;
  margin: 14px;
  background-image:
    linear-gradient(#e8edf2 1px, transparent 1px),
    linear-gradient(90deg, #e8edf2 1px, transparent 1px);
  background-size: 32px 32px;
}
.idist-map-canvas a {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8cddd;
  border-radius: 3px;
  background: #dceaf4;
  color: #315977;
  font-size: 12px;
  transition:
    transform 0.18s,
    background 0.18s;
}
.idist-map-canvas a:hover {
  z-index: 2;
  transform: translateY(-2px);
  background: var(--theme-primary);
  color: #fff;
}
.idist-map-canvas small {
  margin-top: 4px;
  font-size: 9px;
  opacity: 0.75;
}
.idist-map-canvas .northwest {
  top: 55px;
  left: 24px;
  width: 112px;
  height: 72px;
}
.idist-map-canvas .north {
  top: 37px;
  left: 150px;
  width: 104px;
  height: 67px;
  background: #c6ddec;
}
.idist-map-canvas .northeast {
  top: 18px;
  right: 15px;
  width: 92px;
  height: 60px;
}
.idist-map-canvas .southwest {
  top: 145px;
  left: 45px;
  width: 105px;
  height: 87px;
}
.idist-map-canvas .central {
  top: 120px;
  left: 167px;
  width: 96px;
  height: 80px;
  background: #c6ddec;
}
.idist-map-canvas .east {
  top: 100px;
  right: 18px;
  width: 90px;
  height: 104px;
  background: #a8c9df;
}
.idist-map-canvas .south {
  right: 51px;
  bottom: 29px;
  width: 104px;
  height: 66px;
  background: #c6ddec;
}
.idist-mini-map > footer {
  display: flex;
  gap: 14px;
  padding: 0 18px 12px;
  color: #7f8a95;
  font-size: 9px;
}
.idist-mini-map footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.idist-mini-map footer i {
  width: 13px;
  height: 7px;
  background: #dceaf4;
}
.idist-mini-map footer i.level-mid {
  background: #c6ddec;
}
.idist-mini-map footer i.level-high {
  background: #a8c9df;
}
.idist-map-entry {
  display: block;
  padding: 13px 18px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--theme-primary);
  font-size: 11px;
  text-align: right;
}
.idist-sector-section,
.idist-browser,
.idist-service-grid {
  margin-top: 56px;
}
.idist-sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.idist-sector-grid article {
  min-height: 245px;
  padding: 23px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.idist-sector-grid article:hover {
  background: var(--theme-soft);
}
.idist-sector-grid article > span {
  color: #a2acb5;
  font-size: 10px;
}
.idist-sector-grid h2 {
  margin: 17px 0 13px;
  font-size: 18px;
}
.idist-sector-grid strong {
  display: block;
  color: var(--theme-primary);
  font-size: 23px;
  font-weight: 500;
}
.idist-sector-grid strong small {
  color: #818c97;
  font-size: 9px;
}
.idist-sector-grid p {
  min-height: 63px;
  margin: 15px 0;
  color: #687581;
  font-size: 11px;
  line-height: 1.8;
}
.idist-sector-grid a {
  color: var(--theme-primary);
  font-size: 10px;
}
.idist-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  background: var(--page);
}
.idist-filter label {
  color: #66727e;
  font-size: 11px;
}
.idist-filter select {
  height: 36px;
  min-width: 140px;
  padding: 0 9px;
  border: 1px solid var(--border);
  background: #fff;
}
.idist-filter button {
  height: 36px;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  background: var(--theme-primary);
  color: #fff;
}
.idist-filter > span {
  margin-left: auto;
  color: #8b959e;
  font-size: 10px;
}
.idist-browser-grid {
  display: grid;
  grid-template-columns: 1fr 285px;
  gap: 22px;
  margin-top: 18px;
}
.idist-table-wrap {
  border: 1px solid var(--border);
}
.idist-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.idist-table-wrap th {
  height: 43px;
  background: #f6f8fa;
  color: #697581;
  font-size: 10px;
  font-weight: 500;
  text-align: left;
}
.idist-table-wrap th,
.idist-table-wrap td {
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
}
.idist-table-wrap td {
  height: 49px;
  color: #596672;
  font-size: 11px;
}
.idist-table-wrap td b {
  color: #2f3d49;
  font-size: 13px;
}
.idist-table-wrap tr.selected {
  background: var(--theme-soft);
}
.idist-table-wrap td button {
  padding: 5px 8px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #fff;
  color: var(--theme-primary);
  font-size: 9px;
}
.idist-empty {
  padding: 25px;
  color: #85909a;
  text-align: center;
}
.idist-preview {
  padding: 22px;
  border: 1px solid var(--theme-border);
  border-top: 3px solid var(--theme-primary);
  background: #f7fafc;
}
.idist-preview > span {
  color: var(--theme-primary);
  font-size: 10px;
}
.idist-preview h2 {
  margin: 8px 0 16px;
  font-size: 25px;
}
.idist-preview dl {
  margin: 0;
  border-top: 1px solid var(--border);
}
.idist-preview dl > div {
  display: grid;
  grid-template-columns: 74px 1fr;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}
.idist-preview dt {
  color: #89939d;
}
.idist-preview dd {
  margin: 0;
  color: #34424f;
}
.idist-preview h3 {
  margin: 17px 0 7px;
  font-size: 13px;
}
.idist-preview p {
  min-height: 48px;
  margin: 0;
  color: #64717d;
  font-size: 10px;
  line-height: 1.7;
}
.idist-preview > div {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.idist-preview a {
  flex: 1;
  padding: 8px;
  border: 1px solid var(--theme-primary);
  border-radius: 2px;
  color: var(--theme-primary);
  font-size: 9px;
  text-align: center;
}
.idist-preview a:first-child {
  background: var(--theme-primary);
  color: #fff;
}
.idist-service-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 40px;
}
.idist-service-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.idist-service-links a {
  display: grid;
  grid-template-columns: 34px 1fr 16px;
  align-items: center;
  min-height: 66px;
  padding: 0 15px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.idist-service-links b {
  color: #a1abb5;
  font-size: 9px;
}
.idist-service-links span {
  font-size: 12px;
}
.idist-service-links i {
  color: var(--theme-primary);
  font-style: normal;
}
.idist-service-links a:hover {
  background: var(--theme-soft);
}
.idist-service-grid > aside p,
.idist-service-grid > aside li {
  color: #66737f;
  font-size: 11px;
  line-height: 1.8;
}
.idist-service-grid > aside ul {
  padding-left: 18px;
}
.idist-service-grid > aside > a {
  display: block;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 2px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 10px;
  text-align: center;
}
@media (max-width: 1060px) {
  .idist-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .idist-stats > p {
    grid-column: 1/-1;
    border-top: 1px solid var(--border);
  }
  .idist-overview {
    grid-template-columns: 1fr 360px;
  }
  .idist-sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .idist-sector-grid article:nth-child(n + 4) {
    min-height: 210px;
  }
}
@media (max-width: 780px) {
  .idist-lead {
    grid-template-columns: 1fr;
  }
  .idist-lead-image {
    min-height: 240px;
  }
  .idist-lead-copy {
    padding: 32px 25px;
  }
  .idist-lead-copy h1 {
    font-size: 26px;
  }
  .idist-stats {
    grid-template-columns: 1fr 1fr;
  }
  .idist-overview,
  .idist-service-grid {
    grid-template-columns: 1fr;
  }
  .idist-mini-map {
    max-width: 500px;
  }
  .idist-sector-grid {
    grid-template-columns: 1fr 1fr;
  }
  .idist-filter {
    flex-wrap: wrap;
  }
  .idist-filter > span {
    width: 100%;
    margin-left: 0;
  }
  .idist-browser-grid {
    grid-template-columns: 1fr;
  }
  .idist-preview {
    order: -1;
  }
}
@media (max-width: 520px) {
  .idist-lead-copy > div {
    flex-direction: column;
  }
  .idist-lead-copy a {
    width: 100%;
  }
  .idist-stats > div {
    min-height: 88px;
    padding: 14px;
  }
  .idist-stats strong {
    font-size: 22px;
  }
  .idist-overview {
    margin-top: 36px;
  }
  .idist-region-list > a {
    grid-template-columns: 28px 1fr 62px;
  }
  .idist-region-list span {
    display: none;
  }
  .idist-sector-grid {
    grid-template-columns: 1fr;
  }
  .idist-sector-grid article {
    min-height: auto;
  }
  .idist-browser {
    overflow: hidden;
  }
  .idist-filter select {
    flex: 1;
    min-width: 0;
  }
  .idist-table-wrap {
    overflow-x: auto;
  }
  .idist-table-wrap table {
    min-width: 650px;
  }
  .idist-service-links {
    grid-template-columns: 1fr;
  }
}

.imap-page .channel-subnav {
  margin-bottom: 24px;
}
.imap-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 152px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-primary);
  background: var(--page);
}
.imap-intro > div > span {
  color: var(--theme-primary);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.imap-intro h1 {
  margin: 7px 0 8px;
  font-size: 27px;
}
.imap-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.imap-intro dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 390px;
  margin: 0;
  border-left: 1px solid var(--border);
}
.imap-intro dl > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9px 15px;
}
.imap-intro dt {
  color: #7c8792;
  font-size: 10px;
}
.imap-intro dd {
  margin: 7px 0 0;
  color: var(--theme-primary);
  font-size: 23px;
}
.imap-intro dd small {
  font-size: 9px;
}
.imap-filter {
  display: grid;
  grid-template-columns: 145px 175px 145px 1fr 90px 60px;
  gap: 10px;
  align-items: end;
  margin-top: 20px;
  padding: 15px 17px;
  border: 1px solid var(--border);
  background: #fff;
}
.imap-filter > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.imap-filter label {
  color: #6e7a85;
  font-size: 10px;
}
.imap-filter select,
.imap-filter input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--border);
  outline: 0;
  background: #fff;
}
.imap-filter select:focus,
.imap-filter input:focus {
  border-color: var(--theme-primary);
}
.imap-filter button {
  height: 38px;
  border-radius: 2px;
}
.imap-search {
  border: 0;
  background: var(--theme-primary);
  color: #fff;
}
.imap-reset {
  border: 1px solid var(--border);
  background: #fff;
  color: #697581;
}
.imap-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  min-height: 620px;
  margin-top: 18px;
  border: 1px solid var(--border);
  background: #fff;
}
.imap-map-panel {
  min-width: 0;
  border-right: 1px solid var(--border);
}
.imap-map-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 17px;
  border-bottom: 1px solid var(--border);
  background: #f7f9fb;
}
.imap-map-panel header > div:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
}
.imap-map-panel header b {
  font-size: 14px;
}
.imap-map-panel header span {
  color: #87919b;
  font-size: 9px;
}
.imap-map-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #687580;
  font-size: 9px;
}
.imap-map-tools label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.imap-map-tools button {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: var(--theme-primary);
}
.imap-canvas {
  position: relative;
  height: 510px;
  overflow: hidden;
  background: #eef3f6;
}
.imap-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 166, 181, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 166, 181, 0.16) 1px, transparent 1px);
  background-size: 44px 44px;
}
.imap-region-shapes span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c6d6e0;
  border-radius: 3px;
  background: #e1ebf1;
  color: #7590a2;
  font-size: 10px;
}
.imap-region-shapes .r-northwest {
  top: 90px;
  left: 7%;
  width: 30%;
  height: 125px;
}
.imap-region-shapes .r-north {
  top: 70px;
  left: 39%;
  width: 26%;
  height: 108px;
}
.imap-region-shapes .r-northeast {
  top: 47px;
  right: 4%;
  width: 25%;
  height: 107px;
}
.imap-region-shapes .r-southwest {
  top: 237px;
  left: 17%;
  width: 31%;
  height: 138px;
}
.imap-region-shapes .r-central {
  top: 202px;
  left: 48%;
  width: 20%;
  height: 124px;
}
.imap-region-shapes .r-east {
  top: 177px;
  right: 5%;
  width: 25%;
  height: 155px;
  background: #d6e5ed;
}
.imap-region-shapes .r-south {
  right: 13%;
  bottom: 44px;
  width: 30%;
  height: 116px;
}
.imap-marker {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 4px rgba(26, 55, 77, 0.28);
}
.imap-marker > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 8px;
  font-style: normal;
}
.imap-marker > span {
  position: absolute;
  top: 26px;
  left: 50%;
  width: max-content;
  max-width: 150px;
  padding: 3px 5px;
  border: 1px solid #cad6df;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
  color: #43515e;
  font-size: 8px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.marker-enterprise {
  background: var(--theme-primary);
}
.marker-base {
  background: #b87812;
}
.marker-service {
  background: var(--theme-hover);
}
.imap-marker.active {
  z-index: 5;
  width: 30px;
  height: 30px;
  outline: 3px solid rgba(23, 100, 167, 0.18);
}
.imap-marker.active > span {
  border-color: var(--theme-primary);
  color: var(--theme-primary);
  font-weight: 600;
}
.imap-no-marker {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  padding: 22px 30px;
  border: 1px solid var(--border);
  background: #fff;
  color: #7f8a94;
  text-align: center;
  line-height: 1.8;
  transform: translate(-50%, -50%);
}
.imap-no-marker button {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--theme-primary);
}
.imap-scale {
  position: absolute;
  bottom: 17px;
  left: 19px;
  color: #78848e;
  font-size: 8px;
}
.imap-scale i {
  display: block;
  width: 75px;
  height: 5px;
  margin-bottom: 3px;
  border-right: 1px solid #697681;
  border-bottom: 1px solid #697681;
  border-left: 1px solid #697681;
}
.imap-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 54px;
  padding: 0 17px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: #6e7a85;
  font-size: 9px;
}
.imap-legend b {
  color: #34424f;
}
.imap-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.imap-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.imap-legend i.enterprise {
  background: var(--theme-primary);
}
.imap-legend i.base {
  background: #b87812;
}
.imap-legend i.service {
  background: var(--theme-hover);
}
.imap-legend em {
  margin-left: auto;
  color: #9aa3ac;
  font-size: 8px;
  font-style: normal;
}
.imap-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.imap-side-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--theme-soft);
}
.imap-side-stats span {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 4px;
  border-right: 1px solid var(--theme-border);
  color: #6e7b87;
  font-size: 8px;
}
.imap-side-stats span:last-child {
  border-right: 0;
}
.imap-side-stats b {
  margin-bottom: 4px;
  color: var(--theme-primary);
  font-size: 17px;
  font-weight: 500;
}
.imap-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--border);
}
.imap-result-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.imap-result-head h2 {
  margin: 0;
  font-size: 15px;
}
.imap-result-head span {
  color: #8b959f;
  font-size: 9px;
}
.imap-result-head select {
  height: 27px;
  border: 1px solid var(--border);
  background: #fff;
  color: #697681;
  font-size: 8px;
}
.imap-marker-list {
  height: 514px;
  overflow-y: auto;
}
.imap-marker-list > button {
  display: grid;
  grid-template-columns: 26px 1fr 48px;
  gap: 7px;
  align-items: start;
  width: 100%;
  min-height: 73px;
  padding: 13px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: left;
}
.imap-marker-list > button:hover,
.imap-marker-list > button.active {
  background: var(--theme-soft);
}
.imap-marker-list > button > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef2f5;
  color: #77838e;
  font-size: 8px;
  font-style: normal;
}
.imap-marker-list > button.active > i {
  background: var(--theme-primary);
  color: #fff;
}
.imap-marker-list button > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}
.imap-marker-list strong {
  overflow: hidden;
  color: #34424f;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imap-marker-list button span {
  overflow: hidden;
  color: #87919b;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imap-marker-list em {
  padding: 3px 4px;
  border: 1px solid var(--theme-border);
  color: var(--theme-primary);
  font-size: 7px;
  font-style: normal;
  text-align: center;
}
.imap-marker-list > p {
  padding: 35px;
  color: #85909b;
  text-align: center;
}
.imap-detail {
  display: grid;
  grid-template-columns: 255px 1fr 235px;
  min-height: 275px;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-primary);
  background: #fff;
}
.imap-detail-media {
  position: relative;
  overflow: hidden;
}
.imap-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 272px;
  object-fit: cover;
}
.imap-detail-media span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 11px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 9px;
}
.imap-detail article {
  padding: 25px 28px;
  border-right: 1px solid var(--border);
}
.imap-detail article > span {
  color: var(--theme-primary);
  font-size: 9px;
}
.imap-detail article h2 {
  margin: 7px 0 9px;
  font-size: 21px;
}
.imap-detail article p {
  margin: 0;
  color: #66737f;
  font-size: 11px;
  line-height: 1.8;
}
.imap-detail article dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 17px 0 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.imap-detail article dl > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 37px;
  align-items: center;
  padding: 0 9px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 9px;
}
.imap-detail article dl > div:last-child {
  grid-column: 1/-1;
}
.imap-detail dt {
  color: #89939d;
}
.imap-detail dd {
  margin: 0;
}
.imap-detail article > div {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}
.imap-detail article a {
  padding: 8px 14px;
  border: 1px solid var(--theme-primary);
  border-radius: 2px;
  color: var(--theme-primary);
  font-size: 9px;
}
.imap-detail article a:first-child {
  background: var(--theme-primary);
  color: #fff;
}
.imap-detail > aside {
  padding: 24px 18px;
  background: #f8fafb;
}
.imap-detail > aside h3 {
  margin: 0 0 10px;
  font-size: 14px;
}
.imap-detail > aside a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #5d6a76;
  font-size: 10px;
}
.imap-detail > aside b {
  color: var(--theme-primary);
  font-weight: 500;
}
.imap-empty-detail {
  grid-column: 1/-1;
  align-self: center;
  color: #87919b;
  text-align: center;
}
.imap-region-section {
  margin-top: 20px;
}
.imap-region-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 25px;
}
.imap-region-table {
  border: 1px solid var(--border);
}
.imap-region-table table {
  width: 100%;
  border-collapse: collapse;
}
.imap-region-table th,
.imap-region-table td {
  height: 49px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.imap-region-table th {
  background: #f6f8fa;
  color: #6e7a85;
  font-size: 9px;
  font-weight: 500;
}
.imap-region-table td {
  color: #5c6975;
  font-size: 10px;
}
.imap-region-table td b {
  color: #2f3d49;
  font-size: 12px;
}
.imap-region-table td button {
  padding: 5px 8px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #fff;
  color: var(--theme-primary);
  font-size: 8px;
}
.imap-region-layout > aside {
  padding: 21px;
  border: 1px solid var(--border);
  background: var(--page);
}
.imap-region-layout aside h2 {
  margin: 0 0 10px;
  font-size: 17px;
}
.imap-region-layout aside p {
  color: #697681;
  font-size: 10px;
  line-height: 1.8;
}
.imap-region-layout aside dl {
  margin: 15px 0;
  border-top: 1px solid var(--border);
}
.imap-region-layout aside dl > div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}
.imap-region-layout aside dt {
  color: #87919b;
}
.imap-region-layout aside dd {
  margin: 0;
}
.imap-region-layout aside > a {
  display: block;
  margin-top: 16px;
  color: var(--theme-primary);
  font-size: 10px;
}
@media (max-width: 1060px) {
  .imap-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .imap-intro dl {
    width: 100%;
    border-top: 1px solid var(--border);
    border-left: 0;
  }
  .imap-filter {
    grid-template-columns: repeat(3, 1fr);
  }
  .imap-keyword {
    grid-column: 1/3;
  }
  .imap-workbench {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
  .imap-detail {
    grid-template-columns: 210px 1fr;
  }
  .imap-detail > aside {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 120px repeat(4, 1fr);
    align-items: center;
  }
  .imap-detail > aside h3 {
    margin: 0;
  }
  .imap-detail > aside a {
    padding: 8px;
    border: 0;
  }
}
@media (max-width: 780px) {
  .imap-filter {
    grid-template-columns: 1fr 1fr;
  }
  .imap-keyword {
    grid-column: 1/-1;
  }
  .imap-workbench {
    grid-template-columns: 1fr;
  }
  .imap-map-panel {
    border-right: 0;
  }
  .imap-sidebar {
    border-top: 1px solid var(--border);
  }
  .imap-marker-list {
    height: 300px;
  }
  .imap-detail {
    grid-template-columns: 1fr;
  }
  .imap-detail-media {
    height: 230px;
  }
  .imap-detail-media img {
    min-height: 230px;
  }
  .imap-detail article {
    border-right: 0;
  }
  .imap-detail > aside {
    display: block;
    grid-column: 1;
  }
  .imap-region-layout {
    grid-template-columns: 1fr;
  }
  .imap-region-table {
    overflow-x: auto;
  }
  .imap-region-table table {
    min-width: 690px;
  }
}
@media (max-width: 520px) {
  .imap-intro {
    padding: 23px 20px;
  }
  .imap-intro dl {
    min-width: 0;
  }
  .imap-intro h1 {
    font-size: 23px;
  }
  .imap-intro dd {
    font-size: 19px;
  }
  .imap-filter {
    grid-template-columns: 1fr;
  }
  .imap-keyword {
    grid-column: auto;
  }
  .imap-workbench {
    margin-right: -12px;
    margin-left: -12px;
    border-right: 0;
    border-left: 0;
  }
  .imap-map-panel > header {
    height: auto;
    min-height: 62px;
    align-items: flex-start;
    flex-direction: column;
    padding: 11px 13px;
  }
  .imap-map-tools {
    width: 100%;
    justify-content: space-between;
  }
  .imap-canvas {
    height: 440px;
  }
  .imap-marker > span {
    display: none;
  }
  .imap-legend {
    height: auto;
    flex-wrap: wrap;
    padding: 12px;
  }
  .imap-legend em {
    width: 100%;
    margin-left: 0;
  }
  .imap-detail article {
    padding: 22px 18px;
  }
  .imap-detail article dl {
    grid-template-columns: 1fr;
  }
  .imap-detail article dl > div:last-child {
    grid-column: auto;
  }
  .imap-detail article > div {
    flex-direction: column;
  }
  .imap-region-section {
    overflow: hidden;
  }
}

/* Static H5 delivery additions. The ASPX-facing selectors above remain intact. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}

.breadcrumb i {
  color: #a7afb7;
  font-style: normal;
}

.news-detail-article > figure {
  margin: 22px 25px;
  text-align: center;
}
.news-detail-article > figure img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.news-detail-article > figure figcaption {
  padding: 8px 10px;
  background: var(--page);
  color: #89939d;
  font-size: 10px;
}

.member-panel-view {
  min-width: 0;
}
.member-panel-view:not(.is-active) {
  display: none;
}
.member-help {
  margin-top: 20px;
}
.member-help > p {
  margin: 0;
  padding: 18px;
  color: #66737f;
  line-height: 1.8;
}

.imap-canvas.labels-hidden .imap-marker > span {
  display: none;
}

.auth-card input:focus,
.register-card input:focus,
.register-card select:focus,
.inquiry-panel input:focus,
.inquiry-panel textarea:focus {
  border-color: var(--theme-primary);
  outline: 2px solid color-mix(in srgb, var(--theme-primary) 14%, transparent);
  outline-offset: 0;
}

.static-toast {
  position: fixed;
  z-index: 9999;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  border-left: 4px solid var(--theme-primary);
  background: #243442;
  color: #fff;
  box-shadow: 0 10px 28px rgba(19, 35, 49, 0.22);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.static-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 780px) {
  .ad-slot {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 7px 12px;
    padding: 14px 16px;
  }
  .ad-slot__badge {
    grid-column: 1;
  }
  .ad-slot__code {
    grid-column: 2;
  }
  .ad-slot__fallback {
    grid-column: 1 / -1;
  }
  .news-detail-article > figure {
    margin-right: 0;
    margin-left: 0;
  }
  .static-toast {
    right: 16px;
    bottom: 16px;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .main-nav,
  .nav-stage,
  .site-footer,
  .news-detail-side,
  .ad-slot,
  .comment-panel,
  .breadcrumb,
  .news-detail-article > footer {
    display: none !important;
  }
  .article-page,
  .general-detail {
    display: block;
    width: 100%;
  }
  .news-detail-article {
    border-top: 0;
  }
}

/* Homepage visual refinement · 2026-08-12 */
.site-header {
  box-shadow: inset 0 3px 0 var(--theme-primary);
}
.theme-demo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 22px;
  padding: 7px 10px;
  border: 1px solid var(--theme-border);
  border-radius: 999px;
  background: var(--theme-soft);
  color: #596775;
  font-size: 11px;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.theme-demo > div {
  display: flex;
  gap: 7px;
}
.theme-demo__option {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(39, 56, 71, 0.22);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.theme-demo__option:hover {
  transform: translateY(-2px);
}
.theme-demo__option.is-active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px currentColor;
}
.theme-demo__option--blue {
  --theme-swatch: var(--theme-blue-primary);
}
.theme-demo__option--green {
  --theme-swatch: var(--theme-green-primary);
}
.theme-demo__option--red {
  --theme-swatch: var(--theme-red-primary);
}
.theme-demo__option {
  background: var(--theme-swatch);
  color: var(--theme-swatch);
}
.nav-stage {
  position: relative;
  transition:
    height 0.24s ease,
    border-color 0.2s ease;
}
.nav-stage.nav-stage-open {
  border-bottom: 4px solid var(--theme-primary);
  box-shadow: 0 7px 18px color-mix(in srgb, var(--theme-primary) 10%, transparent);
}
.nav-stage.nav-stage-open::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  pointer-events: none;
}
.site-map-panel {
  animation: nav-panel-reveal 0.2s ease-out both;
}
.site-map-panel.has-search .map-columns a {
  padding: 5px 8px;
  font-size: 13px;
  line-height: 1.45;
}
.site-map-panel.has-search .map-column {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.site-map-panel.has-search .map-column:hover {
  border-color: var(--theme-border);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--theme-primary) 9%, transparent);
  transform: translateY(-2px);
}
.home-shortcuts > a,
.literature-entry-row a,
.journal-tile,
.industry-directory > a {
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.home-shortcuts > a:hover,
.literature-entry-row a:hover,
.journal-tile:hover {
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--theme-primary) 10%, transparent);
  transform: translateY(-3px);
}

@media (hover: hover) and (pointer: fine) {
  .topic-banner:hover,
  .service-directory:hover {
    box-shadow: 0 15px 34px color-mix(in srgb, var(--theme-primary) 14%, transparent);
    transform: translateY(-3px);
  }

  .topic-banner:hover > img {
    transform: scale(1.025);
  }

  .service-directory > div a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(3px);
  }

  .home-video-item > a:hover::after {
    background: var(--theme-primary);
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (min-width: 781px) {
  .journal-tile--mobile-extra {
    display: none;
  }

  .service-directory header > span,
  .service-hall-link {
    font-size: 13px;
  }

  .service-directory > div strong {
    font-size: 15px;
  }

  .service-directory > div small {
    font-size: 13px;
  }
}
.section-title {
  position: relative;
}
.section-title::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 62px;
  height: 2px;
  background: var(--theme-primary);
  content: "";
}
.soft-section {
  background: linear-gradient(180deg, var(--page), #fff);
}
.home-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 34px;
}
.home-video-lead {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(27, 49, 68, 0.07);
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}
.home-video-lead:hover {
  box-shadow: 0 13px 30px color-mix(in srgb, var(--theme-primary) 13%, transparent);
  transform: translateY(-3px);
}
.home-video-lead__cover {
  position: relative;
  display: block;
  height: 278px;
  overflow: hidden;
  background: var(--theme-deep);
}
.home-video-lead__cover::after {
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(transparent, rgba(11, 31, 48, 0.62));
  content: "";
}
.home-video-lead__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.home-video-lead:hover .home-video-lead__cover img {
  transform: scale(1.025);
}
.home-video-lead__cover i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: color-mix(in srgb, var(--theme-primary) 82%, transparent);
  color: #fff;
  font-style: normal;
  transform: translate(-50%, -50%);
}
.home-video-lead__cover time {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  padding: 4px 7px;
  border-radius: 2px;
  background: rgba(11, 27, 41, 0.78);
  color: #fff;
  font-size: 11px;
}
.home-video-lead__copy {
  padding: 20px 24px 22px;
}
.home-video-lead__copy > span,
.home-video-item span {
  color: var(--theme-primary);
  font-size: 12px;
}
.home-video-lead__copy h3 {
  margin: 8px 0 8px;
  font-size: 20px;
  line-height: 1.5;
}
.home-video-lead__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.home-video-list {
  display: grid;
  align-content: start;
  gap: 12px;
}
.home-video-item {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 18px;
  min-height: 118px;
  padding: 10px;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 4px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.home-video-item:hover {
  border-left-color: var(--theme-primary);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--theme-primary) 9%, transparent);
  transform: translateX(4px);
}
.home-video-item > a {
  position: relative;
  display: block;
  min-height: 96px;
  overflow: hidden;
  border-radius: 3px;
}
.home-video-item > a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(26, 104, 234, 0.78);
  background: color-mix(in srgb, var(--theme-primary) 78%, transparent);
  color: #fff;
  content: "▶";
  font-size: 11px;
  line-height: 1;
  text-indent: 2px;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.home-video-item img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home-video-item:hover img {
  transform: scale(1.035);
}
.home-video-item > div {
  align-self: center;
  min-width: 0;
}
.home-video-item h3 {
  margin: 6px 0 9px;
  font-size: 15px;
  line-height: 1.55;
}
.home-video-item h3 a:hover {
  color: var(--theme-primary);
}
.home-video-item time {
  color: #8b96a0;
  font-size: 11px;
}
.home-catalog-section {
  padding-top: 44px;
  padding-bottom: 44px;
}
.recommend-list--grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.recommend-list--grid li {
  min-height: 74px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--theme-border);
  border-radius: 4px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.recommend-list--grid li:hover {
  border-left-color: var(--theme-primary);
  box-shadow: 0 7px 18px color-mix(in srgb, var(--theme-primary) 8%, transparent);
  transform: translateY(-2px);
}
.footer-brand p {
  font-size: 13px;
}
.footer-column h3 {
  font-size: 15px;
}
.footer-column a {
  font-size: 13px;
}
.footer-contact > span,
.footer-contact p,
.footer-contact a {
  font-size: 12px;
}
.footer-bottom {
  font-size: 11px;
}

@keyframes nav-panel-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .theme-demo {
    margin-right: 14px;
  }
  .home-video-layout {
    grid-template-columns: 1fr;
  }
  .home-video-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-video-item {
    grid-template-columns: 1fr;
  }
  .recommend-list--grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 15px;
  }
  .utility-bar {
    font-size: 13px;
  }
  .theme-demo {
    gap: 8px;
    margin-right: 12px;
    padding: 6px 8px;
    font-size: 12px;
  }
  .theme-demo > span {
    display: none;
  }
  .theme-demo__option {
    width: 22px;
    height: 22px;
  }
  .mobile-nav-toggle {
    flex: 0 0 auto;
  }
  .main-nav.mobile-open {
    border-bottom: 3px solid var(--theme-primary);
    box-shadow: 0 7px 18px color-mix(in srgb, var(--theme-primary) 10%, transparent);
  }
  .main-nav-row > a,
  .main-nav-row > button {
    min-height: 48px;
    font-size: 15px;
  }
  .nav-stage.nav-stage-open,
  .nav-stage.nav-stage-search {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .nav-stage.nav-stage-open .site-map-panel,
  .nav-stage.nav-stage-search .site-map-panel {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .site-map-inner,
  .site-map-panel.has-search .site-map-inner {
    padding: 18px 0 22px;
  }
  .map-heading,
  .site-map-panel.has-search .map-heading {
    display: block;
    margin-bottom: 13px;
    padding: 0 42px 12px 0;
    border-bottom: 1px solid var(--theme-border);
  }
  .map-heading > span {
    font-size: 13px;
  }
  .map-heading h2,
  .site-map-panel.has-search .map-heading h2 {
    margin: 6px 0 0;
    font-size: 23px;
  }
  .map-columns,
  .site-map-panel.has-search .map-columns {
    gap: 12px;
  }
  .map-column,
  .site-map-panel.has-search .map-column {
    min-height: 0;
    padding: 13px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--theme-border);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(28, 53, 74, 0.05);
  }
  .map-columns h3,
  .site-map-panel.has-search .map-columns h3 {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 16px;
  }
  .map-columns a,
  .site-map-panel.has-search .map-columns a {
    width: 50%;
    padding: 6px 4px;
    font-size: 14px;
    line-height: 1.45;
  }
  .site-map-panel.has-search .map-links {
    gap: 0;
  }
  .nav-literature-search select,
  .nav-literature-search input,
  .nav-literature-search button,
  .nav-search-hints {
    font-size: 14px;
  }
  .nav-search-hints {
    line-height: 1.7;
  }
  .search-hot,
  .section-title > a,
  .section-title div > span,
  .ad-slot__badge,
  .ad-slot__note,
  .ad-slot__code {
    font-size: 13px;
  }
  .home-shortcuts strong {
    font-size: 16px;
  }
  .home-shortcuts small,
  .headline-news time,
  .detail-link,
  .news-column header a,
  .notice-box header a,
  .topic-banner span,
  .topic-banner a,
  .literature-entry-row small,
  .journal-home-intro > span,
  .journal-home-intro p,
  .journal-home-intro a,
  .journal-tile small,
  .industry-directory p,
  .industry-directory b,
  .service-directory header > span,
  .service-directory > div small,
  .service-hall-link {
    font-size: 13px;
  }
  .dated-link i,
  .dated-link time,
  .notice-box time span,
  .literature-entry-row a > span {
    font-size: 12px;
  }
  .dated-link,
  .notice-box p,
  .headline-news p {
    font-size: 14px;
  }
  .home-section {
    padding: 38px 0;
  }
  .home-video-lead__cover {
    height: 250px;
  }
  .home-video-list {
    grid-template-columns: 1fr;
  }
  .home-video-item {
    grid-template-columns: 138px minmax(0, 1fr);
  }
  .home-video-item h3 {
    font-size: 15px;
  }
  .home-video-item span,
  .home-video-item time,
  .home-video-lead__copy > span {
    font-size: 13px;
  }
  .recommend-list--grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand p,
  .footer-column a,
  .footer-contact > span,
  .footer-contact p,
  .footer-contact a,
  .footer-bottom {
    font-size: 13px;
  }
  .footer-column h3 {
    font-size: 16px;
  }
  .footer-bottom > div {
    line-height: 1.65;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 72px;
  }
  .main-nav {
    top: 72px;
  }
  .nav-is-stuck .nav-stage.nav-stage-open {
    top: 72px;
    max-height: calc(100vh - 72px);
  }
  .site-logo > img {
    width: 145px;
  }
  .theme-demo {
    margin-left: auto;
    margin-right: 8px;
  }
  .map-columns,
  .site-map-panel.has-search .map-columns {
    grid-template-columns: 1fr;
  }
  .map-columns a,
  .site-map-panel.has-search .map-columns a {
    width: 50%;
  }
  .nav-literature-search {
    grid-template-columns: minmax(0, 1fr) 102px;
  }
  .banner-content h1 {
    font-size: 26px;
  }
  .banner-content p {
    font-size: 15px;
  }
  .banner-content a {
    font-size: 13px;
  }
  .home-shortcuts > a {
    min-height: 84px;
  }
  .section-title h2 {
    font-size: 23px;
  }
  .topic-banner h2 {
    font-size: 20px;
  }
  .topic-banner p {
    display: block;
    font-size: 14px;
    line-height: 1.65;
  }
  .literature-entry-row a {
    min-height: 122px;
    padding: 15px;
  }
  .journal-tile img {
    height: var(--home-journal-cover-height, 260px);
  }
  .home-video-lead__cover {
    height: 210px;
  }
  .home-video-lead__copy {
    padding: 18px;
  }
  .home-video-lead__copy h3 {
    font-size: 18px;
  }
  .home-video-lead__copy p {
    font-size: 14px;
  }
  .home-video-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    min-height: 104px;
    padding: 8px;
  }
  .home-video-item > a,
  .home-video-item img {
    min-height: 86px;
  }
  .home-video-item h3 {
    margin: 3px 0 6px;
    font-size: 14px;
  }
  .recommend-list--grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    gap: 24px 18px;
    padding-top: 38px;
  }
  .footer-contact strong {
    font-size: 22px;
  }
}

@media (min-width: 781px) and (max-width: 1060px) {
  .industry-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }
  .home-industry-services .industry-directory {
    display: none;
  }
  .utility-bar {
    font-size: 14px;
  }
  .main-nav-row > a,
  .main-nav-row > button {
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .search-hot,
  .section-title > a,
  .section-title div > span,
  .ad-slot__badge,
  .ad-slot__note,
  .ad-slot__code,
  .headline-news time,
  .detail-link,
  .news-column header a,
  .notice-box header a,
  .topic-banner span,
  .topic-banner a,
  .literature-entry-row small,
  .journal-home-intro > span,
  .journal-home-intro p,
  .journal-home-intro a,
  .journal-tile small,
  .industry-directory p,
  .industry-directory b,
  .service-directory header > span,
  .service-directory > div small,
  .service-hall-link,
  .footer-brand p,
  .footer-column a,
  .footer-contact > span,
  .footer-contact p,
  .footer-contact a,
  .footer-bottom {
    font-size: 14px;
  }
  .dated-link,
  .notice-box p,
  .headline-news p,
  .topic-banner p,
  .home-video-lead__copy p,
  .home-video-item h3 {
    font-size: 15px;
  }
  .headline-news h3 {
    font-size: 21px;
  }
  .news-column header h3,
  .notice-box header h3 {
    font-size: 18px;
  }
  .dated-link,
  .notice-box p,
  .headline-news p,
  .topic-banner p,
  .home-video-lead__copy p {
    font-size: 16px;
  }
  .headline-news time,
  .detail-link,
  .news-column header a,
  .notice-box header a,
  .topic-banner span,
  .topic-banner a,
  .literature-entry-row small,
  .journal-home-intro > span,
  .journal-home-intro p,
  .journal-home-intro a,
  .journal-tile small,
  .service-directory header > span,
  .service-directory > div small,
  .service-hall-link,
  .home-video-lead__copy > span,
  .home-video-item span,
  .home-video-item time {
    font-size: 15px;
  }
  .dated-link i,
  .dated-link time,
  .notice-box time span,
  .literature-entry-row a > span {
    font-size: 14px;
  }
  .literature-entry-row strong {
    font-size: 19px;
  }
  .literature-info-grid,
  .industry-info-grid {
    grid-template-columns: 1fr;
  }
  .literature-info-grid {
    gap: 12px;
  }
  .literature-info-card {
    padding: 14px 15px 9px;
  }
  .literature-info-card header span {
    font-size: 16px;
  }
  .literature-info-card header a,
  .literature-info-card time {
    font-size: 13px;
  }
  .literature-info-card > a {
    min-height: 58px;
    padding: 11px 42px 10px 10px;
    font-size: 16px;
  }
  .literature-info-card time {
    top: 13px;
    right: 0;
    bottom: auto;
  }
  .industry-info-grid {
    gap: 12px;
    margin-top: 22px;
  }
  .industry-info-group > header {
    padding: 15px 16px 12px;
  }
  .industry-info-group > header h3 {
    font-size: 18px;
  }
  .industry-info-group > header a {
    font-size: 13px;
  }
  .industry-info-list {
    padding: 4px 14px 8px;
  }
  .industry-info-card {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 14px;
    min-height: 110px;
    padding: 10px 0;
  }
  .industry-info-card__media {
    height: 88px;
  }
  .industry-info-card__copy > span,
  .industry-info-card__copy time {
    font-size: 14px;
  }
  .industry-info-card__copy h4 {
    margin: 4px 0 7px;
    font-size: 17px;
  }
  .service-directory > div strong,
  .journal-tile strong {
    font-size: 16px;
  }
  .industry-directory h3 {
    font-size: 17px;
  }
  .industry-directory > a > span {
    font-size: 13px;
  }
  .headline-image span {
    font-size: 14px;
  }
  .home-video-lead__copy h3 {
    font-size: 19px;
  }
  .home-video-item h3 {
    font-size: 16px;
  }
  .recommend-list li > a {
    font-size: 16px;
  }
  .recommend-list li > span,
  .recommend-list em {
    font-size: 12px;
  }
  .ordinary-search select,
  .ordinary-search input,
  .ordinary-search button {
    font-size: 16px;
  }
}

/* Inner-page responsive typography and layout alignment · 2026-08-12 */
@media (max-width: 780px) {
  .inner-page,
  .auth-page,
  .member-page {
    font-size: 16px;
  }
  .breadcrumb {
    gap: 6px;
    font-size: 14px;
    line-height: 1.7;
  }
  .page-heading {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-heading h1 {
    font-size: 25px;
  }
  .page-heading p,
  .channel-lead p,
  .video-channel-hero p,
  .auth-intro p,
  .member-panel-heading p {
    font-size: 15px;
  }
  .channel-subnav {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .channel-subnav a {
    flex: 0 0 auto;
    padding: 11px 14px;
    font-size: 15px;
  }
  .plain-panel h2,
  .news-column header h3,
  .notice-box header h3,
  .channel-fast-news header h2,
  .filter-sidebar h3,
  .result-toolbar h2,
  .member-panel h2 {
    font-size: 18px;
  }
  .plain-panel-body,
  .document-results,
  .academic-article,
  .news-detail-article,
  .product-description,
  .member-panel-view {
    font-size: 16px;
  }
  .channel-fast-news > a,
  .policy-list > a,
  .text-list article,
  .document-results article,
  .issue-articles article,
  .issue-article-list article,
  .video-list-grid article,
  .member-library-list article {
    font-size: 16px;
  }
  .channel-fast-news > a > span,
  .channel-fast-news > a > time,
  .policy-list > a > span,
  .policy-list > a > time,
  .channel-image-news span,
  .channel-image-news p,
  .simple-notice-list a,
  .simple-notice-list time,
  .simple-directory-list a,
  .simple-directory-list span,
  .knowledge-directory span,
  .channel-video-card span,
  .video-cover time,
  .video-list-grid article > span,
  .video-list-grid article > p {
    font-size: 14px;
  }
  .channel-image-news h3,
  .video-list-grid h2,
  .journal-catalog-grid h2,
  .issue-articles h3,
  .issue-article-list article h3 {
    font-size: 17px;
  }
  .text-list time span,
  .text-list article > div > span,
  .text-list article > a,
  .image-list-grid article > div > span,
  .image-list-grid footer,
  .journal-catalog-grid p,
  .journal-catalog-grid article > div > div a,
  .journal-filter,
  .journal-count,
  .journal-intro > div span,
  .issue-grid span,
  .issue-articles > header span,
  .issue-articles > header a,
  .issue-articles p,
  .issue-articles time,
  .issue-articles article > a,
  .issue-article-list header span,
  .issue-article-list article p,
  .issue-article-list article > div > div {
    font-size: 14px;
  }
  .text-list h2,
  .image-list-grid h2,
  .doc-content h3 {
    font-size: 17px;
  }
  .text-list p,
  .image-list-grid p,
  .journal-intro > p,
  .doc-abstract {
    font-size: 15px;
  }
  .doc-type,
  .doc-keywords span {
    font-size: 13px;
  }
  .doc-authors,
  .doc-actions,
  .result-expression,
  .result-toolbar,
  .selected-filters span,
  .filter-sidebar label,
  .filter-sidebar header button,
  .filter-sidebar fieldset > button {
    font-size: 14px;
  }
  .cross-workbench > header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
  .query-row {
    grid-template-columns: minmax(72px, 0.7fr) minmax(110px, 1fr) minmax(90px, 0.8fr);
    height: auto;
  }
  .query-row input,
  .row-actions {
    grid-column: 1 / -1;
  }
  .row-actions {
    justify-content: flex-end;
  }
  .query-row select,
  .query-row input {
    min-height: 44px;
    font-size: 15px;
  }
  .result-toolbar > * {
    min-width: 0;
  }
  .article-tabs {
    overflow-x: auto;
  }
  .article-tabs a {
    flex: 0 0 auto;
  }
  .academic-article > header > span,
  .organizations,
  .article-meta,
  .article-actions button,
  .article-actions a,
  .article-metrics,
  .related-academic li span,
  .comment-panel header span,
  .news-detail-article header > span,
  .news-detail-article header > div,
  .news-detail-article figure figcaption,
  .news-detail-article footer,
  .news-hits-meta {
    font-size: 14px;
  }
  .news-content p,
  .news-content li,
  .news-detail-article > p,
  .product-description section p,
  .product-description section li {
    font-size: 16px;
    line-height: 1.9;
  }
  .news-content p.lead {
    font-size: 16px;
  }
  .news-content figure {
    margin-right: 0;
    margin-left: 0;
  }
  .product-info > span,
  .product-info dt,
  .product-info dd,
  .service-process span,
  .inquiry-panel header p,
  .agreement,
  .auth-card header a,
  .auth-options,
  .auth-captcha button,
  .auth-note,
  .register-card header > span,
  .agreement-summary,
  .third-party-login > span,
  .third-party-login button {
    font-size: 14px;
  }
  .product-intro {
    font-size: 16px;
  }
  .product-actions {
    flex-wrap: wrap;
  }
  .login-alert {
    min-height: 18px;
    color: #b32f38;
    font-size: 13px;
  }
  .member-sidebar header small,
  .member-sidebar > div h2,
  .member-stat-row small,
  .member-panel li > span,
  .member-panel li time,
  .member-form label small,
  .member-library-list article small,
  .member-library-list article > button,
  .member-state-samples span,
  .verification-status dt,
  .document-upload-list small,
  .document-upload-list em {
    font-size: 13px;
  }
  .member-sidebar > div button,
  .member-welcome span,
  .member-welcome p,
  .member-stat-row span,
  .member-panel header a,
  .member-panel header button,
  .member-panel header > span,
  .member-services strong,
  .member-services small,
  .member-panel li a,
  .member-panel-heading span,
  .member-panel-heading p,
  .member-panel-heading > a,
  .member-form > label,
  .member-form .form-grid > label,
  .member-data-table > div,
  .member-library-list article a,
  .member-state-samples b,
  .feedback-timeline p,
  .verification-status dd,
  .document-upload-list > div > span,
  .password-panel aside li {
    font-size: 15px;
  }
  .member-sidebar {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
    scrollbar-width: thin;
  }
  .member-sidebar > header {
    display: none;
  }
  .member-sidebar > div {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
  }
  .member-sidebar > div h2 {
    display: none;
  }
  .member-sidebar > div button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 10px 14px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
  }
  .member-sidebar > div button.active {
    border-bottom-color: var(--theme-primary);
    border-left-color: transparent;
  }
  .member-sidebar > div button span {
    display: none;
  }
  .idist-lead-copy > span,
  .idist-lead-image span,
  .idist-stats strong small,
  .idist-region-list b small,
  .idist-mini-map header small,
  .idist-mini-map footer,
  .idist-sector-grid article > span,
  .idist-filter label,
  .idist-filter > span,
  .idist-preview > span {
    font-size: 13px;
  }
  .idist-lead-copy p,
  .idist-stats span,
  .idist-stats > p,
  .idist-region-list span,
  .idist-sector-grid p,
  .idist-sector-grid a,
  .idist-table-wrap th,
  .idist-table-wrap td,
  .idist-table-wrap td button,
  .idist-preview dl,
  .idist-preview p,
  .idist-preview a,
  .idist-service-links,
  .idist-service-grid > aside p,
  .idist-service-grid > aside li,
  .idist-service-grid > aside a {
    font-size: 14px;
  }
  .idist-browser,
  .imap-region-section {
    overflow: visible;
  }
  .idist-table-wrap,
  .imap-region-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .imap-intro > div > span,
  .imap-intro dt,
  .imap-intro dd small,
  .imap-map-panel header span,
  .imap-map-tools,
  .imap-region-shapes span,
  .imap-marker > i,
  .imap-marker > span,
  .imap-scale,
  .imap-legend,
  .imap-side-stats span,
  .imap-result-head span,
  .imap-marker-list em,
  .imap-detail article > span,
  .imap-region-table th,
  .imap-region-table td button {
    font-size: 13px;
  }
  .imap-intro p,
  .imap-filter label,
  .imap-side-stats b,
  .imap-result-head select,
  .imap-marker-list strong,
  .imap-marker-list button span,
  .imap-detail article p,
  .imap-detail article dl,
  .imap-detail article a,
  .imap-region-table td,
  .imap-region-layout aside p,
  .imap-region-layout aside dl,
  .imap-region-layout aside > a {
    font-size: 14px;
  }
  .search-input,
  .form-type,
  .select,
  .auth-card input,
  .auth-card select,
  .register-card input,
  .register-card select,
  .member-form input,
  .member-form select,
  .member-form textarea,
  .imap-filter input,
  .imap-filter select,
  .idist-filter select {
    min-height: 46px;
    font-size: 16px;
  }
  .btn-search,
  .search-btn,
  .primary,
  .auth-submit,
  .member-form-actions button,
  .imap-filter button {
    min-height: 46px;
    font-size: 16px;
  }
  .pagination a,
  .pagination button,
  .pagination span {
    min-width: 38px;
    height: 38px;
    font-size: 15px;
    line-height: 36px;
  }
  .ad-slot__badge,
  .ad-slot__note,
  .ad-slot__code {
    font-size: 14px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-brand p,
  .footer-column a,
  .footer-contact > span,
  .footer-contact p,
  .footer-contact a,
  .footer-bottom {
    font-size: 14px;
  }
  .footer-column h3 {
    font-size: 16px;
  }
  .footer-contact strong {
    font-size: 23px;
  }
  .footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 15px 0;
    line-height: 1.65;
  }
  .search-results-layout,
  .product-detail-layout,
  .journal-detail-layout,
  .issue-page-layout,
  .article-page {
    min-width: 0;
  }
  .result-main,
  .list-content,
  .filter-sidebar,
  .article-side,
  .news-detail-article,
  .news-detail-side {
    min-width: 0;
  }
  table {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .page-heading-row {
    gap: 12px;
  }
  .page-heading h1 {
    font-size: 24px;
  }
  .list-page-layout {
    width: calc(100% - 24px);
  }
  .list-content {
    width: 100%;
    min-width: 0;
  }
  .text-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
  }
  .text-list article > a {
    display: none;
  }
  .text-list article > time {
    height: 58px;
  }
  .text-list time b {
    font-size: 22px;
  }
  .image-list-grid article {
    grid-template-columns: 105px minmax(0, 1fr);
  }
  .image-list-grid article > a {
    height: 108px;
  }
  .image-list-grid article > div {
    min-width: 0;
    padding-left: 12px;
  }
  .image-list-grid p {
    -webkit-line-clamp: 2;
  }
  .query-row {
    grid-template-columns: 65px minmax(0, 1fr);
  }
  .query-row input,
  .row-actions {
    grid-column: 1 / -1;
  }
  .imap-workbench {
    margin-right: 0;
    margin-left: 0;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }
  .imap-region-section,
  .idist-browser {
    overflow: visible;
  }
  .pagination {
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    padding: 2px 1px 8px;
    scrollbar-width: thin;
  }
  .pagination a,
  .pagination button,
  .pagination span {
    flex: 0 0 auto;
  }
}

/* 2026-08-13 细节要求：通用检索框与首页记录交互。 */
.global-search:not(.c-search-top1) .ordinary-search,
.journal-search,
.cross-primary-search,
.result-search-form,
.qk-search-block,
.imap-filter,
.idist-filter {
  border-radius: 4px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.24s ease;
}

.global-search:not(.c-search-top1) .ordinary-search,
.journal-search,
.cross-primary-search,
.result-search-form,
.qk-search-block {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .global-search:not(.c-search-top1) .ordinary-search:hover,
  .journal-search:hover,
  .cross-primary-search:hover,
  .result-search-form:hover,
  .qk-search-block:hover,
  .imap-filter:hover,
  .idist-filter:hover {
    border-color: var(--theme-primary);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--theme-primary) 13%, transparent),
      0 9px 22px color-mix(in srgb, var(--theme-primary) 10%, transparent);
  }

  .dated-link,
  .notice-box > a,
  .literature-info-card > a {
    position: relative;
    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      box-shadow 0.22s ease,
      transform 0.22s ease;
  }

  .dated-link:hover,
  .notice-box > a:hover,
  .literature-info-card > a:hover {
    z-index: 1;
    background: #fff;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--theme-primary) 11%, transparent);
    transform: translateY(-2px);
  }

  .dated-link img,
  .notice-box > a img,
  .literature-info-card > a img {
    transition: transform 0.36s ease;
  }

  .dated-link:hover img,
  .notice-box > a:hover img,
  .literature-info-card > a:hover img {
    transform: scale(1.025);
  }
}

.global-search:not(.c-search-top1) .ordinary-search:focus-within,
.journal-search:focus-within,
.cross-primary-search:focus-within,
.result-search-form:focus-within,
.qk-search-block:focus-within,
.imap-filter:focus-within,
.idist-filter:focus-within {
  border-color: var(--theme-primary);
  box-shadow:
    0 0 0 5px color-mix(in srgb, var(--theme-primary) 17%, transparent),
    0 10px 26px color-mix(in srgb, var(--theme-primary) 12%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .site-map-panel,
  .global-search:not(.c-search-top1) .ordinary-search,
  .journal-search,
  .cross-primary-search,
  .result-search-form,
  .qk-search-block,
  .imap-filter,
  .idist-filter,
  .dated-link,
  .notice-box > a,
  .literature-info-card > a,
  .home-shortcuts > a,
  .topic-banner,
  .topic-banner > img,
  .service-directory,
  .service-directory > div a,
  .industry-info-card,
  .literature-entry-row a,
  .journal-tile,
  .journal-catalog-grid article,
  .journal-catalog-grid img,
  .journal-catalog-grid > .divjournallist:not(article),
  .journal-catalog-grid > .divjournallist:not(article) img,
  .home-video-lead,
  .home-video-item,
  .home-video-item > a::after,
  .recommend-list--grid li {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* 2026-08-17 首页广告与分区留白：相邻空白统一为约 34px。 */
#ad-slot-h0 {
  margin: 24px 0 0;
}

.home-news-section {
  padding-top: 34px;
  padding-bottom: 17px;
}

#ad-slot-h1 {
  margin-top: 17px;
}

.home-video-section {
  padding-bottom: 17px;
}

.home-catalog-section {
  padding-top: 17px;
  padding-bottom: 17px;
}

#ad-slot-h2 {
  margin-top: 17px;
}

/* 首页底部单位信息：仅 index.html 的 .home-footer 生效。 */
.home-footer .footer-affiliations {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
}

.home-footer .footer-affiliations > div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 8px;
  color: #aeb9c3;
  font-size: 13px;
  line-height: 1.65;
}

.home-footer .footer-affiliations dt {
  color: #fff;
  font-weight: 600;
}

.home-footer .footer-affiliations dd {
  min-width: 0;
  margin: 0;
}

@media (max-width: 780px) {
  .home-footer .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 14px;
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .home-footer .footer-brand,
  .home-footer .footer-contact {
    grid-column: 1 / -1;
  }

  .home-footer .footer-brand {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-footer .footer-affiliations {
    margin-bottom: 18px;
  }

  .home-footer .footer-column {
    min-width: 0;
  }

  .home-footer .footer-column a {
    white-space: nowrap;
  }

  .home-footer .footer-contact {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-footer .footer-contact strong,
  .home-footer .footer-contact p {
    margin: 0;
  }

  .home-footer .footer-contact a {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 420px) {
  .home-footer .footer-main {
    width: calc(100% - 28px);
    gap: 22px 8px;
  }

  .home-footer .footer-affiliations > div {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 7px;
    font-size: 13px;
  }

  .home-footer .footer-column h3 {
    font-size: 15px;
  }

  .home-footer .footer-column a {
    padding: 5px 0;
    font-size: 13px;
  }

  .home-footer .footer-contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-footer .footer-contact a {
    grid-column: auto;
    grid-row: auto;
  }
}

/*
 * Legacy ASPX injected fragments
 *
 * The selectors in this section intentionally follow the old interface output.
 * Keep the legacy class/id contract unchanged when ASPX controls replace the
 * local mock fragments.
 */
:root,
.theme-blue,
.theme-green,
.theme-red {
  --theme-primary-rgb: from var(--theme-primary) r g b;
}

/* CrossSearch.aspx: search workbench and WebScreen.ashx filter fragments. */
.cross-workbench.search-bar {
  overflow: visible;
  border-radius: 4px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.24s ease;
}

.cross-workbench.search-bar > header {
  border-radius: 3px 3px 0 0;
}

.cross-workbench.search-bar form#submit {
  padding: 24px 24px 48px;
}

.cross-workbench.search-bar form#submit > .search-bar-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  min-height: 50px;
  border: 2px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
}

.cross-workbench.search-bar .search-place {
  position: relative;
  min-width: 0;
}

.cross-workbench.search-bar .search-input {
  width: 100%;
  height: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.cross-workbench.search-bar .search-number {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1;
}

.cross-workbench.search-bar .search-info {
  position: relative;
  min-width: 0;
}

.cross-workbench.search-bar .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 46px;
  background: var(--theme-primary);
  border-radius: 0 2px 2px 0;
  color: #fff;
  font-weight: 600;
}

.cross-workbench.search-bar .sec_checked {
  position: absolute;
  top: calc(100% + 9px);
  right: 66px;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--theme-primary);
}

.cross-workbench.search-bar .sec-btn {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.cross-workbench.search-bar .c-subnav-search {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  border-radius: 0 0 3px 3px;
}

.cross-workbench.search-bar .c-subnav-item {
  color: var(--theme-primary);
}

#screen_div,
#menu.c-filter,
#screenfilter,
#screenfilter .c-filter-item {
  min-width: 0;
}

#menu.c-filter {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(28, 47, 64, 0.07);
}

#menu .c-nav {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: var(--theme-primary);
  color: #fff;
}

#menu .c-nav__title {
  font-size: 15px;
  font-weight: 600;
}

#screenfilter .c-filter-item {
  border-bottom: 1px solid var(--line);
}

#screenfilter .c-filter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  color: var(--ink);
  cursor: pointer;
}

#screenfilter .c-filter-title,
#screenfilter .time-title {
  font-size: 13px;
  font-weight: 600;
}

#screenfilter .c-filter-content {
  color: var(--quiet);
  transition: transform 0.2s ease;
}

#screenfilter .c-filter-bottom {
  padding: 2px 12px 12px;
  background: color-mix(in srgb, var(--theme-primary) 3%, white);
}

#screenfilter .c-filter-bottom:not([style*="display: none"]) {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

#screenfilter .c-filter-block {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

#screenfilter .c-filter-block-title {
  min-width: 0;
  overflow-wrap: anywhere;
}

#screenfilter .c-filter-block-select {
  border-color: var(--theme-primary);
  background: var(--theme-soft);
  color: var(--theme-primary);
}

#screenfilter .c-filter-time,
#screenfilter .c-filter-time-top {
  min-width: 0;
}

#screenfilter .c-filter-time-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
}

#screenfilter .time-title {
  grid-column: 1 / -1;
}

#screenfilter .input-block {
  min-width: 0;
}

#screenfilter .time-type {
  width: 100%;
  height: 34px;
  min-width: 0;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: 0;
  background: #fff;
}

#screenfilter .time-type:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-primary) 12%, transparent);
}

#screenfilter .slash {
  color: var(--quiet);
  text-align: center;
  font-size: 11px;
}

#menu .c-filter-button-block2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 11px 12px;
  background: var(--page);
}

#menu .c-filter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
}

#menu .c-filter-button-right {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #fff;
}

/* CrossSearch.aspx: dynamic result records. */
#datalist > .c-company__body-item:not(article) {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  margin-bottom: 10px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

#datalist > .c-company__body-item:not(article) .c-company-top-link {
  display: block;
  min-width: 0;
}

#datalist > .c-company__body-item:not(article) .c-company__body-title {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

#datalist > .c-company__body-item:not(article) .c-company__body-author {
  margin-bottom: 7px;
  color: var(--theme-primary);
  font-size: 13px;
  line-height: 1.6;
}

#datalist > .c-company__body-item:not(article) .c-company__body-content {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#datalist > .c-company__body-item:not(article) .c-company__body-name {
  margin-top: 10px;
  color: var(--theme-primary);
  font-size: 12px;
}

#datalist > .c-company__body-item:not(article) .c-company__body-name .color-green {
  color: inherit;
}

#datalist > .c-company__body-item:not(article) .c-company__body-info {
  position: static;
  align-self: end;
  padding: 6px 9px;
  border: 1px solid var(--theme-border);
  border-radius: 4px;
  background: var(--theme-soft);
  color: var(--theme-primary);
  font-size: 12px;
  white-space: nowrap;
}

#pagelist.c-company__body-item-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--theme-primary);
}

/*
 * GeneralView.aspx: legacy channel search.
 * Keep the original ids/classes because the ASPX bridge writes into them.
 */
.c-search-top1 {
  position: relative;
  max-width: none;
  margin: 0 0 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
}

.generalview-channel-title {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.c-search-top1 .c-search-top-body {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 112px;
  min-height: 48px;
  border: 1px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
}

.c-search-top1 #selecttype_a.select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 15px;
  border-right: 1px solid var(--border);
  border-radius: 3px 0 0 3px;
  background: color-mix(in srgb, var(--theme-primary) 3%, white);
  color: #4d5b68;
  font-size: 14px;
}

.c-search-top1 #selecttype_a.select:hover,
.c-search-top1 #selecttype_a.select[aria-expanded="true"] {
  background: var(--theme-soft);
  color: var(--theme-primary);
}

.c-search-top1 #selecttype_a.select > span:last-child {
  margin-left: 12px;
  color: var(--quiet);
  font-size: 12px;
}

.c-search-top1 #keyword.form-type {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.c-search-top1 #keyword.form-type::placeholder {
  color: #9aa4ae;
}

.c-search-top1 .btn-search-block,
.c-search-top1 .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
}

.c-search-top1 .btn-search-block {
  background: var(--theme-primary);
}

.c-search-top1 .btn-search {
  width: 100%;
  padding: 0 14px;
  border-radius: 0 2px 2px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.c-search-top1 .btn-search:hover {
  background: var(--theme-hover);
}

.c-search-top1 .select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 5px);
  left: -1px;
  width: 240px;
  max-width: calc(100% + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 2px solid var(--theme-primary);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 45, 61, 0.12);
}

.c-search-top1 .select-menu[hidden] {
  display: none;
}

.c-search-top1 .select-menu-inner {
  padding: 5px 0;
}

.c-search-top1 .select-menu-item {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #4d5b68;
  font-size: 14px;
}

.c-search-top1 .select-menu-item:hover,
.c-search-top1 .select-menu-item-active {
  background: var(--theme-soft);
  color: var(--theme-primary);
}

.button-container[data-generalview-journal] {
  margin: 0 0 18px;
}

.button-container[data-generalview-journal] .button-row.single-button {
  display: flex;
  justify-content: flex-end;
}

.button-container[data-generalview-journal] .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: #fff;
  color: var(--theme-primary);
  font-size: 13px;
}

.button-container[data-generalview-journal] .btn::after {
  margin-left: 7px;
  content: "\2192";
}

.button-container[data-generalview-journal] .btn:hover {
  border-color: var(--theme-primary);
  background: var(--theme-soft);
}

/* GeneralView.aspx: .dataList > #list is the legacy list contract. */
.dataList > #list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dataList > #list > li {
  min-width: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.dataList > #list > li > a {
  display: block;
  min-width: 0;
  padding: 21px 18px;
}

.dataList > #list > li h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.dataList > #list > li .author {
  margin-bottom: 7px;
  color: var(--theme-primary);
  font-size: 13px;
  line-height: 1.6;
}

.dataList > #list > li p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.dataList > #list > li .inforBox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
  color: var(--quiet);
  font-size: 12px;
}

.dataList > #list > li .nianqi {
  color: var(--theme-primary);
}

/* Journal.aspx and JournalList.aspx dynamic cards. */
#c-qk-suggest > .divjournallist:not(article) {
  border-radius: 4px;
  overflow: hidden;
}

#imglist.issue-grid {
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 14px;
  padding: 0;
}

#imglist.issue-grid > .ck-fl-item {
  justify-content: flex-start;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

#imglist.issue-grid .ck-fl-img {
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
  background: var(--page);
}

#imglist.issue-grid .ck-fl-img img {
  width: 100%;
  height: 152px;
  margin: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#imglist.issue-grid .ck-fl-content {
  width: 100%;
  margin-top: 9px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
}

.journal-years .ck-fl-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.journal-years .ck-fl-left-item {
  min-width: 62px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.journal-years .ck-fl-left-item-on {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #fff;
}

/* JournalSingle.aspx dynamic article and issue fragments. */
.issue-article-list .c-catalog__title {
  color: var(--ink);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.issue-article-list #list {
  margin-top: 14px;
  border-top: 1px solid var(--border);
}

.issue-article-list #list > a.c-catalog__item-web {
  display: block;
  min-width: 0;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.2s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.issue-article-list #list > a.c-catalog__item-web .c-catalog__item-div {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.issue-article-list #list > a.c-catalog__item-web .c-catalog__item-subdiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--quiet);
  font-size: 12px;
}

.issue-article-list #list > a.c-catalog__item-web .c-catalog__item-name {
  min-width: 0;
  color: var(--theme-primary);
  overflow-wrap: anywhere;
}

.issue-article-list #list > a.c-catalog__item-web .c-catalog__item-time {
  flex: none;
}

.issue-article-list .c-suggest {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.issue-article-list .c-suggest__title {
  padding: 11px 15px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
  text-align: left;
  font-size: 15px;
}

.issue-article-list .c-suggest__body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 12px;
  padding: 14px;
}

.issue-article-list .c-suggest__item {
  min-width: 0;
  text-align: center;
}

.issue-article-list .c-suggest__img {
  display: block;
  height: 112px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--page);
}

.issue-article-list .c-suggest__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issue-article-list .c-suggest__test {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

/* Detail.aspx: legacy reader comment form and comment-list mount. */
.article-layout > .comments-container {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
}

.comments-container > h2 {
  display: flex;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.comments-container .comment-form {
  padding: 20px;
}

.comments-container #commentForm {
  display: grid;
  gap: 14px;
}

.comments-container .form-group {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.comments-container .form-group:first-child {
  max-width: 520px;
}

.comments-container .form-group:has(textarea) {
  align-items: start;
}

.comments-container .form-group label {
  color: #4f5e6b;
  font-size: 14px;
  line-height: 42px;
}

.comments-container input:not([type="hidden"]),
.comments-container textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: 0;
  background: #fff;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.comments-container input:not([type="hidden"]) {
  height: 42px;
}

.comments-container textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.75;
}

.comments-container input:not([type="hidden"]):focus,
.comments-container textarea:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-primary) 12%, transparent);
}

.comments-container .submit-btn {
  justify-self: start;
  min-width: 116px;
  min-height: 40px;
  margin-left: 88px;
  padding: 0 18px;
  border: 1px solid var(--theme-primary);
  border-radius: 3px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.comments-container .submit-btn:hover {
  border-color: var(--theme-hover);
  background: var(--theme-hover);
}

.comments-container .comments-list {
  padding: 0 20px 20px;
  border-top: 1px solid var(--line);
}

.comments-container .comment-item {
  padding: 17px 0 2px;
}

.comments-container .comment-header,
.comments-container .comment-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.comments-container .comment-name {
  color: var(--theme-primary);
  font-size: 14px;
  font-weight: 600;
}

.comments-container .comment-time {
  color: var(--quiet);
  font-size: 12px;
}

.comments-container .comment-content {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.comments-container .comment-actions {
  margin-top: 8px;
  color: var(--quiet);
  font-size: 12px;
}

.comments-container .like-btn {
  min-height: 32px;
  padding: 5px 11px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.comments-container .like-btn:hover,
.comments-container .like-btn:focus-visible {
  border-color: var(--theme-primary);
  outline: 0;
  background: var(--theme-soft);
  color: var(--theme-primary);
}

/* Detail.aspx: DetailView.ashx top/mid/similar injected fragments. */
.article-page > .article-layout {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

#topcontent.academic-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 3px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
}

#topcontent .c-card__paper2 {
  min-width: 0;
  padding: 30px 34px 28px;
}

#topcontent .c-card__title2 {
  color: var(--ink);
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

#topcontent .c-card__subline {
  width: 64px;
  height: 2px;
  margin: 16px auto 20px;
  background: var(--theme-primary);
}

#topcontent .c-card__aritcle {
  padding: 15px 18px;
  border-radius: 4px;
  background: var(--page);
  color: #435260;
  font-size: 15px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

#topcontent .c-card__paper__info {
  display: grid;
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}

#topcontent .c-card__paper-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  min-width: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
}

#topcontent .c-card__paper-name {
  color: var(--quiet);
  font-size: 13px;
}

#topcontent .c-card__paper-content {
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

#topcontent .c-card__paper-content a {
  color: var(--theme-primary);
}

#topcontent > .c-card__statics {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-left: 1px solid var(--border);
  background: var(--page);
}

#topcontent .c-card__statics-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid var(--theme-border);
  border-radius: 50%;
  background: #fff;
}

#topcontent .c-card__statics-download {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--theme-primary);
  font-size: 18px;
  font-weight: 600;
}

#topcontent .c-card__statics-download::before {
  content: "\2193";
  font-size: 17px;
  font-weight: 400;
}

.article-layout > .c-card__new2.c-card__statics {
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
}

.article-layout .u-btn-car-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.article-layout .u-button-long {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
  color: var(--theme-primary);
  font-size: 13px;
}

.article-layout .u-button-long:first-child {
  background: var(--theme-primary);
  color: #fff;
}

#midcontent {
  min-width: 0;
  margin-top: 14px;
}

#midcontent .c-book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--theme-primary);
  border-radius: 4px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

#midcontent .c-book__content {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

#midcontent .c-book__title {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

#midcontent .c-book__time {
  color: var(--quiet);
  font-size: 12px;
}

#midcontent .c-book__icon {
  flex: none;
  color: var(--theme-primary);
  font-size: 20px;
}

.article-layout > .c-catalog {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.article-layout > .c-catalog > .c-catalog__title {
  padding: 13px 18px;
  border-bottom: 2px solid var(--theme-primary);
  background: var(--page);
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

#simcontent {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  padding: 16px;
}

#simcontent .c-catalog__item-web2 {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

#simcontent .c-catalog__item-web2 > a {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 16px;
}

#simcontent .c-catalog__item-div {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

#simcontent .c-catalog__item-subdiv {
  margin-top: auto;
  padding-top: 15px;
}

#simcontent .c-catalog__item-name-more {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

#simcontent .c-catalog__item-name1 {
  min-width: 0;
  color: var(--theme-primary);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

#simcontent .c-catalog__item-name2 {
  display: flex;
  flex: none;
  align-items: center;
  gap: 6px;
  color: var(--quiet);
  font-size: 11px;
}

#simcontent .c-catalog__item-name3,
#simcontent .c-catalog__item-name4 {
  white-space: nowrap;
}

#simcontent .c-catalog__item-name4 {
  padding: 2px 5px;
  border-radius: 3px;
  background: var(--theme-soft);
  color: var(--theme-primary);
}

@media (hover: hover) and (pointer: fine) {
  .cross-workbench.search-bar:hover,
  .cross-workbench.search-bar:focus-within {
    border-color: var(--theme-primary);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--theme-primary) 13%, transparent),
      0 10px 24px color-mix(in srgb, var(--theme-primary) 10%, transparent);
    box-shadow:
      0 0 0 4px rgb(var(--theme-primary-rgb) / 0.13),
      0 10px 24px rgb(var(--theme-primary-rgb) / 0.1);
  }

  #screenfilter .c-filter-block:hover {
    border-color: var(--theme-primary);
    color: var(--theme-primary);
  }

  #datalist > .c-company__body-item:not(article):hover,
  .dataList > #list > li:hover,
  #imglist.issue-grid > .ck-fl-item:hover,
  .issue-article-list #list > a.c-catalog__item-web:hover,
  #midcontent .c-book:hover,
  #simcontent .c-catalog__item-web2:hover {
    z-index: 1;
    border-color: color-mix(in srgb, var(--theme-primary) 34%, var(--border));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--theme-primary) 12%, transparent);
    transform: translateY(-2px);
  }

  .dataList > #list > li:hover,
  .issue-article-list #list > a.c-catalog__item-web:hover {
    background: color-mix(in srgb, var(--theme-primary) 3%, white);
  }

  #imglist.issue-grid > .ck-fl-item:hover img {
    transform: scale(1.025);
  }

  #datalist > .c-company__body-item:not(article):hover .c-company__body-title,
  .dataList > #list > li:hover h2,
  .issue-article-list #list > a.c-catalog__item-web:hover .c-catalog__item-div,
  #simcontent .c-catalog__item-web2:hover .c-catalog__item-div {
    color: var(--theme-primary);
  }
}

@media (max-width: 780px) {
  .c-search-top1 {
    padding: 15px 14px;
  }

  .generalview-channel-title {
    margin-bottom: 11px;
    font-size: 19px;
  }

  .c-search-top1 .c-search-top-body {
    grid-template-columns: 106px minmax(0, 1fr) 90px;
  }

  .c-search-top1 #selecttype_a.select,
  .c-search-top1 .select-menu-item {
    font-size: 15px;
  }

  .c-search-top1 #selecttype_a.select {
    padding: 0 12px;
  }

  .c-search-top1 #keyword.form-type {
    padding: 0 12px;
    font-size: 16px;
  }

  .c-search-top1 .btn-search {
    padding: 0 10px;
    font-size: 15px;
  }

  .button-container[data-generalview-journal] .btn {
    min-height: 38px;
    font-size: 14px;
  }

  .comments-container > h2 {
    padding: 0 16px;
    font-size: 18px;
  }

  .comments-container .comment-form,
  .comments-container .comments-list {
    padding-right: 16px;
    padding-left: 16px;
  }

  .comments-container .form-group label,
  .comments-container input:not([type="hidden"]),
  .comments-container textarea,
  .comments-container .submit-btn,
  .comments-container .comment-name,
  .comments-container .comment-content {
    font-size: 15px;
  }

  .cross-workbench.search-bar > header {
    align-items: flex-start;
    gap: 14px;
    padding: 17px 16px;
  }

  .cross-workbench.search-bar form#submit {
    padding: 16px 14px 47px;
  }

  .cross-workbench.search-bar form#submit > .search-bar-top {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .cross-workbench.search-bar .search-input {
    padding: 0 12px;
    font-size: 16px;
  }

  .cross-workbench.search-bar .search-btn {
    font-size: 15px;
  }

  .cross-workbench.search-bar .c-subnav-search {
    gap: 16px;
    overflow-x: auto;
    padding: 0 14px;
    white-space: nowrap;
  }

  #menu.c-filter {
    width: 100%;
  }

  #screenfilter .c-filter-time-top {
    grid-template-columns: 1fr 20px 1fr;
    align-items: center;
  }

  #screenfilter .time-title {
    grid-column: 1 / -1;
  }

  #datalist > .c-company__body-item:not(article) {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 18px 15px;
  }

  #datalist > .c-company__body-item:not(article) .c-company__body-title,
  .dataList > #list > li h2 {
    font-size: 17px;
  }

  #datalist > .c-company__body-item:not(article) .c-company__body-author,
  #datalist > .c-company__body-item:not(article) .c-company__body-content,
  .dataList > #list > li .author,
  .dataList > #list > li p {
    font-size: 14px;
  }

  #datalist > .c-company__body-item:not(article) .c-company__body-info {
    justify-self: start;
  }

  .dataList > #list > li > a {
    padding: 18px 14px;
  }

  .dataList > #list > li .inforBox,
  .dataList > #list > li .nianqi,
  #datalist > .c-company__body-item:not(article) .c-company__body-name,
  #datalist > .c-company__body-item:not(article) .c-company__body-info {
    font-size: 13px;
  }

  #imglist.issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #imglist.issue-grid .ck-fl-img img {
    height: 180px;
  }

  #imglist.issue-grid .ck-fl-content,
  .issue-article-list #list > a.c-catalog__item-web .c-catalog__item-subdiv,
  .issue-article-list .c-suggest__test {
    font-size: 13px;
  }

  .issue-article-list #list > a.c-catalog__item-web {
    padding: 17px 13px;
  }

  .issue-article-list #list > a.c-catalog__item-web .c-catalog__item-div {
    font-size: 16px;
  }

  .article-page > .article-layout {
    grid-column: 1;
  }

  #topcontent.academic-article {
    grid-template-columns: 1fr;
  }

  #topcontent .c-card__paper2 {
    padding: 22px 16px 18px;
  }

  #topcontent .c-card__title2 {
    font-size: 22px;
  }

  #topcontent .c-card__aritcle {
    padding: 13px 14px;
    font-size: 15px;
  }

  #topcontent .c-card__paper-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 4px;
    padding: 10px 0;
  }

  #topcontent .c-card__paper-name,
  #topcontent .c-card__paper-content {
    font-size: 14px;
  }

  #topcontent > .c-card__statics {
    min-height: 78px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  #topcontent .c-card__statics-inner {
    width: 58px;
    height: 58px;
  }

  .article-layout .u-btn-car-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .article-layout .u-button-long {
    min-width: 0;
  }

  #midcontent .c-book {
    padding: 14px;
  }

  #simcontent {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  #simcontent .c-catalog__item-div {
    font-size: 16px;
  }

  #simcontent .c-catalog__item-name1,
  #simcontent .c-catalog__item-name2 {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .comments-container .form-group {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .comments-container .form-group label {
    line-height: 1.6;
  }

  .comments-container .submit-btn {
    justify-self: stretch;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .c-search-top1 {
    padding: 14px 12px;
  }

  .c-search-top1 .c-search-top-body {
    grid-template-columns: 88px minmax(0, 1fr) 76px;
  }

  .c-search-top1 #selecttype_a.select {
    padding: 0 9px;
  }

  .c-search-top1 #selecttype_a.select > span:last-child {
    margin-left: 7px;
  }

  .c-search-top1 #keyword.form-type {
    padding: 0 9px;
  }

  .c-search-top1 .btn-search {
    padding: 0 7px;
  }

  .cross-workbench.search-bar > header {
    display: block;
  }

  .cross-workbench.search-bar .workbench-head-actions {
    margin-top: 10px;
  }

  .cross-workbench.search-bar form#submit > .search-bar-top {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  #imglist.issue-grid .ck-fl-img img {
    height: 150px;
  }

  .issue-article-list #list > a.c-catalog__item-web .c-catalog__item-subdiv,
  #simcontent .c-catalog__item-name-more {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  #simcontent .c-catalog__item-name2 {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cross-workbench.search-bar,
  #screenfilter .c-filter-content,
  #screenfilter .c-filter-block,
  #datalist > .c-company__body-item:not(article),
  .dataList > #list > li,
  #imglist.issue-grid > .ck-fl-item,
  #imglist.issue-grid > .ck-fl-item img,
  .issue-article-list #list > a.c-catalog__item-web,
  #midcontent .c-book,
  #simcontent .c-catalog__item-web2 {
    transform: none !important;
    transition: none !important;
  }
}


/* =====20260907 首页近期热点  图片新闻悬停动态效果（与原有样式兼容） ===== */
#imgnews.headline-news {
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1), box-shadow 0.35s ease;
    border-radius: 6px;
    padding: 6px;
    margin: -6px;
    background: transparent;
}

    #imgnews.headline-news:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(26, 104, 234, 0.12);
        background: #fff;
    }

    #imgnews.headline-news .headline-image {
        border-radius: 4px 4px 0 0;
        overflow: hidden;
    }

        #imgnews.headline-news .headline-image img {
            transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.1);
        }

    #imgnews.headline-news:hover .headline-image img {
        transform: scale(1.05);
    }

    #imgnews.headline-news .headline-image span {
        transition: all 0.3s ease;
    }

    #imgnews.headline-news:hover .headline-image span {
        background: var(--theme-primary);
        letter-spacing: 0.04em;
    }

    #imgnews.headline-news h3 a {
        transition: color 0.3s ease;
    }

    #imgnews.headline-news:hover h3 a {
        color: var(--theme-primary);
    }

    #imgnews.headline-news .detail-link {
        transition: all 0.3s ease;
    }

    #imgnews.headline-news:hover .detail-link {
        transform: translateX(4px);
        color: var(--theme-primary);
    }
/* =====20260907 首页近期热点  图片新闻悬停动态效果（与原有样式兼容） ===== */

/* =====20260914 服务目录：直角 + 外框动态发光 + 图标左置 ===== */

/* 1. 外层容器：呼吸光晕 */
.knowledge-directory {
    position: relative;
    isolation: isolate;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    animation: kd-breathe 3.6s ease-in-out infinite;
}

    /* 2. 外层动态描边（流动渐变，只露 1px） */
    .knowledge-directory::before {
        position: absolute;
        z-index: -1;
        inset: -1px;
        background: linear-gradient( 120deg, var(--theme-primary), color-mix(in srgb, var(--theme-primary) 35%, #fff), var(--theme-primary) );
        background-size: 220% 220%;
        content: "";
        opacity: 0.55;
        animation: kd-border-flow 4.5s linear infinite;
        pointer-events: none;
    }

    /* 3. 内层白底遮罩，让渐变只显示为 1px 边框 */
    .knowledge-directory::after {
        position: absolute;
        z-index: -1;
        inset: 0;
        background: #fff;
        content: "";
        pointer-events: none;
    }

    /* 4. 每个服务项：横向排列，高度收紧 */
    .knowledge-directory > a {
        z-index: 1;
        display: grid;
        grid-template-columns: 26px minmax(0, 1fr) 16px;
        align-items: center;
        gap: 12px;
        min-height: 64px;
        padding: 12px 14px;
        border-left: 3px solid transparent;
        transition: background-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1), border-color 0.3s ease, border-left-color 0.3s ease;
    }

    /* 5. 图标本体 */
    .knowledge-directory .knowledge-icon {
        width: 26px;
        height: 26px;
        padding: 5px;
        border: 1px solid var(--theme-border);
        background: var(--theme-soft);
        color: var(--theme-primary);
        fill: currentColor;
        transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    }

    /* 6. 两行文字：标题 + 副标题 */
    .knowledge-directory .knowledge-copy {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
    }

        .knowledge-directory .knowledge-copy > strong {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.25s ease;
        }

        .knowledge-directory .knowledge-copy > span {
            color: #8c96a0;
            font-size: 11px;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    /* 7. 箭头 */
    .knowledge-directory > a > b {
        color: var(--theme-primary);
        font-size: 14px;
        font-weight: 400;
        text-align: right;
        transition: color 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    }

/* 8. 悬停动效（仅精确指针设备） */
@media (hover: hover) and (pointer: fine) {
    .knowledge-directory:hover {
        border-color: transparent;
        box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-primary) 45%, transparent), 0 10px 30px color-mix(in srgb, var(--theme-primary) 18%, transparent);
        animation-play-state: paused;
    }

    .knowledge-directory > a:hover {
        z-index: 2;
        border-color: transparent;
        border-left-color: var(--theme-primary);
        background: color-mix(in srgb, var(--theme-primary) 7%, #fff);
        box-shadow: 0 8px 22px color-mix(in srgb, var(--theme-primary) 22%, transparent), inset 0 0 0 1px color-mix(in srgb, var(--theme-primary) 30%, transparent);
        transform: translateY(-3px);
    }

        .knowledge-directory > a:hover .knowledge-icon {
            background: var(--theme-primary);
            border-color: var(--theme-primary);
            color: #fff;
            transform: translateY(-2px) scale(1.06);
        }

        .knowledge-directory > a:hover .knowledge-copy > strong {
            color: var(--theme-primary);
        }

        .knowledge-directory > a:hover > b {
            transform: translateX(4px);
        }
}

/* 9. 移动端：关闭持续动画，改按下反馈 */
@media (hover: none) {
    .knowledge-directory {
        animation: none;
        box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-primary) 40%, transparent);
    }

        .knowledge-directory::before {
            opacity: 0.35;
        }

        .knowledge-directory > a:active {
            border-left-color: var(--theme-primary);
            background: color-mix(in srgb, var(--theme-primary) 8%, #fff);
            box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--theme-primary) 35%, transparent);
            transform: scale(0.985);
        }

            .knowledge-directory > a:active .knowledge-icon {
                background: var(--theme-primary);
                border-color: var(--theme-primary);
                color: #fff;
            }
}

/* 10. 关键帧 */
@keyframes kd-breathe {
    0%, 100% {
        box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-primary) 35%, transparent), 0 6px 18px color-mix(in srgb, var(--theme-primary) 10%, transparent);
    }

    50% {
        box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-primary) 55%, transparent), 0 10px 26px color-mix(in srgb, var(--theme-primary) 20%, transparent);
    }
}

@keyframes kd-border-flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* 11. 无障碍：系统减少动效时全部静止 */
@media (prefers-reduced-motion: reduce) {
    .knowledge-directory,
    .knowledge-directory::before,
    .knowledge-directory > a,
    .knowledge-directory > a .knowledge-icon,
    .knowledge-directory > a > b {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
/* 12. 移动端：三列 + 隐藏副标题 + 紧凑高度 */
@media (max-width: 780px) {
    .knowledge-directory {
        grid-template-columns: repeat(3, 1fr);
        align-content: start;
        grid-auto-rows: min-content;
    }

        .knowledge-directory > a {
            display: grid;
            grid-template-columns: 22px minmax(0, 1fr) 12px;
            gap: 7px;
            min-height: 0;
            padding: 8px 9px;
            align-items: center;
        }

        .knowledge-directory .knowledge-icon {
            width: 22px;
            height: 22px;
            padding: 3px;
        }

        .knowledge-directory .knowledge-copy {
            gap: 0;
        }

            .knowledge-directory .knowledge-copy > strong {
                font-size: 13px;
                line-height: 1.3;
                white-space: nowrap;
            }

            .knowledge-directory .knowledge-copy > span {
                display: none;
            }

        .knowledge-directory > a > b {
            font-size: 12px;
        }
}

@media (max-width: 520px) {
    .knowledge-directory {
        grid-template-columns: repeat(3, 1fr);
        align-content: start;
        grid-auto-rows: min-content;
    }

        .knowledge-directory > a {
            display: grid;
            grid-template-columns: 20px minmax(0, 1fr) 10px;
            gap: 5px;
            min-height: 0;
            padding: 7px 7px;
        }

        .knowledge-directory .knowledge-icon {
            width: 20px;
            height: 20px;
            padding: 3px;
        }

        .knowledge-directory .knowledge-copy > strong {
            font-size: 12px;
        }

        .knowledge-directory > a > b {
            font-size: 11px;
        }
}
/* 13. 压过 inner-pages.css 里 .video-center-page 的旧 Safari 回退 */
@media (max-width: 780px) {
    html body .video-center-page .knowledge-directory,
    html body .knowledge-directory {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-content: start !important;
        grid-auto-rows: min-content !important;
    }

        html body .video-center-page .knowledge-directory > a,
        html body .knowledge-directory > a {
            display: grid !important;
            grid-template-columns: 22px minmax(0, 1fr) 12px;
            width: auto !important;
            margin-top: 0;
            margin-right: 0;
        }
}

@media (max-width: 520px) {
    html body .video-center-page .knowledge-directory,
    html body .knowledge-directory {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-content: start !important;
        grid-auto-rows: min-content !important;
    }

        html body .video-center-page .knowledge-directory > a,
        html body .knowledge-directory > a {
            display: grid !important;
            grid-template-columns: 20px minmax(0, 1fr) 10px;
            width: auto !important;
            margin-top: 0;
            margin-right: 0;
        }
}

/* =====20260914 服务目录：直角 + 外框动态发光 + 图标左置 ===== */

/* =====20260914 videocenter.aspx 移动端专项修复 ===== */
@media (max-width: 780px) {
    html body .video-center-page .knowledge-directory {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-content: start !important;
        grid-auto-rows: min-content !important;
        min-height: 0 !important;
        max-height: none !important;
        height: auto !important;
        padding: 0 !important;
        border: 0 !important;
        margin: 0 !important;
    }

        html body .video-center-page .knowledge-directory > a {
            display: grid !important;
            grid-template-columns: 22px minmax(0, 1fr) 12px !important;
            gap: 7px !important;
            align-items: center !important;
            width: auto !important;
            min-height: 0 !important;
            height: auto !important;
            margin: 0 !important;
            padding: 7px 9px !important;
        }

        html body .video-center-page .knowledge-directory .knowledge-icon {
            width: 22px !important;
            height: 22px !important;
            padding: 3px !important;
        }

        html body .video-center-page .knowledge-directory .knowledge-copy {
            gap: 0 !important;
        }

            html body .video-center-page .knowledge-directory .knowledge-copy > strong {
                font-size: 13px !important;
                line-height: 1.3 !important;
                white-space: nowrap !important;
            }

            html body .video-center-page .knowledge-directory .knowledge-copy > span {
                display: none !important;
            }

        html body .video-center-page .knowledge-directory > a > b {
            font-size: 12px !important;
        }
}

@media (max-width: 520px) {
    html body .video-center-page .knowledge-directory {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-content: start !important;
        grid-auto-rows: min-content !important;
        min-height: 0 !important;
        max-height: none !important;
        height: auto !important;
        padding: 0 !important;
        border: 0 !important;
        margin: 0 !important;
    }

        html body .video-center-page .knowledge-directory > a {
            display: grid !important;
            grid-template-columns: 20px minmax(0, 1fr) 10px !important;
            gap: 5px !important;
            align-items: center !important;
            min-height: 0 !important;
            height: auto !important;
            margin: 0 !important;
            padding: 6px 7px !important;
        }

        html body .video-center-page .knowledge-directory .knowledge-icon {
            width: 20px !important;
            height: 20px !important;
            padding: 3px !important;
        }

        html body .video-center-page .knowledge-directory .knowledge-copy > strong {
            font-size: 12px !important;
        }

        html body .video-center-page .knowledge-directory > a > b {
            font-size: 11px !important;
        }
}
/* =====20260914 videocenter.aspx 移动端专项修复 ===== */


