:root {
    --bg: #eef4fb;
    --surface: #ffffff;
    --text: #172033;
    --muted: #6b7280;
    --line: #e5e7eb;
    --primary: #1d4ed8;
    --theme-primary: #1d4ed8;
    --accent: #f59e0b;
    --green: #2b8a3e;
    --shadow: 0 10px 30px rgba(23, 32, 51, .08);
  }

/* Hengli-like full-screen hero refinement for Maoming portal */
.mm-ref-home .mm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

/* Organization chart for category 47 */
.nwl-orgchart,
.nwl-orgchart * {
  box-sizing: border-box;
}

.nwl-orgchart {
  --org-blue-deep: #064987;
  --org-blue: #075da9;
  --org-blue-bright: #0b80db;
  --org-blue-soft: #f5faff;
  --org-line: #1778d4;
  --org-border: #d8eaff;
  --org-red: #e42328;
  --org-ink: #10223d;
  width: 100%;
  margin: 0;
  color: var(--org-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

.category-detail-page .category-content .nwl-orgchart p,
.nwl-orgchart p {
  margin: 0 !important;
}

.nwl-orgchart__intro {
  margin: 0 0 24px !important;
  color: var(--org-ink) !important;
  font-size: 16px !important;
  line-height: 2.05 !important;
  text-align: justify !important;
  text-indent: 2em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.nwl-orgchart__scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  border: 1px solid var(--org-border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(246, 251, 255, .96), rgba(255, 255, 255, .98));
  box-shadow: 0 18px 42px rgba(6, 73, 135, .10);
}

.nwl-orgchart__canvas {
  position: relative;
  width: 1040px !important;
  min-width: 1040px !important;
  max-width: none !important;
  min-height: 724px;
  margin: 0 auto;
  padding: 32px 38px 42px;
}

.nwl-orgchart__top {
  width: 360px !important;
  max-width: none !important;
  display: grid;
  justify-items: center;
  margin: 0 auto;
}

.nwl-orgchart__node,
.nwl-orgchart__group-title,
.nwl-orgchart__company,
.nwl-orgchart__theater,
.nwl-orgchart__summary-node {
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.nwl-orgchart__node {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 9px 24px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, var(--org-blue-bright), var(--org-blue-deep));
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0;
  box-shadow: 0 8px 16px rgba(8, 112, 200, .24);
}

.nwl-orgchart__node--root {
  width: 330px !important;
  max-width: none !important;
  font-size: 18px;
}

.nwl-orgchart__node--count {
  min-width: 260px;
  color: var(--org-blue-deep);
  background: #fff;
  border: 2px solid var(--org-blue-bright);
  box-shadow: none;
}

.nwl-orgchart__stem {
  width: 2px;
  height: 24px;
  background: var(--org-line);
}

.nwl-orgchart__stem--long {
  height: 34px;
}

.nwl-orgchart__bus {
  position: relative;
  height: 48px;
  margin: 0 48px;
}

.nwl-orgchart__bus::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--org-line);
}

.nwl-orgchart__bus::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 48px;
  background: var(--org-line);
  transform: translateX(-50%);
}

.nwl-orgchart__groups {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.7fr 1.05fr 1.05fr;
  gap: 28px;
  align-items: start;
  padding-top: 26px;
}

.nwl-orgchart__group {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
}

.nwl-orgchart__group::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  width: 2px;
  height: 26px;
  background: var(--org-line);
  transform: translateX(-50%);
}

.nwl-orgchart__group-title {
  min-width: 142px;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, var(--org-blue-bright), var(--org-blue-deep));
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 16px rgba(8, 112, 200, .20);
}

.nwl-orgchart__group-connector {
  width: 2px;
  height: 28px;
  background: var(--org-line);
}

.nwl-orgchart__children {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding-top: 24px;
}

.nwl-orgchart__children::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--org-line);
}

.nwl-orgchart__group:nth-child(3) .nwl-orgchart__children::before {
  left: -8px;
  right: -8px;
}

.nwl-orgchart__child,
.nwl-orgchart__child-stack {
  position: relative;
  display: grid;
  justify-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.nwl-orgchart__child::before,
.nwl-orgchart__child-stack::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  width: 2px;
  height: 24px;
  background: var(--org-line);
  transform: translateX(-50%);
}

.nwl-orgchart__company {
  width: 42px !important;
  max-width: none !important;
  min-height: 226px;
  display: grid;
  place-items: center;
  padding: 12px 7px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, var(--org-blue-bright), var(--org-blue-deep));
  font-size: 14px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0;
  box-shadow: 0 10px 16px rgba(6, 73, 135, .14);
}

.nwl-orgchart__company--long {
  font-size: 13px;
}

.nwl-orgchart__theater-link {
  width: 2px;
  height: 22px;
  background: var(--org-line);
}

.nwl-orgchart__theater {
  width: 42px !important;
  max-width: none !important;
  min-height: 142px;
  display: grid;
  place-items: center;
  padding: 10px 7px;
  border: 1px solid #b8d9ff;
  border-radius: 5px;
  color: var(--org-blue-deep);
  background: #eef6ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0;
}

.nwl-orgchart__summary {
  display: grid;
  justify-items: center;
  margin-top: 28px;
}

.nwl-orgchart__summary::before {
  content: "";
  width: 2px;
  height: 26px;
  background: var(--org-line);
}

.nwl-orgchart__summary-node {
  min-width: 292px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 20px;
  border: 1px solid #cfe4ff;
  border-left: 5px solid var(--org-red);
  border-radius: 6px;
  color: var(--org-blue-deep);
  background: #f2f8ff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 640px) {
  .category-detail-page .category-content .nwl-orgchart {
    margin: -4px -2px 0;
  }

  .nwl-orgchart__intro {
    margin-bottom: 20px !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
  }

  .nwl-orgchart__scroll {
    border-radius: 12px;
  }

  .nwl-orgchart__canvas {
    min-height: 710px;
    padding: 30px 34px 40px;
  }
}

.mm-ref-home main {
  display: flex;
  flex-direction: column;
}

.mm-ref-home [data-portal-block] {
  order: var(--portal-order, 0);
}

.mm-ref-home .layout-style-compact.mm-section,
.mm-ref-home .layout-style-compact.mm-news-section,
.mm-ref-home .layout-style-compact.mm-info-band,
.mm-ref-home .layout-style-compact.mm-projects-section,
.mm-ref-home .layout-style-compact.mm-business-showcase-section,
.mm-ref-home .layout-style-compact#quick {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mm-ref-home .layout-style-emphasis.mm-section,
.mm-ref-home .layout-style-emphasis.mm-news-section,
.mm-ref-home .layout-style-emphasis.mm-info-band,
.mm-ref-home .layout-style-emphasis.mm-projects-section,
.mm-ref-home .layout-style-emphasis.mm-business-showcase-section,
.mm-ref-home .layout-style-emphasis#quick {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(0, 82, 204, .08), inset 0 -1px 0 rgba(0, 82, 204, .08);
}

.list-view-page .layout-style-compact.article-list {
  gap: 10px;
}

.list-view-page .layout-style-emphasis.article-list .article-card {
  box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
}

@media (min-width: 751px) {
  .layout-device-mobile {
    display: none !important;
  }
}

@media (max-width: 750px) {
  .layout-device-desktop {
    display: none !important;
  }
}

.phpwz-wx-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(15, 23, 42, .46);
}

.phpwz-wx-modal[hidden] {
    display: none;
}

.phpwz-wx-dialog {
    position: relative;
    width: min(360px, 100%);
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    color: #102033;
    box-shadow: 0 24px 68px rgba(15, 23, 42, .22);
    text-align: center;
}

.phpwz-wx-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 1px solid #dbe4ef;
    border-radius: 50%;
    background: #fff;
    color: #64748b;
    cursor: pointer;
}

.phpwz-wx-title {
    font-size: 20px;
    font-weight: 800;
}

.phpwz-wx-user {
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.phpwz-wx-qrbox {
    display: grid;
    place-items: center;
    width: 220px;
    height: 220px;
    margin: 18px auto 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.phpwz-wx-qrbox img {
    width: 194px;
    height: 194px;
}

.phpwz-wx-status {
    min-height: 24px;
    margin: 0 0 14px;
    color: #475569;
}

.phpwz-wx-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.phpwz-wx-actions button {
    min-height: 38px;
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    color: #123849;
    cursor: pointer;
}

.phpwz-wx-actions button.primary {
    border-color: #176b87;
    background: #176b87;
    color: #fff;
}

.phpwz-wx-floating-trigger {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    width: 42px;
    height: 42px;
    border: 1px solid #dbe4ef;
    border-radius: 50%;
    color: #123849;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .18);
    font-weight: 800;
    cursor: pointer;
}

.phpwz-wx-dialog {
    display: grid;
    gap: 14px;
}

.phpwz-login-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border: 1px solid #dbe7f5;
    border-radius: 8px;
    background: #f4f8ff;
}

.phpwz-login-tabs button {
    min-height: 36px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #526174;
    font-weight: 800;
    cursor: pointer;
}

.phpwz-login-tabs button.active {
    background: #0052cc;
    color: #fff;
    box-shadow: 0 7px 16px rgba(0, 82, 204, .18);
}

.phpwz-login-panel[hidden],
.phpwz-login-tabs button[hidden],
.phpwz-logout-button[hidden] {
    display: none !important;
}

.phpwz-account-panel {
    text-align: left;
}

.phpwz-account-form {
    display: grid;
    gap: 12px;
}

.phpwz-account-form label {
    display: grid;
    gap: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.phpwz-account-form input {
    width: 100%;
    min-height: 42px;
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    padding: 0 12px;
    color: #102033;
    background: #fff;
    outline: none;
}

.phpwz-account-form input:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, .12);
}

.phpwz-account-form .primary,
.phpwz-logout-button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 9px 12px;
    background: #0052cc;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.phpwz-account-form .primary:disabled {
    cursor: wait;
    opacity: .68;
}

.phpwz-account-status {
    min-height: 22px;
    margin: 10px 0 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

.phpwz-logout-button {
    width: 100%;
    background: #eef5ff;
    color: #0052cc;
}

/* Homepage spec overrides: compact government-enterprise news portal. */
.mm-ref-home .mm-header {
  position: sticky;
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(12,35,72,.12);
  box-shadow: 0 8px 22px rgba(11,31,60,.08);
}
.mm-ref-home .mm-header-inner {
  height: 74px;
}
.mm-ref-home .mm-logo-image {
  width: min(280px, 28vw);
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}
.mm-ref-home .mm-logo-mark {
  background: var(--blue);
  border-color: var(--blue);
}
.mm-ref-home .mm-logo-text strong,
.mm-ref-home .mm-nav a,
.mm-ref-home .mm-icon-btn,
.mm-ref-home .mm-search-submit {
  color: var(--blue-deep);
  text-shadow: none;
}
.mm-ref-home .mm-icon-btn {
  border-color: #d7e2ef;
  background: #fff;
}
.mm-ref-home .mm-header-search {
  width: min(270px, 22vw);
  border-color: #dce5f0;
  background: #f1f4f8;
}
.mm-ref-home .mm-header-search input {
  opacity: 1;
}
.mm-ref-home .mm-hero {
  display: none;
}
.mm-ref-home .mm-notice {
  margin-top: 0;
}
.mm-ref-home .mm-notice-text {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.mm-ref-home .mm-notice-item {
  display: none;
  color: #24324a;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mm-ref-home .mm-notice-item.active {
  display: block;
}
.mm-ref-home .mm-notice-item:hover {
  color: var(--blue);
}
.mm-ref-home .mm-headline-link {
  display: inline-block;
}
.mm-ref-home .mm-headline-link:hover h2 {
  color: #003d92;
}
.mm-ref-home .mm-lead-carousel {
  position: relative;
  min-width: 0;
}
.mm-ref-home .mm-featured-slide {
  display: none;
}
.mm-ref-home .mm-featured-slide.active {
  display: block;
}
.mm-ref-home .mm-featured-dots {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 118px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.mm-ref-home .mm-featured-dot {
  width: 28px;
  height: 3px;
  border: 0;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}
.mm-ref-home .mm-featured-dot.active,
.mm-ref-home .mm-featured-dot:hover {
  background: var(--blue);
}
.mm-ref-home .mm-news-tab-panel {
  display: none;
}
.mm-ref-home .mm-news-tab-panel.active {
  display: block;
}
.mm-ref-home .mm-party-banners a.mm-party-banner {
  display: grid;
  place-items: center;
  text-align: center;
}
@media (max-width: 1160px) {
  .mm-ref-home .mm-logo-image {
    width: min(240px, 52vw);
  }
  .mm-ref-home .mm-header-search {
    width: 40px;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-header-inner {
    height: 64px;
  }
  .mm-ref-home .mm-logo-image {
    width: min(210px, 54vw);
    max-height: 44px;
  }
  .mm-ref-home .mm-featured-dots {
    bottom: 126px;
  }
}
.mm-ref-home .mm-header:hover,
.mm-ref-home .mm-header:focus-within,
.mm-ref-home .mm-header.is-scrolled,
.mm-ref-home .mm-header.menu-open {
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(12, 35, 72, .12);
  box-shadow: 0 8px 22px rgba(11, 31, 60, .08);
}
.mm-ref-home .mm-header-inner {
  height: 86px;
}
.mm-ref-home .mm-brand {
  color: #fff;
}
.mm-ref-home .mm-logo-mark {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.5);
}
.mm-ref-home .mm-brand.has-custom-logo {
  gap: 6px;
}
.mm-ref-home .mm-logo-image {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  max-width: 54px;
  max-height: 54px;
  object-fit: contain;
}
.mm-ref-home .mm-logo-text strong,
.mm-ref-home .mm-nav a,
.mm-ref-home .mm-icon-btn,
.mm-ref-home .mm-search-submit {
  color: #fff;
}
.mm-ref-home .mm-logo-text span {
  background: rgba(216,38,38,.95);
}
.mm-ref-home .mm-header:hover .mm-logo-mark,
.mm-ref-home .mm-header:focus-within .mm-logo-mark,
.mm-ref-home .mm-header.is-scrolled .mm-logo-mark,
.mm-ref-home .mm-header.menu-open .mm-logo-mark {
  background: var(--blue);
  border-color: var(--blue);
}
.mm-ref-home .mm-header:hover .mm-logo-text strong,
.mm-ref-home .mm-header:focus-within .mm-logo-text strong,
.mm-ref-home .mm-header.is-scrolled .mm-logo-text strong,
.mm-ref-home .mm-header.menu-open .mm-logo-text strong,
.mm-ref-home .mm-header:hover .mm-nav a,
.mm-ref-home .mm-header:focus-within .mm-nav a,
.mm-ref-home .mm-header.is-scrolled .mm-nav a,
.mm-ref-home .mm-header.menu-open .mm-nav a,
.mm-ref-home .mm-header:hover .mm-icon-btn,
.mm-ref-home .mm-header:focus-within .mm-icon-btn,
.mm-ref-home .mm-header.is-scrolled .mm-icon-btn,
.mm-ref-home .mm-header.menu-open .mm-icon-btn,
.mm-ref-home .mm-header:hover .mm-search-submit,
.mm-ref-home .mm-header:focus-within .mm-search-submit,
.mm-ref-home .mm-header.is-scrolled .mm-search-submit,
.mm-ref-home .mm-header.menu-open .mm-search-submit {
  color: var(--blue-deep);
}
.mm-ref-home .mm-nav a {
  opacity: .96;
  text-shadow: 0 2px 8px rgba(0,0,0,.24);
}
.mm-ref-home .mm-header:hover .mm-nav a,
.mm-ref-home .mm-header:focus-within .mm-nav a,
.mm-ref-home .mm-header.is-scrolled .mm-nav a,
.mm-ref-home .mm-header.menu-open .mm-nav a {
  text-shadow: none;
}
.mm-ref-home .mm-icon-btn {
  border-color: rgba(255,255,255,.36);
  background: transparent;
}
.mm-ref-home .mm-header:hover .mm-icon-btn,
.mm-ref-home .mm-header:focus-within .mm-icon-btn,
.mm-ref-home .mm-header.is-scrolled .mm-icon-btn,
.mm-ref-home .mm-header.menu-open .mm-icon-btn {
  border-color: #d7e2ef;
  background: #fff;
}
.mm-ref-home .mm-tools {
  min-width: 0;
}
.mm-ref-home .mm-header-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 42px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
  transition: width .24s ease, background .24s ease, border-color .24s ease;
}
.mm-ref-home .mm-header:hover .mm-header-search,
.mm-ref-home .mm-header-search:focus-within,
.mm-ref-home .mm-header.is-scrolled .mm-header-search {
  width: min(270px, 22vw);
  border-color: #dce5f0;
  background: #f1f4f8;
}
.mm-ref-home .mm-header-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 48px 0 18px;
  outline: 0;
  background: transparent;
  color: #15213a;
  opacity: 0;
  transition: opacity .18s ease;
}
.mm-ref-home .mm-header:hover .mm-header-search input,
.mm-ref-home .mm-header-search:focus-within input,
.mm-ref-home .mm-header.is-scrolled .mm-header-search input {
  opacity: 1;
}
.mm-ref-home .mm-header-search input::placeholder {
  color: #8a94a6;
}
.mm-ref-home .mm-search-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 100%;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}
.mm-ref-home .mm-hero {
  height: 100vh;
  min-height: 720px;
  max-height: none;
  background: #071f4a;
}
.mm-ref-home .mm-slide {
  display: block;
  pointer-events: none;
  transform: scale(1.012);
  transition: opacity .78s ease, transform 6s ease;
}
.mm-ref-home .mm-slide.active {
  pointer-events: auto;
  transform: scale(1);
}
.mm-ref-home .mm-slide-media,
.mm-ref-home .mm-slide img,
.mm-ref-home .mm-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mm-ref-home .mm-slide::after {
  background:
    linear-gradient(90deg, rgba(0, 18, 48, .62), rgba(0, 42, 92, .16) 46%, rgba(0, 0, 0, .05) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .10) 56%, rgba(0, 0, 0, .22));
}
.mm-ref-home .mm-hero-copy {
  align-items: flex-end;
  padding-bottom: 150px;
}
.mm-ref-home .mm-hero-panel {
  width: min(1080px, 70vw);
  margin: 0 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  text-shadow: 0 8px 26px rgba(0,0,0,.32);
}
.mm-ref-home .mm-hero-line {
  width: 96px;
  height: 2px;
  margin-bottom: 24px;
  background: #fff;
}
.mm-ref-home .mm-hero-kicker {
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.mm-ref-home .mm-hero h1 {
  max-width: 1080px;
  font-size: clamp(56px, 5vw, 88px);
  line-height: 1.08;
  font-weight: 900;
}
.mm-ref-home .mm-hero-subtitle {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 800;
}
.mm-ref-home .mm-hero-arrows {
  position: absolute;
  z-index: 4;
  left: max(150px, calc((100% - 1620px) / 2));
  bottom: 108px;
  display: flex;
  gap: 12px;
}
.mm-ref-home .mm-hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.16);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.mm-ref-home .mm-hero-arrow:hover,
.mm-ref-home .mm-hero-arrow:active {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  transform: translateY(-1px);
}
.mm-ref-home .mm-dots {
  left: max(150px, calc((100% - 1620px) / 2));
  right: auto;
  bottom: 68px;
  transform: none;
  gap: 8px;
}
.mm-ref-home .mm-dot {
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,.52);
}
.mm-ref-home .mm-dot.active {
  width: 44px;
}
.mm-ref-home .mm-notice {
  margin-top: 0;
}

@media (max-width: 1160px) {
  .mm-ref-home .mm-header {
    background: rgba(255,255,255,.98);
    border-bottom-color: rgba(12, 35, 72, .12);
  }
  .mm-ref-home .mm-logo-mark {
    background: var(--blue);
    border-color: var(--blue);
  }
  .mm-ref-home .mm-logo-text strong,
  .mm-ref-home .mm-icon-btn,
  .mm-ref-home .mm-search-submit {
    color: var(--blue-deep);
  }
  .mm-ref-home .mm-logo-text strong {
    font-size: 20px !important;
  }
  .mm-ref-home .mm-header-search {
    width: 40px;
  }
  .mm-ref-home .mm-header-search:focus-within {
    position: absolute;
    right: 56px;
    width: min(260px, calc(100vw - 122px));
    background: #f1f4f8;
    border-color: #dce5f0;
  }
}

@media (max-width: 750px) {
  .mm-ref-home .mm-hero {
    height: 100vh;
    min-height: 560px;
  }
  .mm-ref-home .mm-hero-copy {
    padding-bottom: 124px;
  }
  .mm-ref-home .mm-hero-panel {
    width: 100%;
    margin: 0;
    text-align: left;
  }
  .mm-ref-home .mm-hero-line {
    margin: 0 0 16px;
  }
  .mm-ref-home .mm-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }
  .mm-ref-home .mm-hero-subtitle {
    font-size: 20px;
  }
  .mm-ref-home .mm-hero-kicker {
    font-size: 11px;
  }
  .mm-ref-home .mm-hero-arrows {
    left: 20px;
    bottom: 76px;
  }
  .mm-ref-home .mm-hero-arrow {
    width: 38px;
    height: 38px;
  }
  .mm-ref-home .mm-dots {
    left: 20px;
    bottom: 44px;
  }
  .mm-ref-home .mm-dot {
    width: 26px;
  }
  .mm-ref-home .mm-dot.active {
    width: 34px;
  }
  .mm-ref-home .mm-brand.has-custom-logo .mm-logo-image {
    margin-left: -6px !important;
    margin-right: 8px !important;
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    flex-basis: 46px !important;
  }
  .mm-ref-home .mm-logo-text strong {
    font-size: 17px !important;
  }
  .mm-ref-home .mm-logo-text .mm-logo-tagline {
    margin-top: 4px !important;
    font-size: 11px !important;
  }
}

/* Final brand tuning: custom logo spacing and editable tagline sizing. */
.mm-ref-home .mm-brand {
  min-width: 0 !important;
  gap: 8px !important;
}
.mm-ref-home .mm-brand.has-custom-logo {
  gap: 0 !important;
}
.mm-ref-home .mm-brand.has-custom-logo .mm-logo-image {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  flex: 0 0 54px !important;
  object-fit: contain !important;
  margin-left: -12px !important;
  margin-right: 8px !important;
}
.mm-ref-home .mm-brand.has-custom-logo .mm-logo-text {
  margin-left: 0 !important;
}
.mm-ref-home .mm-logo-text {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.mm-ref-home .mm-logo-text strong {
  font-size: 22px !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}
.mm-ref-home .mm-logo-text .mm-logo-tagline {
  box-sizing: border-box !important;
  display: inline-block !important;
  width: auto !important;
  max-width: var(--logo-title-width, 100%) !important;
  margin-top: 5px !important;
  padding: 2px 8px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 1.35 !important;
  vertical-align: top !important;
}
@media (max-width: 1160px) {
  .mm-ref-home .mm-logo-text strong {
    font-size: 20px !important;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-brand.has-custom-logo .mm-logo-image {
    margin-left: -6px !important;
    margin-right: 6px !important;
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    flex-basis: 46px !important;
  }
  .mm-ref-home .mm-logo-text strong {
    font-size: 17px !important;
  }
  .mm-ref-home .mm-logo-text .mm-logo-tagline {
    margin-top: 4px !important;
    font-size: 11px !important;
  }
}

/* Final reference override: gzbgj.ceec.net.cn style news slideshow and timeline. */
.mm-ref-home .mm-news-section {
  padding: 88px 0 14px !important;
  background: #fff !important;
}
.mm-ref-home .mm-news-section > .mm-container {
  width: min(1200px, calc(100% - 40px)) !important;
}
.mm-ref-home .mm-headline {
  margin: 0 0 36px !important;
  text-align: center !important;
}
.mm-ref-home .mm-headline h2 {
  max-width: 1200px !important;
  margin: 0 auto !important;
  color: #0065c0 !important;
  font-size: clamp(32px, 2.75vw, 40px) !important;
  line-height: 1.32 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}
.mm-ref-home .mm-news-grid {
  display: grid !important;
  grid-template-columns: 598px minmax(0, 1fr) !important;
  gap: 40px !important;
  align-items: stretch !important;
  clear: both !important;
}
.mm-ref-home .mm-lead-carousel {
  position: relative !important;
  width: 598px !important;
  min-width: 0 !important;
  min-height: 540px !important;
  overflow: hidden !important;
}
.mm-ref-home .mm-lead-news {
  display: none !important;
  width: 100% !important;
  flex-direction: column !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
.mm-ref-home .mm-lead-news.active {
  display: flex !important;
}
.mm-ref-home .mm-lead-news:hover {
  transform: none !important;
  box-shadow: none !important;
}
.mm-ref-home .mm-lead-news img {
  width: 598px !important;
  height: 400px !important;
  max-width: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  display: block !important;
}
.mm-ref-home .mm-lead-copy {
  flex: 1 1 auto !important;
  padding: 24px 0 0 !important;
  background: transparent !important;
}
.mm-ref-home .mm-lead-copy h3 {
  margin: 0 !important;
  color: #333 !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}
.mm-ref-home .mm-lead-copy .mm-date {
  display: none !important;
}
.mm-ref-home .mm-lead-copy p {
  margin: 14px 0 0 !important;
  color: #666 !important;
  font-size: 16px !important;
  line-height: 30px !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}
.mm-ref-home .mm-featured-dots {
  display: none !important;
}
.mm-ref-home .mm-featured-arrow {
  position: absolute !important;
  top: 164px !important;
  z-index: 5 !important;
  width: 34px !important;
  height: 73px !important;
  border: 0 !important;
  background: rgba(255,255,255,.58) !important;
  color: #757f8c !important;
  font-size: 52px !important;
  line-height: 66px !important;
  font-family: Arial, sans-serif !important;
  font-weight: 300 !important;
  text-align: center !important;
  cursor: pointer !important;
  opacity: 0 !important;
  transition: opacity .18s ease, background .18s ease !important;
}
.mm-ref-home .mm-lead-carousel:hover .mm-featured-arrow,
.mm-ref-home .mm-featured-arrow:focus {
  opacity: 1 !important;
}
.mm-ref-home .mm-featured-arrow:hover {
  background: rgba(255,255,255,.82) !important;
}
.mm-ref-home .mm-featured-prev {
  left: 0 !important;
}
.mm-ref-home .mm-featured-next {
  right: 0 !important;
}
.mm-ref-home .mm-news-panel {
  min-width: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
}
.mm-ref-home .mm-panel-tabs {
  height: 64px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 66px !important;
  align-items: stretch !important;
  background: #f4f7f9 !important;
  border: 0 !important;
}
.mm-ref-home .mm-tabs {
  height: 64px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  border: 0 !important;
  overflow: hidden !important;
}
.mm-ref-home .mm-tabs a,
.mm-ref-home .mm-tabs button {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  height: 64px !important;
  padding: 0 8px !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  color: #333 !important;
  font-size: 22px !important;
  line-height: 64px !important;
  font-weight: 400 !important;
  display: block !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.mm-ref-home .mm-tabs[data-news-tab-count="4"] a,
.mm-ref-home .mm-tabs[data-news-tab-count="4"] button {
  font-size: 20px !important;
}
.mm-ref-home .mm-tabs a.active,
.mm-ref-home .mm-tabs button.active {
  border-bottom-color: #0065c0 !important;
  color: #0065c0 !important;
  font-weight: 900 !important;
}
.mm-ref-home .mm-panel-more {
  display: grid !important;
  place-items: center !important;
  min-height: 64px !important;
  color: #999 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-align: center !important;
}
.mm-ref-home .mm-timeline {
  position: relative !important;
  padding: 6px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.mm-ref-home .mm-timeline::before {
  content: "" !important;
  position: absolute !important;
  left: 70px !important;
  top: 40px !important;
  bottom: 46px !important;
  width: 1px !important;
  background: #e8edf3 !important;
}
.mm-ref-home .mm-time-item {
  position: relative !important;
  z-index: 1 !important;
  min-height: 90px !important;
  display: grid !important;
  grid-template-columns: 124px minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: center !important;
  padding: 21px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.mm-ref-home .mm-time-item:hover {
  background: transparent !important;
}
.mm-ref-home .mm-date-badge {
  position: relative !important;
  z-index: 2 !important;
  width: 80px !important;
  height: 80px !important;
  margin-left: 30px !important;
  border: 1px solid #e7edf3 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px #fff !important;
  color: #999 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
}
.mm-ref-home .mm-date-badge strong {
  color: #999 !important;
  font-size: 36px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}
.mm-ref-home .mm-date-badge em {
  color: #999 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-style: normal !important;
  white-space: nowrap !important;
}
.mm-ref-home .mm-time-copy {
  min-width: 0 !important;
  padding-top: 1px !important;
}
.mm-ref-home .mm-time-copy h3 {
  margin: 0 0 5px !important;
  color: #333 !important;
  font-size: 18px !important;
  line-height: 30px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.mm-ref-home .mm-time-item:hover .mm-time-copy h3 {
  color: #0065c0 !important;
}
.mm-ref-home .mm-time-copy p {
  margin: 0 !important;
  color: #666 !important;
  font-size: 16px !important;
  line-height: 30px !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}
.mm-ref-home .mm-empty-news {
  min-height: 476px !important;
  display: grid !important;
  place-items: center !important;
  color: #999 !important;
  font-size: 16px !important;
}
@media (max-width: 1240px) {
  .mm-ref-home .mm-news-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .mm-ref-home .mm-lead-carousel {
    width: 100% !important;
    min-height: 0 !important;
  }
  .mm-ref-home .mm-lead-news img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 598 / 400 !important;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-news-section {
    padding: 30px 0 40px !important;
  }
  .mm-ref-home .mm-news-section > .mm-container {
    width: min(100% - 28px, 720px) !important;
  }
  .mm-ref-home .mm-headline {
    margin-bottom: 22px !important;
  }
  .mm-ref-home .mm-headline h2 {
    font-size: 24px !important;
    line-height: 1.38 !important;
  }
  .mm-ref-home .mm-news-grid {
    gap: 24px !important;
  }
  .mm-ref-home .mm-lead-copy {
    padding-top: 14px !important;
  }
  .mm-ref-home .mm-lead-copy h3 {
    font-size: 18px !important;
  }
  .mm-ref-home .mm-featured-arrow {
    top: calc((100vw - 28px) * .334) !important;
    opacity: 1 !important;
    width: 28px !important;
    height: 54px !important;
    font-size: 40px !important;
    line-height: 48px !important;
  }
  .mm-ref-home .mm-panel-tabs {
    height: auto !important;
    grid-template-columns: 1fr !important;
  }
  .mm-ref-home .mm-tabs {
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .mm-ref-home .mm-tabs a,
  .mm-ref-home .mm-tabs button {
    min-width: 0 !important;
    height: 52px !important;
    padding: 0 6px !important;
    font-size: 16px !important;
    line-height: 52px !important;
  }
  .mm-ref-home .mm-panel-more {
    min-height: 40px !important;
    border-top: 1px solid #e8edf3 !important;
  }
  .mm-ref-home .mm-timeline::before {
    left: 38px !important;
    top: 32px !important;
    bottom: 36px !important;
  }
  .mm-ref-home .mm-time-item {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    min-height: 84px !important;
    padding-top: 16px !important;
  }
  .mm-ref-home .mm-date-badge {
    width: 58px !important;
    height: 58px !important;
    margin-left: 8px !important;
  }
  .mm-ref-home .mm-date-badge strong {
    font-size: 24px !important;
  }
  .mm-ref-home .mm-date-badge em {
    font-size: 11px !important;
  }
  .mm-ref-home .mm-time-copy h3 {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
  .mm-ref-home .mm-time-copy p {
    font-size: 13px !important;
    line-height: 1.7 !important;
    -webkit-line-clamp: 2 !important;
  }
}

/* Custom logo spacing only. */
.mm-ref-home .mm-brand.has-custom-logo {
  gap: 0 !important;
}
.mm-ref-home .mm-brand.has-custom-logo .mm-logo-image {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  flex: 0 0 54px !important;
  object-fit: contain;
}
.mm-ref-home .mm-brand.has-custom-logo .mm-logo-text {
  margin-left: -4px !important;
}

/* Final homepage spec override: keep after all legacy portal overrides. */
.mm-ref-home .mm-header {
  position: sticky;
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(12,35,72,.12);
  box-shadow: 0 8px 22px rgba(11,31,60,.08);
}
.mm-ref-home .mm-header-inner {
  height: 74px;
}
.mm-ref-home .mm-logo-image {
  width: min(280px, 28vw);
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}
.mm-ref-home .mm-logo-mark {
  background: var(--blue);
  border-color: var(--blue);
}
.mm-ref-home .mm-logo-text strong,
.mm-ref-home .mm-nav a,
.mm-ref-home .mm-icon-btn,
.mm-ref-home .mm-search-submit {
  color: var(--blue-deep);
  text-shadow: none;
}
.mm-ref-home .mm-icon-btn {
  border-color: #d7e2ef;
  background: #fff;
}
.mm-ref-home .mm-header-search {
  width: min(270px, 22vw);
  border-color: #dce5f0;
  background: #f1f4f8;
}
.mm-ref-home .mm-header-search input {
  opacity: 1;
}
.mm-ref-home .mm-hero {
  display: none;
}
.mm-ref-home .mm-notice {
  margin-top: 0;
}
.mm-ref-home .mm-notice-text {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.mm-ref-home .mm-notice-item {
  display: none;
  color: #24324a;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mm-ref-home .mm-notice-item.active {
  display: block;
}
.mm-ref-home .mm-notice-item:hover {
  color: var(--blue);
}
.mm-ref-home .mm-headline-link {
  display: inline-block;
}
.mm-ref-home .mm-headline-link:hover h2 {
  color: #003d92;
}
.mm-ref-home .mm-lead-carousel {
  position: relative;
  min-width: 0;
}
.mm-ref-home .mm-featured-slide {
  display: none;
}
.mm-ref-home .mm-featured-slide.active {
  display: block;
}
.mm-ref-home .mm-featured-dots {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 118px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.mm-ref-home .mm-featured-dot {
  width: 28px;
  height: 3px;
  border: 0;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}
.mm-ref-home .mm-featured-dot.active,
.mm-ref-home .mm-featured-dot:hover {
  background: var(--blue);
}
.mm-ref-home .mm-news-tab-panel {
  display: none;
}
.mm-ref-home .mm-news-tab-panel.active {
  display: block;
}
.mm-ref-home .mm-party-banners a.mm-party-banner {
  display: grid;
  place-items: center;
  text-align: center;
}
@media (max-width: 1160px) {
  .mm-ref-home .mm-logo-image {
    width: min(240px, 52vw);
  }
  .mm-ref-home .mm-header-search {
    width: 40px;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-header-inner {
    height: 64px;
  }
  .mm-ref-home .mm-logo-image {
    width: min(210px, 54vw);
    max-height: 44px;
  }
  .mm-ref-home .mm-featured-dots {
    bottom: 126px;
  }
}

/* Final override: dropdown nav, per-slide draggable text, dot-hover slider. */
.mm-ref-home .mm-nav {
  align-self: stretch;
}
.mm-ref-home .mm-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.mm-ref-home .mm-nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px;
}
.mm-ref-home .mm-nav-item.has-children > .mm-nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 21px;
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateX(-50%);
  opacity: .62;
}
.mm-ref-home .mm-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 150px;
  padding: 10px 0;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,82,181,.12);
  box-shadow: 0 18px 34px rgba(9,30,66,.15);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.mm-ref-home .mm-nav-item:hover .mm-nav-dropdown,
.mm-ref-home .mm-nav-item:focus-within .mm-nav-dropdown,
.mm-ref-home .mm-nav-item.open .mm-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mm-ref-home .mm-nav-dropdown a {
  display: block;
  height: auto !important;
  min-height: 40px;
  padding: 8px 18px;
  color: #122650 !important;
  line-height: 1.5;
  text-align: center;
  text-shadow: none !important;
  white-space: nowrap;
}
.mm-ref-home .mm-nav-dropdown a::after {
  display: none;
}
.mm-ref-home .mm-nav-dropdown a:hover {
  color: var(--blue-deep) !important;
  background: #eef5ff;
}
.mm-ref-home .mm-mobile-child {
  padding-left: 34px !important;
  color: #60708a;
  font-size: 14px;
}
.mm-ref-home .mm-slide {
  overflow: hidden;
}
.mm-ref-home .mm-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  pointer-events: none;
}
.mm-ref-home .mm-hero-panel {
  position: absolute;
  left: var(--hero-text-x, 8%);
  top: var(--hero-text-y, 52%);
  width: min(1080px, 70vw);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  text-shadow: 0 8px 26px rgba(0,0,0,.34);
  transform: translateY(-50%);
}
.mm-ref-home .mm-hero-line,
.mm-ref-home .mm-hero-kicker,
.mm-ref-home .mm-hero-title,
.mm-ref-home .mm-hero-subtitle {
  display: block;
}
.mm-ref-home .mm-hero-title {
  max-width: 1080px;
  color: #fff;
  font-size: clamp(56px, 5vw, 88px);
  line-height: 1.08;
  font-weight: 900;
}
.mm-ref-home .mm-hero-arrows {
  display: none !important;
}
.mm-ref-home .mm-dot:hover,
.mm-ref-home .mm-dot:focus-visible {
  background: #fff;
}
@media (max-width: 750px) {
  .mm-ref-home .mm-hero-panel {
    left: max(14px, min(var(--hero-text-x, 8%), 52%));
    top: min(max(var(--hero-text-y, 52%), 36%), 74%);
    width: calc(100% - 28px);
  }
  .mm-ref-home .mm-hero-title {
    font-size: clamp(38px, 11vw, 52px);
  }
}

/* EOF alignment override for the Hengli-like first screen. */
.mm-ref-home .mm-header .mm-container,
.mm-ref-home .mm-hero > .mm-container {
  width: min(1620px, calc(100% - 240px));
}
.mm-ref-home .mm-hero-panel {
  width: min(1080px, 70vw);
  margin-left: 0;
}
.mm-ref-home .mm-hero h1 {
  max-width: 1080px;
  font-size: clamp(56px, 5vw, 88px);
}
.mm-ref-home .mm-hero-arrows,
.mm-ref-home .mm-dots {
  left: max(150px, calc((100% - 1620px) / 2));
}
@media (max-width: 1500px) {
  .mm-ref-home .mm-header .mm-container,
  .mm-ref-home .mm-hero > .mm-container {
    width: calc(100% - 96px);
  }
  .mm-ref-home .mm-hero-arrows,
  .mm-ref-home .mm-dots {
    left: 48px;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-header .mm-container,
  .mm-ref-home .mm-hero > .mm-container {
    width: min(100% - 28px, 720px);
  }
  .mm-ref-home .mm-hero-panel {
    width: 100%;
  }
  .mm-ref-home .mm-hero-arrows,
  .mm-ref-home .mm-dots {
    left: 20px;
  }
}

/* EOF alignment override for the Hengli-like first screen. */
.mm-ref-home .mm-header .mm-container,
.mm-ref-home .mm-hero > .mm-container {
  width: min(1620px, calc(100% - 240px));
}
.mm-ref-home .mm-hero-panel {
  width: min(1080px, 70vw);
  margin-left: 0;
}
.mm-ref-home .mm-hero h1 {
  max-width: 1080px;
  font-size: clamp(56px, 5vw, 88px);
}
.mm-ref-home .mm-hero-arrows,
.mm-ref-home .mm-dots {
  left: max(150px, calc((100% - 1620px) / 2));
}
@media (max-width: 1500px) {
  .mm-ref-home .mm-header .mm-container,
  .mm-ref-home .mm-hero > .mm-container {
    width: calc(100% - 96px);
  }
  .mm-ref-home .mm-hero-arrows,
  .mm-ref-home .mm-dots {
    left: 48px;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-header .mm-container,
  .mm-ref-home .mm-hero > .mm-container {
    width: min(100% - 28px, 720px);
  }
  .mm-ref-home .mm-hero-panel {
    width: 100%;
  }
  .mm-ref-home .mm-hero-arrows,
  .mm-ref-home .mm-dots {
    left: 20px;
  }
}

.mm-ref-home .mm-header .mm-container,
.mm-ref-home .mm-hero > .mm-container {
  width: min(1620px, calc(100% - 240px));
}
.mm-ref-home .mm-hero-panel {
  width: min(1080px, 70vw);
  margin-left: 0;
}
.mm-ref-home .mm-hero h1 {
  max-width: 1080px;
  font-size: clamp(56px, 5vw, 88px);
}
.mm-ref-home .mm-hero-arrows,
.mm-ref-home .mm-dots {
  left: max(150px, calc((100% - 1620px) / 2));
}
@media (max-width: 1500px) {
  .mm-ref-home .mm-header .mm-container,
  .mm-ref-home .mm-hero > .mm-container {
    width: calc(100% - 96px);
  }
  .mm-ref-home .mm-hero-arrows,
  .mm-ref-home .mm-dots {
    left: 48px;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-header .mm-container,
  .mm-ref-home .mm-hero > .mm-container {
    width: min(100% - 28px, 720px);
  }
  .mm-ref-home .mm-hero-panel {
    width: 100%;
  }
  .mm-ref-home .mm-hero-arrows,
  .mm-ref-home .mm-dots {
    left: 20px;
  }
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 16px/1.6 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto 30px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 700;
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary);
    font-size: 13px;
}

.header-search {
    display: flex;
    flex: 1 1 248px;
    min-width: 180px;
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-right: 0;
    border-radius: 8px 0 0 8px;
    padding: 8px 10px;
    outline: none;
}

.header-search button {
    min-width: 54px;
    border: 0;
    border-radius: 0 8px 8px 0;
    padding: 0 14px;
    color: #fff;
    background: var(--primary);
    cursor: pointer;
    white-space: nowrap;
}

.hero-slider {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #dfe7ef;
}

.hero-placeholder {
    display: grid;
}

.slides,
.slide {
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img,
.hero-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.slider-dots button {
    width: 18px;
    height: 4px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, .65);
    cursor: pointer;
}

.slider-dots button.active {
    width: 28px;
    background: #fff;
}

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tabs a {
    flex: 0 0 auto;
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: #fff;
}

.category-tabs a.active,
.category-tabs a:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.category-tabs.compact {
    border-top: 1px solid var(--line);
}

.section-title {
    padding: 16px 16px 4px;
    font-weight: 700;
    color: var(--text);
}

.article-list {
    padding: 6px 12px 20px;
}

.article-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 13px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
}

.article-card:hover h2 {
    color: var(--primary);
}

.cover {
    width: 132px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: #edf2f7;
}

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

.article-info {
    min-width: 0;
}

.article-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
}

.article-info h2 {
    margin: 4px 0 6px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
}

.article-info p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 14px;
}

.article-info time {
    color: #8a94a6;
    font-size: 13px;
}

.pager,
.admin-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 12px 26px;
}

.pager a,
.pager .current,
.pager .pager-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 8px;
    padding: 0 10px;
    color: var(--primary);
    font-weight: 700;
}

.primary-link {
    color: var(--primary);
    font-weight: 700;
}

.pager a {
    border: 1px solid var(--line);
    background: #fff;
}

.pager .current {
    color: #fff;
    background: var(--primary);
}

.pager .pager-ellipsis {
    color: var(--muted);
}

.infinite-load {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 8px 12px 28px;
    color: var(--muted);
    font-size: 14px;
}

.infinite-load button {
    min-width: 118px;
    height: 38px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    background: #fff;
    font-weight: 700;
    cursor: pointer;
}

.infinite-load button:disabled {
    opacity: .65;
    cursor: default;
}

.infinite-load.done {
    padding-bottom: 22px;
}

.infinite-sentinel {
    height: 1px;
}

.empty-state {
    margin: 22px 12px;
    padding: 34px 18px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    text-align: center;
    color: var(--muted);
}

.page-404 h1 {
    margin-top: 0;
    color: var(--text);
}

.detail-page {
    padding: 18px 18px 34px;
}

.detail-header h1 {
    margin: 10px 0 10px;
    font-size: 26px;
    line-height: 1.35;
}

.detail-header p {
    margin: 0;
    color: var(--muted);
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.article-actions button,
.article-actions .follow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 38px;
    border: 1px solid var(--theme-primary);
    border-radius: 8px;
    padding: 0 16px;
    color: var(--theme-primary);
    background: #fff;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}

.article-actions button:hover,
.article-actions .follow-button:hover,
.article-actions button.liked {
    color: #fff;
    background: var(--theme-primary);
}

.article-actions button:disabled {
    cursor: default;
    opacity: .88;
}

.article-actions [data-share-count],
.article-actions [data-like-count] {
    margin-left: 5px;
}

.article-footer-actions {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.wechat-share-hint {
    width: min(560px, 100%);
    margin: 12px auto 0 !important;
    padding: 10px 12px;
    border: 1px solid rgba(29, 78, 216, .18);
    border-radius: 8px;
    color: var(--theme-primary) !important;
    background: rgba(29, 78, 216, .07);
    text-align: center;
    font-size: 14px;
}

.global-wechat-share-hint {
    position: fixed;
    left: 50%;
    bottom: calc(74px + env(safe-area-inset-bottom));
    z-index: 9999;
    width: min(560px, calc(100vw - 32px));
    margin: 0 !important;
    transform: translateX(-50%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
}

.detail-content {
    max-width: 100%;
    overflow-wrap: anywhere;
    color: #1f2937;
}

.detail-content *,
.detail-content *::before,
.detail-content *::after {
    box-sizing: border-box;
    max-width: 100%;
}

.detail-content section,
.detail-content article,
.detail-content div,
.detail-content p,
.detail-content span,
.detail-content figure,
.detail-content blockquote {
    max-width: 100%;
}

.detail-content img,
.detail-content svg {
    max-width: 100% !important;
    height: auto;
}

.detail-content table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.detail-content td,
.detail-content th {
    border: 1px solid var(--line);
    padding: 8px;
}

.detail-content pre,
.detail-content code {
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
}

.detail-content pre {
    overflow-x: auto;
    border-radius: 8px;
    padding: 12px;
    background: #f8fafc;
}

.category-detail-page .category-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.category-detail-page .category-content,
.category-detail-page .category-content p,
.category-detail-page .category-content span,
.category-detail-page .category-content font,
.category-detail-page .category-content div,
.category-detail-page .category-content section,
.category-detail-page .category-content article,
.category-detail-page .category-content li,
.category-detail-page .category-content blockquote {
    white-space: normal !important;
    text-wrap: wrap !important;
    text-wrap-mode: wrap !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

.category-detail-page .category-content [style*="white-space"],
.category-detail-page .category-content [style*="white-space-collapse"],
.category-detail-page .category-content [style*="text-wrap"] {
    white-space: normal !important;
    text-wrap: wrap !important;
    text-wrap-mode: wrap !important;
}

.category-detail-page .category-content p {
    display: block !important;
    margin: 0 0 1.25em !important;
    line-height: 2.05 !important;
    text-align: justify !important;
}

.category-detail-page .category-content p:empty,
.category-detail-page .category-content p:has(> br:only-child),
.category-detail-page .category-content p:has(> span:only-child > br:only-child) {
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
}

.category-detail-page .category-content [style*="display: flex"],
.category-detail-page .category-content [style*="display:flex"] {
    flex-wrap: wrap !important;
    max-width: 100% !important;
}

.category-detail-page .category-content [style*="display: flex"] > *,
.category-detail-page .category-content [style*="display:flex"] > * {
    min-width: 0 !important;
    max-width: 100% !important;
}

.category-detail-page .category-content img,
.category-detail-page .category-content video,
.category-detail-page .category-content iframe {
    max-width: 100% !important;
    height: auto !important;
}

.article-qrcode {
    width: min(360px, 100%);
    margin: 34px auto 0;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    color: var(--muted);
    text-align: center;
}

.article-qrcode img {
    display: block;
    width: 184px;
    height: 184px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
}

.article-qrcode p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
}

.flash-list {
    padding: 12px 16px 0;
}

.flash {
    padding: 10px 12px;
    border-radius: 8px;
    background: #ecfdf5;
    color: var(--green);
}

.site-footer {
    padding: 22px 16px 32px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

.portal-page {
    background: #f4f7fb;
}

.portal-page .site-shell {
    width: 100%;
    margin: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.portal-page .site-header {
    padding-right: max(20px, calc((100% - 1180px) / 2));
    padding-left: max(20px, calc((100% - 1180px) / 2));
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.portal-hero {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: #0b2f6f;
}

.portal-hero-media {
    position: relative;
    width: 100%;
    height: auto;
}

.portal-hero-media .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
}

.portal-hero-media .slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.portal-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.portal-hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 66, var(--hero-overlay, .30));
    pointer-events: none;
}

.portal-hero-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: min(1180px, calc(100% - 48px));
    min-height: 0;
    margin: 0 auto;
    padding: 82px 0 118px;
    color: #fff;
    pointer-events: none;
}

.portal-hero-copy {
    width: min(660px, 100%);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
}

.portal-text-center .portal-hero-inner {
    justify-content: center;
    text-align: center;
}

.portal-text-right .portal-hero-inner {
    justify-content: flex-end;
    text-align: right;
}

.portal-text-bottom-left .portal-hero-inner {
    align-items: flex-end;
    justify-content: flex-start;
}

.portal-text-bottom-right .portal-hero-inner {
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
}

.portal-text-center .portal-hero-copy p,
.portal-text-right .portal-hero-copy p,
.portal-text-bottom-right .portal-hero-copy p {
    margin-left: auto;
}

.portal-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, .08);
    font-size: 14px;
}

.portal-hero-copy h1 {
    margin: 20px 0 16px;
    font-size: 58px;
    line-height: 1.12;
    letter-spacing: 0;
}

.portal-hero-copy p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
}

.portal-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.portal-hero-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    padding: 0 12px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
}

.portal-hero-metrics strong {
    color: #fbbf24;
    font-size: 18px;
}

.portal-search {
    display: flex;
    width: min(540px, 100%);
    min-height: 48px;
}

.portal-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    border-radius: 8px 0 0 8px;
    padding: 0 16px;
    outline: none;
}

.portal-search button {
    width: 88px;
    border: 0;
    border-radius: 0 8px 8px 0;
    color: #082f49;
    background: #fbbf24;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.list-hero {
    aspect-ratio: auto;
    min-height: 0;
    background: #0b2f6f;
}

.list-hero .slides,
.list-hero .slide {
    height: auto;
}

.list-hero .slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.list-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(6, 26, 66, var(--hero-overlay, .28));
    pointer-events: none;
}

.list-hero-copy {
    position: absolute;
    z-index: 2;
    width: min(560px, calc(100% - 48px));
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
}

.list-hero-copy span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    padding: 0 10px;
    color: #dbeafe;
    background: rgba(255, 255, 255, .10);
    font-size: 13px;
}

.list-hero-copy h1 {
    margin: 12px 0 8px;
    font-size: 36px;
    line-height: 1.22;
}

.list-hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
}

.list-text-left .list-hero-copy {
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
}

.list-text-center .list-hero-copy {
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.list-text-right .list-hero-copy {
    top: 50%;
    right: 7%;
    text-align: right;
    transform: translateY(-50%);
}

.list-text-bottom-left .list-hero-copy {
    bottom: 44px;
    left: 7%;
}

.list-text-bottom-right .list-hero-copy {
    right: 7%;
    bottom: 44px;
    text-align: right;
}

.portal-headlines {
    align-self: center;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 8px;
    padding: 18px;
    background: rgba(8, 24, 55, .62);
    backdrop-filter: blur(8px);
}

.portal-headlines-title {
    margin-bottom: 10px;
    color: #fbbf24;
    font-weight: 700;
}

.portal-headlines a {
    display: block;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.portal-headlines span {
    display: block;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
}

.portal-headlines strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
}

.portal-ad-thumbs {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    bottom: 26px;
    left: max(24px, calc((100% - 1180px) / 2));
    z-index: 2;
    display: grid;
    grid-auto-columns: minmax(170px, 1fr);
    grid-auto-flow: column;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.portal-ad-thumbs::-webkit-scrollbar {
    display: none;
}

.portal-ad-thumbs button {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 170px;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 7px;
    color: rgba(255, 255, 255, .82);
    background: rgba(8, 24, 55, .62);
    cursor: pointer;
    text-align: left;
}

.portal-ad-thumbs button.active,
.portal-ad-thumbs button:hover {
    border-color: #fbbf24;
    color: #fff;
    background: rgba(13, 71, 161, .82);
}

.portal-ad-thumbs img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
}

.portal-ad-thumbs span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
}

.portal-category-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    width: min(1180px, calc(100% - 48px));
    margin: -34px auto 0;
    position: relative;
    z-index: 3;
}

.portal-category-nav a {
    position: relative;
    min-height: 86px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: 8px;
    padding: 18px 20px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
    font-weight: 700;
}

.portal-category-nav a::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 15px;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--category-color, var(--theme-primary));
}

.portal-category-nav small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
}

.portal-category-nav a:hover {
    color: var(--category-color, var(--theme-primary));
    transform: translateY(-2px);
}

.portal-section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 44px 0;
}

.portal-section + .portal-section {
    border-top: 1px solid rgba(203, 213, 225, .72);
}

.portal-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.portal-section-head span {
    color: var(--category-color, var(--theme-primary));
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.portal-section-head h2 {
    margin: 2px 0 0;
    font-size: 26px;
    line-height: 1.25;
}

.portal-section-head a {
    color: var(--category-color, var(--theme-primary));
    font-weight: 700;
    white-space: nowrap;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 16px;
}

.featured-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 8px;
    background: #0f172a;
}

.featured-tile.large {
    grid-row: span 2;
    min-height: 436px;
}

.featured-tile img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    opacity: .82;
    transition: transform .25s ease;
}

.featured-tile:hover img {
    transform: scale(1.03);
}

.featured-tile div {
    position: absolute;
    inset: auto 0 0;
    padding: 52px 18px 18px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .90));
}

.featured-tile span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--category-color, var(--theme-primary));
    font-size: 12px;
}

.featured-tile h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.38;
}

.featured-tile.large h3 {
    font-size: 26px;
}

.featured-tile p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .82);
}

.category-news-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 22px;
}

.category-lead {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.category-lead img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.category-lead div {
    padding: 16px;
}

.category-lead span,
.category-news-list time {
    color: var(--muted);
    font-size: 13px;
}

.category-lead h3 {
    margin: 6px 0 8px;
    font-size: 20px;
    line-height: 1.42;
}

.category-lead p {
    margin: 0;
    color: var(--muted);
}

.category-news-list {
    display: grid;
    align-content: start;
    border-top: 1px solid var(--line);
}

.category-news-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.category-news-list strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px;
}

.category-news-list a:hover strong {
    color: var(--category-color, var(--theme-primary));
}

.list-view-page .hero-slider {
    width: calc(100% - 48px);
    margin: 24px auto 0;
    border-radius: 8px;
    aspect-ratio: 21 / 7;
}

.list-view-page .category-tabs {
    justify-content: center;
    margin: 0 auto;
    padding: 18px 24px 10px;
    border-bottom: 0;
}

.list-view-page .section-title {
    width: min(960px, calc(100% - 48px));
    margin: 10px auto 0;
    padding: 14px 0 8px;
    border-bottom: 2px solid var(--theme-primary);
    font-size: 24px;
}

.list-view-page .article-list {
    width: min(960px, calc(100% - 48px));
    margin: 0 auto;
    padding: 14px 0 28px;
}

.list-view-page .article-card {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.list-view-page .cover {
    width: 210px;
}

.list-view-page .article-info h2 {
    margin-top: 8px;
    font-size: 21px;
}

.article-detail-page .detail-page {
    width: min(860px, calc(100% - 48px));
    margin: 28px auto 44px;
    padding: 0;
}

.article-detail-page .detail-header {
    text-align: center;
}

.article-detail-page .detail-header h1 {
    font-size: 34px;
}

.article-detail-page .detail-header .article-meta {
    justify-content: center;
    margin: 8px 0 16px;
}

.article-detail-page .detail-content {
    font-size: 17px;
    line-height: 1.85;
}

@media (max-width: 620px) {
    .site-shell {
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .site-header {
        align-items: center;
        flex-direction: row;
        gap: 8px;
        padding: 10px 12px;
    }

    .header-search {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand {
        flex: 0 1 auto;
        max-width: 42%;
        gap: 8px;
    }

    .brand img,
    .brand-mark {
        width: 32px;
        height: 32px;
    }

    .header-search button {
        min-width: 52px;
        padding: 0 11px;
    }

    .article-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .cover {
        width: 112px;
    }

    .article-info h2 {
        font-size: 16px;
    }

    .detail-header h1 {
        font-size: 22px;
    }

    .portal-page .site-header {
        padding-right: 12px;
        padding-left: 12px;
    }

    .portal-hero {
        height: auto;
        min-height: 0;
    }

    .portal-hero.portal-text-hidden {
        height: auto;
    }

    .portal-hero-media {
        position: relative;
        inset: auto;
        height: auto;
    }

    .portal-hero-media .slide {
        position: absolute;
        inset: 0;
        height: auto;
        opacity: 0;
        pointer-events: none;
    }

    .portal-hero-media .slide.active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }

    .portal-hero-media img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .portal-hero-shade {
        background: rgba(6, 26, 66, var(--hero-overlay, .34));
    }

    .portal-hero-inner {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        width: calc(100% - 32px);
        min-height: 0;
        padding: 30px 0 100px;
        pointer-events: none;
    }

    .portal-hero-copy h1 {
        font-size: 30px;
    }

    .portal-hero-copy p {
        font-size: 16px;
    }

    .portal-text-left .portal-hero-inner,
    .portal-text-right .portal-hero-inner,
    .portal-text-center .portal-hero-inner {
        align-items: center;
    }

    .portal-text-bottom-left .portal-hero-inner,
    .portal-text-bottom-right .portal-hero-inner {
        align-items: flex-end;
    }

    .portal-hero-metrics span {
        flex: 1 1 calc(50% - 10px);
    }

    .portal-headlines {
        margin-top: 22px;
        padding: 14px;
    }

    .portal-ad-thumbs {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 8px 12px 12px;
        grid-auto-columns: minmax(132px, 66%);
    }

    .portal-ad-thumbs button {
        grid-template-columns: 42px minmax(0, 1fr);
        min-width: 132px;
        height: 56px;
        padding: 6px;
    }

    .portal-ad-thumbs img {
        width: 42px;
        height: 42px;
    }

    .portal-category-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100% - 24px);
        gap: 8px;
        margin-top: -22px;
    }

    .portal-category-nav a {
        min-height: 74px;
        padding: 14px 15px;
    }

    .portal-section {
        width: calc(100% - 28px);
        padding: 28px 0;
    }

    .portal-section-head h2 {
        font-size: 22px;
    }

    .featured-grid,
    .category-news-grid {
        grid-template-columns: 1fr;
    }

    .featured-tile.large {
        min-height: 300px;
    }

    .category-news-list a {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .category-news-list strong {
        white-space: normal;
    }

    .list-view-page .hero-slider {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        aspect-ratio: 16 / 7;
    }

    .list-hero-copy {
        width: calc(100% - 32px);
    }

    .list-hero-copy h1 {
        font-size: 24px;
    }

    .list-hero-copy p {
        display: none;
    }

    .list-text-left .list-hero-copy,
    .list-text-bottom-left .list-hero-copy {
        left: 16px;
    }

    .list-text-right .list-hero-copy,
    .list-text-bottom-right .list-hero-copy {
        right: 16px;
    }

    .list-text-bottom-left .list-hero-copy,
    .list-text-bottom-right .list-hero-copy {
        bottom: 24px;
    }

    .list-view-page .category-tabs {
        justify-content: flex-start;
        padding: 10px 12px;
        border-bottom: 1px solid var(--line);
    }

    .list-view-page .section-title,
    .list-view-page .article-list {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .list-view-page .section-title {
        font-size: 18px;
    }

    .list-view-page .article-card {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 13px;
        margin-bottom: 0;
        padding: 13px 4px;
        border-width: 0 0 1px;
        border-radius: 0;
        box-shadow: none;
    }

    .list-view-page .cover {
        width: 112px;
    }

    .list-view-page .article-info h2 {
        font-size: 16px;
    }

    .article-detail-page .detail-page {
        width: auto;
        margin: 0;
        padding: 18px 18px 34px;
    }

    .article-detail-page .detail-header {
        text-align: left;
    }

    .article-detail-page .detail-header .article-meta {
        justify-content: flex-start;
        margin: 8px 0 14px;
    }

    .article-actions {
        justify-content: flex-start;
        gap: 8px;
    }

    .article-actions button,
    .article-actions .follow-button {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 0;
        padding: 0 9px;
        font-size: 14px;
    }

    .wechat-share-hint {
        text-align: left;
    }

    .article-qrcode {
        width: 100%;
        margin-top: 28px;
        padding-top: 20px;
    }

    .article-qrcode img {
        width: 164px;
        height: 164px;
    }

}


/* Maoming agriculture culture tourism portal upgrade */
.maoming-home-page .site-shell,
.maoming-shell { max-width: none; width: 100%; padding: 0; background: #fff; }
.maoming-home-page { margin: 0; background: #fff; color: #111827; font-family: "Microsoft YaHei", Arial, sans-serif; }
.mm-page { --blue:#0052cc; --red:#d82626; --ink:#111827; --muted:#697386; --line:#e6ebf2; min-width: 0; overflow-x: hidden; }
.mm-page a { color: inherit; text-decoration: none; }
.mm-container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.mm-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,82,204,.08); box-shadow: 0 8px 24px rgba(15,36,77,.06); }
.mm-header-inner { height: 82px; display: flex; align-items: center; gap: 28px; }
.mm-brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.mm-logo-mark { width: 46px; height: 46px; display: grid; place-items: center; background: var(--blue); color: #fff; font-weight: 900; border-radius: 4px; }
.mm-logo-text strong { display: block; font-size: 24px; line-height: 1; color: var(--blue); letter-spacing: 0; }
.mm-logo-text span { display: inline-block; margin-top: 7px; padding: 2px 7px; font-size: 12px; color: #fff; background: var(--red); border-radius: 2px; }
.mm-nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2.1vw, 32px); font-size: 16px; font-weight: 700; color: #24304a; white-space: nowrap; }
.mm-nav a { position: relative; height: 82px; display: flex; align-items: center; }
.mm-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.mm-nav a:hover::after { transform: scaleX(1); }
.mm-tools { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.mm-icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #d9e2f2; background: #fff; color: var(--blue); display: inline-grid; place-items: center; font-size: 15px; font-weight: 800; cursor: pointer; transition: box-shadow .2s ease, transform .2s ease, background .2s ease; }
.mm-icon-btn:hover, .mm-icon-btn:active { background: #f4f8ff; box-shadow: 0 8px 20px rgba(0,82,204,.13); transform: translateY(-1px); }
.mm-menu-toggle { display: none; }
.mm-mobile-brand-name { display: none !important; }
.mm-mobile-panel { display: none; }
.mm-hero { position: relative; height: clamp(420px, 54vw, 680px); overflow: hidden; background: #0c285c; }
.mm-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.mm-slide.active { opacity: 1; }
.mm-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,28,75,.76), rgba(0,28,75,.28) 42%, rgba(0,28,75,.08)); }
.mm-hero-copy { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.mm-hero-panel { width: min(610px, 58vw); margin-top: 42px; padding: 30px 34px 32px; background: rgba(0,43,99,.34); border-left: 5px solid #fff; backdrop-filter: blur(2px); color: #fff; }
.mm-hero-line { width: 108px; height: 2px; background: rgba(255,255,255,.9); margin-bottom: 20px; }
.mm-hero h1 { margin: 0; font-size: clamp(44px, 4.8vw, 76px); line-height: 1.08; font-weight: 900; letter-spacing: 0; }
.mm-hero p { margin: 18px 0 0; font-size: clamp(18px, 1.6vw, 26px); line-height: 1.5; opacity: .95; }
.mm-dots { position: absolute; z-index: 3; left: 50%; bottom: 30px; transform: translateX(-50%); display: flex; gap: 14px; }
.mm-dot { width: 44px; height: 3px; border: 0; background: rgba(255,255,255,.48); border-radius: 0; cursor: pointer; }
.mm-dot.active { background: #fff; }
.mm-notice { background: #f4f6f9; border-bottom: 1px solid var(--line); }
.mm-notice-inner { min-height: 56px; display: grid; grid-template-columns: 132px 1fr 84px; align-items: center; gap: 22px; }
.mm-notice-label { color: var(--blue); font-weight: 900; }
.mm-notice-text { color: #2b3448; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mm-notice-arrows { display: flex; gap: 8px; justify-content: flex-end; }
.mm-arrow { width: 32px; height: 32px; border: 1px solid #d9e2f2; background: #fff; color: var(--blue); cursor: pointer; }
.mm-section { padding: 52px 0; }
.mm-section.compact { padding-top: 28px; }
.mm-headline { text-align: center; margin-bottom: 24px; }
.mm-headline h2 { margin: 0 auto; max-width: 980px; color: var(--blue); font-size: clamp(25px, 2.5vw, 34px); line-height: 1.38; font-weight: 900; }
.mm-tabs { margin-top: 20px; display: inline-flex; border-bottom: 1px solid #d8e1ef; gap: 0; }
.mm-tabs button { min-width: 126px; height: 42px; border: 0; background: transparent; color: #4b5872; font-size: 16px; font-weight: 800; cursor: pointer; border-bottom: 3px solid transparent; }
.mm-tabs button.active { color: var(--blue); border-color: var(--blue); }
.mm-more { float: right; margin-top: -44px; color: var(--blue); font-weight: 700; }
.mm-news-grid { display: grid; grid-template-columns: 48% 1fr; gap: 42px; align-items: start; clear: both; }
.mm-lead-news { background: #fff; border-bottom: 3px solid var(--blue); box-shadow: 0 10px 26px rgba(11,39,82,.08); transition: transform .2s ease, box-shadow .2s ease; }
.mm-lead-news:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(11,39,82,.14); }
.mm-lead-news img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.mm-lead-copy { padding: 20px 22px 24px; }
.mm-lead-copy h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.45; color: #101828; }
.mm-date { color: #8a94a6; font-size: 14px; }
.mm-lead-copy p { margin: 12px 0 0; color: #596579; line-height: 1.75; }
.mm-timeline { display: grid; gap: 0; border-top: 1px solid var(--line); }
.mm-time-item { min-height: 92px; display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); padding: 12px 0; transition: background .18s ease; }
.mm-time-item:hover, .mm-time-item:active { background: #f7faff; }
.mm-date-badge { width: 62px; height: 62px; border-radius: 50%; background: #eef2f7; color: #7b8798; display: grid; place-items: center; text-align: center; line-height: 1.05; font-weight: 800; }
.mm-date-badge strong { display: block; font-size: 23px; color: var(--blue); }
.mm-time-item h3 { margin: 0; font-size: 18px; line-height: 1.55; color: #18233c; }
.mm-party-banners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.mm-party-banner { position: relative; min-height: 92px; display: grid; place-items: center; overflow: hidden; border: 1px solid #f0c7c7; background: linear-gradient(180deg,#fff,#fff7f7); color: var(--red); font-size: 22px; font-weight: 900; text-align: center; padding: 18px 24px; box-shadow: 0 8px 20px rgba(216,38,38,.08); }
.mm-party-banner::before, .mm-party-banner::after { content: ""; position: absolute; width: 96px; height: 96px; border: 2px solid rgba(216,38,38,.2); border-radius: 50%; }
.mm-party-banner::before { left: -34px; top: -34px; }
.mm-party-banner::after { right: -34px; bottom: -34px; }
.mm-industries { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; }
.mm-industry { text-align: center; }
.mm-industry img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform .2s ease, box-shadow .2s ease; }
.mm-industry:hover img { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(15,36,77,.16); }
.mm-industry span { display: block; margin-top: 10px; color: #1f2a44; font-weight: 800; font-size: 15px; line-height: 1.35; }
.mm-info-band { background: #fff; border-top: 0; border-bottom: 0; }
.mm-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.mm-info-card { background: transparent; }
.mm-list-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 3px solid var(--blue); }
.mm-list-head h2 { margin: 0; color: #10224c; font-size: 24px; font-weight: 900; }
.mm-list-head a { color: var(--blue); font-weight: 800; }
.mm-info-list { display: grid; gap: 0; }
.mm-info-row { min-height: 50px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; border-bottom: 1px solid #e3e9f2; color: #24304a; transition: color .18s ease, background .18s ease; }
.mm-info-row:hover { color: var(--blue); background: #fff; }
.mm-info-row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mm-info-row time { color: #8a94a6; font-size: 14px; }
.mm-topic-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.mm-topic-card { position: relative; min-height: 148px; display: flex; align-items: flex-end; padding: 18px; color: #fff; overflow: hidden; background: #0b3472; }
.mm-topic-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: transform .25s ease; }
.mm-topic-card:hover img { transform: scale(1.04); }
.mm-topic-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,28,75,.78)); }
.mm-topic-card strong { position: relative; z-index: 1; font-size: 20px; line-height: 1.35; }
.mm-quick { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.mm-quick a { min-height: 86px; border-radius: 8px; background: var(--blue); color: #fff; display: grid; place-items: center; gap: 7px; padding: 12px; font-weight: 900; box-shadow: 0 12px 24px rgba(0,82,204,.16); transition: transform .2s ease, box-shadow .2s ease; }
.mm-quick a:hover, .mm-quick a:active { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(0,82,204,.22); }
.mm-quick i { font-style: normal; font-size: 25px; line-height: 1; }
.mm-links { background: #fff; padding: 20px 0; border-top: 1px solid #eef2f7; border-bottom: 1px solid #d8e7f7; color: #1f2a3d; }
.mm-links-inner { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 18px; align-items: center; }
.mm-links-inner strong { color: var(--blue); font-size: 16px; font-weight: 600; white-space: nowrap; }
.mm-links-list { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; min-width: 0; }
.mm-link-item { position: relative; flex: 0 1 auto; width: max-content; max-width: 100%; min-width: 0; }
.mm-link-anchor,
.mm-link-trigger { display: inline-flex; align-items: center; min-height: 40px; width: auto; max-width: 100%; padding: 0 16px; border: 1px solid #d7dee8; background: #fff; color: #1f2a3d; font-size: 15px; line-height: 1.35; overflow: visible; text-overflow: clip; white-space: normal; word-break: keep-all; overflow-wrap: anywhere; transition: border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.mm-link-anchor { flex: 0 1 auto; width: max-content; min-width: 0; max-width: 100%; }
.mm-link-item .mm-link-trigger { width: 100%; min-width: 0; }
.mm-link-anchor:hover,
.mm-link-anchor:focus-visible,
.mm-link-item[open] .mm-link-trigger,
.mm-link-trigger:hover,
.mm-link-trigger:focus-visible { border-color: var(--blue); color: var(--blue); box-shadow: 0 6px 14px rgba(0, 104, 201, .08); }
.mm-link-trigger { cursor: pointer; justify-content: space-between; list-style: none; }
.mm-link-trigger::-webkit-details-marker { display: none; }
.mm-link-trigger::after { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-left: 12px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.mm-link-item[open] .mm-link-trigger::after { transform: rotate(225deg) translateY(-2px); }
.mm-link-dropdown { position: absolute; z-index: 30; left: 0; bottom: calc(100% + 6px); display: grid; min-width: 100%; width: max-content; max-width: min(520px, calc(100vw - 48px)); border: 1px solid #d7dee8; background: #fff; box-shadow: 0 12px 24px rgba(15, 35, 60, .12); }
.mm-link-dropdown a { display: block; min-height: 38px; padding: 10px 14px; color: #1f2a3d; font-size: 14px; line-height: 1.35; border-bottom: 1px solid #eef2f7; overflow: visible; text-overflow: clip; white-space: normal; word-break: keep-all; overflow-wrap: anywhere; }
.mm-link-dropdown a:last-child { border-bottom: 0; }
.mm-link-dropdown a:hover,
.mm-link-dropdown a:focus-visible { color: var(--blue); background: #f5f9ff; }
.mm-footer { background: #214d82; color: rgba(255,255,255,.9); padding: 0; font-size: 14px; }
.mm-footer a { color: rgba(255,255,255,.9); text-decoration: none; }
.mm-footer a:hover,
.mm-footer a:focus-visible { color: #fff; outline: none; }
.mm-footer-main { background: #234f87; padding: 50px 0 44px; }
.mm-footer-main-inner { display: grid; grid-template-columns: minmax(520px, 1fr) 424px; align-items: center; gap: 58px; }
.mm-footer-info { min-width: 0; color: rgba(255,255,255,.92); line-height: 1.85; }
.mm-footer-info p { margin: 5px 0; padding-left: 60px; }
.mm-footer-brandline { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; color: #fff; }
.mm-footer-brandline img { width: auto; max-width: 86px; height: 46px; object-fit: contain; flex: 0 0 auto; }
.mm-footer-brandline strong { min-width: 0; color: #fff; font-size: 22px; line-height: 1.25; font-weight: 800; }
.mm-footer-brandline span { color: #fff; font-size: 20px; line-height: 1.25; font-weight: 800; white-space: nowrap; }
.mm-footer-qr-grid { width: 424px; justify-self: end; display: grid; grid-template-columns: repeat(4, 100px); gap: 18px 8px; justify-content: end; align-items: start; }
.mm-footer-qr-item { min-width: 0; text-align: center; color: rgba(255,255,255,.92); }
.mm-footer-qr-box { box-sizing: border-box; width: 100px; height: 100px; margin: 0 auto 6px; padding: 1px; display: grid; place-items: center; background: #fff; color: #1e4f86; border: 1px solid rgba(255,255,255,.9); cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.mm-footer-qr-box:hover,
.mm-footer-qr-box:focus-visible { transform: translateY(-2px); border-color: #fff; box-shadow: 0 12px 24px rgba(5,22,48,.24); outline: 2px solid rgba(255,255,255,.68); outline-offset: 4px; }
.mm-footer-qr-box img { display: block; width: 100%; height: 100%; object-fit: contain; }
.mm-footer-qr-box span { font-size: 13px; font-weight: 700; letter-spacing: 0; }
.mm-footer-qr-name { display: block; width: 8em; max-width: 100%; min-height: 30px; margin: 0 auto; color: rgba(255,255,255,.9); font-size: 12px; line-height: 1.28; text-align: center; word-break: break-all; overflow-wrap: anywhere; }
.mm-qr-lightbox-open { overflow: hidden; }
.mm-qr-lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 28px; background: rgba(7,24,49,0); opacity: 0; pointer-events: none; transition: opacity .24s ease, background-color .24s ease, backdrop-filter .24s ease; }
.mm-qr-lightbox[hidden] { display: none; }
.mm-qr-lightbox.is-open { opacity: 1; pointer-events: auto; background: rgba(7,24,49,.62); backdrop-filter: blur(6px); }
.mm-qr-lightbox-panel { position: relative; width: min(92vw, 386px); padding: 30px 28px 24px; background: #fff; border: 1px solid rgba(0,82,204,.14); box-shadow: 0 30px 70px rgba(0,18,55,.36); color: #10264c; text-align: center; transform: translateY(18px) scale(.92); opacity: 0; transition: transform .28s cubic-bezier(.18,.78,.22,1), opacity .22s ease; }
.mm-qr-lightbox.is-open .mm-qr-lightbox-panel { transform: translateY(0) scale(1); opacity: 1; }
.mm-qr-lightbox-image-wrap { width: min(72vw, 288px); height: min(72vw, 288px); margin: 0 auto 16px; padding: 8px; display: grid; place-items: center; background: #fff; border: 1px solid #dbe5f2; box-shadow: inset 0 0 0 1px rgba(0,82,204,.06); }
.mm-qr-lightbox-img { display: block; width: 100%; height: 100%; object-fit: contain; }
.mm-qr-lightbox-name { margin: 0; color: #123461; font-size: 18px; line-height: 1.45; font-weight: 800; word-break: break-all; }
.mm-qr-lightbox-close { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #d8e2ee; background: #fff; color: #0b57b7; font-size: 22px; line-height: 1; cursor: pointer; transition: color .18s ease, border-color .18s ease, background-color .18s ease; }
.mm-qr-lightbox-close:hover,
.mm-qr-lightbox-close:focus-visible { color: #fff; background: #0068c9; border-color: #0068c9; outline: none; }
@media (prefers-reduced-motion: reduce) {
  .mm-footer-qr-box,
  .mm-qr-lightbox,
  .mm-qr-lightbox-panel,
  .mm-qr-lightbox-close { transition: none; }
}
.mm-footer-record { background: #214a7f; border-top: 1px solid rgba(255,255,255,.12); }
.mm-footer-record-inner { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.mm-footer-copyright { min-width: 0; padding-left: 60px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
.mm-footer-record-links { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; padding-right: 60px; }
.mm-footer-record-links a { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; white-space: nowrap; }
.mm-footer-legal { background: #1f4778; padding: 16px 0 18px; color: rgba(255,255,255,.78); text-align: center; }
.mm-footer-nav { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 10px; }
.mm-footer-nav a { color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.6; }
.mm-footer-legal p { max-width: 1040px; margin: 0 auto; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.9; }
@media (max-width: 1180px) {
  .mm-footer-main-inner { grid-template-columns: minmax(430px, 1fr) 408px; gap: 36px; }
  .mm-footer-qr-grid { width: 408px; grid-template-columns: repeat(4, 96px); gap: 16px 8px; }
  .mm-footer-qr-box { width: 96px; height: 96px; }
}
@media (max-width: 920px) {
  .mm-footer-main-inner { display: grid; grid-template-columns: 1fr; gap: 28px; }
  .mm-footer-info { text-align: center; }
  .mm-footer-info p { padding-left: 0; }
  .mm-footer-brandline { justify-content: center; text-align: center; flex-wrap: wrap; }
  .mm-footer-copyright { padding-left: 0; }
  .mm-footer-record-links { padding-right: 0; }
  .mm-footer-qr-grid { width: min(100%, 424px); justify-self: center; justify-content: center; grid-template-columns: repeat(4, minmax(88px, 100px)); gap: 16px 8px; }
}
.mm-topic-page { padding: 38px 0 54px; }
.mm-topic-hero { min-height: 280px; display: flex; align-items: flex-end; color: #fff; padding: 34px; background: linear-gradient(135deg,#0052cc,#102b61); position: relative; overflow: hidden; }
.mm-topic-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.mm-topic-hero > div { position: relative; z-index: 1; max-width: 820px; }
.mm-topic-hero h1 { font-size: 36px; line-height: 1.25; margin: 0 0 12px; }
.mm-topic-articles { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 28px; }

.contest-page .site-header,
.contest-page .site-footer { display: none; }
.contest-shell {
  --contest-primary: #1f7a43;
  --contest-accent: #f4b23f;
  --contest-font-scale: 1;
  min-height: 100vh;
  background: #f4f8f1;
  color: #142116;
  font-size: calc(16px * var(--contest-font-scale));
}
.contest-container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.contest-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(31, 122, 67, .12);
  box-shadow: 0 8px 22px rgba(20, 33, 22, .08);
}
.contest-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  color: var(--contest-primary);
}
.contest-brand img,
.contest-brand span {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.contest-brand span {
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--contest-primary);
  color: #fff;
  font-size: 13px;
}
.contest-brand strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contest-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-end;
}
.contest-nav nav a {
  color: #243629;
  font-weight: 700;
}
.contest-index-hero,
.contest-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #155f36, #2f7f46 48%, #d99b25);
}
.contest-index-hero::after,
.contest-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 48, 29, .86), rgba(10, 48, 29, .42), rgba(10, 48, 29, .16));
}
.contest-hero-bg,
.contest-hero picture,
.contest-hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contest-hero picture img { opacity: .72; }
.contest-index-hero .contest-container,
.contest-hero .contest-container {
  position: relative;
  z-index: 2;
}
.contest-index-hero p,
.contest-hero p,
.contest-eyebrow {
  margin: 0 0 10px;
  color: var(--contest-accent);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.contest-index-hero h1,
.contest-hero h1 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.16;
}
.contest-index-hero span,
.contest-hero span {
  display: block;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
}
.contest-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  max-width: 100%;
}
.contest-hero-actions a,
.contest-form button,
.contest-card-actions button {
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  color: #fff;
  background: var(--contest-primary);
  font-weight: 800;
  cursor: pointer;
}
.contest-hero-actions a + a,
.contest-card-actions button:nth-child(2) {
  color: #14311e;
  background: var(--contest-accent);
}
.contest-section {
  padding: 42px 0;
}
.contest-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.contest-section h2,
.contest-section-head h2 {
  margin: 0;
  font-size: 30px;
}
.contest-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}
.contest-rich-text {
  line-height: 1.9;
  color: #3d4b40;
}
.contest-intro aside {
  display: grid;
  gap: 10px;
  align-content: start;
  border-left: 5px solid var(--contest-primary);
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 122, 67, .09);
}
.contest-news-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.contest-news-tabs > div,
.contest-event-card,
.contest-work-card,
.contest-ranking,
.contest-form-section,
.contest-work-summary,
.contest-work-info {
  border: 1px solid rgba(31, 122, 67, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 122, 67, .08);
}
.contest-news-tabs > div {
  padding: 18px;
}
.contest-news-tabs h3 {
  margin: 0 0 12px;
  color: var(--contest-primary);
}
.contest-news-tabs a {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid #edf2ec;
}
.contest-news-tabs time {
  color: #6f7d72;
  font-size: 13px;
}
.contest-work-grid,
.contest-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contest-event-grid {
  padding: 34px 0 54px;
}
.contest-event-card,
.contest-work-card {
  overflow: hidden;
}
.contest-event-card img,
.contest-work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e5eee5;
}
.contest-event-card div,
.contest-work-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.contest-event-card strong,
.contest-work-card strong {
  font-size: 18px;
  line-height: 1.35;
}
.contest-event-card span,
.contest-work-card span,
.contest-event-card em {
  color: #647068;
  font-style: normal;
}
.contest-work-card audio {
  width: 100%;
}
.contest-card-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
  padding: 0 !important;
}
.contest-card-actions button {
  padding: 8px 10px;
  font-size: 13px;
}
.contest-card-actions button.is-done {
  background: #2f7f46;
}
.contest-ranking {
  padding: 24px;
}
.contest-ranking ol {
  margin: 0;
  padding-left: 24px;
}
.contest-ranking li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2ec;
}
.contest-form-section {
  padding: 24px;
}
.contest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contest-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #435147;
  font-weight: 700;
}
.contest-form .span-2 {
  grid-column: 1 / -1;
}
.contest-form input,
.contest-form select,
.contest-form textarea {
  width: 100%;
  border: 1px solid #d8e5d6;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
}
.contest-form [data-form-status] {
  align-self: center;
  color: var(--contest-primary);
  font-weight: 700;
}
.contest-comment-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.contest-comment-list p {
  margin: 0;
  border-top: 1px solid #edf2ec;
  padding-top: 10px;
  color: #3e4d42;
}
.contest-comment-list strong {
  margin-right: 10px;
  color: var(--contest-primary);
}
.contest-footer {
  padding: 28px 18px;
  text-align: center;
  color: #fff;
  background: #14311e;
}
.contest-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 31, 18, .55);
}
.contest-popup[hidden] { display: none; }
.contest-popup img {
  width: min(620px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.contest-popup button {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--contest-primary);
  font-size: 26px;
  cursor: pointer;
}
.contest-work-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 360px;
  gap: 24px;
  padding: 38px 0 24px;
}
.contest-back-link {
  grid-column: 1 / -1;
  color: var(--contest-primary);
  font-weight: 800;
}
.contest-player-panel {
  border-radius: 8px;
  overflow: hidden;
  background: #0d1f13;
}
.contest-player-panel img,
.contest-player-panel video {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
}
.contest-player-panel audio {
  width: calc(100% - 28px);
  margin: 14px;
}
.contest-work-info {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
}
.contest-work-info h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
}
.contest-work-summary {
  padding: 24px;
}

/* Blue-white contest theme refinement */
.contest-shell {
  --contest-primary: #0b5cad;
  --contest-accent: #e8f2ff;
  --contest-navy: #082f5f;
  --contest-text: #132f4c;
  --contest-muted: #65758b;
  --contest-line: rgba(17, 82, 147, .14);
  --contest-soft: #f2f7fd;
  --contest-card-shadow: 0 14px 34px rgba(12, 56, 105, .08);
  background:
    linear-gradient(180deg, #f5f9ff 0, #fff 34%, #f3f7fc 100%);
  color: var(--contest-text);
  overflow-x: hidden;
}

.contest-container {
  width: min(1160px, calc(100% - 40px));
}

.contest-nav {
  min-height: 68px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--contest-line);
  box-shadow: 0 10px 28px rgba(10, 54, 103, .08);
  backdrop-filter: blur(12px);
}

.contest-brand {
  color: var(--contest-navy);
}

.contest-brand span {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--contest-primary), #1b7bc8);
}

.contest-nav nav {
  gap: 8px;
}

.contest-nav nav a {
  border-radius: 999px;
  padding: 8px 12px;
  color: #244760;
  font-size: 14px;
  transition: background .18s ease, color .18s ease;
}

.contest-nav nav a:hover,
.contest-nav nav a:focus-visible {
  background: var(--contest-soft);
  color: var(--contest-primary);
  outline: none;
}

.contest-index-hero,
.contest-hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(135deg, #06284f, var(--contest-primary) 62%, #3b8bd1);
}

.contest-index-hero::after,
.contest-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 27, 57, .94) 0%, rgba(6, 52, 101, .78) 48%, rgba(8, 69, 128, .28) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 62%, rgba(245,249,255,.16) 100%);
}

.contest-hero-bg {
  opacity: .16;
  filter: blur(12px) saturate(.82);
  transform: scale(1.04);
}

.contest-hero picture img {
  opacity: .48;
  filter: saturate(.9) contrast(1.04);
}

.contest-index-hero .contest-container,
.contest-hero .contest-container {
  padding: 68px 0 58px;
}

.contest-index-hero p,
.contest-hero p {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255,255,255,.1);
  color: #e8f2ff;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.contest-eyebrow {
  margin: 0 0 8px;
  color: var(--contest-primary);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.contest-index-hero h1,
.contest-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contest-index-hero span,
.contest-hero span {
  max-width: 700px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}

.contest-hero-actions a,
.contest-form button,
.contest-card-actions button {
  border-radius: 8px;
  background: var(--contest-primary);
  box-shadow: 0 10px 20px rgba(8, 74, 143, .16);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.contest-hero-actions a:hover,
.contest-form button:hover,
.contest-card-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(8, 74, 143, .22);
}

.contest-hero-actions a:first-child {
  background: #fff;
  color: var(--contest-primary);
}

.contest-hero-actions a + a {
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.12);
  color: #fff;
}

.contest-button-square .contest-hero-actions a,
.contest-button-square .contest-form button,
.contest-button-square .contest-card-actions button,
.contest-button-square .contest-news-tabs > div,
.contest-button-square .contest-work-card,
.contest-button-square .contest-ranking,
.contest-button-square .contest-form-section,
.contest-button-square .contest-intro aside {
  border-radius: 0;
}

.contest-button-pill .contest-hero-actions a,
.contest-button-pill .contest-form button,
.contest-button-pill .contest-card-actions button {
  border-radius: 999px;
}

.contest-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 30px;
  overflow: hidden;
}

.contest-hero-stats span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
}

.contest-hero-stats strong {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.contest-section {
  padding: 34px 0;
}

.contest-hero + .contest-intro {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

.contest-section-head {
  display: grid;
  align-items: start;
  justify-content: start;
  border-bottom: 1px solid var(--contest-line);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.contest-section h2,
.contest-section-head h2 {
  color: var(--contest-navy);
  font-size: 28px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contest-rich-text {
  color: #425a72;
  overflow-wrap: anywhere;
}

.contest-intro aside,
.contest-news-tabs > div,
.contest-event-card,
.contest-work-card,
.contest-ranking,
.contest-form-section,
.contest-work-summary,
.contest-work-info {
  border: 1px solid var(--contest-line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--contest-card-shadow);
}

.contest-intro aside {
  border-left: 4px solid var(--contest-primary);
}

.contest-intro aside strong,
.contest-news-tabs h3 {
  color: var(--contest-navy);
  overflow-wrap: anywhere;
}

.contest-intro aside span,
.contest-news-tabs a,
.contest-work-card strong,
.contest-work-card span,
.contest-ranking li,
.contest-form label,
.contest-comment-list p {
  overflow-wrap: anywhere;
}

.contest-news-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contest-news-tabs > div {
  padding: 20px;
}

.contest-news-tabs a {
  border-top: 1px solid #e7eef7;
  color: var(--contest-text);
}

.contest-news-tabs time,
.contest-event-card span,
.contest-work-card span,
.contest-event-card em,
.contest-comment-list p,
.contest-form label {
  color: var(--contest-muted);
}

.contest-work-grid,
.contest-event-grid {
  gap: 20px;
}

.contest-work-grid > .empty-state,
.contest-event-grid > .empty-state {
  grid-column: 1 / -1;
  width: min(100%, 520px);
  margin: 0;
}

.contest-event-card img,
.contest-work-card img {
  background: #e8f2ff;
}

.contest-event-card strong,
.contest-work-card strong,
.contest-ranking a {
  color: var(--contest-navy);
}

.contest-card-actions button {
  border: 1px solid rgba(11, 92, 173, .18);
  background: #f1f7ff;
  color: var(--contest-primary);
  box-shadow: none;
}

.contest-card-actions button:first-child {
  border-color: var(--contest-primary);
  background: var(--contest-primary);
  color: #fff;
}

.contest-card-actions button:nth-child(2),
.contest-card-actions button:nth-child(3) {
  background: #fff;
  color: var(--contest-primary);
}

.contest-card-actions button.is-done {
  border-color: #1b7bc8;
  background: #1b7bc8;
}

.contest-ranking {
  padding: 24px 26px;
}

.contest-ranking li {
  border-bottom: 1px solid #e7eef7;
}

.contest-form-section {
  padding: 26px;
}

.contest-form {
  gap: 16px;
}

.contest-form input,
.contest-form select,
.contest-form textarea {
  border: 1px solid #cfdeee;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--contest-text);
}

.contest-form input:focus,
.contest-form select:focus,
.contest-form textarea:focus {
  border-color: var(--contest-primary);
  box-shadow: 0 0 0 3px rgba(11, 92, 173, .12);
  outline: none;
}

.contest-form [data-form-status] {
  color: var(--contest-primary);
}

.contest-comment-list p {
  border-top: 1px solid #e7eef7;
  color: #425a72;
}

.contest-comment-list strong {
  color: var(--contest-primary);
}

.contest-footer {
  background: #082f5f;
}

.contest-popup {
  background: rgba(6, 31, 65, .62);
}

.contest-popup button {
  background: var(--contest-primary);
}

@media (max-width: 900px) {
  .contest-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 18px;
  }
  .contest-nav nav {
    justify-content: flex-start;
  }
  .contest-index-hero h1,
  .contest-hero h1 {
    font-size: 32px;
  }
  .contest-index-hero,
  .contest-hero {
    min-height: 520px;
  }
  .contest-index-hero .contest-container,
  .contest-hero .contest-container {
    padding: 42px 0;
  }
  .contest-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
  .contest-hero + .contest-intro {
    margin-top: 0;
  }
  .contest-intro,
  .contest-work-hero,
  .contest-news-tabs,
  .contest-work-grid,
  .contest-event-grid {
    grid-template-columns: 1fr;
  }
  .contest-form {
    grid-template-columns: 1fr;
  }
  .contest-ranking li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .contest-container {
    width: calc(100% - 32px);
  }
  .contest-nav {
    gap: 12px;
  }
  .contest-nav nav {
    width: 100%;
    gap: 6px;
  }
  .contest-nav nav a {
    padding: 7px 9px;
  }
  .contest-index-hero h1,
  .contest-hero h1 {
    max-width: min(100%, 12em);
    font-size: 28px;
    line-height: 1.2;
    word-break: break-all;
  }
  .contest-index-hero span,
  .contest-hero span {
    font-size: 16px;
    word-break: break-all;
  }
  .contest-hero-actions a {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }
  .contest-hero-stats {
    grid-template-columns: 1fr;
  }
}
.mm-topic-article { border: 1px solid var(--line); padding: 18px; background: #fff; min-height: 150px; }
.mm-topic-article h2 { margin: 0 0 12px; font-size: 20px; line-height: 1.45; }
.mm-related-topics { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 22px; }
.mm-related-topics h2 { margin: 0 0 14px; font-size: 20px; color: var(--blue); }
.mm-related-topics a { display: inline-block; margin: 0 10px 10px 0; padding: 8px 12px; background: #eef4ff; color: var(--blue); border-radius: 4px; font-weight: 800; }

.mm-topic-page { background: #f6f8fb; }
.mm-topic-page .mm-container { display: grid; gap: 24px; }
.mm-topic-hero { border-radius: 0; isolation: isolate; }
.mm-topic-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 33, 82, .88), rgba(2, 33, 82, .48) 54%, rgba(0, 0, 0, .16)); z-index: 0; }
.mm-topic-hero img { opacity: .72; z-index: -1; }
.mm-topic-hero-copy { position: relative; z-index: 1; display: grid; gap: 12px; max-width: 880px; }
.mm-topic-kicker,
.mm-topic-section-label { color: #c5a24a; font-size: 13px; font-weight: 900; letter-spacing: 0; }
.mm-topic-hero h1 { margin: 0; font-size: 42px; }
.mm-topic-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.9); font-size: 17px; line-height: 1.8; }
.mm-topic-cta { width: fit-content; margin-top: 6px; padding: 11px 18px; background: #fff; color: #0d4a82; font-weight: 900; }
.mm-topic-nav { position: sticky; top: 0; z-index: 20; display: flex; flex-wrap: wrap; gap: 10px; padding: 12px; border: 1px solid #dbe5f2; background: rgba(255,255,255,.94); box-shadow: 0 12px 28px rgba(13, 48, 89, .08); backdrop-filter: blur(8px); }
.mm-topic-nav a { padding: 8px 12px; background: #eef4fb; color: #123f73; font-weight: 900; }
.mm-topic-feature { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 18px; }
.mm-topic-feature-main,
.mm-topic-feature-side,
.mm-topic-section,
.mm-topic-share { border: 1px solid #dbe5f2; background: #fff; }
.mm-topic-feature-main { display: grid; gap: 10px; padding: 24px; color: #123461; }
.mm-topic-feature-main h2 { margin: 0; font-size: 28px; line-height: 1.35; }
.mm-topic-feature-main p { margin: 0; color: #55677d; line-height: 1.75; }
.mm-topic-feature-main small { color: #748399; }
.mm-topic-feature-side { display: grid; align-content: center; gap: 8px; padding: 20px; color: #123461; text-align: center; }
.mm-topic-feature-side strong { font-size: 46px; line-height: 1; color: #0d5b99; }
.mm-topic-feature-side span { font-weight: 900; }
.mm-topic-feature-side small { color: #6b7a90; }
.mm-topic-section { padding: 24px; }
.mm-topic-section-head { display: grid; gap: 6px; margin-bottom: 18px; }
.mm-topic-section-head h2 { margin: 0; color: #123461; font-size: 26px; }
.mm-topic-articles { margin-top: 0; }
.mm-topic-article { display: grid; gap: 10px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.mm-topic-article:hover { transform: translateY(-2px); border-color: #b8c9dc; box-shadow: 0 16px 32px rgba(13, 48, 89, .1); }
.mm-topic-article h3 { margin: 0; color: #123461; font-size: 20px; line-height: 1.45; }
.mm-topic-article p { margin: 0; color: #617086; line-height: 1.7; }
.mm-topic-timeline-list { display: grid; gap: 14px; }
.mm-topic-timeline-item { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 18px; position: relative; padding: 16px 0 16px 22px; border-top: 1px solid #e2eaf3; }
.mm-topic-timeline-item::before { content: ""; position: absolute; left: 2px; top: 24px; width: 9px; height: 9px; border: 3px solid #c5a24a; border-radius: 50%; background: #fff; }
.mm-topic-timeline-item time { color: #0d5b99; font-weight: 900; }
.mm-topic-timeline-item h3 { margin: 0 0 6px; color: #123461; font-size: 18px; }
.mm-topic-timeline-item p { margin: 0; color: #617086; line-height: 1.7; }
.mm-topic-timeline-item a { display: inline-block; margin-top: 8px; color: #0d5b99; font-weight: 900; }
.mm-topic-resources { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.mm-topic-resources a { display: grid; gap: 8px; min-height: 110px; padding: 16px; border: 1px solid #dbe5f2; background: #f8fbff; color: #123461; }
.mm-topic-resources strong { font-size: 18px; line-height: 1.35; }
.mm-topic-resources span { color: #617086; line-height: 1.6; }
.mm-topic-share { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; }
.mm-topic-share p { max-width: 720px; margin: 4px 0 0; color: #617086; overflow-wrap: anywhere; }
.mm-topic-share button { border: 0; padding: 10px 16px; background: #0d5b99; color: #fff; cursor: pointer; font-weight: 900; }
.mm-topic-layout-magazine .mm-topic-articles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mm-topic-layout-timeline .mm-topic-feature { grid-template-columns: 1fr; }
@media (max-width: 1080px) {
  .mm-header-inner { height: 68px; }
  .mm-menu-toggle { display: inline-grid; }
  .mm-brand { flex: 1; justify-content: center; }
  .mm-nav { display: none; }
  .mm-logo-text strong { font-size: 20px; }
  .mm-mobile-panel { position: fixed; inset: 68px 0 auto 0; z-index: 45; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 18px 38px rgba(15,36,77,.16); padding: 18px 24px 28px; }
  .mm-mobile-panel.open { display: block; }
  .mm-mobile-panel a { display: block; min-height: 48px; padding: 14px 4px; border-bottom: 1px solid #edf1f7; color: #1f2a44; font-weight: 900; }
  .mm-industries { grid-template-columns: repeat(4, 1fr); }
  .mm-news-grid, .mm-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 750px) {
  .mm-container { width: min(100% - 28px, 720px); }
  .mm-header-inner { gap: 8px; }
  .mm-logo-mark { width: 36px; height: 36px; font-size: 13px; }
  .mm-logo-text strong { font-size: 17px; }
  .mm-logo-text span { font-size: 11px; }
  .mm-tools { gap: 6px; }
  .mm-icon-btn { width: 34px; height: 34px; font-size: 13px; }
  .mm-hero { height: 430px; }
  .mm-slide::after { background: linear-gradient(180deg, rgba(0,28,75,.18), rgba(0,28,75,.76)); }
  .mm-hero-copy { align-items: flex-end; padding-bottom: 72px; }
  .mm-hero-panel { width: 100%; margin: 0; padding: 20px; text-align: center; border-left: 0; border-top: 4px solid #fff; }
  .mm-hero-line { margin: 0 auto 14px; }
  .mm-hero h1 { font-size: 34px; }
  .mm-hero p { font-size: 17px; }
  .mm-notice-inner { grid-template-columns: 86px 1fr 52px; gap: 8px; min-height: 64px; }
  .mm-notice-text { white-space: normal; line-height: 1.45; font-size: 14px; }
  .mm-section { padding: 36px 0; }
  .mm-headline h2 { font-size: 22px; }
  .mm-more { float: none; display: inline-block; margin: 12px 0 18px; }
  .mm-tabs { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; }
  .mm-tabs button { min-width: 0; font-size: 14px; }
  .mm-lead-copy h3 { font-size: 19px; }
  .mm-time-item { grid-template-columns: 58px 1fr; gap: 12px; min-height: 84px; }
  .mm-date-badge { width: 52px; height: 52px; font-size: 12px; }
  .mm-date-badge strong { font-size: 20px; }
  .mm-party-banners { grid-template-columns: 1fr; gap: 12px; }
  .mm-party-banner { min-height: 72px; font-size: 18px; }
  .mm-industries { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .mm-industry span { font-size: 12px; }
  .mm-info-row { min-height: 58px; align-items: start; padding: 9px 0; }
  .mm-info-row span { white-space: normal; line-height: 1.45; }
  .mm-topic-strip { grid-template-columns: 1fr; }
  .mm-quick { grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .mm-quick a { grid-column: span 2; min-height: 76px; border-radius: 7px; }
  .mm-quick a:nth-child(4), .mm-quick a:nth-child(5) { grid-column: span 3; }
  .mm-links-inner { grid-template-columns: 1fr; gap: 10px; }
  .mm-links-list { justify-content: flex-start; }
  .mm-footer-main { padding: 34px 0 30px; }
  .mm-footer-main-inner { display: grid; grid-template-columns: 1fr; gap: 28px; }
  .mm-footer-brandline { justify-content: center; text-align: center; flex-wrap: wrap; }
  .mm-footer-info { text-align: center; }
  .mm-footer-qr-grid { justify-content: center; grid-template-columns: repeat(2, 100px); gap: 16px 30px; }
  .mm-footer-record-inner { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 8px; padding: 14px 0; text-align: center; }
  .mm-footer-record-links { justify-content: center; padding-right: 0; }
  .mm-topic-articles,
  .mm-topic-layout-magazine .mm-topic-articles,
  .mm-topic-feature,
  .mm-topic-resources,
  .mm-topic-timeline-item { grid-template-columns: 1fr; }
  .mm-topic-hero { min-height: 340px; padding: 26px; }
  .mm-topic-hero h1 { font-size: 30px; }
  .mm-topic-nav { position: static; }
  .mm-topic-section { padding: 18px; }
  .mm-topic-share { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 360px) {
  .mm-logo-text strong { font-size: 15px; }
  .mm-icon-btn { width: 32px; height: 32px; }
  .mm-hero h1 { font-size: 30px; }
  .mm-industries { gap: 9px; }
  .mm-links-list { justify-content: stretch; }
  .mm-link-anchor,
  .mm-link-item { width: 100%; }
}

/* Maoming official portal reference redesign: Hengli-style header + GZBGJ-style content */
.mm-ref-home {
  --blue: #0068c9;
  --blue-deep: #0052b5;
  --red: #d71920;
  --ink: #202737;
  --muted: #7a8495;
  --line: #e6edf5;
  background: #fff;
  color: var(--ink);
}
.mm-ref-home .mm-container {
  width: min(1200px, calc(100% - 48px));
}
.mm-ref-home .mm-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(0, 104, 201, .12);
  box-shadow: 0 3px 14px rgba(20, 48, 90, .05);
}
.mm-ref-home .mm-header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.mm-ref-home .mm-brand {
  min-width: 310px;
  gap: 13px;
}
.mm-ref-home .mm-logo-mark {
  width: 70px;
  height: 46px;
  border-radius: 2px;
  display: grid;
  grid-template-rows: 1fr 16px;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}
.mm-ref-home .mm-logo-mark b,
.mm-ref-home .mm-logo-mark em {
  display: grid;
  place-items: center;
  font-style: normal;
  line-height: 1;
}
.mm-ref-home .mm-logo-mark b {
  font-size: 20px;
  letter-spacing: .5px;
}
.mm-ref-home .mm-logo-mark em {
  background: var(--red);
  font-size: 11px;
  font-weight: 700;
}
.mm-ref-home .mm-logo-text strong {
  color: var(--blue-deep);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.mm-ref-home .mm-logo-text span {
  margin-top: 7px;
  padding: 2px 8px;
  border-radius: 0;
  background: var(--red);
  color: #fff;
  font-size: 12px;
}
.mm-ref-home .mm-nav {
  gap: clamp(18px, 2vw, 30px);
  justify-content: center;
  color: #1e2637;
  font-size: 16px;
  font-weight: 800;
}
.mm-ref-home .mm-nav a {
  height: 92px;
  letter-spacing: 0;
}
.mm-ref-home .mm-nav a::after {
  height: 4px;
  background: var(--blue);
}
.mm-ref-home .mm-tools {
  gap: 10px;
}
.mm-ref-home .mm-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d7e2ef;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}
.mm-ref-home .mm-icon-btn:hover,
.mm-ref-home .mm-icon-btn:active {
  background: #f3f8ff;
  box-shadow: 0 8px 18px rgba(0, 104, 201, .16);
}
.mm-ref-home .mm-hero {
  height: clamp(500px, 42vw, 650px);
  background: #0b4484;
}
.mm-ref-home .mm-slide::after {
  background:
    linear-gradient(90deg, rgba(0, 24, 70, .72), rgba(0, 60, 128, .26) 43%, rgba(0, 104, 201, .03) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .16));
}
.mm-ref-home .mm-hero-copy {
  align-items: center;
}
.mm-ref-home .mm-hero-panel {
  width: min(590px, 52vw);
  margin-top: 42px;
  padding: 34px 42px 36px;
  border-left: 6px solid #fff;
  background: rgba(0, 43, 100, .45);
  color: #fff;
  backdrop-filter: blur(3px);
}
.mm-ref-home .mm-hero-line {
  width: 106px;
  height: 2px;
  margin-bottom: 18px;
  background: #fff;
}
.mm-ref-home .mm-hero-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  letter-spacing: 0;
}
.mm-ref-home .mm-hero h1 {
  margin: 0;
  max-width: 460px;
  color: #fff;
  font-size: clamp(46px, 4.4vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 6px 22px rgba(0, 0, 0, .24);
}
.mm-ref-home .mm-hero-subtitle {
  margin: 18px 0 0;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.6;
}
.mm-ref-home .mm-dots {
  bottom: 28px;
  gap: 12px;
}
.mm-ref-home .mm-dot {
  width: 46px;
  height: 3px;
  border-radius: 0;
  background: rgba(255,255,255,.45);
}
.mm-ref-home .mm-dot.active {
  background: #fff;
}
.mm-ref-home .mm-notice {
  background: #f6f8fb;
  border-bottom: 1px solid #dde7f2;
}
.mm-ref-home .mm-notice-inner {
  min-height: 62px;
  grid-template-columns: 128px 1fr 84px;
}
.mm-ref-home .mm-notice-label {
  color: var(--blue);
  font-weight: 900;
}
.mm-ref-home .mm-notice-label::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -4px;
  background: var(--blue);
}
.mm-ref-home .mm-arrow {
  width: 30px;
  height: 30px;
  border-color: #d4dfec;
  background: #fff;
}
.mm-ref-home .mm-section {
  padding: 54px 0;
}
.mm-ref-home .mm-news-section {
  padding-bottom: 24px;
  background: #fff;
}
.mm-ref-home .mm-headline {
  margin-bottom: 34px;
  text-align: center;
}
.mm-ref-home .mm-headline h2 {
  max-width: 1060px;
  color: var(--blue-deep);
  font-size: clamp(30px, 2.55vw, 42px);
  font-weight: 900;
  line-height: 1.28;
}
.mm-ref-home .mm-news-grid {
  clear: both;
  display: grid;
  grid-template-columns: minmax(420px, 49%) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}
.mm-ref-home .mm-lead-news {
  border-bottom: 4px solid var(--blue);
  background: #fff;
  box-shadow: none;
}
.mm-ref-home .mm-lead-news:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(14, 55, 112, .12);
}
.mm-ref-home .mm-lead-news img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.mm-ref-home .mm-lead-copy {
  padding: 20px 22px 24px;
}
.mm-ref-home .mm-lead-copy h3 {
  color: #172033;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
}
.mm-ref-home .mm-lead-copy p {
  color: #647084;
  font-size: 15px;
  line-height: 1.75;
}
.mm-ref-home .mm-news-panel {
  min-width: 0;
}
.mm-ref-home .mm-panel-tabs {
  height: 62px;
  display: grid;
  grid-template-columns: 1fr 70px;
  align-items: center;
  background: #f2f5f8;
  border-bottom: 1px solid #dfe8f2;
}
.mm-ref-home .mm-tabs {
  height: 100%;
  margin: 0;
  display: flex;
  align-items: stretch;
  border: 0;
}
.mm-ref-home .mm-tabs button,
.mm-ref-home .mm-tabs a {
  min-width: 122px;
  height: 100%;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #27344c;
  font-size: 17px;
  font-weight: 900;
  display: grid;
  place-items: center;
  text-align: center;
}
.mm-ref-home .mm-tabs button.active,
.mm-ref-home .mm-tabs a.active {
  border-color: var(--blue);
  color: var(--blue);
}
.mm-ref-home .mm-panel-more {
  color: #8a94a6;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.mm-ref-home .mm-timeline {
  border-top: 0;
}
.mm-ref-home .mm-time-item {
  min-height: 104px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e7edf5;
}
.mm-ref-home .mm-time-item:hover {
  background: #f8fbff;
}
.mm-ref-home .mm-date-badge {
  width: 66px;
  height: 66px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #f6f7f9;
  color: #9aa3b1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.mm-ref-home .mm-date-badge strong {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}
.mm-ref-home .mm-date-badge em {
  font-style: normal;
  font-size: 13px;
}
.mm-ref-home .mm-time-copy {
  min-width: 0;
}
.mm-ref-home .mm-time-copy h3 {
  margin: 0 0 8px;
  color: #202a3f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}
.mm-ref-home .mm-time-copy p {
  margin: 0;
  color: #717c8f;
  font-size: 15px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mm-ref-home .mm-party-banners {
  margin-top: 36px;
  gap: 16px;
}
.mm-ref-home .mm-party-banner {
  min-height: 78px;
  border: 1px solid #f2c8c8;
  background: #fffafa;
  color: var(--red);
  font-size: 21px;
  box-shadow: none;
}
.mm-ref-home .mm-party-banner::before,
.mm-ref-home .mm-party-banner::after {
  width: 92px;
  height: 92px;
  border-color: rgba(215, 25, 32, .18);
}
.mm-ref-home .mm-section.compact {
  padding: 34px 0 50px;
}
.mm-ref-home .mm-industries {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}
.mm-ref-home .mm-industry img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.mm-ref-home .mm-industry span {
  color: #1c2738;
  font-size: 15px;
  font-weight: 900;
}
.mm-ref-home .mm-info-band {
  padding: 18px 0 42px;
  background: #fff;
  border-top: 0;
  border-bottom: 0;
}
.mm-ref-home .mm-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}
.mm-ref-home .mm-list-head {
  height: 52px;
  padding-bottom: 0;
  border-bottom: 3px solid var(--blue);
}
.mm-ref-home .mm-list-head h2 {
  color: #10234a;
  font-size: 24px;
}
.mm-ref-home .mm-info-row {
  min-height: 48px;
  border-bottom: 1px solid #e0e7f0;
}
.mm-ref-home .mm-info-row span {
  color: #27344c;
}
.mm-ref-home .mm-topic-strip {
  gap: 20px;
  margin-top: 30px;
}
.mm-ref-home .mm-topic-strip-section {
  padding: 44px 0 54px;
  background: #fff;
}
.mm-ref-home .mm-topic-strip-section .mm-topic-strip {
  margin-top: 0;
}
.mm-ref-home .mm-topic-card {
  min-height: 150px;
  border: 0;
}
.mm-ref-home .mm-quick {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.mm-ref-home .mm-quick a {
  min-height: 84px;
  border-radius: 6px;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 104, 201, .18);
}
.mm-ref-home .mm-links {
  background: #fff;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #d8e7f7;
}
.mm-ref-home .mm-footer {
  background: #073a78;
}

@media (max-width: 1160px) {
  .mm-ref-home .mm-header-inner {
    height: 74px;
  }
  .mm-ref-home .mm-brand {
    min-width: 0;
    flex: 1;
    justify-content: center;
  }
  .mm-ref-home .mm-nav {
    display: none;
  }
  .mm-ref-home .mm-menu-toggle {
    display: inline-grid;
  }
  .mm-ref-home .mm-mobile-panel {
    inset: 74px 0 auto 0;
  }
  .mm-ref-home .mm-news-grid,
  .mm-ref-home .mm-info-grid {
    grid-template-columns: 1fr;
  }
  .mm-ref-home .mm-industries {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 750px) {
  .mm-ref-home .mm-container {
    width: min(100% - 28px, 720px);
  }
  .mm-ref-home .mm-header-inner {
    height: 64px;
    gap: 8px;
  }
  .mm-ref-home .mm-mobile-panel {
    inset: 64px 0 auto 0;
  }
  .mm-ref-home .mm-brand {
    gap: 7px;
  }
  .mm-ref-home .mm-logo-mark {
    width: 38px;
    height: 34px;
    grid-template-rows: 1fr 12px;
  }
  .mm-ref-home .mm-logo-mark b {
    font-size: 12px;
  }
  .mm-ref-home .mm-logo-mark em {
    font-size: 9px;
  }
  .mm-ref-home .mm-logo-text strong {
    font-size: 15px;
  }
  .mm-ref-home .mm-logo-text span {
    margin-top: 3px;
    padding: 1px 5px;
    font-size: 10px;
  }
  .mm-ref-home .mm-tools {
    gap: 5px;
  }
  .mm-ref-home .mm-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .mm-ref-home .mm-hero {
    height: 420px;
  }
  .mm-ref-home .mm-slide::after {
    background: linear-gradient(180deg, rgba(0, 42, 96, .08), rgba(0, 36, 92, .78));
  }
  .mm-ref-home .mm-hero-copy {
    align-items: flex-end;
    padding-bottom: 66px;
  }
  .mm-ref-home .mm-hero-panel {
    width: 100%;
    padding: 18px 18px 20px;
    margin: 0;
    border-left: 0;
    border-top: 4px solid #fff;
    text-align: center;
  }
  .mm-ref-home .mm-hero-line {
    margin: 0 auto 10px;
  }
  .mm-ref-home .mm-hero-kicker {
    font-size: 11px;
  }
  .mm-ref-home .mm-hero h1 {
    max-width: none;
    font-size: 32px;
  }
  .mm-ref-home .mm-hero-subtitle {
    font-size: 15px;
  }
  .mm-ref-home .mm-notice-inner {
    grid-template-columns: 88px 1fr 50px;
    gap: 8px;
    min-height: 68px;
  }
  .mm-ref-home .mm-news-section {
    padding-top: 36px;
  }
  .mm-ref-home .mm-headline h2 {
    font-size: 22px;
    line-height: 1.4;
  }
  .mm-ref-home .mm-news-grid {
    gap: 24px;
  }
  .mm-ref-home .mm-panel-tabs {
    height: auto;
    grid-template-columns: 1fr;
  }
  .mm-ref-home .mm-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .mm-ref-home .mm-tabs button,
  .mm-ref-home .mm-tabs a {
    min-width: 0;
    height: 48px;
    font-size: 14px;
  }
  .mm-ref-home .mm-panel-more {
    min-height: 38px;
    display: grid;
    place-items: center;
    border-top: 1px solid #e1e9f2;
  }
  .mm-ref-home .mm-time-item {
    min-height: 90px;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 14px 0;
  }
  .mm-ref-home .mm-date-badge {
    width: 52px;
    height: 52px;
  }
  .mm-ref-home .mm-date-badge strong {
    font-size: 21px;
  }
  .mm-ref-home .mm-time-copy h3 {
    font-size: 16px;
  }
  .mm-ref-home .mm-time-copy p {
    font-size: 13px;
    -webkit-line-clamp: 1;
  }
  .mm-ref-home .mm-party-banners {
    grid-template-columns: 1fr;
  }
  .mm-ref-home .mm-industries {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .mm-ref-home .mm-industry span {
    font-size: 12px;
  }
  .mm-ref-home .mm-info-row {
    grid-template-columns: 1fr 44px;
    align-items: start;
    min-height: 58px;
    padding: 10px 0;
  }
  .mm-ref-home .mm-info-row span {
    white-space: normal;
    line-height: 1.45;
  }
  .mm-ref-home .mm-topic-strip {
    grid-template-columns: 1fr;
  }
  .mm-ref-home .mm-quick {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
  .mm-ref-home .mm-quick a {
    grid-column: span 2;
  }
  .mm-ref-home .mm-quick a:nth-child(4),
  .mm-ref-home .mm-quick a:nth-child(5) {
    grid-column: span 3;
  }
}

/* Final live override: Hengli-style immersive first screen. Keep this at EOF. */
.mm-ref-home .mm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.mm-ref-home .mm-header:hover,
.mm-ref-home .mm-header:focus-within,
.mm-ref-home .mm-header.is-scrolled,
.mm-ref-home .mm-header.menu-open {
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(12,35,72,.12);
  box-shadow: 0 8px 22px rgba(11,31,60,.08);
}
.mm-ref-home .mm-header-inner {
  height: 86px;
}
.mm-ref-home .mm-logo-mark {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.5);
}
.mm-ref-home .mm-logo-text strong,
.mm-ref-home .mm-nav a,
.mm-ref-home .mm-icon-btn,
.mm-ref-home .mm-search-submit {
  color: #fff;
}
.mm-ref-home .mm-nav a {
  text-shadow: 0 2px 8px rgba(0,0,0,.24);
}
.mm-ref-home .mm-header:hover .mm-logo-mark,
.mm-ref-home .mm-header:focus-within .mm-logo-mark,
.mm-ref-home .mm-header.is-scrolled .mm-logo-mark,
.mm-ref-home .mm-header.menu-open .mm-logo-mark {
  background: var(--blue);
  border-color: var(--blue);
}
.mm-ref-home .mm-header:hover .mm-logo-text strong,
.mm-ref-home .mm-header:focus-within .mm-logo-text strong,
.mm-ref-home .mm-header.is-scrolled .mm-logo-text strong,
.mm-ref-home .mm-header.menu-open .mm-logo-text strong,
.mm-ref-home .mm-header:hover .mm-nav a,
.mm-ref-home .mm-header:focus-within .mm-nav a,
.mm-ref-home .mm-header.is-scrolled .mm-nav a,
.mm-ref-home .mm-header.menu-open .mm-nav a,
.mm-ref-home .mm-header:hover .mm-icon-btn,
.mm-ref-home .mm-header:focus-within .mm-icon-btn,
.mm-ref-home .mm-header.is-scrolled .mm-icon-btn,
.mm-ref-home .mm-header.menu-open .mm-icon-btn,
.mm-ref-home .mm-header:hover .mm-search-submit,
.mm-ref-home .mm-header:focus-within .mm-search-submit,
.mm-ref-home .mm-header.is-scrolled .mm-search-submit,
.mm-ref-home .mm-header.menu-open .mm-search-submit {
  color: var(--blue-deep);
  text-shadow: none;
}
.mm-ref-home .mm-brand {
  min-width: 0 !important;
  gap: 8px !important;
}
.mm-ref-home .mm-brand.has-custom-logo {
  gap: 0 !important;
}
.mm-ref-home .mm-brand.has-custom-logo .mm-logo-image {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  flex: 0 0 54px !important;
  object-fit: contain !important;
  margin-left: -12px !important;
  margin-right: 14px !important;
}
.mm-ref-home .mm-brand.has-custom-logo .mm-logo-text {
  margin-left: 0 !important;
}
.mm-ref-home .mm-logo-text {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.mm-ref-home .mm-logo-text strong {
  font-size: 22px !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}
.mm-ref-home .mm-logo-text .mm-logo-tagline {
  box-sizing: border-box !important;
  display: inline-block !important;
  width: auto !important;
  max-width: var(--logo-title-width, 100%) !important;
  margin-top: 5px !important;
  padding: 2px 8px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 1.35 !important;
  vertical-align: top !important;
}
.mm-ref-home .mm-icon-btn {
  border-color: rgba(255,255,255,.36);
  background: transparent;
}
.mm-ref-home .mm-header:hover .mm-icon-btn,
.mm-ref-home .mm-header:focus-within .mm-icon-btn,
.mm-ref-home .mm-header.is-scrolled .mm-icon-btn,
.mm-ref-home .mm-header.menu-open .mm-icon-btn {
  border-color: #d7e2ef;
  background: #fff;
}
.mm-ref-home .mm-header-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 42px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
  transition: width .24s ease, background .24s ease, border-color .24s ease;
}
.mm-ref-home .mm-header:hover .mm-header-search,
.mm-ref-home .mm-header-search:focus-within,
.mm-ref-home .mm-header.is-scrolled .mm-header-search {
  width: min(270px, 22vw);
  border-color: #dce5f0;
  background: #f1f4f8;
}
.mm-ref-home .mm-header-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 48px 0 18px;
  outline: 0;
  background: transparent;
  color: #15213a;
  opacity: 0;
  transition: opacity .18s ease;
}
.mm-ref-home .mm-header:hover .mm-header-search input,
.mm-ref-home .mm-header-search:focus-within input,
.mm-ref-home .mm-header.is-scrolled .mm-header-search input {
  opacity: 1;
}
.mm-ref-home .mm-header-search input::placeholder {
  color: #8a94a6;
}
.mm-ref-home .mm-search-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 100%;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}
.mm-ref-home .mm-hero {
  display: block;
  height: 100vh;
  min-height: 720px;
  max-height: none;
  background: #071f4a;
}
.mm-ref-home .mm-slide {
  display: block;
  pointer-events: none;
  transform: scale(1.012);
  transition: opacity .78s ease, transform 6s ease;
}
.mm-ref-home .mm-slide.active {
  pointer-events: auto;
  transform: scale(1);
}
.mm-ref-home .mm-slide-media,
.mm-ref-home .mm-slide img,
.mm-ref-home .mm-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mm-ref-home .mm-slide::after {
  background:
    linear-gradient(90deg, rgba(0,18,48,.62), rgba(0,42,92,.16) 46%, rgba(0,0,0,.05) 78%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.10) 56%, rgba(0,0,0,.22));
}
.mm-ref-home .mm-hero-copy {
  align-items: flex-end;
  padding-bottom: 150px;
}
.mm-ref-home .mm-hero-panel {
  width: min(1080px, 70vw);
  margin: 0 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  text-align: left;
  text-shadow: 0 8px 26px rgba(0,0,0,.32);
}
.mm-ref-home .mm-hero-line {
  width: 96px;
  height: 2px;
  margin: 0 0 24px;
  background: #fff;
}
.mm-ref-home .mm-hero-kicker {
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.mm-ref-home .mm-hero h1 {
  max-width: 1080px;
  font-size: clamp(56px, 5vw, 88px);
  line-height: 1.08;
  font-weight: 900;
}
.mm-ref-home .mm-hero-subtitle {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 800;
}
.mm-ref-home .mm-hero-arrows {
  position: absolute;
  z-index: 4;
  left: max(150px, calc((100% - 1620px) / 2));
  bottom: 108px;
  display: flex;
  gap: 12px;
}
.mm-ref-home .mm-hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.16);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.mm-ref-home .mm-hero-arrow:hover,
.mm-ref-home .mm-hero-arrow:active {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  transform: translateY(-1px);
}
.mm-ref-home .mm-dots {
  left: max(150px, calc((100% - 1620px) / 2));
  right: auto;
  bottom: 68px;
  transform: none;
  gap: 8px;
}
.mm-ref-home .mm-dot {
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,.52);
}
.mm-ref-home .mm-dot.active {
  width: 44px;
}
@media (max-width: 1160px) {
  .mm-ref-home .mm-header {
    background: rgba(255,255,255,.98);
    border-bottom-color: rgba(12,35,72,.12);
  }
  .mm-ref-home .mm-logo-mark {
    background: var(--blue);
    border-color: var(--blue);
  }
  .mm-ref-home .mm-logo-text strong,
  .mm-ref-home .mm-icon-btn,
  .mm-ref-home .mm-search-submit {
    color: var(--blue-deep);
  }
  .mm-ref-home .mm-header-search {
    width: 40px;
  }
  .mm-ref-home .mm-header-search:focus-within {
    position: absolute;
    right: 56px;
    width: min(260px, calc(100vw - 122px));
    background: #f1f4f8;
    border-color: #dce5f0;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-hero {
    height: 100vh;
    min-height: 560px;
  }
  .mm-ref-home .mm-hero-copy {
    padding-bottom: 124px;
  }
  .mm-ref-home .mm-hero-panel {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: left;
  }
  .mm-ref-home .mm-hero-line {
    margin: 0 0 16px;
  }
  .mm-ref-home .mm-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }
  .mm-ref-home .mm-hero-subtitle {
    font-size: 20px;
  }
  .mm-ref-home .mm-hero-kicker {
    font-size: 11px;
  }
  .mm-ref-home .mm-hero-arrows {
    left: 20px;
    bottom: 76px;
  }
  .mm-ref-home .mm-hero-arrow {
    width: 38px;
    height: 38px;
  }
  .mm-ref-home .mm-dots {
    left: 20px;
    bottom: 44px;
  }
  .mm-ref-home .mm-dot {
    width: 26px;
  }
  .mm-ref-home .mm-dot.active {
    width: 34px;
  }
}

/* Final compact tuning for right-side news timeline. */
.mm-ref-home .mm-timeline::before {
  left: 50px !important;
  top: 35px !important;
  bottom: 43px !important;
}
.mm-ref-home .mm-time-item {
  grid-template-columns: 96px minmax(0, 1fr) !important;
  min-height: 88px !important;
  padding: 15px 0 0 !important;
}
.mm-ref-home .mm-date-badge {
  width: 60px !important;
  height: 60px !important;
  margin-left: 20px !important;
  gap: 2px !important;
}
.mm-ref-home .mm-date-badge strong {
  font-size: 27px !important;
}
.mm-ref-home .mm-date-badge em {
  font-size: 12px !important;
}
.mm-ref-home .mm-time-copy {
  padding-top: 0 !important;
}
.mm-ref-home .mm-time-copy h3 {
  margin: 0 0 4px !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}
.mm-ref-home .mm-time-copy p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}
@media (max-width: 750px) {
  .mm-ref-home .mm-timeline::before {
    left: 32px !important;
    top: 28px !important;
    bottom: 34px !important;
  }
  .mm-ref-home .mm-time-item {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    min-height: 80px !important;
    padding-top: 12px !important;
  }
  .mm-ref-home .mm-date-badge {
    width: 48px !important;
    height: 48px !important;
    margin-left: 8px !important;
  }
  .mm-ref-home .mm-date-badge strong {
    font-size: 21px !important;
  }
  .mm-ref-home .mm-date-badge em {
    font-size: 10px !important;
  }
  .mm-ref-home .mm-time-copy h3 {
    font-size: 15px !important;
  }
  .mm-ref-home .mm-time-copy p {
    font-size: 12px !important;
  }
}

.mm-ref-home .mm-projects-section {
  padding: 42px 0 38px !important;
  background: #fff !important;
  border-top: 0;
  border-bottom: 0;
}
.mm-ref-home .mm-projects-section .mm-container {
  width: min(1200px, calc(100% - 40px)) !important;
}
.mm-ref-home .mm-project-title {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.mm-ref-home .mm-project-title h2 {
  position: relative;
  margin: 0;
  color: #00883e;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
  text-align: center;
}
.mm-ref-home .mm-project-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 100%;
  max-width: 178px;
  height: 3px;
  background: #00883e;
  transform: translateX(-50%);
}
.mm-ref-home .mm-project-shell {
  position: relative;
}
.mm-ref-home .mm-project-viewport {
  width: 100%;
  overflow: hidden;
}
.mm-ref-home .mm-project-track {
  display: flex;
  width: 100%;
  gap: 12px;
  transition: transform .32s ease;
  will-change: transform;
}
.mm-ref-home .mm-project-column {
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 0;
  display: grid;
  gap: 12px;
}
.mm-ref-home .mm-project-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1.56 / 1;
  background: #dfe6ec;
  color: #fff;
  border-radius: 0;
}
.mm-ref-home .mm-project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease;
}
.mm-ref-home .mm-project-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38px;
  background: rgba(0, 0, 0, .44);
  transition: background .2s ease;
}
.mm-ref-home .mm-project-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 1;
  min-width: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mm-ref-home .mm-project-card:hover img {
  opacity: .96;
}
.mm-ref-home .mm-project-card:hover::after {
  background: rgba(0, 126, 57, .62);
}
.mm-ref-home .mm-project-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: #00883e;
  box-shadow: none;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}
.mm-ref-home .mm-project-arrow:hover,
.mm-ref-home .mm-project-arrow:focus-visible {
  background: #007335;
  outline: none;
}
.mm-ref-home .mm-project-arrow-prev {
  left: -46px;
}
.mm-ref-home .mm-project-arrow-next {
  right: -46px;
}
.mm-ref-home .mm-project-arrow:disabled {
  opacity: .45;
  cursor: default;
}
@media (max-width: 1240px) {
  .mm-ref-home .mm-projects-section .mm-container {
    width: min(100% - 58px, 1040px) !important;
  }
  .mm-ref-home .mm-project-column {
    flex-basis: calc((100% - 12px) / 2);
  }
  .mm-ref-home .mm-project-arrow-prev {
    left: -18px;
  }
  .mm-ref-home .mm-project-arrow-next {
    right: -18px;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-projects-section {
    padding: 38px 0 46px !important;
  }
  .mm-ref-home .mm-projects-section .mm-container {
    width: min(100% - 28px, 720px);
  }
  .mm-ref-home .mm-project-title {
    margin-bottom: 26px;
  }
  .mm-ref-home .mm-project-title h2 {
    font-size: 25px;
  }
  .mm-ref-home .mm-project-track,
  .mm-ref-home .mm-project-column {
    gap: 10px;
  }
  .mm-ref-home .mm-project-column {
    flex-basis: calc((100% - 10px) / 2);
  }
  .mm-ref-home .mm-project-card span {
    left: 8px;
    right: 8px;
    height: 34px;
    font-size: 14px;
  }
  .mm-ref-home .mm-project-card::after {
    height: 34px;
  }
  .mm-ref-home .mm-project-arrow {
    display: none;
  }
}
@media (max-width: 360px) {
  .mm-ref-home .mm-project-column {
    flex-basis: 100%;
  }
}

.mm-ref-home .mm-business-showcase-section {
  padding: 10px 0 56px !important;
  background: #fff !important;
}
.mm-ref-home .mm-business-showcase-section .mm-container {
  width: min(1200px, calc(100% - 40px)) !important;
}
.mm-ref-home .mm-business-showcase {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}
.mm-ref-home .mm-business-tabs {
  min-height: 386px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 16px 0;
  background: #f4f6f8;
}
.mm-ref-home .mm-business-tab {
  position: relative;
  width: calc(100% - 38px);
  min-height: 50px;
  margin: 0 auto;
  padding: 0 20px;
  border: 1px solid #e8edf3;
  border-radius: 0;
  background: #fff;
  color: #1d2636;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.mm-ref-home .mm-business-tab span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mm-ref-home .mm-business-tab.active,
.mm-ref-home .mm-business-tab:hover,
.mm-ref-home .mm-business-tab:focus-visible {
  border-color: #0065c0;
  background: #0065c0;
  color: #fff;
  outline: none;
}
.mm-ref-home .mm-business-tab.active::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 4px;
  height: 22px;
  background: #fff;
  transform: translateY(-50%);
}
.mm-ref-home .mm-business-stage {
  position: relative;
  min-height: 386px;
  overflow: hidden;
  background: #12345b;
}
.mm-ref-home .mm-business-panel {
  position: relative;
  min-height: 386px;
  display: none;
  color: #172033;
}
.mm-ref-home .mm-business-panel.active {
  display: block;
}
.mm-ref-home .mm-business-panel[hidden] {
  display: none !important;
}
.mm-ref-home .mm-business-panel img {
  display: block;
  width: 100%;
  height: 386px;
  object-fit: cover;
}
.mm-ref-home .mm-business-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 34, 80, .05), rgba(0, 34, 80, .16));
  pointer-events: none;
}
.mm-ref-home .mm-business-copy {
  position: absolute;
  top: 50%;
  right: 56px;
  z-index: 2;
  width: min(386px, 44%);
  min-height: 218px;
  padding: 38px 40px 34px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .38);
  backdrop-filter: blur(1px);
  box-shadow: none;
  transform: translateY(-50%);
  transition: background-color .24s ease, border-color .24s ease, backdrop-filter .24s ease;
}
.mm-ref-home .mm-business-stage:hover .mm-business-copy,
.mm-ref-home .mm-business-copy:hover,
.mm-ref-home .mm-business-copy:focus-within {
  border-color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(7px);
}
.mm-ref-home .mm-business-copy h2 {
  margin: 0 0 24px;
  color: #18253a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}
.mm-ref-home .mm-business-copy p {
  margin: 0;
  color: #1e2735;
  font-size: 16px;
  line-height: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.mm-ref-home .mm-business-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 36px;
  margin-top: 20px;
  border: 1px solid #0065c0;
  border-radius: 18px;
  color: #0065c0;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
}
.mm-ref-home .mm-business-more:hover,
.mm-ref-home .mm-business-more:focus-visible {
  background: #0065c0;
  color: #fff;
  outline: none;
}
@media (max-width: 1240px) {
  .mm-ref-home .mm-business-showcase-section .mm-container {
    width: min(100% - 58px, 1040px) !important;
  }
  .mm-ref-home .mm-business-showcase {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .mm-ref-home .mm-business-copy {
    right: 36px;
    width: min(360px, 48%);
  }
}
@media (max-width: 900px) {
  .mm-ref-home .mm-business-showcase {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mm-ref-home .mm-business-tabs {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: stretch;
    gap: 10px;
    padding: 0 0 12px;
    background: #fff;
  }
  .mm-ref-home .mm-business-tab {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    font-size: 16px;
    text-align: center;
  }
  .mm-ref-home .mm-business-tab.active::before {
    left: 0;
    width: 3px;
  }
  .mm-ref-home .mm-business-stage,
  .mm-ref-home .mm-business-panel {
    min-height: 0;
  }
  .mm-ref-home .mm-business-panel img {
    height: auto;
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }
  .mm-ref-home .mm-business-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    top: auto;
    width: auto;
    min-height: 0;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(5px);
    transform: none;
  }
}
@media (max-width: 750px) {
  .mm-ref-home .mm-business-showcase-section {
    padding: 6px 0 44px !important;
  }
  .mm-ref-home .mm-business-showcase-section .mm-container {
    width: min(100% - 28px, 720px) !important;
  }
  .mm-ref-home .mm-business-copy h2 {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .mm-ref-home .mm-business-copy p {
    font-size: 14px;
    line-height: 1.8;
    -webkit-line-clamp: 3;
  }
  .mm-ref-home .mm-business-more {
    height: 32px;
    min-width: 84px;
    margin-top: 14px;
    font-size: 14px;
  }
}

.mm-ref-home #quick {
  position: relative;
  padding: 76px 0 66px !important;
  overflow: hidden;
  background: #fff url("../img/maoming/quick-world-map.svg") center 28px / min(1100px, 94vw) auto no-repeat !important;
  border-top: 1px solid #edf2f7;
}
.mm-ref-home #quick .mm-container {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px)) !important;
}
.mm-ref-home #quick .mm-quick {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}
.mm-ref-home #quick .mm-quick a {
  min-height: 138px;
  padding: 24px 14px 20px;
  border: 1px solid rgba(218, 224, 232, .88);
  border-radius: 8px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, .96);
  color: #0068c8;
  box-shadow: 0 12px 28px rgba(17, 34, 58, .14);
  font-weight: 500;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mm-ref-home #quick .mm-quick a:hover,
.mm-ref-home #quick .mm-quick a:focus-visible {
  border-color: rgba(0, 104, 200, .38);
  box-shadow: 0 16px 32px rgba(17, 34, 58, .18);
  transform: translateY(-2px);
  outline: none;
}
.mm-ref-home #quick .mm-quick-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #0068c8;
}
.mm-ref-home #quick .mm-quick-icon svg {
  display: block;
  width: 58px;
  height: 58px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mm-ref-home #quick .mm-quick-label {
  display: block;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  color: #1e2633;
  font-size: 18px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .mm-ref-home #quick {
    padding: 50px 0 48px !important;
    background-size: 980px auto !important;
  }
  .mm-ref-home #quick .mm-quick {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }
  .mm-ref-home #quick .mm-quick a {
    grid-column: span 2;
    min-height: 118px;
  }
  .mm-ref-home #quick .mm-quick a:nth-child(4),
  .mm-ref-home #quick .mm-quick a:nth-child(5) {
    grid-column: span 3;
  }
}
@media (max-width: 520px) {
  .mm-ref-home #quick .mm-container {
    width: min(100% - 28px, 720px) !important;
  }
  .mm-ref-home #quick .mm-quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mm-ref-home #quick .mm-quick a,
  .mm-ref-home #quick .mm-quick a:nth-child(4),
  .mm-ref-home #quick .mm-quick a:nth-child(5) {
    grid-column: auto;
  }
  .mm-ref-home #quick .mm-quick-icon,
  .mm-ref-home #quick .mm-quick-icon svg {
    width: 46px;
    height: 46px;
  }
  .mm-ref-home #quick .mm-quick-label {
    font-size: 15px;
  }
}

/* Shared Maoming header for article/list/search pages. */
.mm-shared-header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
  background: #fff;
}
.mm-ref-home.mm-shared-header .mm-container {
  width: min(1620px, calc(100% - 24px));
}
.mm-ref-home.mm-shared-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}
.mm-ref-home.mm-shared-footer .mm-footer {
  width: 100%;
}
.mm-ref-home.mm-shared-header .mm-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  width: 100%;
  z-index: 120;
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(12,35,72,.12);
  box-shadow: 0 8px 22px rgba(11,31,60,.08);
}
.mm-ref-home.mm-shared-header .mm-header-inner {
  gap: clamp(10px, 1vw, 18px);
  min-width: 0;
}
.mm-ref-home.mm-shared-header .mm-brand {
  flex: 0 1 clamp(340px, 22vw, 390px);
  min-width: 320px;
}
.mm-ref-home.mm-shared-header .mm-nav {
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(10px, 1.05vw, 22px);
  justify-content: center;
  overflow: visible;
}
.mm-ref-home.mm-shared-header .mm-nav-item {
  flex: 0 0 auto;
}
.mm-ref-home.mm-shared-header .mm-nav-link {
  padding-left: 2px;
  padding-right: 2px;
  white-space: nowrap;
}
.mm-ref-home.mm-shared-header .mm-tools {
  flex: 0 1 auto;
  gap: 8px;
  min-width: 0;
  position: relative;
}
.mm-ref-home.mm-shared-header .mm-logo-mark {
  background: var(--blue);
  border-color: var(--blue);
}
.mm-ref-home.mm-shared-header .mm-logo-text strong,
.mm-ref-home.mm-shared-header .mm-nav a,
.mm-ref-home.mm-shared-header .mm-icon-btn,
.mm-ref-home.mm-shared-header .mm-search-submit {
  color: var(--blue-deep);
  text-shadow: none;
}
.mm-ref-home.mm-shared-header .mm-icon-btn {
  border-color: #d7e2ef;
  background: #fff;
}
.mm-ref-home.mm-shared-header .mm-header-search {
  flex: 0 1 clamp(42px, 12vw, 230px);
  width: clamp(42px, 12vw, 230px);
  border-color: #dce5f0;
  background: #f1f4f8;
}
.mm-ref-home.mm-shared-header .mm-header-search input {
  opacity: 1;
}
@media (max-width: 1160px) {
  .mm-ref-home.mm-shared-header .mm-header-search {
    width: 40px;
  }
  .mm-ref-home.mm-shared-header .mm-header-search:focus-within {
    width: min(260px, calc(100vw - 122px));
  }
}

@media (max-width: 1700px) {
  .mm-ref-home.mm-shared-header .mm-container {
    width: calc(100% - 24px);
  }
  .mm-ref-home.mm-shared-header .mm-header-inner {
    gap: 12px;
  }
  .mm-ref-home.mm-shared-header .mm-brand {
    flex-basis: 320px;
    min-width: 290px;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text strong {
    font-size: clamp(18px, 1.28vw, 22px) !important;
  }
  .mm-ref-home.mm-shared-header .mm-nav {
    gap: clamp(8px, .72vw, 12px);
    font-size: 15px;
  }
  .mm-ref-home.mm-shared-header .mm-header-search {
    flex-basis: 42px;
    width: 42px;
  }
  .mm-ref-home.mm-shared-header .mm-header-search input {
    opacity: 0;
  }
  .mm-ref-home.mm-shared-header .mm-header-search:focus-within {
    position: absolute;
    top: 50%;
    right: 0;
    width: min(260px, calc(100vw - 122px));
    z-index: 3;
    transform: translateY(-50%);
  }
  .mm-ref-home.mm-shared-header .mm-header-search:focus-within input {
    opacity: 1;
  }
}

@media (max-width: 1160px) {
  .mm-ref-home.mm-shared-header .mm-brand {
    flex: 1;
    min-width: 0;
  }
}

/* Wider official article layout. */
.article-detail-page {
  background: #fff;
}
.article-detail-page .site-shell {
  width: 100%;
  margin: 0;
  background: #fff;
  box-shadow: none;
}
.article-detail-page .category-tabs.compact {
  width: min(1540px, calc(100% - 64px));
  margin: 0 auto;
  padding: 14px 0 10px;
  border-top: 0;
  border-bottom-color: #e8eef6;
  justify-content: flex-start;
}
.article-detail-page .category-tabs.compact a {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 15px;
}
.article-detail-page .detail-page {
  width: min(1120px, calc(100% - 80px));
  margin: 38px auto 72px;
  padding: 0;
}
.article-detail-page .detail-header {
  max-width: 1120px;
  margin: 0 auto 26px;
  text-align: center;
}
.article-detail-page .detail-header h1 {
  max-width: 1120px;
  margin: 0 auto 14px;
  color: #0068c9;
  font-size: clamp(36px, 2.35vw, 46px);
  line-height: 1.22;
  font-weight: 900;
}
.article-detail-page .detail-header .article-meta {
  justify-content: center;
  gap: 12px;
  margin: 0 auto 18px;
  color: #7a8495;
  font-size: 14px;
}
.article-detail-page .detail-header p {
  width: min(960px, 100%);
  margin: 12px auto 0;
  color: #506076;
  font-size: 18px;
  line-height: 1.8;
}
.article-detail-page .detail-content {
  width: 100%;
  margin: 0 auto;
  color: #1f2937;
  font-size: 18.5px;
  line-height: 2.05;
}
.article-detail-page .detail-content p {
  margin: 1.05em 0;
}
.article-detail-page .detail-content > img,
.article-detail-page .detail-content > svg,
.article-detail-page .detail-content > p > img:only-child,
.article-detail-page .detail-content > p > svg:only-child,
.article-detail-page .detail-content figure > img,
.article-detail-page .detail-content figure > svg {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 30px auto;
}
.article-detail-page .detail-content figure {
  margin: 30px 0;
}
.article-detail-page .detail-content blockquote {
  margin: 28px 0;
  padding: 22px 28px;
  border-left: 5px solid #0068c9;
  background: #f5f9ff;
  color: #25324a;
}
.article-detail-page .article-footer-actions {
  width: min(920px, 100%);
  margin: 40px auto 0;
}
.article-detail-page .article-qrcode {
  margin-top: 44px;
}

.category-detail-page .detail-page {
  width: min(1120px, calc(100% - 80px));
  margin: 38px auto 72px;
}
.category-detail-page .category-page-detail--designed {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 72px;
  padding: 0;
  background: transparent;
}
.category-detail-page .category-designed-content {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}
.category-detail-page .category-designed-content .nwl-profile {
  margin: 0;
}

.category-designed-content .nwl-profile,
.category-designed-content .nwl-profile * {
  box-sizing: border-box;
}
.category-designed-content .nwl-profile {
  --blue: #005eb8;
  --blue-deep: #073f87;
  --blue-soft: #eaf4ff;
  --green: #4f9f32;
  --green-soft: #edf8ea;
  --red: #d71920;
  --gold: #b8872b;
  --ink: #172033;
  --muted: #667085;
  --line: #dce7f3;
  width: 100%;
  min-width: 0;
  padding: 36px 16px;
  color: #172033;
  background: linear-gradient(180deg, rgba(234, 241, 248, .92), #f7fbff 34%, #edf4fb);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  line-height: 1.75;
  overflow-wrap: normal;
  word-break: normal;
}
.category-designed-content .nwl-profile a {
  color: inherit;
  text-decoration: none;
}
.category-designed-content .nwl-profile p {
  text-align: inherit !important;
}
.category-designed-content .nwl-profile__page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 94, 184, .12);
  box-shadow: 0 24px 60px rgba(12, 43, 82, .13);
  overflow: hidden;
}
.category-designed-content .nwl-profile__hero {
  position: relative;
  padding: 42px 52px 36px;
  color: #fff;
  background: #07468f;
  background: linear-gradient(120deg, rgba(7, 63, 135, .98) 0%, rgba(0, 94, 184, .94) 58%, rgba(56, 143, 78, .94) 100%);
  overflow: hidden;
}
.category-designed-content .nwl-profile__hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -120px;
  width: 520px;
  height: 420px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  pointer-events: none;
}
.category-designed-content .nwl-profile__brand {
  position: relative;
  z-index: 1;
  display: table;
  width: 100%;
}
.category-designed-content .nwl-profile__logo,
.category-designed-content .nwl-profile__brand-text {
  display: table-cell;
  vertical-align: middle;
}
.category-designed-content .nwl-profile__logo {
  width: 72px;
  padding-right: 18px;
}
.category-designed-content .nwl-profile__logo img {
  display: block;
  width: 64px !important;
  height: 64px !important;
  max-width: none !important;
  object-fit: contain;
  margin: 0 !important;
  padding: 6px;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, .96);
}
.category-designed-content .nwl-profile__brand-text strong {
  display: block;
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 900;
}
.category-designed-content .nwl-profile__brand-text span,
.category-designed-content .nwl-profile__brand-badge {
  display: inline-block;
  margin-top: 7px;
  padding: 2px 9px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}
.category-designed-content .nwl-profile__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: end;
  margin-top: 34px;
}
.category-designed-content .nwl-profile__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}
.category-designed-content .nwl-profile__eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: #fff;
}
.category-designed-content .nwl-profile h1 {
  max-width: 760px;
  margin: 0;
  font-size: 38px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 900;
}
.category-designed-content .nwl-profile h1 span,
.category-designed-content .nwl-profile__title-line {
  display: block;
}
.category-designed-content .nwl-profile__lead {
  max-width: 790px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.85;
}
.category-designed-content .nwl-profile__motto {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}
.category-designed-content .nwl-profile__motto span,
.category-designed-content .nwl-profile__motto-item {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(255, 255, 255, .26);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}
.category-designed-content .nwl-profile__motto span:last-child {
  border-right: 0;
}
.category-designed-content .nwl-profile__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}
.category-designed-content .nwl-profile__stat {
  min-width: 0;
  padding: 24px 26px 22px;
  border-right: 1px solid var(--line);
}
.category-designed-content .nwl-profile__stat:last-child {
  border-right: 0;
}
.category-designed-content .nwl-profile__stat strong {
  display: block;
  color: var(--blue-deep);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
}
.category-designed-content .nwl-profile__stat span,
.category-designed-content .nwl-profile__stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.category-designed-content .nwl-profile__content {
  padding: 42px 52px 50px;
}
.category-designed-content .nwl-profile__section {
  margin-top: 44px;
}
.category-designed-content .nwl-profile__section:first-child {
  margin-top: 0;
}
.category-designed-content .nwl-profile__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
}
.category-designed-content .nwl-profile__heading::before {
  content: "";
  width: 5px;
  height: 28px;
  background: var(--red);
}
.category-designed-content .nwl-profile__text {
  color: #273247;
  font-size: 17px;
  line-height: 2.05;
}
.category-designed-content .nwl-profile__text p {
  margin: 0 0 18px;
  text-indent: 2em;
}
.category-designed-content .nwl-profile__text p:last-child {
  margin-bottom: 0;
}
.category-designed-content .nwl-profile__companies {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #e0ebf7;
  background: linear-gradient(180deg, #fbfdff, #f6faff);
}
.category-designed-content .nwl-profile__companies span,
.category-designed-content .nwl-profile__company {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid #dbe8f6;
  border-left: 4px solid var(--blue);
  background: #fff;
  color: #26344e;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 14px rgba(23, 47, 84, .04);
  overflow-wrap: anywhere;
}
.category-designed-content .nwl-profile__business {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.category-designed-content .nwl-profile__business-card {
  min-width: 0;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 47, 84, .06);
}
.category-designed-content .nwl-profile__business-card:nth-child(2) {
  border-top-color: var(--red);
}
.category-designed-content .nwl-profile__business-card:nth-child(3) {
  border-top-color: var(--green);
}
.category-designed-content .nwl-profile__business-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}
.category-designed-content .nwl-profile__business-card p {
  margin: 0;
  color: #4b596f;
  font-size: 15px;
  line-height: 1.9;
}
.category-designed-content .nwl-profile__closing {
  position: relative;
  margin-top: 44px;
  padding: 30px 34px;
  border-left: 6px solid var(--red);
  background: linear-gradient(90deg, #f7fbff, #fff);
}
.category-designed-content .nwl-profile__closing::after {
  content: "高质量发展";
  position: absolute;
  right: 28px;
  top: 18px;
  color: rgba(0, 94, 184, .08);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}
.category-designed-content .nwl-profile__closing h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 900;
}
.category-designed-content .nwl-profile__closing p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #2c374d;
  font-size: 17px;
  line-height: 2;
  text-indent: 2em;
}
.category-designed-content .nwl-profile__footer {
  padding: 18px 52px 24px;
  border-top: 1px solid var(--line);
  color: #7a8495;
  background: #fbfdff;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}
@supports not (display: grid) {
  .category-designed-content .nwl-profile__hero-grid,
  .category-designed-content .nwl-profile__stats,
  .category-designed-content .nwl-profile__business,
  .category-designed-content .nwl-profile__motto,
  .category-designed-content .nwl-profile__companies {
    display: block;
  }
  .category-designed-content .nwl-profile__stat,
  .category-designed-content .nwl-profile__business-card,
  .category-designed-content .nwl-profile__motto span,
  .category-designed-content .nwl-profile__companies span,
  .category-designed-content .nwl-profile__company {
    margin-bottom: 14px;
  }
}
@media (max-width: 960px) {
  .category-designed-content .nwl-profile {
    padding: 20px 10px;
  }
  .category-designed-content .nwl-profile__hero,
  .category-designed-content .nwl-profile__content {
    padding-left: 28px;
    padding-right: 28px;
  }
  .category-designed-content .nwl-profile__hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .category-designed-content .nwl-profile__stats,
  .category-designed-content .nwl-profile__business {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-designed-content .nwl-profile__companies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-designed-content .nwl-profile__stat:nth-child(2) {
    border-right: 0;
  }
  .category-designed-content .nwl-profile__stat:nth-child(3),
  .category-designed-content .nwl-profile__stat:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .category-designed-content .nwl-profile__business-card:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .category-detail-page .category-page-detail--designed {
    width: 100%;
    margin: 0 auto 32px;
  }
  .category-detail-page .category-designed-content {
    overflow-x: hidden;
  }
  .category-designed-content .nwl-profile {
    padding: 0;
    background: #f4f8fd;
  }
  .category-designed-content .nwl-profile__page {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
  .category-designed-content .nwl-profile__hero {
    padding: 24px 16px;
  }
  .category-designed-content .nwl-profile__hero::before {
    right: -250px;
    top: -180px;
    width: 420px;
    height: 360px;
    opacity: .45;
  }
  .category-designed-content .nwl-profile__brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .category-designed-content .nwl-profile__logo,
  .category-designed-content .nwl-profile__brand-text {
    display: block;
    width: auto;
  }
  .category-designed-content .nwl-profile__logo {
    flex: 0 0 56px;
    padding-right: 0;
    margin-bottom: 0;
  }
  .category-designed-content .nwl-profile__logo img {
    width: 56px !important;
    height: 56px !important;
    padding: 5px;
  }
  .category-designed-content .nwl-profile__brand-text strong {
    font-size: 18px;
    line-height: 1.28;
  }
  .category-designed-content .nwl-profile__brand-text span,
  .category-designed-content .nwl-profile__brand-badge {
    margin-top: 5px;
    padding: 2px 7px;
    font-size: 12px;
    line-height: 1.45;
  }
  .category-designed-content .nwl-profile__hero-grid {
    gap: 20px;
    margin-top: 24px;
  }
  .category-designed-content .nwl-profile__eyebrow {
    gap: 8px;
    margin-bottom: 9px;
    font-size: 13px;
  }
  .category-designed-content .nwl-profile__eyebrow::before {
    flex: 0 0 30px;
    width: 30px;
    height: 2px;
  }
  .category-designed-content .nwl-profile h1 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.22;
  }
  .category-designed-content .nwl-profile__lead {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.75;
  }
  .category-designed-content .nwl-profile__motto {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category-designed-content .nwl-profile__business {
    grid-template-columns: 1fr;
  }
  .category-designed-content .nwl-profile__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-designed-content .nwl-profile__companies {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
    padding: 10px;
  }
  .category-designed-content .nwl-profile__companies span,
  .category-designed-content .nwl-profile__company {
    justify-content: flex-start;
    min-height: 38px;
    padding: 8px 9px;
    font-size: 12.5px;
    line-height: 1.45;
    text-align: left;
  }
  .category-designed-content .nwl-profile__motto span {
    min-height: 48px;
    padding: 10px 6px;
    border-right: 1px solid rgba(255, 255, 255, .26);
    border-bottom: 0;
    font-size: 15px;
  }
  .category-designed-content .nwl-profile__motto span:last-child {
    border-right: 0;
  }
  .category-designed-content .nwl-profile__stat {
    padding: 16px 14px;
    border-top: 0;
    border-right: 1px solid var(--line);
  }
  .category-designed-content .nwl-profile__stat:nth-child(2n) {
    border-right: 0;
  }
  .category-designed-content .nwl-profile__stat:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
  .category-designed-content .nwl-profile__stat strong {
    font-size: 22px;
  }
  .category-designed-content .nwl-profile__stat span,
  .category-designed-content .nwl-profile__stat-label {
    margin-top: 6px;
    font-size: 12px;
  }
  .category-designed-content .nwl-profile__business-card:last-child {
    grid-column: auto;
  }
  .category-designed-content .nwl-profile__content {
    padding: 26px 14px 34px;
  }
  .category-designed-content .nwl-profile__section {
    margin-top: 32px;
  }
  .category-designed-content .nwl-profile__heading {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 20px;
  }
  .category-designed-content .nwl-profile__heading::before {
    flex: 0 0 4px;
    width: 4px;
    height: 24px;
  }
  .category-designed-content .nwl-profile__text,
  .category-designed-content .nwl-profile__closing p {
    font-size: 15px;
    line-height: 1.9;
  }
  .category-designed-content .nwl-profile__text p {
    margin-bottom: 14px;
  }
  .category-designed-content .nwl-profile__business {
    gap: 12px;
    margin-top: 14px;
  }
  .category-designed-content .nwl-profile__business-card {
    padding: 16px 15px 18px;
    box-shadow: 0 8px 18px rgba(23, 47, 84, .06);
  }
  .category-designed-content .nwl-profile__business-card h3 {
    margin-bottom: 7px;
    font-size: 17px;
  }
  .category-designed-content .nwl-profile__business-card p {
    font-size: 14px;
    line-height: 1.75;
  }
  .category-designed-content .nwl-profile__closing {
    margin-top: 32px;
    padding: 20px 16px 22px;
    border-left-width: 4px;
  }
  .category-designed-content .nwl-profile__closing::after {
    display: none;
  }
  .category-designed-content .nwl-profile__closing h2 {
    margin-bottom: 9px;
    font-size: 20px;
  }
  .category-designed-content .nwl-profile__footer {
    padding: 14px 16px 18px;
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  .category-designed-content .nwl-profile__brand-text strong {
    font-size: 17px;
  }
  .category-designed-content .nwl-profile h1 {
    font-size: 23px;
  }
  .category-designed-content .nwl-profile__lead,
  .category-designed-content .nwl-profile__text,
  .category-designed-content .nwl-profile__closing p {
    font-size: 14.5px;
  }
}
@media print {
  .category-designed-content .nwl-profile {
    padding: 0;
    background: #fff;
  }
  .category-designed-content .nwl-profile__page {
    max-width: none;
    border: 0;
    box-shadow: none;
  }
}

.category-detail-page .category-tabs.compact {
  width: min(1540px, calc(100% - 64px));
  margin: 0 auto;
  padding: 14px 0 10px;
  justify-content: flex-start;
}

.category-feedback-panel {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #e5edf6;
}

.category-feedback-panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
  color: #172033;
}

.category-feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.category-feedback-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #263241;
}

.category-feedback-form input,
.category-feedback-form textarea {
  width: 100%;
  border: 1px solid #d6deea;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  color: #172033;
  background: #fff;
}

.category-feedback-form .span-2 {
  grid-column: 1 / -1;
}

.category-feedback-form .form-actions {
  justify-content: flex-start;
}

.category-feedback-form button {
  border: 0;
  border-radius: 6px;
  padding: 11px 22px;
  background: var(--theme-primary, #1d4ed8);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 720px) {
  .category-detail-page .detail-page,
  .category-detail-page .category-tabs.compact {
    width: min(100% - 28px, 1120px);
  }

  .category-feedback-form {
    grid-template-columns: 1fr;
  }
}

/* Wider official category/list pages. */
.list-view-page {
  background: #fff;
}
.list-view-page .site-shell {
  width: 100%;
  margin: 0;
  background: #fff;
  box-shadow: none;
}
.list-view-page .hero-slider {
  width: 100vw;
  max-width: none;
  height: clamp(220px, 18.75vw, 360px);
  margin: 24px 0 0 50%;
  transform: translateX(-50%);
  border-radius: 0;
  aspect-ratio: auto;
  min-height: 0;
  overflow: hidden;
  background: #f4f8fc;
  box-shadow: 0 12px 26px rgba(15, 35, 70, .08);
}
.list-view-page .list-hero .slides,
.list-view-page .list-hero .slide {
  height: 100%;
}
.list-view-page .list-hero .slide img,
.list-view-page .hero-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.list-view-page .section-title {
  width: min(1320px, calc(100% - 112px));
  margin: 34px auto 0;
  padding: 0 0 18px;
  border-bottom: 3px solid #0068c9;
  color: #172033;
  font-size: clamp(30px, 2vw, 42px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}
.list-view-page .article-list {
  width: min(1320px, calc(100% - 112px));
  margin: 0 auto;
  padding: 34px 0 82px;
}
.list-view-page .article-card {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid #e5edf7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 38, 76, .06);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.list-view-page .article-card:hover {
  border-color: rgba(0, 104, 201, .34);
  box-shadow: 0 18px 36px rgba(13, 38, 76, .1);
  transform: translateY(-2px);
}
.list-view-page .cover {
  width: 280px;
  border-radius: 8px;
}
.list-view-page .article-info {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}
.list-view-page .article-info h2 {
  margin: 8px 0 12px;
  color: #16223a;
  font-size: clamp(22px, 1.45vw, 28px);
  line-height: 1.36;
  font-weight: 900;
}
.list-view-page .article-info p {
  margin: 0 0 16px;
  color: #536276;
  font-size: 16px;
  line-height: 1.78;
}
.list-view-page .article-info time,
.list-view-page .article-meta {
  color: #7a8495;
  font-size: 14px;
}
.list-view-page .empty-state {
  display: grid;
  min-height: 230px;
  margin: 0;
  place-items: center;
  border: 1px solid #e2ebf6;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  color: #6b778a;
  font-size: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.list-view-page .pager {
  padding-bottom: 76px;
}
@media (max-width: 900px) {
  .article-detail-page .category-tabs.compact {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }
  .article-detail-page .detail-page {
    width: calc(100% - 32px);
    margin: 26px auto 48px;
  }
  .article-detail-page .detail-header {
    text-align: left;
  }
  .article-detail-page .detail-header h1 {
    font-size: clamp(28px, 7.8vw, 36px);
  }
  .article-detail-page .detail-header .article-meta {
    justify-content: flex-start;
  }
  .article-detail-page .detail-content {
    font-size: 17px;
    line-height: 1.9;
  }
  .article-detail-page .detail-content > img,
  .article-detail-page .detail-content > p > img:only-child,
  .article-detail-page .detail-content figure > img {
    margin: 22px auto;
  }
  .list-view-page .section-title,
  .list-view-page .article-list {
    width: calc(100% - 32px);
  }
  .list-view-page .hero-slider {
    width: 100vw;
    height: clamp(132px, 34vw, 220px);
    margin: 14px 0 0 50%;
    transform: translateX(-50%);
    aspect-ratio: auto;
  }
  .list-view-page .section-title {
    margin-top: 26px;
    padding-bottom: 14px;
    font-size: clamp(28px, 7.5vw, 36px);
  }
  .list-view-page .article-list {
    padding: 24px 0 54px;
  }
  .list-view-page .article-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }
  .list-view-page .cover {
    width: 132px;
  }
  .list-view-page .article-info h2 {
    margin: 4px 0 8px;
    font-size: 18px;
  }
  .list-view-page .article-info p {
    display: none;
  }
  .list-view-page .empty-state {
    min-height: 180px;
    font-size: 15px;
  }
}

/* Mobile-specific shared header: compact, calm, and touch friendly. */
@media (max-width: 750px) {
  .mm-shared-header {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid #e7edf5;
  }
  .mm-ref-home.mm-shared-header .mm-container {
    width: 100%;
    padding: 0 14px;
  }
  .mm-ref-home.mm-shared-header .mm-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 6px 18px rgba(15, 35, 68, .08);
  }
  .mm-ref-home.mm-shared-header .mm-header-inner {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 4px;
    height: 68px;
    align-items: center;
  }
  .mm-ref-home.mm-shared-header .mm-menu-toggle {
    display: inline-grid;
    grid-column: 1;
    width: 36px;
    height: 36px;
    border-color: #dce6f2;
    background: #f7fbff;
    color: #0068c9;
    font-size: 0;
    box-shadow: none;
  }
  .mm-ref-home.mm-shared-header .mm-menu-toggle::before {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }
  .mm-ref-home.mm-shared-header .mm-menu-toggle::after {
    display: none;
  }
  .mm-ref-home.mm-shared-header .mm-brand {
    grid-column: 2;
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 7px !important;
    overflow: hidden;
  }
  .mm-ref-home.mm-shared-header .mm-brand.has-custom-logo .mm-logo-image {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    flex: 0 0 38px !important;
    margin: 0 !important;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text {
    flex: 0 1 auto;
    min-width: 0 !important;
    max-width: 100%;
    overflow: hidden;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text strong {
    display: block !important;
    max-width: 100%;
    overflow: hidden;
    color: #0052b5;
    font-size: clamp(12.5px, 3.55vw, 14.4px) !important;
    line-height: 1.05 !important;
    text-overflow: clip;
    white-space: nowrap !important;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-brand-name {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #0052b5 !important;
    font-size: clamp(15px, 4.2vw, 17px) !important;
    font-weight: 900;
    line-height: 1.04 !important;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-brand-name span {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text strong::after {
    content: "";
    display: none;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text .mm-logo-tagline {
    display: none !important;
  }
  .mm-ref-home.mm-shared-header .mm-nav {
    display: none;
  }
  .mm-ref-home.mm-shared-header .mm-tools {
    display: flex !important;
    grid-column: 3;
    justify-content: end;
    gap: 0;
    width: 36px;
    min-width: 0;
    justify-self: end;
    position: relative;
    z-index: 2;
  }
  .mm-ref-home.mm-shared-header .mm-tools > .mm-icon-btn {
    display: none;
  }
  .mm-ref-home.mm-shared-header .mm-header-search {
    position: relative;
    display: none !important;
    place-items: center;
    width: 36px !important;
    height: 36px;
    border-color: #dce6f2;
    border-radius: 50%;
    background: #f7fbff;
    overflow: hidden;
  }
  .mm-ref-home.mm-shared-header .mm-header-search::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 22px;
    display: block;
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: #0068c9;
    transform: rotate(-45deg);
    pointer-events: none;
  }
  .mm-ref-home.mm-shared-header .mm-header-search::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 9px;
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid #0068c9;
    border-radius: 50%;
    pointer-events: none;
  }
  .mm-ref-home.mm-shared-header .mm-header-search input {
    width: 0 !important;
    min-width: 0;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none;
  }
  .mm-ref-home.mm-shared-header .mm-search-submit {
    width: 36px;
    height: 36px;
    color: #0068c9;
    font-size: 17px;
    opacity: 0;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-panel {
    position: fixed;
    inset: 68px 0 auto 0;
    z-index: 119;
    display: none;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    padding: 12px 14px 18px;
    border-bottom: 1px solid #e1eaf4;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 36px rgba(12, 35, 72, .14);
  }
  .mm-ref-home.mm-shared-header .mm-mobile-panel[hidden] {
    display: none !important;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-panel.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-group {
    display: grid;
    gap: 8px;
    min-width: 0;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-group.open {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mm-ref-home.mm-shared-header .mm-mobile-group.open .mm-mobile-parent {
    grid-column: 1 / -1;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-children {
    display: none;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-children[hidden] {
    display: none !important;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-group.open .mm-mobile-children {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-panel a,
  .mm-ref-home.mm-shared-header .mm-mobile-panel button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    color: #1f3658;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    appearance: none;
    font-family: inherit;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-panel button {
    position: relative;
    cursor: pointer;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-panel button::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .18s ease;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-group.open .mm-mobile-parent::after {
    transform: rotate(-135deg);
  }
  .mm-ref-home.mm-shared-header .mm-mobile-panel a.mm-mobile-child {
    color: #5d6b80;
    background: #f7faff;
    font-size: 14px;
    font-weight: 600;
  }
  .article-detail-page,
  .article-detail-page .site-shell {
    overflow-x: hidden;
  }
  .article-detail-page .detail-page {
    box-sizing: border-box;
    width: auto !important;
    max-width: calc(100vw - 32px) !important;
    margin: 24px 16px 46px !important;
    padding: 0 !important;
  }
  .article-detail-page .detail-header,
  .article-detail-page .detail-content {
    max-width: calc(100vw - 32px) !important;
  }
  .article-detail-page .detail-header h1 {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    color: #0068c9;
    font-size: clamp(24px, 6.1vw, 27px) !important;
    line-height: 1.32;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .article-detail-page .detail-header .article-meta {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .article-detail-page .detail-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    font-size: 16.5px;
    line-height: 1.92;
  }
  .article-detail-page .detail-content *,
  .article-detail-page .detail-content *::before,
  .article-detail-page .detail-content *::after {
    max-width: 100% !important;
  }
  .article-detail-page .detail-content,
  .article-detail-page .detail-content p,
  .article-detail-page .detail-content span,
  .article-detail-page .detail-content a,
  .article-detail-page .detail-content li,
  .article-detail-page .detail-content blockquote {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .article-detail-page .detail-content [style*="display: flex"],
  .article-detail-page .detail-content [style*="display:flex"] {
    flex-wrap: wrap !important;
    max-width: 100% !important;
  }
  .article-detail-page .detail-content [style*="display: flex"] > *,
  .article-detail-page .detail-content [style*="display:flex"] > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .article-detail-page .detail-content [style*="display: flex"] > [style*="width: 50%"],
  .article-detail-page .detail-content [style*="display:flex"] > [style*="width:50%"],
  .article-detail-page .detail-content [style*="display: flex"] > [style*="width: 49%"],
  .article-detail-page .detail-content [style*="display:flex"] > [style*="width:49%"] {
    width: 100% !important;
    flex-basis: 100% !important;
    box-sizing: border-box !important;
  }
  .article-detail-page .detail-content img,
  .article-detail-page .detail-content video,
  .article-detail-page .detail-content iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .article-detail-page .detail-content table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 390px) {
  .mm-ref-home.mm-shared-header .mm-container {
    padding: 0 10px;
  }
  .mm-ref-home.mm-shared-header .mm-header-inner {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }
  .mm-ref-home.mm-shared-header .mm-brand.has-custom-logo .mm-logo-image {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    flex-basis: 36px !important;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text strong {
    font-size: clamp(12.5px, 3.55vw, 14px) !important;
  }
  .mm-ref-home.mm-shared-header .mm-mobile-brand-name {
    display: none !important;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text strong::after {
    display: none;
  }
}

@media (max-width: 340px) {
  .mm-ref-home.mm-shared-header .mm-container {
    padding: 0 8px;
  }
  .mm-ref-home.mm-shared-header .mm-header-inner {
    grid-template-columns: 38px minmax(0, 1fr) 30px;
    gap: 2px;
  }
  .mm-ref-home.mm-shared-header .mm-brand {
    gap: 5px !important;
  }
  .mm-ref-home.mm-shared-header .mm-brand.has-custom-logo .mm-logo-image {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    flex-basis: 32px !important;
  }
  .mm-ref-home.mm-shared-header .mm-logo-text strong {
    font-size: 11.2px !important;
  }
}

@media (max-width: 520px) {
  .contest-detail,
  .contest-detail * {
    box-sizing: border-box;
    max-width: 100%;
  }

  .contest-detail .contest-container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px) !important;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .contest-detail .contest-hero h1 {
    width: 100%;
    max-width: min(100%, 9.5em) !important;
    font-size: clamp(24px, 6.4vw, 27px);
    line-height: 1.22;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
    line-break: anywhere;
  }

  .contest-detail .contest-hero .contest-container > span,
  .contest-detail .contest-rich-text,
  .contest-detail .contest-intro aside span {
    display: block;
    width: min(100%, 21em) !important;
    max-width: min(100%, 21em) !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
    line-break: anywhere;
  }

  .contest-detail .contest-section h2,
  .contest-detail .contest-section-head h2 {
    width: 100%;
    max-width: min(100%, 9.5em) !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
    line-break: anywhere;
  }

  .contest-detail .contest-intro aside {
    overflow: hidden;
  }

  .contest-detail .contest-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contest-detail .contest-hero-actions a,
  .contest-detail .contest-hero-stats span {
    max-width: 100% !important;
    width: 100%;
    min-width: 0;
  }

  .contest-detail .contest-hero-stats span {
    display: grid;
    gap: 4px;
  }
}

/* OA standalone home page */
.oa-home-page {
  --oa-ink: #102f52;
  --oa-blue: #0868b8;
  --oa-blue-deep: #063f7a;
  --oa-cyan: #dff4ff;
  --oa-line: rgba(8, 104, 184, .2);
  background: #eef8fd;
}

.oa-home-page .site-shell {
  background: transparent;
  box-shadow: none;
}

.oa-home {
  min-height: calc(100vh - 88px);
  background: linear-gradient(180deg, #dff4ff 0%, #edf9ff 48%, #f8fcff 100%);
  color: #172033;
}

.oa-stage {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 52px;
}

.oa-stage-copy {
  width: min(1080px, 100%);
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 22px;
}

.oa-title-block {
  grid-column: 2;
  text-align: center;
}

.oa-stage-copy p {
  margin: 6px 0 0;
  color: var(--oa-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.oa-stage-copy h1 {
  margin: 0;
  color: var(--oa-ink);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.18;
  font-weight: 900;
}

.oa-title-block::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin: 9px auto 0;
  border-radius: 999px;
  background: var(--oa-ink);
}

.oa-notice {
  grid-column: 3;
  justify-self: end;
  max-width: 450px;
  border: 1px solid rgba(245, 158, 11, .26);
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  padding: 10px 13px;
  background: rgba(255,255,255,.82);
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
}

.oa-login-shell {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px 20px 16px;
  border: 1px solid rgba(8, 104, 184, .18);
  border-radius: 8px;
  background: var(--oa-cyan);
  box-shadow: 0 18px 42px rgba(8, 75, 126, .11);
}

.oa-login-art {
  position: relative;
  width: min(1000px, calc(100% - 88px));
  aspect-ratio: 1000 / 600;
  margin: 0 auto;
  border-radius: 8px;
  background: url("../img/oa/login-bg.png") center / 100% 100% no-repeat;
  box-shadow: 0 10px 26px rgba(6, 63, 122, .14);
}

.oa-login-form {
  position: absolute;
  inset: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.oa-login-form label {
  margin: 0;
}

.oa-account-field,
.oa-password-field {
  position: absolute;
  left: 43.4%;
  width: 19.1%;
  height: 5%;
}

.oa-account-field {
  top: 30.65%;
}

.oa-password-field {
  top: 39.45%;
}

.oa-account-field span,
.oa-password-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.oa-account-field input,
.oa-password-field input {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  outline: 0;
  padding: 0 10px;
  background: transparent;
  color: #111827;
  font-size: 15px;
  line-height: 1;
  box-shadow: none;
}

.oa-account-field input:focus,
.oa-password-field input:focus,
.oa-dynamic-field input:focus {
  box-shadow: 0 0 0 2px rgba(255,255,255,.72), 0 0 0 4px rgba(8, 104, 184, .4);
}

.oa-remember-name,
.oa-remember-pass,
.oa-forget-link {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: clamp(11px, 1.12vw, 14px);
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,.14);
}

.oa-remember-name {
  left: 63.25%;
  top: 31.45%;
}

.oa-remember-pass {
  left: 63.25%;
  top: 40.25%;
}

.oa-forget-link {
  left: 72.2%;
  top: 40.2%;
  color: #ff1e1e;
  font-weight: 800;
  text-decoration: underline;
  text-shadow: none;
}

.oa-remember-name input,
.oa-remember-pass input {
  width: 13px;
  height: 13px;
  accent-color: #0b82d8;
}

.oa-dynamic-field {
  position: absolute;
  left: 35.1%;
  top: 47.2%;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: clamp(13px, 1.28vw, 16px);
  font-weight: 800;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

.oa-dynamic-field input {
  width: min(172px, 15vw);
  height: 29px;
  border: 1px solid rgba(229, 231, 235, .92);
  border-radius: 2px;
  padding: 0 10px;
  outline: 0;
  background: rgba(255,255,255,.96);
  color: #111827;
  font-size: 15px;
}

.oa-sms-button {
  position: absolute;
  left: 61.7%;
  top: 47.75%;
  min-height: 27px;
  border: 1px solid rgba(75, 85, 99, .5);
  border-radius: 4px;
  padding: 2px 8px;
  color: #111827;
  background: linear-gradient(#fff, #e8e8e8);
  cursor: pointer;
  font-size: clamp(12px, 1.06vw, 14px);
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
  transition: transform .16s ease, box-shadow .16s ease;
}

.oa-button-row {
  position: absolute;
  left: 43.8%;
  top: 56.55%;
  display: flex;
  gap: 10px;
}

.oa-login-button,
.oa-reset-button {
  min-width: 62px;
  min-height: 31px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 2px 6px rgba(0,0,0,.18);
  transition: transform .16s ease, box-shadow .16s ease;
}

.oa-login-button:hover,
.oa-reset-button:hover,
.oa-sms-button:hover,
.oa-download-link:hover {
  transform: translateY(-1px);
}

.oa-login-button {
  background: linear-gradient(180deg, #18a9e5, #026eac);
}

.oa-reset-button {
  background: linear-gradient(180deg, #ee9d35, #b75b09);
}

.oa-status {
  position: absolute;
  left: 35%;
  top: 62.5%;
  width: 44%;
  margin: 0;
  border-radius: 4px;
  padding: 6px 10px;
  color: #0f5132;
  background: rgba(236, 253, 245, .92);
  font-size: 13px;
  line-height: 1.45;
}

.oa-status.is-error {
  color: #9f1239;
  background: rgba(255, 241, 242, .94);
}

.oa-app-download {
  position: absolute;
  left: auto;
  right: 12px;
  top: 52%;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 128px;
  padding: 6px 5px;
  border: 1px solid rgba(8, 104, 184, .15);
  border-radius: 6px;
  background: rgba(255,255,255,.88);
  color: #ff4504;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(6, 63, 122, .13);
}

.oa-app-download img {
  width: 117px;
  height: 117px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

@media (min-width: 1440px) {
  .oa-app-download {
    right: -146px;
    top: 52%;
  }
}

.oa-client-actions {
  width: min(1040px, 100%);
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.oa-client-launch,
.oa-client-helper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1.35;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.oa-client-launch {
  gap: 8px;
  border: 1px solid rgba(8, 104, 184, .26);
  padding: 7px 18px;
  background: linear-gradient(180deg, #1099d8, #0769b6);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(6, 91, 155, .18);
}

.oa-client-helper {
  border: 1px solid rgba(8, 104, 184, .18);
  padding: 6px 12px;
  background: rgba(255,255,255,.76);
  color: var(--oa-blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.oa-client-launch:hover,
.oa-client-helper:hover {
  transform: translateY(-1px);
}

.oa-client-launch:focus-visible,
.oa-client-helper:focus-visible {
  outline: 3px solid rgba(8, 104, 184, .26);
  outline-offset: 3px;
}

.oa-client-icon {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 3px;
}

.oa-client-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -6px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
}

.oa-downloads {
  width: min(1040px, 100%);
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--oa-line);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--oa-cyan);
  color: var(--oa-blue);
  font-size: 14px;
  line-height: 1.4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

.oa-download-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  border: 1px solid rgba(8, 104, 184, .13);
  border-radius: 6px;
  padding: 5px 9px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  color: var(--oa-blue-deep);
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.oa-download-link:hover {
  border-color: rgba(8, 104, 184, .36);
  box-shadow: 0 5px 12px rgba(8, 75, 126, .11);
}

.oa-download-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 3px;
  background: #0b82d8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

.oa-download-link.is-wps .oa-download-icon {
  background: #3b82f6;
}

.oa-download-link.is-pdf .oa-download-icon {
  background: #ef4444;
}

.oa-download-link.is-flash .oa-download-icon {
  background: #f97316;
}

.oa-download-link.is-print .oa-download-icon,
.oa-download-link.is-control .oa-download-icon {
  background: #94a3b8;
}

.oa-hidden-post,
.oa-hidden-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

@media (max-width: 980px) {
  .oa-stage-copy {
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-items: center;
    text-align: center;
  }

  .oa-title-block,
  .oa-notice {
    grid-column: 1;
  }

  .oa-notice {
    justify-self: center;
  }

  .oa-login-art,
  .oa-downloads {
    width: 100%;
  }

  .oa-app-download {
    left: auto;
    right: 12px;
    top: 70%;
  }
}

@media (max-width: 760px) {
  .oa-stage {
    width: calc(100% - 28px);
    padding: 24px 0 38px;
  }

  .oa-login-shell {
    padding: 12px;
    border: 1px solid rgba(8, 104, 184, .18);
    background: var(--oa-cyan);
    box-shadow: 0 12px 28px rgba(8, 75, 126, .1);
  }

  .oa-login-art {
    aspect-ratio: auto;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 8px;
    background: linear-gradient(180deg, #1767ad 0%, #1189c1 100%);
    box-shadow: 0 14px 32px rgba(14, 77, 132, .18);
  }

  .oa-login-form {
    position: static;
    display: grid;
    gap: 12px;
  }

  .oa-account-field,
  .oa-password-field,
  .oa-dynamic-field,
  .oa-remember-name,
  .oa-remember-pass,
  .oa-forget-link,
  .oa-sms-button,
  .oa-button-row,
  .oa-status,
  .oa-app-download {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
  }

  .oa-account-field,
  .oa-password-field,
  .oa-dynamic-field {
    display: grid;
    gap: 6px;
    color: #fff;
  }

  .oa-account-field span,
  .oa-password-field span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-weight: 800;
  }

  .oa-account-field input,
  .oa-password-field input,
  .oa-dynamic-field input {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 6px;
    background: rgba(255,255,255,.96);
  }

  .oa-remember-name,
  .oa-remember-pass,
  .oa-forget-link {
    color: #fff;
    font-size: 14px;
  }

  .oa-forget-link {
    color: #ffdf73;
  }

  .oa-sms-button {
    min-height: 38px;
    justify-self: start;
    padding: 6px 13px;
  }

  .oa-button-row {
    gap: 12px;
  }

  .oa-login-button,
  .oa-reset-button {
    min-height: 40px;
    min-width: 86px;
  }

  .oa-status {
    width: 100%;
  }

  .oa-app-download {
    display: inline-grid;
    justify-self: start;
    margin-top: 4px;
    padding: 8px;
    background: rgba(255,255,255,.92);
  }

  .oa-downloads {
    width: 100%;
  }

  .oa-downloads {
    justify-content: flex-start;
    gap: 8px;
    padding: 10px;
  }

  .oa-download-link {
    min-height: 34px;
    border-radius: 6px;
    padding: 6px 8px;
    background: #fff;
  }
}

/* Unified mobile article system UI: flat blue government-enterprise style. */
.mobile-site-header,
.mobile-tabbar,
.mobile-article-app,
.mobile-secondary-tabs,
.mobile-column-nav,
.mobile-more-button,
.mobile-site-footer {
  display: none;
}

.mobile-site-header svg,
.mobile-tabbar svg,
.mobile-quick-grid svg,
.mobile-main-column-grid svg,
.mobile-site-footer svg,
.mobile-brand-mark svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.topic-list-page,
body.signup-list-page {
  background: #f4f8ff;
}

.topic-list-page .mobile-secondary-tabs,
.signup-list-page .mobile-secondary-tabs {
  display: flex;
  width: min(430px, calc(100% - 24px));
  margin: 12px auto 0;
}

.topic-list-page .mobile-article-app,
.signup-list-page .mobile-article-app {
  display: block;
  width: min(430px, calc(100% - 24px));
  margin: 0 auto 20px;
  padding: 12px 0 24px;
}

@media (max-width: 760px) {
  html {
    background: #f4f8ff;
    scroll-padding-top: 112px;
  }

  body.portal-page,
  body.list-view-page,
  body.article-detail-page,
  body.topic-detail-page,
  body.topic-list-page,
  body.signup-list-page,
  body.category-detail-page {
    background: #f4f8ff !important;
    color: #333333;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior-y: contain;
  }

  .portal-page .site-shell,
  .list-view-page .site-shell,
  .article-detail-page .site-shell,
  .topic-detail-page .site-shell,
  .topic-list-page .site-shell,
  .signup-list-page .site-shell,
  .category-detail-page .site-shell {
    width: 100% !important;
    max-width: none !important;
    min-height: 100dvh;
    margin: 0 !important;
    padding: 0 0 calc(74px + env(safe-area-inset-bottom, 0px)) !important;
    background: #f4f8ff !important;
    box-shadow: none !important;
  }

  .mm-shared-header,
  .portal-page .mm-page.mm-ref-home,
  .topic-list-page .mm-page.mm-ref-home,
  .signup-list-page .mm-page.mm-ref-home,
  .mm-shared-footer,
  .site-footer {
    display: none !important;
  }

  .mobile-site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    display: block;
    padding-top: env(safe-area-inset-top, 0px);
    background: #0052cc;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .mobile-statusbar {
    display: none !important;
  }

  .mobile-status-icons {
    display: none !important;
  }

  .mobile-status-icons i {
    display: block;
    width: 14px;
    height: 8px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
  }

  .mobile-status-icons i:first-child {
    width: 11px;
    height: 8px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(to top, currentColor 2px, transparent 2px 3px, currentColor 3px 5px, transparent 5px 6px, currentColor 6px);
  }

  .mobile-status-icons i:nth-child(2) {
    width: 13px;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
  }

  .mobile-appbar {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
  }

  .mobile-site-header-home .mobile-appbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 9px;
    color: #ffffff;
  }

  .mobile-brand-logo,
  .mobile-brand-mark {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
  }

  .mobile-brand-logo {
    overflow: visible;
  }

  .mobile-brand-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 1px 1px rgba(0, 34, 94, .22));
  }

  .mobile-brand-mark {
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
  }

  .mobile-brand strong {
    min-width: 0;
    overflow: visible;
    white-space: normal;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.16;
    font-weight: 900;
  }

  .mobile-page-title {
    min-width: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-appbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }

  .mobile-icon-button {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    appearance: none;
    font: inherit;
  }

  .mobile-nav-toggle {
    min-width: 72px;
    height: 38px;
    display: inline-grid;
    grid-template-columns: 16px auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 0 9px;
    background: rgba(255, 255, 255, .14);
    color: #ffffff;
    appearance: none;
    font: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
  }

  .mobile-nav-toggle svg {
    width: 17px;
    height: 17px;
  }

  .mobile-nav-toggle[aria-expanded="true"] {
    background: #ffffff;
    color: #0052cc;
  }

  .mobile-search-panel[hidden] {
    display: none !important;
  }

  .mobile-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px 46px;
    gap: 6px;
    padding: 0 13px 12px;
    background: #0052cc;
  }

  .mobile-search-panel input[type="search"] {
    min-width: 0;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 8px;
    padding: 0 10px;
    background: #ffffff;
    color: #172033;
    font-size: 14px;
    outline: 0;
  }

  .mobile-search-panel input[type="search"]:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .2);
  }

  .mobile-search-panel button {
    height: 38px;
    border: 0;
    border-radius: 8px;
    padding: 0 8px;
    background: rgba(255, 255, 255, .16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-search-panel button[type="submit"] {
    background: #ffffff;
    color: #0052cc;
  }

  .mobile-column-nav[hidden] {
    display: none !important;
  }

  .mobile-column-nav {
    display: block;
    padding: 0 13px 13px;
    background: #0052cc;
    color: #172033;
    border-top: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 16px 26px rgba(0, 45, 112, .18);
  }

  .mobile-column-nav-head {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
  }

  .mobile-column-nav-head strong {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
  }

  .mobile-column-nav-head button {
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    appearance: none;
  }

  .mobile-column-nav-list {
    max-height: min(62vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: grid;
    gap: 8px;
    border: 1px solid #dfe9f6;
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: 0 12px 24px rgba(7, 36, 78, .16);
  }

  .mobile-column-nav-group {
    overflow: hidden;
    border: 1px solid #e1eaf5;
    border-radius: 10px;
    background: #ffffff;
  }

  .mobile-column-nav-parent {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    color: #073f87;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
  }

  a.mobile-column-nav-parent::after {
    content: "";
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: .8;
  }

  .mobile-column-nav-children {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0 12px 12px;
  }

  .mobile-column-nav-children a {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d9e6f5;
    border-left: 3px solid #0052cc;
    border-radius: 8px;
    padding: 6px 9px;
    background: #f5f9ff;
    color: #33445f;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 800;
  }

  .mobile-top-tabs {
    min-height: 38px;
    display: none !important;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    padding: 0 13px;
    scrollbar-width: none;
  }

  .mobile-top-tabs::-webkit-scrollbar,
  .mobile-secondary-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-top-tabs a {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .mobile-top-tabs a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 28px;
    height: 3px;
    border-radius: 8px 8px 0 0;
    background: #ffffff;
    transform: translateX(-50%);
  }

  .mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 920;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(62px + env(safe-area-inset-bottom, 0px));
    padding: 5px 8px calc(5px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #eeeeee;
    background: rgba(255, 255, 255, .98);
  }

  .mobile-tabbar a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    min-width: 0;
    min-height: 51px;
    border-radius: 8px;
    color: #7b8492;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 700;
  }

  .mobile-tabbar a.active,
  .mobile-tabbar a:active {
    color: #0052cc;
  }

  .phpwz-wx-floating-trigger {
    right: 14px !important;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .mobile-tabbar span {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-article-app {
    display: block;
    width: min(430px, 100%);
    margin: 0 auto;
    padding: 12px 12px 24px;
  }

  .mobile-home-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 188px;
    max-height: 244px;
    border: 1px solid rgba(0, 82, 204, .16);
    border-radius: 12px;
    background: #0052cc;
  }

  .mobile-home-slide {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
    color: #ffffff;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .mobile-home-slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-home-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0052cc;
  }

  .mobile-home-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 82, 204, .08), rgba(0, 82, 204, .22));
  }

  .mobile-slider-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 50%;
    z-index: 2;
    display: grid;
    gap: 6px;
    color: #ffffff;
    text-align: left;
    transform: translateY(-50%);
  }

  .mobile-slider-copy strong {
    font-size: 25px;
    line-height: 1.18;
    font-weight: 900;
  }

  .mobile-slider-copy em {
    max-width: 82%;
    overflow: hidden;
    color: rgba(255, 255, 255, .93);
    font-size: 13px;
    line-height: 1.45;
    font-style: normal;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-slider-dots {
    position: absolute;
    left: auto;
    right: 14px;
    bottom: 10px;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    border-radius: 999px;
    padding: 4px 5px;
    background: rgba(0, 82, 204, .34);
    backdrop-filter: blur(2px);
  }

  .mobile-slider-dots .mm-dot {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, .7);
  }

  .mobile-slider-dots .mm-dot.active {
    width: 18px;
    background: #ffffff;
  }

  .mobile-home-slider .mobile-home-slide-media,
  .mobile-home-slider .mm-slide img,
  .mobile-home-slider .mm-slide video,
  .mm-ref-home .mobile-home-slide-media,
  .mm-ref-home .mobile-home-slide img,
  .mm-ref-home .mobile-home-slide video {
    object-fit: contain !important;
    background: #0052cc;
  }

  .mm-ref-home .mobile-home-slide::after {
    background: linear-gradient(180deg, rgba(0, 82, 204, .08), rgba(0, 82, 204, .22)) !important;
  }

  .mobile-home-slider .mobile-slider-dots,
  .mm-ref-home .mobile-slider-dots {
    left: auto !important;
    right: 14px !important;
    bottom: 10px !important;
    transform: none !important;
    justify-content: flex-end;
  }

  .mobile-hero-card a {
    position: relative;
    display: block;
    height: 164px;
    overflow: hidden;
    border: 1px solid rgba(0, 82, 204, .12);
    border-radius: 12px;
    background: #0052cc;
  }

  .mobile-hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    filter: saturate(1.05);
  }

  .mobile-hero-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 82, 204, .96), rgba(0, 129, 255, .64));
  }

  .mobile-hero-card a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .mobile-hero-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 36px;
    z-index: 2;
    display: grid;
    gap: 5px;
    text-align: center;
    color: #ffffff;
  }

  .mobile-hero-copy strong {
    font-size: 27px;
    line-height: 1.15;
    font-weight: 900;
  }

  .mobile-hero-copy em {
    font-style: normal;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
  }

  .mobile-hero-headline {
    position: absolute;
    left: 14px;
    right: 88px;
    bottom: 13px;
    z-index: 2;
    overflow: hidden;
    color: rgba(255, 255, 255, .94);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-hero-dots {
    position: absolute;
    right: 16px;
    bottom: 17px;
    z-index: 2;
    display: flex;
    gap: 5px;
  }

  .mobile-hero-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .58);
  }

  .mobile-hero-dots i:first-child {
    width: 16px;
    border-radius: 999px;
    background: #ffffff;
  }

  .mobile-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
    padding: 11px 0;
    background: #ffffff;
    border-radius: 12px;
  }

  .mobile-main-column-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    margin: 14px 0;
    border: 1px solid #edf3fb;
    border-radius: 12px;
    background: #ffffff;
  }

  .mobile-main-column-grid a {
    display: grid;
    min-width: 0;
    min-height: 78px;
    place-items: center;
    align-content: center;
    gap: 7px;
    border-right: 1px solid #eef3fa;
    border-bottom: 1px solid #eef3fa;
    color: #333333;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
  }

  .mobile-main-column-grid a:nth-child(4n) {
    border-right: 0;
  }

  .mobile-main-column-grid a > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #ffffff;
    background: #2f6fe8;
  }

  .mobile-main-column-grid a:nth-child(2n) > span {
    background: #12bfa6;
  }

  .mobile-main-column-grid a:nth-child(3n) > span {
    background: #3d73df;
  }

  .mobile-main-column-grid a:nth-child(4n) > span {
    background: #ff684a;
  }

  .mobile-main-column-grid strong {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 0 4px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-inline-ad-list {
    display: grid;
    gap: 10px;
    margin: 12px 0;
  }

  .mobile-inline-ad {
    display: block;
    overflow: hidden;
    border: 1px solid #e4edf8;
    border-radius: 12px;
    background: #ffffff;
  }

  .mobile-inline-ad img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 5.2;
    object-fit: cover;
    background: #e6f0ff;
  }

  .mobile-quick-grid a {
    display: grid;
    justify-items: center;
    gap: 7px;
    min-width: 0;
    color: #333333;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
  }

  .mobile-quick-grid a > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #ffffff;
    background: #2f6fe8;
  }

  .mobile-quick-grid a:nth-child(2) > span {
    background: #12bfa6;
  }

  .mobile-quick-grid a:nth-child(3) > span {
    background: #3d73df;
  }

  .mobile-quick-grid a:nth-child(4) > span {
    background: #ff684a;
  }

  .mobile-quick-grid strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-section {
    margin-top: 12px;
    padding: 14px 12px;
    border: 1px solid #e8eef6;
    border-radius: 12px;
    background: #ffffff;
  }

  .mobile-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 11px;
  }

  .mobile-section-title h2 {
    position: relative;
    margin: 0;
    padding-left: 9px;
    color: #1d2635;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
  }

  .mobile-section-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    border-radius: 999px;
    background: #0052cc;
  }

  .mobile-section-title a {
    flex: 0 0 auto;
    color: #0052cc;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-card-grid,
  .mobile-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-news-card,
  .mobile-case-card,
  .mobile-topic-card {
    display: grid;
    min-width: 0;
    gap: 7px;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 900;
  }

  .mobile-news-card img,
  .mobile-case-card img,
  .mobile-topic-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
    background: #e6f0ff;
  }

  .mobile-news-card strong,
  .mobile-case-card strong,
  .mobile-topic-card strong {
    display: -webkit-box;
    min-height: 36px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-feed-list {
    display: grid;
    gap: 0;
  }

  .mobile-feed-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 11px;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
  }

  .mobile-feed-item:first-child {
    padding-top: 0;
  }

  .mobile-feed-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .mobile-feed-item img {
    width: 112px;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
    background: #e6f0ff;
  }

  .mobile-feed-item span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
  }

  .mobile-feed-item strong {
    display: -webkit-box;
    overflow: hidden;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-feed-item em {
    overflow: hidden;
    color: #777777;
    font-size: 12px;
    line-height: 1.25;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-topic-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .mobile-topic-strip::-webkit-scrollbar {
    display: none;
  }

  .mobile-video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #e6f0ff;
  }

  .mobile-video-block {
    display: grid;
    gap: 9px;
  }

  .mobile-video-block + .mobile-video-block {
    margin-top: 14px;
  }

  .mobile-video-block h3 {
    margin: 0;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
  }

  .mobile-video-grid--portrait {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-video-thumb--wide {
    aspect-ratio: 16 / 9;
  }

  .mobile-video-thumb--portrait {
    aspect-ratio: 9 / 16;
  }

  .mobile-video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
  }

  .mobile-video-thumb::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 82, 204, .92);
    transform: translate(-50%, -50%);
  }

  .mobile-video-thumb::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ffffff;
    transform: translate(-34%, -50%);
  }

  .mobile-video-thumb em {
    position: absolute;
    right: 6px;
    bottom: 6px;
    z-index: 2;
    min-width: 38px;
    border-radius: 6px;
    padding: 3px 5px;
    background: rgba(15, 23, 42, .76);
    color: #ffffff;
    font-size: 10px;
    font-style: normal;
    line-height: 1;
    text-align: center;
  }

  .mobile-video-thumb i {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: #7b8797;
    background: repeating-linear-gradient(135deg, #f3f7fb, #f3f7fb 9px, #eaf1f8 9px, #eaf1f8 18px);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
  }

  .mobile-video-card--placeholder {
    color: #8a97a8;
    background: #f8fafc;
    border-style: dashed;
    box-shadow: none;
  }

  .mobile-video-card--placeholder .mobile-video-thumb::before,
  .mobile-video-card--placeholder .mobile-video-thumb::after {
    display: none;
  }

  .mobile-video-card--portrait {
    padding: 6px;
  }

  .mobile-video-card--portrait strong {
    min-height: 32px;
    font-size: 11px;
    line-height: 1.42;
    white-space: normal;
    -webkit-line-clamp: 2;
  }

  .mobile-site-footer {
    display: grid;
    width: min(430px, calc(100% - 24px));
    gap: 9px;
    margin: 0 auto 12px;
    border: 1px solid #dce8f7;
    border-radius: 12px;
    padding: 15px 12px;
    background: #ffffff;
    color: #475569;
    text-align: center;
  }

  .mobile-site-footer strong {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
  }

  .mobile-site-footer p,
  .mobile-site-footer small {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
  }

  .mobile-site-footer nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
    gap: 7px;
  }

  .mobile-site-footer a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    padding: 5px 7px;
    background: #f7fbff;
    color: #0052cc;
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-site-footer svg {
    width: 15px;
    height: 15px;
  }

  .mobile-list-hero-section {
    overflow: hidden;
    border-color: rgba(0, 82, 204, .16);
    background: linear-gradient(145deg, #0052cc, #0b6ee9);
    color: #ffffff;
  }

  .mobile-list-hero-copy {
    display: grid;
    gap: 6px;
    min-height: 116px;
    align-content: center;
    padding: 7px 4px;
  }

  .mobile-list-hero-copy span {
    width: max-content;
    border-radius: 8px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, .14);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-list-hero-copy h1 {
    margin: 0;
    font-size: 25px;
    line-height: 1.22;
    font-weight: 900;
  }

  .mobile-list-hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.6;
  }

  .mobile-topic-list,
  .mobile-signup-list {
    display: grid;
    gap: 11px;
  }

  .mobile-topic-full-card,
  .mobile-signup-card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e8eef6;
    border-radius: 12px;
    background: #ffffff;
    color: #1f2937;
  }

  .mobile-topic-full-card img,
  .mobile-signup-card img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
    background: #e6f0ff;
  }

  .mobile-topic-full-card span,
  .mobile-signup-card span {
    display: grid;
    gap: 6px;
    padding: 11px;
  }

  .mobile-topic-full-card em,
  .mobile-signup-card em {
    width: max-content;
    border-radius: 7px;
    padding: 4px 8px;
    background: #e6f0ff;
    color: #0052cc;
    font-size: 11px;
    font-style: normal;
    line-height: 1.1;
    font-weight: 900;
  }

  .mobile-topic-full-card strong,
  .mobile-signup-card strong {
    color: #1f2937;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
  }

  .mobile-topic-full-card small,
  .mobile-signup-card small {
    display: -webkit-box;
    overflow: hidden;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-topic-full-card b,
  .mobile-signup-card b {
    color: #64748b;
    font-size: 12px;
    line-height: 1.2;
  }

  .mobile-empty-state {
    display: grid;
    gap: 6px;
    min-height: 118px;
    place-items: center;
    align-content: center;
    border: 1px dashed #d6e3f3;
    border-radius: 12px;
    padding: 18px;
    background: #f8fbff;
    text-align: center;
  }

  .mobile-empty-state strong {
    color: #1f2937;
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-empty-state p {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
  }

  .mobile-secondary-tabs {
    width: min(430px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding: 0 15px;
    min-height: 45px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    scrollbar-width: none;
  }

  .mobile-secondary-tabs a {
    position: relative;
    flex: 0 0 auto;
    color: #555555;
    font-size: 15px;
    line-height: 45px;
    font-weight: 800;
    white-space: nowrap;
  }

  .mobile-secondary-tabs a.active {
    color: #0052cc;
  }

  .mobile-secondary-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 8px 8px 0 0;
    background: #0052cc;
  }

  .list-view-page .list-hero {
    display: none !important;
  }

  .list-view-page .category-tabs {
    width: min(430px, 100%);
    margin: 0 auto;
    padding: 10px 12px;
    overflow-x: auto;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
  }

  .list-view-page .section-title {
    width: min(430px, calc(100% - 24px)) !important;
    margin: 12px auto 0 !important;
    padding: 0 0 0 9px !important;
    border: 0 !important;
    border-left: 3px solid #0052cc !important;
    color: #1d2635 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .list-view-page .article-list {
    width: min(430px, 100%) !important;
    margin: 0 auto !important;
    padding: 10px 12px 24px !important;
    background: #ffffff;
  }

  .list-view-page .article-card,
  .article-card {
    display: grid !important;
    grid-template-columns: 116px minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 11px !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .list-view-page .article-card:last-child {
    border-bottom: 0 !important;
  }

  .list-view-page .cover,
  .article-card .cover {
    width: 116px !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px !important;
    background: #e6f0ff;
  }

  .article-card .cover img,
  .list-view-page .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .list-view-page .article-info,
  .article-card .article-info {
    display: flex !important;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
  }

  .list-view-page .article-meta,
  .article-card .article-meta {
    display: flex;
    gap: 6px;
    overflow: hidden;
    color: #777777 !important;
    font-size: 11px !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  .list-view-page .article-info h2,
  .article-card .article-info h2 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 !important;
    color: #222222 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .list-view-page .article-info p,
  .article-card .article-info p {
    display: -webkit-box !important;
    overflow: hidden;
    margin: 0 !important;
    color: #888888 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .article-card-foot,
  .list-view-page .article-info time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    overflow: hidden;
    color: #777777 !important;
    font-size: 12px !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  .article-card-foot span,
  .article-card-foot time {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pager,
  .infinite-load {
    width: min(430px, calc(100% - 24px));
    margin: 12px auto 24px !important;
    padding: 0 !important;
  }

  .detail-page,
  .article-detail-page .detail-page,
  .category-detail-page .detail-page {
    width: min(430px, 100%) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 12px 12px 24px !important;
    background: #f4f8ff !important;
  }

  .article-detail-page .category-tabs.compact,
  .category-detail-page .category-tabs.compact {
    width: min(430px, 100%) !important;
    margin: 0 auto !important;
    padding: 9px 12px !important;
    overflow-x: auto;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    justify-content: flex-start !important;
  }

  .article-detail-page .category-tabs.compact a,
  .category-detail-page .category-tabs.compact a {
    flex: 0 0 auto;
    min-height: 34px;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
  }

  .detail-header,
  .article-detail-page .detail-header {
    margin: 0 !important;
    padding: 17px 6px 13px !important;
    text-align: left !important;
    background: #ffffff;
  }

  .detail-header h1,
  .article-detail-page .detail-header h1 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 12px !important;
    color: #1f2937 !important;
    font-size: 22px !important;
    line-height: 1.34 !important;
    font-weight: 900 !important;
    overflow-wrap: anywhere;
  }

  .detail-header .article-meta,
  .article-detail-page .detail-header .article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin: 0 !important;
    color: #666666 !important;
    font-size: 12px !important;
  }

  .detail-header p,
  .article-detail-page .detail-header p {
    margin: 12px 0 0 !important;
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .detail-content,
  .article-detail-page .detail-content,
  .category-content {
    width: 100% !important;
    max-width: none !important;
    overflow: hidden !important;
    margin: 0 !important;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 18px 15px !important;
    background: #ffffff;
    color: #333333 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
  }

  .detail-content *,
  .category-content * {
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .detail-content p,
  .category-content p {
    margin: 0 0 1em !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .detail-content img,
  .detail-content video,
  .detail-content iframe,
  .category-content img,
  .category-content video,
  .category-content iframe {
    width: 100% !important;
    height: auto !important;
    margin: 12px auto !important;
    border-radius: 8px;
  }

  .detail-content table,
  .category-content table {
    display: block;
    overflow-x: auto;
  }

  .category-detail-page .category-page-detail--designed {
    width: min(430px, 100%) !important;
    margin: 0 auto 28px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .category-detail-page .category-designed-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .article-qrcode {
    display: block !important;
    width: 100% !important;
    margin: 14px 0 0 !important;
    padding: 18px 14px 16px !important;
    border: 1px solid #eeeeee !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #666666 !important;
    text-align: center !important;
  }

  .article-qrcode img {
    display: block !important;
    width: 164px !important;
    height: 164px !important;
    margin: 0 auto !important;
    padding: 8px !important;
    border: 1px solid #e5edf7 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .article-qrcode p {
    margin: 10px 0 0 !important;
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .article-footer-actions {
    width: 100% !important;
    margin: 12px 0 0 !important;
  }

  .article-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px !important;
    align-items: center;
  }

  .article-actions button,
  .article-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid #e5edf7 !important;
    border-radius: 8px !important;
    padding: 8px 6px !important;
    background: #ffffff !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  .article-actions button.liked,
  .article-actions .mobile-favorite-button.is-saved {
    border-color: rgba(0, 82, 204, .2) !important;
    color: #0052cc !important;
    background: #e6f0ff !important;
  }

  .article-actions .follow-button {
    grid-column: 1 / -1;
  }

  .wechat-share-hint {
    margin: 10px 0 0;
    border-radius: 8px;
    padding: 9px 11px;
    background: #e6f0ff;
    color: #0052cc;
    font-size: 12px;
  }

  .mobile-more-button {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border-radius: 8px;
    background: #0052cc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
  }

  .mm-related-topics {
    margin: 13px 0 0 !important;
    border: 1px solid #e8eef6;
    border-radius: 12px;
    padding: 13px;
    background: #ffffff;
  }

  .mm-related-topics h2 {
    margin: 0 0 8px;
    color: #1d2635;
    font-size: 16px;
  }

  .mm-related-topics a {
    display: block;
    padding: 8px 0;
    border-top: 1px solid #eeeeee;
    color: #0052cc;
    font-weight: 800;
  }

  .category-feedback-panel {
    margin-top: 12px;
    border: 1px solid #e8eef6;
    border-radius: 12px;
    padding: 15px;
    background: #ffffff;
  }

  .category-feedback-panel h2 {
    margin: 0 0 12px;
    font-size: 16px;
  }

  .category-feedback-form {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .category-feedback-form .span-2 {
    grid-column: auto !important;
  }

  .category-feedback-form input,
  .category-feedback-form textarea {
    min-height: 42px;
    border-radius: 8px;
    font-size: 15px;
  }

  .category-feedback-form button {
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
    background: #0052cc;
  }

  .topic-detail-page .mm-page.mm-topic-page {
    padding: 12px 0 24px !important;
    background: #f4f8ff !important;
  }

  .topic-detail-page .mm-topic-page .mm-container {
    width: min(430px, 100%) !important;
    padding: 0 12px !important;
  }

  .topic-detail-page .mm-topic-hero {
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: #0052cc !important;
  }

  .topic-detail-page .mm-topic-hero::after {
    display: none !important;
  }

  .topic-detail-page .mm-topic-hero picture {
    display: block;
    height: 158px;
    overflow: hidden;
  }

  .topic-detail-page .mm-topic-hero img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    object-fit: cover !important;
    z-index: auto !important;
  }

  .topic-detail-page .mm-topic-hero-copy {
    position: static !important;
    display: grid !important;
    gap: 8px !important;
    max-width: none !important;
    padding: 15px !important;
  }

  .topic-detail-page .mm-topic-kicker,
  .topic-detail-page .mm-topic-section-label {
    color: #0052cc;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
  }

  .topic-detail-page .mm-topic-hero .mm-topic-kicker {
    color: rgba(255, 255, 255, .9) !important;
  }

  .topic-detail-page .mm-topic-hero h1 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 24px !important;
    line-height: 1.24 !important;
    font-weight: 900 !important;
  }

  .topic-detail-page .mm-topic-hero p {
    margin: 0 !important;
    color: rgba(255, 255, 255, .9) !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  .topic-detail-page .mm-topic-nav {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto;
    margin: 10px 0 0 !important;
    padding: 10px 0 !important;
    border: 0 !important;
    background: transparent !important;
    scrollbar-width: none;
  }

  .topic-detail-page .mm-topic-nav::-webkit-scrollbar {
    display: none;
  }

  .topic-detail-page .mm-topic-nav a {
    flex: 0 0 auto;
    border: 1px solid #d9e7ff !important;
    border-radius: 999px !important;
    padding: 8px 13px !important;
    background: #ffffff !important;
    color: #0052cc !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  .topic-detail-page .mm-topic-feature,
  .topic-detail-page .mm-topic-section,
  .topic-detail-page .mm-topic-share {
    display: block !important;
    margin: 12px 0 0 !important;
    border: 1px solid #e8eef6 !important;
    border-radius: 12px !important;
    padding: 14px !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .topic-detail-page .mm-topic-feature-main h2,
  .topic-detail-page .mm-topic-section-head h2 {
    margin: 5px 0 8px !important;
    color: #1f2937 !important;
    font-size: 18px !important;
    line-height: 1.34 !important;
  }

  .topic-detail-page .mm-topic-feature-main p,
  .topic-detail-page .mm-topic-article p,
  .topic-detail-page .mm-topic-timeline-item p {
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .topic-detail-page .mm-topic-feature-side {
    margin-top: 12px;
    border-top: 1px solid #eeeeee;
    padding-top: 12px;
    color: #0052cc;
  }

  .topic-detail-page .mm-topic-articles,
  .topic-detail-page .mm-topic-timeline-list,
  .topic-detail-page .mm-topic-resources {
    display: grid !important;
    gap: 10px !important;
  }

  .topic-detail-page .mm-topic-article,
  .topic-detail-page .mm-topic-timeline-item,
  .topic-detail-page .mm-topic-resources a {
    display: block !important;
    border: 1px solid #eeeeee !important;
    border-radius: 8px !important;
    padding: 12px !important;
    background: #ffffff !important;
  }

  .topic-detail-page .mm-topic-article h3,
  .topic-detail-page .mm-topic-timeline-item h3,
  .topic-detail-page .mm-topic-resources strong {
    margin: 4px 0 !important;
    color: #222222 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    font-weight: 900 !important;
  }

  .topic-detail-page .mm-date,
  .topic-detail-page .mm-topic-timeline-item time {
    color: #777777 !important;
    font-size: 12px !important;
  }

  .topic-detail-page .mm-topic-share button {
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
    border: 0;
    border-radius: 8px;
    background: #0052cc;
    color: #ffffff;
    font-weight: 900;
  }

  .empty-state {
    border: 1px solid #e8eef6 !important;
    border-radius: 12px !important;
    padding: 28px 14px !important;
    background: #ffffff !important;
    color: #777777 !important;
  }
}

@media (max-width: 360px) {
  .mobile-appbar {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 7px 10px;
  }

  .mobile-appbar-actions {
    gap: 4px;
  }

  .mobile-nav-toggle {
    min-width: 64px;
    padding: 0 7px;
    font-size: 12px;
  }

  .mobile-brand strong {
    font-size: 14px;
  }

  .mobile-feed-item,
  .list-view-page .article-card,
  .article-card {
    grid-template-columns: 104px minmax(0, 1fr) !important;
  }

  .mobile-feed-item img,
  .list-view-page .cover,
  .article-card .cover {
    width: 104px !important;
  }
}

@media (max-width: 750px) {
  .phpwz-wx-modal {
    align-items: end;
    place-items: end center;
    padding: 0 10px;
    background: rgba(8, 22, 48, .52);
  }

  .phpwz-wx-dialog {
    width: min(430px, 100%);
    margin-bottom: env(safe-area-inset-bottom, 0px);
    border-color: rgba(0, 82, 204, .15);
    border-radius: 12px 12px 0 0;
    padding: 18px 15px calc(16px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -16px 36px rgba(8, 29, 68, .22);
  }

  .phpwz-wx-title {
    color: #0b2e72;
    font-size: 20px;
    line-height: 1.25;
    text-align: left;
  }

  .phpwz-wx-close {
    top: 12px;
    right: 12px;
    border-radius: 8px;
  }

  .phpwz-login-tabs {
    margin-top: 2px;
    border-color: #d9e7ff;
    background: #eef5ff;
  }

  .phpwz-login-tabs button {
    min-height: 38px;
    font-size: 14px;
  }

  .phpwz-wx-qrbox {
    width: 206px;
    height: 206px;
    margin-top: 12px;
  }

  .phpwz-wx-qrbox img {
    width: 184px;
    height: 184px;
  }

  .phpwz-wx-status,
  .phpwz-account-status {
    color: #5f6f84;
    font-size: 13px;
    text-align: center;
  }

  .phpwz-wx-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .phpwz-wx-actions button,
  .phpwz-account-form .primary,
  .phpwz-logout-button {
    min-height: 44px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
  }

  .phpwz-wx-actions button.primary {
    border-color: #0052cc;
    background: #0052cc;
  }

  .phpwz-account-form input {
    min-height: 46px;
    font-size: 15px;
  }
}

/* Organization chart late overrides */
.category-detail-page .category-content .nwl-orgchart__canvas {
  width: 1040px !important;
  min-width: 1040px !important;
  max-width: none !important;
}

.category-detail-page .category-content .nwl-orgchart__top,
.category-detail-page .category-content .nwl-orgchart__node--root,
.category-detail-page .category-content .nwl-orgchart__company,
.category-detail-page .category-content .nwl-orgchart__theater {
  max-width: none !important;
}

.category-detail-page .category-content .nwl-orgchart__scroll {
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

@media (max-width: 640px) {
  .category-detail-page .category-content .nwl-orgchart__canvas {
    min-height: 660px;
    padding-top: 20px !important;
  }

  .category-detail-page .category-content .nwl-orgchart__stem {
    height: 16px;
  }

  .category-detail-page .category-content .nwl-orgchart__stem--long {
    height: 24px;
  }

  .category-detail-page .category-content .nwl-orgchart__bus {
    height: 34px;
  }

  .category-detail-page .category-content .nwl-orgchart__bus::after {
    height: 34px;
  }

  .category-detail-page .category-content .nwl-orgchart__groups {
    padding-top: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__group::before {
    top: -18px;
    height: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__group-connector {
    height: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__children {
    padding-top: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__child::before,
  .category-detail-page .category-content .nwl-orgchart__child-stack::before {
    top: -18px;
    height: 18px;
  }
}

/* Organization chart mobile reading layout */
@media (max-width: 760px) {
  .category-detail-page .category-content .nwl-orgchart {
    width: 100%;
    margin: 0;
    overflow: hidden;
  }

  .category-detail-page .category-content .nwl-orgchart__intro {
    margin-bottom: 18px !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .category-detail-page .category-content .nwl-orgchart__scroll {
    overflow: visible !important;
    border-radius: 8px;
    background: linear-gradient(180deg, #f6fbff, #fff);
    box-shadow: 0 12px 28px rgba(6, 73, 135, .08);
  }

  .category-detail-page .category-content .nwl-orgchart__canvas {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 20px 12px 24px !important;
  }

  .category-detail-page .category-content .nwl-orgchart__top {
    width: 100% !important;
    max-width: 100% !important;
  }

  .category-detail-page .category-content .nwl-orgchart__node {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .category-detail-page .category-content .nwl-orgchart__node--root {
    width: 100% !important;
    font-size: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__node--count {
    min-width: 0;
    width: calc(100% - 28px);
  }

  .category-detail-page .category-content .nwl-orgchart__stem {
    height: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__stem--long {
    height: 22px;
  }

  .category-detail-page .category-content .nwl-orgchart__bus {
    height: 18px;
    margin: 0;
  }

  .category-detail-page .category-content .nwl-orgchart__bus::before {
    display: none;
  }

  .category-detail-page .category-content .nwl-orgchart__bus::after {
    top: 0;
    bottom: auto;
    height: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 12px;
  }

  .category-detail-page .category-content .nwl-orgchart__group {
    justify-items: stretch;
    padding: 12px;
    border: 1px solid var(--org-border);
    border-left: 4px solid var(--org-blue-bright);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 22px rgba(6, 73, 135, .07);
  }

  .category-detail-page .category-content .nwl-orgchart__group::before,
  .category-detail-page .category-content .nwl-orgchart__children::before,
  .category-detail-page .category-content .nwl-orgchart__child::before,
  .category-detail-page .category-content .nwl-orgchart__child-stack::before {
    display: none;
  }

  .category-detail-page .category-content .nwl-orgchart__group-title {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.35;
    box-shadow: none;
  }

  .category-detail-page .category-content .nwl-orgchart__group-connector {
    justify-self: center;
    height: 12px;
  }

  .category-detail-page .category-content .nwl-orgchart__children {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 0;
  }

  .category-detail-page .category-content .nwl-orgchart__child,
  .category-detail-page .category-content .nwl-orgchart__child-stack {
    justify-items: stretch;
    width: 100%;
  }

  .category-detail-page .category-content .nwl-orgchart__company,
  .category-detail-page .category-content .nwl-orgchart__theater {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    letter-spacing: 0;
  }

  .category-detail-page .category-content .nwl-orgchart__company--long {
    font-size: 15px;
  }

  .category-detail-page .category-content .nwl-orgchart__theater-link {
    justify-self: center;
    height: 12px;
  }

  .category-detail-page .category-content .nwl-orgchart__summary {
    margin-top: 18px;
  }

  .category-detail-page .category-content .nwl-orgchart__summary::before {
    height: 16px;
  }

  .category-detail-page .category-content .nwl-orgchart__summary-node {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 15px;
    overflow-wrap: break-word !important;
  }
}

/* Leadership team page for category 48 */
.nwl-leader,
.nwl-leader * {
  box-sizing: border-box;
}

.nwl-leader {
  --leader-blue-950: #05345f;
  --leader-blue-900: #064987;
  --leader-blue-800: #075da9;
  --leader-blue-700: #0870c8;
  --leader-blue-100: #d8eaff;
  --leader-blue-50: #f5faff;
  --leader-ink: #10223d;
  --leader-red: #e42328;
  --leader-line: #1778d4;
  width: 100%;
  margin: 0;
  color: var(--leader-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.8;
  overflow-wrap: normal;
  word-break: normal;
}

.category-detail-page .category-content .nwl-leader p,
.nwl-leader p {
  margin: 0 !important;
  text-indent: 0 !important;
}

.nwl-leader__intro {
  margin: 0 0 28px !important;
  color: var(--leader-ink) !important;
  font-size: 16px !important;
  line-height: 2.05 !important;
  text-align: justify !important;
  text-indent: 2em !important;
}

.category-detail-page .category-content .nwl-leader .nwl-leader__intro {
  margin: 0 0 28px !important;
}

.nwl-leader__stage {
  position: relative;
  overflow: hidden;
  padding: 48px 48px 56px;
  border-top: 4px solid var(--leader-blue-800);
  background: linear-gradient(180deg, rgba(245, 250, 255, .98), #ffffff 46%);
}

.nwl-leader__stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background: linear-gradient(135deg, rgba(6, 73, 135, .12), rgba(8, 112, 200, .03));
  pointer-events: none;
}

.nwl-leader__headline {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto 40px;
  text-align: center;
}

.nwl-leader__company {
  position: relative;
  margin: 0;
  padding: 0 0 18px;
  color: var(--leader-blue-950);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
  text-align: center;
}

.nwl-leader__company::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 128px;
  height: 4px;
  background: linear-gradient(90deg, var(--leader-red), var(--leader-blue-700));
  transform: translateX(-50%);
}

.nwl-leader__subtitle {
  margin: 0 !important;
  color: var(--leader-blue-800) !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

.category-detail-page .category-content .nwl-leader .nwl-leader__subtitle {
  margin: 0 !important;
  text-align: center !important;
}

.nwl-leader__chart {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  color: var(--leader-ink);
}

.nwl-leader__chief {
  position: relative;
  width: 100%;
  min-height: 184px;
  display: grid;
  align-items: center;
  padding: 32px 40px;
  border-left: 6px solid var(--leader-red);
  background: linear-gradient(135deg, var(--leader-blue-800), var(--leader-blue-950));
  color: #fff;
  box-shadow: 0 24px 48px rgba(6, 73, 135, .24);
}

.nwl-leader__chief::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 128px;
  height: 1px;
  background: rgba(255, 255, 255, .32);
}

.nwl-leader__name {
  color: var(--leader-ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.nwl-leader__chief .nwl-leader__name {
  color: #fff;
  font-size: 50px;
}

.nwl-leader__role {
  margin-top: 12px;
  color: var(--leader-blue-800);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.nwl-leader__chief .nwl-leader__role {
  color: #fff;
  font-size: 18px;
}

.nwl-leader__stem {
  width: 2px;
  height: 40px;
  background: var(--leader-line);
}

.nwl-leader__row {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-top: 40px;
}

.nwl-leader__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--leader-line);
}

.nwl-leader__row--members {
  width: 100%;
  margin-top: 40px;
}

.nwl-leader__row--members::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: var(--leader-line);
  transform: translateX(-50%);
}

.nwl-leader__card {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px 32px;
  border: 1px solid #cfe4ff;
  border-left: 6px solid var(--leader-blue-700);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 32px rgba(6, 73, 135, .10);
}

.nwl-leader__card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: var(--leader-line);
  transform: translateX(-50%);
}

.nwl-leader__note {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 40px auto 0 !important;
  padding: 18px 24px;
  border-left: 5px solid var(--leader-red);
  background: #eef6ff;
  color: var(--leader-blue-900) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.75 !important;
}

.category-detail-page .category-content .nwl-leader .nwl-leader__note {
  margin: 40px auto 0 !important;
  text-align: left !important;
}

@media (max-width: 960px) {
  .nwl-leader__stage {
    padding: 40px 28px 48px;
  }

  .nwl-leader__company {
    font-size: 42px;
  }
}

@media (max-width: 760px) {
  .nwl-leader__intro {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }

  .nwl-leader__stage {
    padding: 32px 18px 40px;
  }

  .nwl-leader__headline {
    margin-bottom: 30px;
  }

  .nwl-leader__company {
    width: min(100%, 330px);
    padding-bottom: 14px;
    font-size: 30px;
  }

  .nwl-leader__subtitle {
    font-size: 22px !important;
  }

  .nwl-leader__chief {
    min-height: 168px;
    padding: 28px 24px;
  }

  .nwl-leader__chief .nwl-leader__name {
    font-size: 42px;
  }

  .nwl-leader__row,
  .nwl-leader__row--members {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 28px;
    margin-top: 0;
  }

  .nwl-leader__row::before,
  .nwl-leader__row--members::after,
  .nwl-leader__card::before {
    display: none;
  }

  .nwl-leader__stem {
    height: 28px;
  }

  .nwl-leader__card {
    min-height: 132px;
    gap: 14px;
    padding: 24px 22px;
  }

  .nwl-leader__role {
    font-size: 15px;
  }

  .nwl-leader__name {
    font-size: 30px;
  }

  .nwl-leader__note {
    margin-top: 28px !important;
    padding: 16px 18px;
    font-size: 14px !important;
  }

  .category-detail-page .category-content .nwl-leader .nwl-leader__note {
    margin-top: 28px !important;
  }
}

/* Functional departments page for category 49 */
.nwl-dept,
.nwl-dept * {
  box-sizing: border-box;
}

.nwl-dept {
  --dept-blue-950: #05345f;
  --dept-blue-900: #064987;
  --dept-blue-800: #075da9;
  --dept-blue-700: #0870c8;
  --dept-blue-100: #d8eaff;
  --dept-blue-50: #f5faff;
  --dept-ink: #10223d;
  --dept-red: #e42328;
  --dept-line: #1778d4;
  width: 100%;
  margin: 0;
  color: var(--dept-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.8;
  overflow-wrap: normal;
  word-break: normal;
}

.category-detail-page .category-content .nwl-dept p,
.nwl-dept p {
  margin: 0 !important;
  text-indent: 0 !important;
}

.nwl-dept__intro {
  margin: 0 0 28px !important;
  color: var(--dept-ink) !important;
  font-size: 16px !important;
  line-height: 2.05 !important;
  text-align: justify !important;
  text-indent: 2em !important;
}

.category-detail-page .category-content .nwl-dept .nwl-dept__intro {
  margin: 0 0 28px !important;
}

.nwl-dept__stage {
  position: relative;
  overflow: hidden;
  padding: 48px 48px 56px;
  border-top: 4px solid var(--dept-blue-800);
  background: linear-gradient(180deg, rgba(245, 250, 255, .98), #ffffff 46%);
}

.nwl-dept__stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background: linear-gradient(135deg, rgba(6, 73, 135, .12), rgba(8, 112, 200, .03));
  pointer-events: none;
}

.nwl-dept__headline {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto 40px;
  text-align: center;
}

.nwl-dept__company {
  position: relative;
  margin: 0;
  padding: 0 0 18px;
  color: var(--dept-blue-950);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
  text-align: center;
}

.nwl-dept__company::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 128px;
  height: 4px;
  background: linear-gradient(90deg, var(--dept-red), var(--dept-blue-700));
  transform: translateX(-50%);
}

.nwl-dept__subtitle {
  margin: 0 !important;
  color: var(--dept-blue-800) !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

.category-detail-page .category-content .nwl-dept .nwl-dept__subtitle {
  margin: 0 !important;
  text-align: center !important;
}

.nwl-dept__chart {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.nwl-dept__root {
  position: relative;
  width: 100%;
  min-height: 136px;
  display: grid;
  align-items: center;
  padding: 30px 40px;
  border-left: 6px solid var(--dept-red);
  background: linear-gradient(135deg, var(--dept-blue-800), var(--dept-blue-950));
  color: #fff;
  box-shadow: 0 24px 48px rgba(6, 73, 135, .22);
}

.nwl-dept__root-title {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.nwl-dept__root-subtitle {
  margin-top: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.nwl-dept__stem {
  width: 2px;
  height: 42px;
  background: var(--dept-line);
}

.nwl-dept__grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 2px solid var(--dept-line);
}

.nwl-dept__card {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 24px 20px;
  border: 1px solid #cfe4ff;
  border-left: 6px solid var(--dept-blue-700);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 32px rgba(6, 73, 135, .10);
}

.nwl-dept__name {
  color: var(--dept-ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.nwl-dept__note {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 40px auto 0 !important;
  padding: 18px 24px;
  border-left: 5px solid var(--dept-red);
  background: #eef6ff;
  color: var(--dept-blue-900) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.75 !important;
}

.category-detail-page .category-content .nwl-dept .nwl-dept__note {
  margin: 40px auto 0 !important;
  text-align: left !important;
}

@media (max-width: 960px) {
  .nwl-dept__stage {
    padding: 40px 28px 48px;
  }

  .nwl-dept__company {
    font-size: 42px;
  }

  .nwl-dept__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

}

@media (max-width: 760px) {
  .nwl-dept__intro {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }

  .nwl-dept__stage {
    padding: 32px 18px 40px;
  }

  .nwl-dept__headline {
    margin-bottom: 30px;
  }

  .nwl-dept__company {
    width: min(100%, 330px);
    padding-bottom: 14px;
    font-size: 30px;
  }

  .nwl-dept__subtitle {
    font-size: 22px !important;
  }

  .nwl-dept__root {
    min-height: 138px;
    padding: 26px 24px;
  }

  .nwl-dept__root-title {
    font-size: 30px;
  }

  .nwl-dept__root-subtitle {
    font-size: 15px;
  }

  .nwl-dept__stem {
    height: 28px;
  }

  .nwl-dept__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 24px;
  }

  .nwl-dept__card {
    min-height: 96px;
    padding: 22px 20px;
  }

  .nwl-dept__name {
    font-size: 25px;
  }

  .nwl-dept__note {
    margin-top: 28px !important;
    padding: 16px 18px;
    font-size: 14px !important;
  }

  .category-detail-page .category-content .nwl-dept .nwl-dept__note {
    margin-top: 28px !important;
  }
}
