* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-smooth: always;
    /* 启用字体平滑 */
    -webkit-font-smoothing: antialiased;
    /* 在一些WebKit浏览器中启用字体抗锯齿 */
    -moz-osx-font-smoothing: grayscale;
    /* 在一些Firefox浏览器中启用字体抗锯齿 */
    font-family: Arial, Helvetica, sans-serif;
}

/* 平滑滚动 */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

#main-scrollbar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.scrollbar-thumb{
    background-color: rgba(0,0,0,0.5);
}

.scrollbar-track-y{
    width: 5px !important;
    background-color: rgba(0,0,0,0.2) !important;
}


/* ==翻页样式== */
.pagesinfo {
    color: #555555;
    font-size: 12px;
}

.pagesnow {
    color: #D07E36;
    font-size: 14px;
    text-decoration: none
}

.pages {
    color: #777777;
    font-size: 14px;
    text-decoration: none
}

/*首页轮播*/
.swiper div.swiper-wrapper{
    height: auto;
}

.swiper-slide img{
    width: 100%;
}

.swiper-slide > a{
    display: block;
    position: relative;
}

.swiper-caption{
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 12%;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,.35);
}

.swiper-caption h2{
    font-size: clamp(1.5rem, 3vw, 3.25rem);
    line-height: 1.2;
    font-weight: 700;
}

.swiper-caption h3{
    margin-top: .5rem;
    font-size: clamp(1rem, 1.8vw, 1.75rem);
    line-height: 1.35;
}

.swiper-caption p{
    margin-top: .5rem;
    font-size: clamp(.875rem, 1.2vw, 1.125rem);
    line-height: 1.6;
}

@media (max-width: 767.98px){
    .swiper-caption{
        left: 6%;
        right: 6%;
        bottom: 8%;
    }
}

/*主导航*/
#mainMenu{
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}

#mainMenu a{
    color: #000;
}

#mainMenu ul{
    list-style-type: none;
}

#mainMenu ul li{
    flex: 1;
    position: relative;
    overflow: hidden;
    z-index: 999;
}

#mainMenu ul li i{
    transform: scale(0.7);
}

#mainMenu ul li:hover .secondMenu{
    /*二级导航动画*/
    opacity: 1;
    transform: scale(1) translateY(0);
    /*二级导航动画*/
}

#mainMenu ul li:hover{
    overflow: initial;
}

/*主导航二级菜单*/
#mainMenu .secondMenu{
    position: absolute;
    left: -10px;
    top: 55px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
    transition: all 0.3s;
    /*二级导航动画*/
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
    /*二级导航动画*/
}

#mainMenu .secondMenu a{
    display: block;
}

/* ---- chamber site styles ---- */
:root {
  --brand: #e60013;
  --brand-dark: #b9000f;
  --ink: #17191c;
  --body: #383d42;
  --muted: #777e85;
  --line: #dfe2e5;
  --soft: #f1f2f3;
  --paper: #ffffff;
  --container: 1400px;
}

/* 会员名录 */
.member-logo-section .article-lead,
.member-text-section .article-lead {
  margin-bottom: 24px;
}

.member-logo-grid {
  width: 100%;
}

.member-logo-grid-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.member-logo-card {
  min-width: 0;
  border: 1px solid #e2e5e8;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.member-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
}

.member-logo-card:has(.member-card-link),
.member-showcase-card:has(.member-card-link) {
  cursor: pointer;
}

.member-logo-card:hover {
  border-color: #e60012;
  box-shadow: 0 12px 28px rgba(26, 31, 36, .10);
  transform: translateY(-2px);
}

.member-logo-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.member-logo-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 24px;
  /* background: #fafafa; */
}

.member-logo-card-image img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 108px;
  object-fit: contain;
}

.member-logo-card-copy {
  padding: 18px 20px 20px;
}

.member-logo-card-copy h4 {
  margin: 0 0 9px;
  color: #17191d;
  font-size: 18px;
  line-height: 1.45;
}

.member-logo-card-copy p {
  margin: 0;
  color: #68717a;
  font-size: 14px;
  line-height: 1.7;
}

.member-directory-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e5e8;
}

.member-directory-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: collapse;
  color: #343a40;
  font-size: 14px;
}

.member-directory-table th,
.member-directory-table td {
  padding: 14px 15px;
  border-bottom: 1px solid #edf0f2;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.member-directory-table th {
  background: #f6f7f8;
  color: #17191d;
  font-weight: 700;
  white-space: nowrap;
}

.member-directory-table tbody tr:last-child td {
  border-bottom: 0;
}

.member-directory-table tbody tr:hover td {
  background: #fffafa;
}

.member-detail-page {
  padding-bottom: 84px;
}

.member-detail-shell {
  padding-top: 48px;
}

.member-detail-card {
  max-width: 1080px;
  margin: 0 auto;
}

.member-detail-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 34px 42px;
  border-top: 4px solid var(--brand);
  background: #f5f6f6;
}

.member-detail-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 160px;
  padding: 20px;
  border: 1px solid #e1e4e7;
  background: #fff;
}

.member-detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.member-detail-heading .eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.member-detail-heading h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.3;
}

.member-detail-summary {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.member-detail-return {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.member-detail-return span:last-child {
  font-size: 19px;
  line-height: 1;
}

.member-detail-return:hover {
  color: #fff;
  background: var(--brand);
}

.member-detail-content {
  margin-top: 30px;
  padding: 30px 42px 36px;
  border: 1px solid var(--line);
  background: #fff;
}

.member-detail-content-heading {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.member-detail-content-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .02em;
}

.member-detail-body {
  max-width: 900px;
  padding-top: 28px;
  color: #495057;
  font-size: 16px;
  line-height: 2;
}

.member-detail-body p {
  margin: 0 0 18px;
}

.member-detail-body p:last-child {
  margin-bottom: 0;
}

.member-detail-body .member-profile-article-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
}

.member-detail-body .member-profile-lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.member-detail-body h4 {
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--brand);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .member-logo-grid-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .member-logo-card-image {
    min-height: 130px;
  }

  .member-detail-card {
    width: 100%;
  }

  .member-detail-shell {
    padding-top: 28px;
  }

  .member-detail-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px 26px;
  }

  .member-detail-logo {
    width: 180px;
    max-width: 100%;
    height: 140px;
  }

  .member-detail-heading h1 {
    font-size: 30px;
  }

  .member-detail-return {
    justify-self: start;
  }

  .member-detail-content {
    margin-top: 18px;
    padding: 22px 20px 26px;
  }

  .member-detail-content-heading h2 {
    font-size: 25px;
  }

  .member-detail-body {
    padding-top: 22px;
    font-size: 15px;
    line-height: 1.9;
  }

  .member-detail-body .member-profile-article-title {
    font-size: 22px;
  }

  .member-detail-body .member-profile-lead {
    font-size: 15px;
  }

  .member-detail-body h4 {
    margin-top: 28px;
    font-size: 19px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background-color: var(--paper);
  font-family: "Microsoft YaHei","Noto Sans SC", "PingFang SC",  Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  /* -webkit-font-smoothing: antialiased; */
}

/* main {
  background: url("mainbg-gold-lineart.png") center -100px / 100% auto no-repeat;
} */

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

a,
button {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 9999;
  padding: 10px 18px;
  color: #fff;
  background: var(--brand);
}

.skip-link:focus {
  top: 20px;
}

.utility-bar {
  min-height: 34px;
  color: #676d73;
  background: #f1f2f3;
  border-bottom: 1px solid #e6e8ea;
  font-size: 12px;
}

.utility-bar .container {
  min-height: 34px;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-actions a:hover {
  color: var(--brand);
}

.utility-actions :is(i, svg) {
  margin-right: 5px;
}

.city-link {
  letter-spacing: .03em;
}

.city-link :is(i, svg) {
  color: var(--brand);
}

.language-links {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 16px;
  border-left: 1px solid #d6dadd;
}

.language-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7a8085;
  line-height: 1;
}

.language-links .fi {
  width: 16px;
  font-size: 12px;
  line-height: 12px;
}

.language-links a:hover,
.language-links a:focus-visible,
.language-links a.active {
  color: var(--brand);
}

.brand-header {
  padding: 21px 0;
  background: #fff;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
}

.brand img {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: block;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: #d04845;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 5px;
  color: #777d82;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: .13em;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  display: flex;
  width: 260px;
  min-height: 38px;
  align-items: center;
  padding: 0;
  color: #596067;
  background: #fff;
  border: 1px solid #d9dcdf;
  font-size: 12px;
}

.header-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(230, 0, 19, .08);
}

.header-search > :is(i, svg) {
  margin: 0 10px 0 13px;
  color: #8a9095;
}

.header-search input {
  min-width: 0;
  height: 36px;
  flex: 1;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.header-search input::placeholder {
  color: #a0a5a9;
}

.header-search button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 0;
}

.header-search button:hover {
  background: var(--brand-dark);
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: 60px;
  padding: 0;
  background: var(--brand);
  border: 0;
  border-bottom: 3px solid var(--brand-dark);
}

.main-nav .navbar-nav {
  gap: 2px;
}

.nav-link-row {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.main-nav .nav-link {
  position: relative;
  flex: 1 1 auto;
  padding: 16px 25px !important;
  color: #fff;
  font-size: 16px;
  font-weight: bold !important;
}

.nav-parent-toggle {
  display: none;
  width: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-parent-toggle :is(i, svg) {
  width: 18px;
  height: 18px;
  color: #fff;
  transition: transform .2s ease;
}

.main-nav .nav-item.has-mega > .nav-link-row .nav-parent-toggle {
  display: inline-flex;
}

.main-nav .nav-item.is-expanded > .submenu-menu {
  display: block;
}

.main-nav .nav-item.is-expanded > .nav-link-row .nav-parent-toggle :is(i, svg) {
  transform: rotate(180deg);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #fff;
  background: var(--brand-dark);
}

.dropdown-menu {
  margin-top: 0 !important;
  padding: 0 0 8px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 14px 32px rgba(17, 20, 23, .13);
  font-size: 14px;
}

.submenu-menu {
  width: 310px;
  overflow: hidden;
}

.submenu-header {
  padding: 17px 21px 14px;
  background: #f5f6f7;
  border-top: 4px solid var(--brand);
  border-bottom: 1px solid #e1e4e6;
}

.submenu-header small,
.submenu-header strong {
  display: block;
}

.submenu-header small {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.submenu-header strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.submenu-menu .dropdown-item {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  color: #464c51;
  border-bottom: 1px solid #eceeef;
}

.submenu-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.submenu-menu .dropdown-item :is(i, svg) {
  color: #adb2b6;
  font-size: 12px;
  transition: transform .2s ease, color .2s ease;
}

.submenu-menu .dropdown-item:hover,
.submenu-menu .dropdown-item:focus {
  color: var(--brand);
  background: #fff5f6;
}

.submenu-menu .dropdown-item:hover i,
.submenu-menu .dropdown-item:focus :is(i, svg) {
  color: var(--brand);
  transform: translateX(3px);
}

@media (min-width: 1200px) {
  .main-nav .navbar-nav {
    flex: 6 1 0;
  }

  .main-nav .nav-item {
    flex: 1 1 0;
    text-align: center;
  }

  .main-nav .nav-tools {
    flex: 1 1 0;
    margin-left: 2px !important;
  }

  .main-nav .join-link {
    width: 100%;
    justify-content: center;
  }

  .main-nav .nav-link-row:hover,
  .main-nav .nav-link-row:has(.nav-link.active) {
    background: var(--brand-dark);
  }

  .main-nav .nav-link-row:hover .nav-link,
  .main-nav .nav-link-row:has(.nav-link.active) .nav-link {
    background: transparent;
  }

  .main-nav .nav-item.dropdown:hover > .dropdown-menu,
  .main-nav .nav-item.dropdown:focus-within > .dropdown-menu,
  .main-nav .nav-item.has-mega:hover > .dropdown-menu,
  .main-nav .nav-item.has-mega:focus-within > .dropdown-menu {
    display: block;
  }

  .main-nav .nav-item.has-mega > .submenu-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }

  .main-nav .nav-item.has-mega:hover > .submenu-menu,
  .main-nav .nav-item.has-mega:focus-within > .submenu-menu,
  .main-nav .nav-item.has-mega.is-expanded > .submenu-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav .nav-item.has-mega:hover > .nav-link-row .nav-parent-toggle :is(i, svg),
  .main-nav .nav-item.has-mega:focus-within > .nav-link-row .nav-parent-toggle :is(i, svg) {
    transform: rotate(180deg);
  }
}

@media (min-width: 1200px) and (prefers-reduced-motion: reduce) {
  .main-nav .nav-item.has-mega > .submenu-menu {
    transition: none;
  }
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 17px;
}

.join-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: var(--brand);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}

.join-link:hover {
  color: var(--brand-dark);
  background: #fff2f3;
}

.campaign-banner {
  padding: 0;
}

.campaign-banner > .container {
  width: 100%;
}

.campaign-carousel {
  overflow: hidden;
  background: #8f0010;
}

.campaign-carousel > .swiper {
  overflow: hidden;
  background: #8f0010;
}

.campaign-carousel .swiper-slide {
  position: relative;
  height: clamp(380px, 34vw, 500px);
  overflow: hidden;
}

.campaign-carousel .swiper-slide > a {
  display: block;
  position: relative;
  height: 100%;
  color: inherit;
}

.campaign-carousel .swiper-slide .campaign-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes campaignTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.campaign-carousel .swiper-initialized .swiper-slide:not(.swiper-slide-active) .campaign-copy > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.campaign-carousel .swiper-initialized .swiper-slide-active .campaign-copy > * {
  animation: campaignTextIn .72s cubic-bezier(.22, .61, .36, 1) both;
}

.campaign-carousel .swiper-initialized .swiper-slide-active .campaign-copy > span {
  animation-delay: .08s;
}

.campaign-carousel .swiper-initialized .swiper-slide-active .campaign-copy > :is(h1, h2) {
  animation-delay: .16s;
}

.campaign-carousel .swiper-initialized .swiper-slide-active .campaign-copy > :is(.campaign-slogan, .campaign-description) {
  animation-delay: .28s;
}

.campaign-carousel .swiper-initialized .swiper-slide-active .campaign-copy > :is(.campaign-cta, a) {
  animation-delay: .4s;
}

.campaign-carousel .swiper-button-prev,
.campaign-carousel .swiper-button-next {
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  color: #fff;
  background: rgba(91, 0, 8, .48);
  border: 1px solid rgba(255, 255, 255, .28);
}

.campaign-carousel .swiper-button-prev {
  left: 18px;
}

.campaign-carousel .swiper-button-next {
  right: 18px;
}

.campaign-carousel .swiper-button-prev:hover,
.campaign-carousel .swiper-button-next:hover {
  background: var(--brand);
}

.campaign-carousel .swiper-button-prev::after,
.campaign-carousel .swiper-button-next::after {
  font-size: 20px;
}

.campaign-carousel .swiper-pagination {
  z-index: 4;
  bottom: 16px;
}

.campaign-carousel .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  margin: 0 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, .54);
  opacity: 1;
}

.campaign-carousel .swiper-pagination-bullet-active {
  background: #f1cf8a;
}

.campaign-carousel .carousel-item {
  position: relative;
  height: clamp(380px, 34vw, 500px);
  overflow: hidden;
}

.campaign-carousel .carousel-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(220, 20, 38, .38) 0%, rgba(198, 12, 30, .24) 38%, rgba(170, 4, 20, .03) 68%);
}

.campaign-copy {
  position: absolute;
  top: 50%;
  left: max(32px, calc((100% - var(--container)) / 2));
  z-index: 2;
  width: min(560px, 48%);
  color: #fff;
  transform: translateY(-50%);
}

.campaign-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #f1cf8a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
}

.campaign-copy > span::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.campaign-copy h1,
.campaign-copy h2 {
  margin: 0;
  color: #ffe6a8;
  /* font-family: "Noto Serif SC", "Songti SC", SimSun, serif; */
  font-size: clamp(35px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .05em;
  text-shadow: 0 2px 10px rgba(52, 0, 4, .3);
}

.campaign-slogan {
  margin: 8px 0 0;
  color: #fff4d7;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  letter-spacing: .06em;
}

.campaign-description {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.campaign-copy > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  color: #71110f;
  background: linear-gradient(135deg, #fff0b8 0%, #d9a43e 52%, #f4d278 100%);
  font-size: 13px;
  font-weight: 700;
}

.campaign-copy > a:hover {
  color: #5b0808;
  background: linear-gradient(135deg, #fff5cf 0%, #e5b653 52%, #ffe49a 100%);
}

.campaign-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 0 18px;
  color: #71110f;
  background: linear-gradient(135deg, #fff0b8 0%, #d9a43e 52%, #f4d278 100%);
  font-size: 13px;
  font-weight: 700;
}

.campaign-cta :is(i, svg) {
  width: 16px;
  height: 16px;
}

.campaign-cta:hover {
  color: #5b0808;
  background: linear-gradient(135deg, #fff5cf 0%, #e5b653 52%, #ffe49a 100%);
}

.campaign-carousel .carousel-control-prev,
.campaign-carousel .carousel-control-next {
  top: 50%;
  bottom: auto;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(91, 0, 8, .48);
  border: 1px solid rgba(255, 255, 255, .28);
  opacity: 1;
  transform: translateY(-50%);
}

.campaign-carousel .carousel-control-prev {
  left: 18px;
}

.campaign-carousel .carousel-control-next {
  right: 18px;
}

.campaign-carousel .carousel-control-prev:hover,
.campaign-carousel .carousel-control-next:hover {
  background: var(--brand);
}

.campaign-carousel .carousel-indicators {
  z-index: 4;
  gap: 8px;
  margin-bottom: 16px;
}

.campaign-carousel .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  margin: 0;
  background: rgba(255, 255, 255, .54);
  border: 0;
  opacity: 1;
}

.campaign-carousel .carousel-indicators .active {
  background: #f1cf8a;
}

.chairman-profile {
  padding: 34px 0;
  background: #fff;
}

.chairman-layout {
  display: grid;
  grid-template-columns: minmax(340px, 410px) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: stretch;
}

.chairman-portrait {
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #e7e2da;
}

.chairman-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.chairman-content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 0 0;
  border-top: 3px solid var(--brand);
}

.chairman-heading {
  padding-right: 0;
}

.chairman-heading > span,
.chairman-company-heading span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.chairman-heading > span {
  margin-bottom: 8px;
}

.chairman-heading h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.chairman-heading p {
  margin: 0;
  color: #6e7479;
  font-size: 14px;
}

.chairman-intro {
  max-width: 760px;
  margin: 27px 0 0;
  color: #656c72;
  font-size: 14px;
  line-height: 1.9;
}

.chairman-company {
  padding: 0 190px 26px 0;
  border-bottom: 1px solid var(--line);
}

.chairman-person {
  margin-top: auto;
  padding: 24px 28px;
  background: #f5f5f3;
}

.chairman-link-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
}

.chairman-link-button:hover {
  color: var(--brand-dark);
}

.chairman-link-button :is(i, svg) {
  width: 14px;
  height: 14px;
}

.chairman-company-mark {
  position: absolute;
  top: 20px;
  right: 0;
}

.chairman-company-mark img {
  width: 145px;
  max-height: 88px;
  object-fit: contain;
}

.chairman-company-heading h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
}

.chairman-company-copy {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.85;
}

.information-center {
  padding-bottom: 24px;

}

.information-heading {
  align-items: flex-end;
}

.information-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.information-actions > a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #646b71;
  font-size: 13px;
}

.information-actions > a:hover,
.information-actions > a :is(i, svg) {
  color: var(--brand);
}

.information-navigation {
  display: flex;
  gap: 6px;
}

.information-navigation button {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  color: #62686d;
  background: #f2f3f3;
  border: 0;
}

.information-navigation button:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.information-navigation .swiper-button-disabled {
  color: #b2b6b9;
  background: #f6f7f7;
  cursor: default;
}

.information-swiper {
  padding-bottom: 28px;
}

.information-card {
  position: relative;
  height: auto;
  background: #f6f6f5;
}

.information-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--brand);
  content: "";
  transition: width .3s ease;
}

.information-card:hover::before {
  width: 100%;
}

.information-card > a {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 31px 32px 28px;
}

.information-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  letter-spacing: .03em;
}

.information-card-meta span {
  color: var(--brand);
  font-weight: 700;
}

.information-card-meta time {
  color: #90969b;
}

.information-card h3 {
  margin: 44px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .01em;
}

.information-card > a > :is(i, svg) {
  width: 24px;
  height: 24px;
  margin-top: auto;
  color: #a1a6aa;
}

.information-card:hover h3,
.information-card:hover > a > :is(i, svg) {
  color: var(--brand);
}

.information-swiper .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 1;
}

.information-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 5px;
  background: #c7cbce;
  opacity: 1;
}

.information-swiper .swiper-pagination-bullet-active {
  background: var(--brand);
}

.section {
  padding: 34px 0;
}

.section.information-center {
  padding-bottom: 12px;
}

.section.chairman-profile {
  padding-top: 12px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: .02em;
}

.section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #646b71;
  font-size: 13px;
}

.section-heading > a :is(i, svg) {
  color: var(--brand);
}

.section-heading > a:hover {
  color: var(--brand);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.lead-news {
  display: grid;
  grid-template-rows: 338px auto;
  background: var(--brand);
}

.lead-news-image {
  overflow: hidden;
}

.lead-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.lead-news:hover .lead-news-image img {
  transform: scale(1.025);
}

.lead-news-copy {
  position: relative;
  min-height: 241px;
  padding: 30px 36px 31px;
  color: #fff;
}

.lead-news-copy h3 {
  max-width: 690px;
  margin: 0 0 13px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
}

.lead-news-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.read-more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 0 20px;
  color: var(--brand);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.read-more:hover {
  color: var(--brand-dark);
  background: #fff2f3;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.member-service-card {
  position: relative;
  display: flex;
  min-height: 278px;
  align-items: flex-start;
  overflow: hidden;
  flex-direction: column;
  padding: 30px;
  color: inherit;
  background: var(--soft);
}

.member-service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--brand);
  content: "";
  transition: width .25s ease;
}

.member-service-card:hover,
.member-service-card:focus-visible {
  color: inherit;
}

.member-service-card:hover::before,
.member-service-card:focus-visible::before {
  width: 100%;
}

.member-service-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.news-cards h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.45;
}

.member-service-card:hover h3,
.member-service-card:focus-visible h3 {
  color: var(--brand);
}

.member-service-card p {
  max-width: 240px;
  margin: 11px 0 auto;
  color: #7b838a;
  font-size: 14px;
  line-height: 1.7;
}

.service-card-icon {
  width: 38px !important;
  height: 38px !important;
  order: -1;
  margin: 0 0 26px;
  color: var(--brand);
}

.service-card-arrow {
  width: 19px !important;
  height: 19px !important;
  margin-top: 22px;
  color: #a0a6ab;
  transition: color .2s ease, transform .2s ease;
}

.member-service-card:hover .service-card-arrow,
.member-service-card:focus-visible .service-card-arrow {
  color: var(--brand);
  transform: translateX(5px);
}

.membership-promo {
  background: #fff;
}

.membership-promo-banner {
  position: relative;
  display: flex;
  min-height: 200px;
  align-items: center;
  overflow: hidden;
  padding: 30px 52px;
  background: #faf8f3 url("join.png") center / cover no-repeat;
}

.membership-promo-banner::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 245, 246, .98) 0%, rgba(244, 245, 246, .9) 44%, rgba(244, 245, 246, 0) 72%);
  content: "";
}

.membership-promo-copy {
  position: relative;
  z-index: 1;
  max-width: 450px;
}

.membership-promo-copy h2 {
  margin: 0 0 3px;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

.membership-promo-copy p {
  margin: 0 0 19px;
  color: #737a80;
  font-size: 14px;
}

.membership-promo-copy > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.membership-promo-copy > a:hover {
  color: #fff;
  background: var(--brand-dark);
}

.activity-market {
  background: #fff;
}

.activity-market .row > div {
  display: flex;
  flex-direction: column;
}

.event-list {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(145px, 1fr));
  border-top: 1px solid var(--line);
}

.event-list > a {
  display: grid;
  min-height: 145px;
  grid-template-columns: 90px minmax(0, 1fr) 38px;
  gap: 27px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.event-list > a:hover h3,
.event-list > a:hover > :is(i, svg) {
  color: var(--brand);
}

.event-list time {
  display: grid;
  height: 90px;
  place-content: center;
  color: #fff;
  background: var(--brand);
  text-align: center;
}

.event-list time strong,
.event-list time span {
  display: block;
}

.event-list time strong {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.event-list time span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .7);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 10px;
}

.event-list small {
  color: var(--brand);
  font-size: 11px;
}

.event-list h3 {
  margin: 5px 0 5px;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.event-list p {
  margin: 0;
  color: #858b90;
  font-size: 12px;
}

.event-list > a > :is(i, svg) {
  color: #9ca1a5;
  font-size: 20px;
}

.market-board {
  flex: 1;
  min-height: 0;
  padding: 31px 35px;
  background: var(--soft);
  border-top: 4px solid var(--brand);
}

.market-board header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 19px;
  padding-bottom: 17px;
  border-bottom: 1px solid #cfd3d6;
}

.market-board header h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.market-board header > a {
  padding-bottom: 4px;
  color: var(--brand);
  font-size: 11px;
}

.market-list a {
  display: grid;
  min-height: 65px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid #d5d8da;
}

.market-list a:hover span {
  color: var(--brand);
}

.market-list span {
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-list time {
  color: #999ea2;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 10px;
}

.market-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 23px;
  color: #6c7379;
  font-size: 12px;
}

.market-more:hover {
  color: var(--brand);
}

.about-band {
  overflow: hidden;
  color: #fff;
  background: var(--brand);
}

.about-layout {
  position: relative;
  display: grid;
  min-height: 322px;
  grid-template-columns: .8fr 1.5fr;
  gap: 85px;
  align-items: center;
  padding: 56px 120px 56px 0;
}

.about-title h2 {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy p {
  margin: 0 0 27px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 2;
}

.about-copy > div {
  display: flex;
  gap: 30px;
}

.about-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-size: 12px;
}

.about-copy a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.about-mark {
  position: absolute;
  right: -30px;
  bottom: -43px;
  color: rgba(255, 255, 255, .09);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 154px;
  font-weight: 900;
  line-height: .68;
  letter-spacing: -.08em;
}



.member-swiper {
  overflow: hidden;
  padding-bottom: 32px;
}

.member-logo-card {
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.member-logo-card:hover,
.member-logo-card:focus-visible {
  background: #fff8f8;
  box-shadow: inset 0 3px 0 var(--brand);
}

.member-logo-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.member-logo-card img {
  width: 100%;
  max-width: 190px;
  max-height: 102px;
  object-fit: contain;
}

.member-swiper .swiper-pagination {
  bottom: 0;
}

.member-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 4px !important;
  background: #b9bec2;
  opacity: 1;
}

.member-swiper .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 6px;
  background: var(--brand);
}

.join-panel {
  display: grid;
  min-height: 162px;
  grid-template-columns: 1.35fr .9fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
  padding: 33px 40px;
  color: var(--ink);
  background: #fff1f2 url("join-panel-background.png") center / cover no-repeat;
  border: 0;
}

.join-panel h3 {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.join-panel > p {
  margin: 0;
  color: #777e84;
  font-size: 13px;
}

.join-panel > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.join-panel > a:hover {
  color: #fff;
  background: var(--brand-dark);
}

.footer-main {
  padding: 64px 0 55px;
  color: #767d83;
  background: #fff;
  border-top: 1px solid #e2e4e6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr .75fr 1.25fr;
  gap: 70px;
}

.footer-brand .brand {
  margin-bottom: 21px;
}

.footer-brand .brand img {
  width: 55px;
  height: 55px;
}

.footer-brand .brand-copy strong {
  font-size: 19px;
}

.footer-brand .brand-copy small {
  max-width: 295px;
}

.footer-brand > p {
  margin: 0 0 20px;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: #6e757b;
  border: 1px solid #d2d5d7;
}

.social-links a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.footer-grid h3 {
  margin: 7px 0 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.footer-links > a {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.footer-links > a:hover {
  color: var(--brand);
}

.footer-contact > p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0 0 14px;
  font-size: 13px;
}

.footer-contact > p > :is(i, svg) {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--brand);
}

.footer-contact b,
.footer-contact small {
  display: block;
}

.footer-contact b {
  color: #555c62;
  font-weight: 600;
}

.footer-contact small {
  color: #999ea2;
  font-size: 11px;
}

.footer-bottom {
  color: #8a9095;
  background: #eeeff0;
  font-size: 11px;
}

.footer-bottom .container {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a + a {
  margin-left: 23px;
}

.footer-bottom a:hover {
  color: var(--brand);
}

.floating-tools {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: grid;
  gap: 8px;
}

.floating-tool {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: #4b6b80;
  background: rgba(255, 255, 255, .96);
  border: 0;
  box-shadow: 0 5px 16px rgba(29, 54, 73, .15);
  font-size: 19px;
}

.floating-tool:hover,
.floating-tool:focus-visible {
  color: #fff;
  background: var(--brand);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* 单页栏目 */
.page-hero {
  position: relative;
  min-height: 280px;
  color: #fff;
  background: #a8000e url("chamber-campaign-banner-v1.webp") center / cover no-repeat;
}

.chamber-overview-page-hero {
  background-color: #640009;
  background-image: url("hero-chamber-overview-v1.png");
  background-position: center center;
}

.member-services-page-hero {
  background-color: #640009;
  background-image: url("hero-member-services-v1.png");
  background-position: center center;
}

.news-page-hero[data-channel="活动中心"] {
  background-color: #640009;
  background-image: url("hero-activities-v1.png");
  background-position: center center;
}

.news-page-hero[data-channel="资讯中心"] {
  background-color: #640009;
  background-image: url("hero-news-center-v1.png");
  background-position: center center;
}

.page-hero[data-channel="联系我们"] {
  background-color: #640009;
  background-image: url("hero-contact-v1.png");
  background-position: center center;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 0, 18, .82) 0%, rgba(239, 8, 28, .52) 42%, rgba(242, 24, 43, .16) 64%, rgba(242, 24, 43, 0) 70%);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 280px;
  align-items: center;
}

.page-hero-copy {
  padding-bottom: 4px;
}

@keyframes pageHeroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.page-hero-copy > * {
  animation: pageHeroTextIn .68s cubic-bezier(.22, .61, .36, 1) both;
}

.page-hero-copy > p {
  animation-delay: .14s;
}

.page-hero h1 {
  margin: 0;
  color: #fff4d4;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .06em;
}

.page-hero p {

  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  letter-spacing: .08em;
}

@media (prefers-reduced-motion: reduce) {
  .campaign-carousel .swiper-initialized .swiper-slide:not(.swiper-slide-active) .campaign-copy > *,
  .campaign-carousel .swiper-initialized .swiper-slide-active .campaign-copy > *,
  .page-hero-copy > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.inner-main {
  background-position: center -120px;
}

.breadcrumb-bar {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}

.breadcrumb-bar .container {
  display: flex;
  min-height: 56px;
  align-items: center;
}

.breadcrumb {
  color: #858b90;
  font-size: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #b7bbbe;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.single-page-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(50px, 6vw, 92px);
  align-items: start;
  padding-top: 62px;
  padding-bottom: 86px;
}

.section-sidebar {
  position: sticky;
  top: 88px;
}

.section-sidebar:has(nav:empty) {
  display: none;
}

.single-page-layout:has(.section-sidebar nav:empty) {
  grid-template-columns: minmax(0, 1fr);
}

.section-sidebar h2 {
  margin: 0;
  padding: 0 0 20px;
  color: var(--ink);
  border-bottom: 3px solid var(--brand);
  font-size: 24px;
  font-weight: 700;
}

.section-sidebar nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px 0 4px;
  color: #5d646a;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.section-sidebar nav a :is(i, svg) {
  width: 16px;
  height: 16px;
  color: #a8adb1;
}

.section-sidebar nav a:hover,
.section-sidebar nav a.active {
  color: var(--brand);
}

.section-sidebar nav a.active {
  font-weight: 700;
  scroll-margin-top: 110px;
}

.section-sidebar nav a.active::after {
  display: none;
}

.section-sidebar nav a.active :is(i, svg) {
  color: var(--brand);
}

.section-sidebar nav a.active span{
  font-weight: bold;
}

.single-page-content {
  min-width: 0;
}

.article-heading {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.article-heading p {
  margin: 0 0 7px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.article-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .02em;
}

.inquiry-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr);
  gap: 34px;
  align-items: start;
  padding: 28px 0 8px;
  color: #687077;
  font-size: 14px;
  line-height: 1.9;
}

.inquiry-intro p {
  margin: 0 0 12px;
}

.inquiry-intro p:last-child {
  margin-bottom: 0;
}

.inquiry-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inquiry-points li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px;
  background: #f6f7f7;
}

.inquiry-points li > :is(i, svg) {
  width: 20px;
  height: 20px;
  color: var(--brand);
}

.inquiry-points strong,
.inquiry-points small {
  display: block;
}

.inquiry-points strong {
  color: var(--ink);
  font-size: 13px;
}

.inquiry-points small {
  margin-top: 2px;
  color: #858b90;
  font-size: 11px;
  line-height: 1.5;
}

.page-editor-content {
  padding-top: 30px;
  color: #51585e;
  font-size: 16px;
  line-height: 2;
}

.page-editor-content > :first-child {
  margin-top: 0;
}

.page-editor-content > :last-child {
  margin-bottom: 0;
}

.page-editor-content :is(h2, h3, h4) {
  margin: 38px 0 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.page-editor-content h2 {
  font-size: 26px;
}

.page-editor-content h3 {
  padding-left: 15px;
  border-left: 4px solid var(--brand);
  font-size: 22px;
}

.page-editor-content h4 {
  font-size: 18px;
}

.page-editor-content :is(p, ul, ol, blockquote, table, figure) {
  margin-top: 0;
  margin-bottom: 18px;
}

.page-editor-content :is(ul, ol) {
  padding-left: 1.5em;
}

.page-editor-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-editor-content img {
  max-width: 100%;
  height: auto;
}

.page-editor-content blockquote {
  padding: 24px 30px;
  color: var(--ink);
  background: #f5f5f3;
  border-left: 4px solid var(--brand);
}

.page-editor-content table {
  width: 100%;
  border-collapse: collapse;
}

.page-editor-content :is(th, td) {
  padding: 12px 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.page-editor-content th {
  color: var(--ink);
  background: #f5f5f3;
}

.article-lead {
  margin: 31px 0;
  color: #34393e;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.article-feature-image {
  height: clamp(280px, 35vw, 470px);
  margin: 0 0 45px;
  overflow: hidden;
}

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

.article-section + .article-section {
  margin-top: 42px;
}

.article-section > h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.article-section > p {
  margin: 0 0 14px;
  color: #51585e;
  font-size: 16px;
  line-height: 2;
}

.article-section blockquote {
  margin: 0;
  padding: 28px 35px;
  color: var(--ink);
  background: #f5f5f3;
  border-left: 4px solid var(--brand);
}

.article-section blockquote p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-list > div {
  min-height: 190px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.focus-list :is(i, svg) {
  width: 31px;
  height: 31px;
  margin-bottom: 18px;
  color: var(--brand);
}

.focus-list h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.focus-list p {
  margin: 0;
  color: #737a80;
  font-size: 14px;
  line-height: 1.8;
}

.organization-people-list > .organization-person-card {
  min-height: 0;
  padding: 0 0 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.organization-people-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  border: 0;
}

.organization-person-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f1f3f4;
}

.organization-person-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.organization-person-card h4 {
  margin: 18px 24px 4px;
  font-size: 18px;
}

.organization-person-card p {
  margin: 0 24px;
}

@media (max-width: 991.98px) {
  .organization-people-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-cta {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
  padding: 32px 38px;
  background: #f8f1f1 url("join-panel-background.png") center / cover no-repeat;
}

.article-cta h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
}

.article-cta p {
  margin: 0;
  color: #737a80;
  font-size: 13px;
}

.article-cta > a {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  gap: 17px;
  padding: 0 20px;
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.article-cta > a:hover {
  color: #fff;
  background: var(--brand-dark);
}

.page-action {
  margin-top: 40px;
  text-align: center;
}

.page-action-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 24px;
  color: #fff !important;
  background: var(--brand);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}

.page-action-link:hover {
  color: #fff !important;
  background: var(--brand-dark);
}

.form-intro {
  margin: 26px 0 30px;
  padding: 22px 26px;
  color: #5d646a;
  background: #f8f1f1;
  border-left: 4px solid var(--brand);
  font-size: 14px;
  line-height: 1.9;
}

.form-intro p {
  margin: 0;
}

.form-intro p + p {
  margin-top: 7px;
}

.form-intro a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cms-form {
  margin-top: 30px;
}

.cms-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0 24px;
}

.cms-form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.cms-form-field-wide {
  grid-column: 1 / -1;
}

.cms-form-field > span {
  display: block;
  line-height: 1.5;
}

.cms-form-field > span font {
  margin-left: 3px;
  color: var(--brand) !important;
}

.cms-form-field input,
.cms-form-field select,
.cms-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe2e4;
  border-radius: 0;
  font: inherit;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.cms-form-field input,
.cms-form-field select {
  min-height: 48px;
}

.cms-form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.cms-form-field input:focus,
.cms-form-field select:focus,
.cms-form-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(218, 0, 20, .1);
  outline: 0;
}

.cms-form-field small {
  display: block;
  margin-top: -2px;
  color: #7b8288;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.cms-form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.cms-form-actions {
  display: flex;
  gap: 12px;
}

.cms-form-submit,
.cms-form-reset {
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cms-form-submit {
  color: #fff;
  background: var(--brand);
}

.cms-form-submit:hover {
  background: var(--brand-dark);
}

.cms-form-reset {
  color: var(--ink);
  background: #eef0f1;
}

.cms-form-reset:hover {
  background: #e2e5e7;
}

@media (max-width: 767.98px) {
  .cms-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cms-form-field-wide {
    grid-column: auto;
  }

  .cms-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .cms-form-actions {
    justify-content: flex-end;
  }
}

.submenu-menu .dropdown-item.active {
  color: var(--brand);
  background: #fff5f5;
}

/* 资讯列表 */
.news-page-hero {
  background-color: #163249;
  background-image: url("hero-trade-corridor.webp");
  background-position: center 48%;
}

.news-page-hero::after {
  background: linear-gradient(90deg, rgba(232, 0, 18, .82) 0%, rgba(239, 8, 28, .52) 42%, rgba(242, 24, 43, .16) 64%, rgba(242, 24, 43, 0) 70%);
}

.news-list-page {
  padding-top: 48px;
  padding-bottom: 86px;
}

.search-page {
  padding-top: 58px;
  padding-bottom: 88px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 70px;
  padding: 34px 38px;
  border-top: 4px solid var(--brand);
  background: #f3f4f4;
}

.search-eyebrow {
  margin: 0 0 9px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.search-panel-copy h2,
.search-results-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
}

.search-panel-copy h2 {
  font-size: 28px;
}

.search-panel-copy > p:last-child {
  margin: 11px 0 0;
  color: #777e84;
  font-size: 13px;
  line-height: 1.8;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px 94px;
  min-height: 52px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
}

.search-page-input {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
}

.search-page-input > svg {
  width: 17px;
  color: #8b9297;
  flex: 0 0 auto;
}

.search-page-input input {
  min-width: 0;
  height: 50px;
  flex: 1 1 auto;
  padding: 0 12px 0 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.search-page-input input::placeholder {
  color: #a1a7ab;
}

.search-page-scope {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-left: 1px solid var(--line);
  color: #8b9297;
  font-size: 11px;
  white-space: nowrap;
}

.search-page-scope select {
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
}

.search-page-submit {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.search-page-submit:hover {
  background: var(--brand-dark);
}

.search-page-submit svg {
  width: 15px;
}

.search-results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--brand);
}

.search-results-heading h2 {
  font-size: 30px;
}

.search-result-count {
  margin: 0 0 3px;
  color: #8a9095;
  font-size: 13px;
}

.search-result-item {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

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

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #92979b;
  font-size: 12px;
}

.search-result-meta span {
  color: var(--brand);
  font-weight: 700;
}

.search-result-copy h3 {
  margin: 9px 0 9px;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.search-result-copy h3 a:hover {
  color: var(--brand);
}

.search-result-copy > p {
  display: -webkit-box;
  max-width: 900px;
  margin: 0;
  overflow: hidden;
  color: #777e84;
  font-size: 13px;
  line-height: 1.85;
  white-space: pre-line;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.search-result-copy font {
  color: var(--brand) !important;
}

.search-result-link {
  display: inline-flex;
  min-width: 108px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  padding: 0 12px;
  color: #7a8389;
  border-left: 1px solid var(--line);
  font-size: 12px;
  white-space: nowrap;
}

.search-result-link svg {
  width: 16px;
}

.search-result-link:hover {
  color: var(--brand);
}

.search-empty-state {
  margin: 0;
  padding: 58px 0;
  color: #8a9095;
  font-size: 15px;
  text-align: center;
}

.search-pagination {
  margin-top: 44px;
  text-align: center;
}

.search-pagination table {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 6px 0;
}

.search-pagination td {
  width: 40px;
  height: 40px;
  padding: 0;
  color: #626970;
  background: #f2f3f3;
  font-size: 13px;
  text-align: center;
}

.search-pagination td[width="3"] {
  width: 6px;
  background: transparent;
}

.search-pagination td.pagesnow {
  color: #fff;
  background: var(--brand);
}

.search-pagination td.pages a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: inherit;
}

.search-pagination td.pages a:hover {
  color: #fff;
  background: var(--brand);
}

.search-pagination td img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.search-pagination:empty {
  display: none;
}

.news-category-tabs {
  display: flex;
  min-height: 58px;
  align-items: stretch;
  margin-bottom: 42px;
  overflow-x: auto;
  background: #f2f3f3;
  scrollbar-width: none;
  scroll-margin-top: 76px;
}

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

.news-category-tabs a {
  position: relative;
  display: inline-flex;
  min-width: 128px;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #5f666c;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.news-category-tabs a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

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

.news-category-tabs a.active::after {
  background: var(--brand);
}

.news-category-select-wrap {
  display: none;
}

.news-category-select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #42494f;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f2f3f3;
  font: inherit;
}

.activity-secondary-nav {
  margin: -12px 0 42px;
  scroll-margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.activity-secondary-heading {
  padding: 18px 0 10px;
}

.activity-secondary-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.activity-secondary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 0 0 18px;
}

.activity-secondary-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #697278;
  font-size: 14px;
}

.activity-secondary-list a:hover,
.activity-secondary-list a.active {
  color: var(--brand);
}

.activity-secondary-list a :is(i, svg) {
  width: 14px;
  height: 14px;
}

.news-query-panel {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 46px;
}

.news-search-form {
  display: flex;
  width: min(100%, 520px);
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.news-search-form > svg {
  width: 17px;
  margin-left: 16px;
  color: #8b9297;
  flex: 0 0 auto;
}

.news-search-form input {
  min-width: 0;
  flex: 1 1 auto;
  height: 46px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.news-search-form input::placeholder {
  color: #a1a7ab;
}

.news-search-form button {
  display: inline-flex;
  min-width: 94px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.news-search-form button:hover {
  background: var(--brand-dark);
}

.news-search-form button svg {
  width: 15px;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  min-height: 440px;
  margin-bottom: 64px;
  background: #f3f3f1;
}

.news-featured-slot:not(:has(.news-featured)) {
  display: none;
}

.news-featured-image {
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.news-featured:hover .news-featured-image img {
  transform: scale(1.02);
}

.news-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 48px;
  border-top: 4px solid var(--brand);
}

.news-featured h2,
.news-list-heading h2,
.news-list-copy h3,
.news-article-header h2,
.news-article-body h3,
.related-news-list h3 {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #92979b;
  font-size: 12px;
}

.news-item-meta span {
  color: var(--brand);
  font-weight: 700;
}

.news-featured-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 12px;
  padding: 5px 10px;
  color: var(--brand);
  border: 1px solid rgba(230, 0, 19, .25);
  background: #fff5f5;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.news-featured h2 {
  margin: 22px 0 15px;
  color: var(--ink);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.5;
}

.news-featured h2 a:hover {
  color: var(--brand);
}

.news-featured-copy > p {
  margin: 0;
  color: #687077;
  font-size: 14px;
  line-height: 1.9;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 14px;
  margin-top: 28px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.news-read-more:hover {
  color: var(--brand-dark);
}

.news-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--brand);
}

.news-list-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
}

.news-list-heading p {
  margin: 0 0 3px;
  color: #8a9095;
  font-size: 13px;
}

.news-list-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.news-list-more:hover {
  color: var(--brand-dark);
}

.news-empty-state {
  display: none;
  margin: 0;
  padding: 54px 0;
  color: #8a9095;
  font-size: 15px;
  text-align: center;
}

.news-list:not(:has(.news-list-item)) + .news-empty-state {
  display: block;
}

.news-list-item {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  min-height: 220px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.news-list-image {
  min-height: 164px;
  overflow: hidden;
  background: #e9ebec;
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-list-item:hover .news-list-image img {
  transform: scale(1.025);
}

.news-list-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding-right: 62px;
}

.news-list-copy h3 {
  margin: 15px 0 10px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.55;
}

.news-list-copy h3 a:hover {
  color: var(--brand);
}

.news-list-copy > p {
  max-width: 850px;
  margin: 0;
  color: #777e84;
  font-size: 13px;
  line-height: 1.8;
}

.news-item-link {
  position: absolute;
  right: 4px;
  bottom: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #899096;
  background: #f2f3f3;
  transform: translateY(50%);
}

.news-list-item:hover .news-item-link,
.news-item-link:focus-visible {
  color: #fff;
  background: var(--brand);
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 48px;
}

.news-pagination a,
.news-pagination span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #626970;
  background: #f2f3f3;
  font-size: 13px;
}

.news-pagination a:hover,
.news-pagination a.active {
  color: #fff;
  background: var(--brand);
}

.news-pagination a.disabled {
  color: #b8bdc0;
  background: #f6f7f7;
  pointer-events: none;
}

.news-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-pagination .page-item {
  display: block;
}

.news-pagination .page-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #626970;
  background: #f2f3f3;
  font-size: 13px;
}

.news-pagination .page-link:hover,
.news-pagination .page-item.active .page-link {
  color: #fff;
  background: var(--brand);
}

.news-pagination .page-item.disabled .page-link {
  color: #b8bdc0;
  background: #f6f7f7;
  pointer-events: none;
}

.news-pagination .page-link img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.news-pagination:not(:has(.page-item:not(.disabled))) {
  display: none;
}

/* 新闻详情 */
.news-detail-hero,
.news-detail-hero .container {
  min-height: 240px;
}

.news-detail-page {
  padding-top: 58px;
  padding-bottom: 86px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(50px, 5vw, 78px);
  align-items: start;
}

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

.news-article-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.news-article-category {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.news-article-header h2 {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  color: #8c9297;
  font-size: 12px;
}

.news-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.news-article-meta :is(i, svg) {
  width: 15px;
  height: 15px;
  color: #a7acb0;
}

.news-article-summary {
  margin: 30px 0 35px;
  padding: 24px 28px;
  color: #4e555b;
  background: #f4f5f5;
  border-left: 4px solid var(--brand);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
}

.news-article-figure {
  margin: 0 0 38px;
}

.news-article-figure img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.news-article-figure figcaption {
  margin-top: 10px;
  color: #969ba0;
  font-size: 12px;
  text-align: center;
}

.news-article-body {
  max-width: 900px;
  margin: 0 auto;
}

.news-article-body p {
  margin: 0 0 23px;
  color: #3f464c;
  font-size: 17px;
  line-height: 2.05;
  text-align: justify;
}

.news-article-body h3 {
  position: relative;
  margin: 43px 0 22px;
  padding-left: 17px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.news-article-body h3::before {
  position: absolute;
  top: .18em;
  bottom: .18em;
  left: 0;
  width: 4px;
  background: var(--brand);
  content: "";
}

.news-article-body blockquote {
  margin: 35px 0;
  padding: 30px 34px;
  color: var(--ink);
  background: #fff6f6;
  border-top: 1px solid #f0c9cc;
  border-bottom: 1px solid #f0c9cc;
}

.news-article-body blockquote p {
  margin: 0;
  color: #5c262a;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.85;
  text-align: center;
}

.news-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-article-footer p {
  margin: 0;
  color: #999ea2;
  font-size: 12px;
}

.news-article-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6d747a;
  font-size: 12px;
}

.news-article-footer a:hover {
  color: var(--brand);
}

.article-neighbors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.article-neighbors > a,
.article-neighbors > .article-neighbor {
  display: flex;
  min-height: 124px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  background: #f4f5f5;
}

.article-neighbors > a + a,
.article-neighbors > .article-neighbor + .article-neighbor {
  margin-left: 1px;
  text-align: right;
}

.article-neighbors small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 11px;
}

.article-neighbors > a + a small,
.article-neighbors > .article-neighbor + .article-neighbor small {
  justify-content: flex-end;
}

.article-neighbors span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-neighbors .article-neighbor span a {
  color: inherit;
  text-decoration: none;
}

.article-neighbors a:hover span,
.article-neighbors .article-neighbor a:hover {
  color: var(--brand);
}

.news-detail-sidebar {
  position: sticky;
  top: 88px;
}

.detail-side-section + .detail-side-section {
  margin-top: 38px;
}

.detail-side-section > header {
  padding-bottom: 15px;
  border-bottom: 3px solid var(--brand);
}

.detail-side-section > header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.related-news-list > a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.related-news-list h3 {
  display: -webkit-box;
  margin: 0 0 7px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-news-list time {
  color: #a0a5a9;
  font-size: 10px;
}

.related-news-list a:hover h3 {
  color: var(--brand);
}

.detail-category-section nav a {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 2px;
  color: #626970;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.detail-category-section nav a :is(i, svg) {
  width: 15px;
  height: 15px;
  color: #a5aaae;
}

.detail-category-section nav a:hover,
.detail-category-section nav a.active {
  color: var(--brand);
}

.detail-category-section nav a.active {
  padding-left: 12px;
  background: #fff5f5;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .main-nav {
    min-height: 56px;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    color: #fff;
    border: 0;
    font-size: 13px;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    padding: 8px 0 17px;
  }

  .main-nav .nav-link {
    padding: 11px 15px !important;
  }

  

  .nav-link-row {
    align-items: stretch;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link:focus,
  .main-nav .nav-link.active {
    color: #fff;
    background: transparent;
  }

  .main-nav .nav-link.active {
    padding-left: 12px !important;
    border-left: 3px solid #f4d278;
  }

  .main-nav .nav-parent-toggle {
    width: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    cursor: pointer;
  }

  .main-nav .nav-item.has-mega > .nav-link-row .nav-parent-toggle {
    display: inline-flex;
  }

  .main-nav .nav-item.is-expanded > .nav-link-row .nav-parent-toggle :is(i, svg) {
    transform: rotate(180deg);
  }

  .main-nav .navbar-collapse {
    max-height: calc(100dvh - 56px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .submenu-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 0 0 5px !important;
    box-shadow: none;
  }

  .submenu-header {
    padding: 12px 17px 10px;
    border-top-width: 3px;
  }

  .submenu-menu .dropdown-item {
    min-height: 42px;
    padding: 0 17px;
  }

  .nav-tools {
    margin-top: 8px;
    padding-left: 10px;
  }

  .chairman-heading {
    padding-right: 0;
  }

  .chairman-company {
    padding-right: 155px;
  }

  .chairman-company-mark img {
    width: 126px;
  }

  .about-layout {
    padding-right: 40px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 991.98px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .campaign-carousel .carousel-item {
    height: 380px;
  }

  .campaign-carousel .swiper-slide {
    height: 380px;
  }

  .campaign-copy {
    left: 72px;
    width: 62%;
  }

  .chairman-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 32px;
  }

  .chairman-content {
    padding-top: 20px;
  }

  .chairman-heading {
    padding-right: 0;
  }

  .chairman-intro {
    margin-top: 20px;
    font-size: 14px;
  }

  .chairman-company {
    margin-top: 0;
    padding-right: 140px;
  }

  .chairman-company-mark {
    top: 16px;
    right: 0;
  }

  .chairman-company-mark img {
    width: 115px;
  }

  .information-card > a {
    min-height: 280px;
  }

  .information-card h3 {
    font-size: 20px;
  }

  .section {
    padding: 34px 0;
  }

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

  .member-service-card {
    min-height: 230px;
  }

  .market-board {
    min-height: auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 55px 90px 55px 0;
  }

  .join-panel {
    grid-template-columns: 1fr auto;
  }

  .join-panel > p {
    grid-column: 1;
  }

  .join-panel > a {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .single-page-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 42px;
  }

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

  .news-featured-image {
    min-height: 390px;
  }

  .news-featured-copy {
    padding: 38px 40px;
  }

  .news-list-item {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(250px, .8fr);
    gap: 38px;
  }

  .detail-side-section + .detail-side-section {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  body {
    background-image: none;
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .utility-bar {
    display: block;
  }

  .utility-bar .container {
    justify-content: flex-end !important;
  }

  .utility-bar .container > p,
  .utility-actions > .city-link,
  .utility-actions > a {
    display: none;
  }

  .utility-actions {
    gap: 0;
  }

  .language-links {
    padding-left: 0;
    border-left: 0;
  }

  .brand-header {
    padding: 13px 0;
  }

  .brand-header .container {
    flex-wrap: wrap;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 17px;
    letter-spacing: .04em;
  }

  .brand-copy small {
    max-width: 160px;
    font-size: 7px;
    letter-spacing: .07em;
  }

  .header-tools {
    width: 100%;
    gap: 7px;
    margin-top: 10px;
  }

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

  .floating-tools {
    right: 14px;
    bottom: 14px;
  }

  .floating-tool {
    width: 40px;
    height: 40px;
  }

  .campaign-carousel .carousel-item {
    height: 390px;
  }

  .campaign-carousel .carousel-item > img {
    object-position: 66% center;
  }

  .campaign-shade {
    background: linear-gradient(90deg, rgba(220, 20, 38, .48) 0%, rgba(198, 12, 30, .34) 68%, rgba(170, 4, 20, .1) 100%);
  }

  .campaign-copy {
    right: 44px;
    left: 44px;
    width: auto;
  }

  .campaign-copy > span {
    font-size: 11px;
  }

  .campaign-copy h1,
  .campaign-copy h2 {
    font-size: 32px;
  }

  .campaign-slogan {
    font-size: 15px;
  }

  .campaign-description {
    max-width: 310px;
    font-size: 13px;
  }

  .campaign-carousel .carousel-control-prev,
  .campaign-carousel .carousel-control-next {
    width: 34px;
    height: 34px;
  }

  .campaign-carousel .carousel-control-prev {
    left: 7px;
  }

  .campaign-carousel .carousel-control-next {
    right: 7px;
  }

  .campaign-carousel .swiper-button-prev,
  .campaign-carousel .swiper-button-next {
    width: 34px;
    height: 34px;
    margin-top: -17px;
  }

  .campaign-carousel .swiper-button-prev {
    left: 7px;
  }

  .campaign-carousel .swiper-button-next {
    right: 7px;
  }

  .chairman-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chairman-portrait {
    height: auto;
    min-height: 0;
  }

  .chairman-content {
    padding: 20px 0 0;
  }

  .chairman-heading h3 {
    font-size: 22px;
  }

  .chairman-company-heading h3 {
    font-size: 27px;
  }

  .chairman-heading {
    padding-right: 0;
  }

  .chairman-company {
    margin-top: 0;
    padding: 0 105px 20px 0;
  }

  .chairman-person {
    margin-top: 20px;
    padding: 20px;
  }

  .chairman-company-mark {
    top: 16px;
    right: 0;
  }

  .chairman-company-mark img {
    width: 90px;
  }

  .information-heading {
    align-items: flex-end;
  }

  .information-actions {
    gap: 12px;
  }

  .information-actions > a span {
    display: none;
  }

  .information-navigation button {
    width: 39px;
    height: 39px;
  }

  .information-card > a {
    min-height: 255px;
    padding: 27px 25px 24px;
  }

  .information-card h3 {
    margin-top: 40px;
    font-size: 18px;
  }

  .information-card-meta {
    gap: 12px;
  }

  .section {
    padding: 30px 0;
  }

  .section.information-center {
    padding-bottom: 10px;
  }

  .section.chairman-profile {
    padding-top: 10px;
  }

  .section-heading {
    align-items: center;
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .section-heading > a span {
    display: none;
  }

  .lead-news {
    grid-template-rows: 255px auto;
  }

  .lead-news-copy {
    min-height: 225px;
    padding: 25px 24px 61px;
  }

  .lead-news-copy h3 {
    font-size: 21px;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }

  .member-service-card {
    min-height: 210px;
    padding: 25px 23px;
  }

  .news-cards h3 {
    font-size: 18px;
  }

  .membership-promo-banner {
    min-height: 270px;
    padding: 30px 24px;
    background-position: 60% center;
  }

  .membership-promo-banner::before {
    background: linear-gradient(90deg, rgba(244, 245, 246, .98) 0%, rgba(244, 245, 246, .92) 54%, rgba(244, 245, 246, .18) 92%);
  }

  .membership-promo-copy {
    max-width: 280px;
  }

  .membership-promo-copy h2 {
    font-size: 25px;
  }

  .event-list > a {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
  }

  .event-list time {
    width: 70px;
    height: 74px;
  }

  .event-list time strong {
    font-size: 26px;
  }

  .event-list > a > :is(i, svg) {
    display: none;
  }

  .event-list h3 {
    font-size: 18px;
  }

  .event-list p {
    display: none;
  }

  .market-board {
    padding: 27px 21px;
  }

  .market-list a {
    grid-template-columns: minmax(0, 1fr);
  }

  .market-list time {
    display: none;
  }

  .about-layout {
    padding: 48px 0;
  }

  .about-title h2 {
    font-size: 29px;
  }

  .about-copy > div {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .about-mark {
    display: none;
  }

  .member-logo-card {
    height: 128px;
    padding: 14px;
  }

  .join-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

  .join-panel > p,
  .join-panel > a {
    grid-column: auto;
    grid-row: auto;
  }

  .join-panel > a {
    justify-content: space-between;
  }

  .footer-main {
    padding: 46px 0 39px;
  }

  .footer-links,
  .footer-contact {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px 25px;
  }

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

  .footer-bottom .container {
    min-height: 70px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
  }

  .page-hero,
  .page-hero .container {
    min-height: 220px;
  }

  .page-hero {
    background-position: 62% center;
  }

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

  .page-hero p {
    font-size: 14px;
  }

  .breadcrumb-bar .container {
    min-height: 50px;
  }

  .single-page-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .section-sidebar {
    position: static;
  }

  .section-sidebar h2 {
    padding-bottom: 13px;
    font-size: 21px;
  }

  .section-sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-sidebar nav a {
    min-height: 46px;
    padding-right: 8px;
    font-size: 14px;
  }

  .section-sidebar nav a:nth-child(odd) {
    margin-right: 15px;
  }

  .section-sidebar nav a.active {
    padding-left: 0;
  }

  .article-heading h2 {
    font-size: 25px;
  }

  .inquiry-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 22px;
  }

  .inquiry-points {
    gap: 8px;
  }

  .inquiry-points li {
    padding: 11px 9px;
  }

  .article-lead {
    margin: 24px 0;
    font-size: 16px;
    line-height: 1.9;
  }

  .article-feature-image {
    height: 260px;
    margin-bottom: 34px;
  }

  .article-section + .article-section {
    margin-top: 34px;
  }

  .article-section > h3 {
    font-size: 21px;
  }

  .article-section > p {
    font-size: 15px;
    line-height: 1.9;
  }

  .article-section blockquote {
    padding: 23px 24px;
  }

  .article-section blockquote p {
    font-size: 17px;
  }

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

  .focus-list > div {
    min-height: 0;
    padding: 25px 23px;
  }

  .article-cta {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    padding: 27px 24px;
  }

  .news-list-page {
    padding-top: 30px;
    padding-bottom: 56px;
  }

  .search-page {
    padding-top: 30px;
    padding-bottom: 56px;
  }

  .search-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 48px;
    padding: 28px 22px;
  }

  .search-panel-copy h2 {
    font-size: 25px;
  }

  .search-page-form {
    grid-template-columns: 1fr;
  }

  .search-page-input {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .search-page-scope {
    min-height: 50px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .search-page-submit {
    min-height: 50px;
  }

  .search-results-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .search-results-heading h2 {
    font-size: 26px;
  }

  .search-result-item {
    gap: 18px;
    padding: 24px 0;
  }

  .search-result-copy h3 {
    font-size: 19px;
  }

  .search-result-link {
    min-width: 38px;
    padding: 0;
    border-left: 0;
  }

  .search-result-link span {
    display: none;
  }

  .search-pagination {
    margin-top: 36px;
  }

  .search-pagination table {
    border-spacing: 4px 0;
  }

  .search-pagination td,
  .search-pagination td.pages a {
    width: 36px;
    height: 36px;
  }

  .news-category-tabs {
    min-height: 52px;
    margin-right: -14px;
    margin-bottom: 30px;
  }

  .news-category-select-wrap {
    display: none;
    margin-bottom: 30px;
  }

  html.news-category-select-ready .news-category-tabs {
    display: none;
    margin-right: 0;
  }

  html.news-category-select-ready .news-category-select-wrap {
    display: block;
  }

  .activity-secondary-nav {
    margin: -10px 0 30px;
  }

  .activity-secondary-list {
    display: grid;
    gap: 0;
  }

  .activity-secondary-list a {
    min-height: 44px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
  }

  .news-query-panel {
    margin-bottom: 30px;
  }

  .news-search-form {
    width: 100%;
  }

  .news-featured {
    min-height: 0;
    margin-bottom: 45px;
  }

  .news-featured-image {
    min-height: 240px;
  }

  .news-featured-copy {
    padding: 28px 24px 32px;
  }

  .news-featured h2 {
    margin-top: 17px;
    font-size: 24px;
  }

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

  .news-list-heading h2 {
    font-size: 26px;
  }

  .news-list-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 0;
  }

  .news-list-image {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .news-list-copy {
    padding-right: 48px;
  }

  .news-list-copy h3 {
    margin-top: 12px;
    font-size: 20px;
  }

  .news-list-copy > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-item-link {
    right: 0;
    bottom: 0;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .news-pagination {
    margin-top: 36px;
  }

  .news-pagination a,
  .news-pagination span {
    width: 36px;
    height: 36px;
  }

  .news-pagination ul {
    gap: 5px;
  }

  .news-pagination .page-link {
    width: 36px;
    height: 36px;
  }

  .news-detail-hero,
  .news-detail-hero .container {
    min-height: 190px;
  }

  .news-detail-page {
    padding-top: 35px;
    padding-bottom: 56px;
  }

  .news-article-header {
    padding-bottom: 24px;
  }

  .news-article-header h2 {
    font-size: 29px;
    line-height: 1.45;
  }

  .news-article-meta {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }

  .news-article-summary {
    margin: 24px 0 28px;
    padding: 20px 21px;
    font-size: 15px;
  }

  .news-article-figure {
    margin-bottom: 30px;
  }

  .news-article-body p {
    font-size: 16px;
    line-height: 1.95;
    text-align: left;
  }

  .news-article-body h3 {
    margin-top: 35px;
    font-size: 21px;
  }

  .news-article-body blockquote {
    padding: 25px 22px;
  }

  .news-article-body blockquote p {
    font-size: 17px;
    text-align: left;
  }

  .article-neighbors {
    grid-template-columns: 1fr;
  }

  .article-neighbors > a + a,
  .article-neighbors > .article-neighbor + .article-neighbor {
    margin-top: 1px;
    margin-left: 0;
  }

  .news-detail-sidebar {
    grid-template-columns: 1fr;
    gap: 36px;
  }

}

/* 会员名录页面覆盖首页会员卡片的通用样式 */
.member-directory-page .member-logo-card {
  display: block;
  height: auto;
  min-width: 0;
  padding: 0;
  border: 1px solid #e2e5e8;
  background: #fff;
  transition: none;
}

.member-directory-page .member-logo-card:hover {
  border-color: #e2e5e8;
  box-shadow: none;
  transform: none;
}

.member-directory-page .member-logo-card-image img {
  display: block;
  width: 100%;
  max-width: 240px;
  max-height: none;
  height: 120px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .member-directory-page .member-logo-card {
    height: auto;
    padding: 0;
  }
}

.member-directory-page .member-logo-card-image {
  min-height: 0;
  height: 190px;
  padding: 16px 18px;
}

.member-directory-page .member-logo-grid-row {
  align-items: start;
}

.member-directory-page .member-logo-card-copy {
  height: auto;
  min-height: 90px;
  padding: 10px 18px;
  box-sizing: border-box;
}

.member-directory-page .member-logo-card-copy h4 {
  margin-bottom: 4px;
  margin-top: 1rem;
}

.member-directory-page .member-logo-card-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
}

.member-directory-page .member-directory-table-wrap {
  border: 0;
}

.member-directory-page .member-directory-table {
  border: 1px solid #e4e7e9;
}

.member-showcase-grid {
  width: 100%;
}

.member-showcase-grid-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.member-showcase-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.member-showcase-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f2f3f4;
}

.member-showcase-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-showcase-copy {
  padding: 16px 14px 18px;
  text-align: center;
}

.member-showcase-copy h3 {
  margin: 0 0 4px;
  padding: 0 !important;
  color: var(--ink);
  border: 0 !important;
  font-size: 18px;
  line-height: 1.45;
}

.member-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.member-logo-card:has(.member-card-link),
.member-showcase-card:has(.member-card-link) {
  transition: border-color .2s ease;
}

.member-logo-card:has(.member-card-link):hover,
.member-showcase-card:has(.member-card-link):hover {
  border-color: var(--brand);
  box-shadow: none;
  transform: none;
}

.member-directory-page .member-logo-card:has(.member-card-link):hover {
  border-color: var(--brand);
  box-shadow: none;
  transform: none;
}

@media (max-width: 767px) {
  .member-showcase-grid-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
  }

  .member-showcase-copy {
    padding: 13px 10px 15px;
  }

  .member-showcase-copy h3 {
    font-size: 16px;
  }

  .member-showcase-copy p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .member-directory-page .member-logo-card-image {
    height: 130px;
    padding: 10px 14px;
  }

  .member-directory-page .member-logo-card-image img {
    max-width: 210px;
    height: 90px;
  }

  .member-directory-page .member-logo-card-copy {
    min-height: 84px;
    padding: 9px 14px;
  }
}

.member-showcase-detail-page {
  padding-bottom: 84px;
}

.member-showcase-detail-shell {
  padding-top: 48px;
}

.member-showcase-detail-card {
  max-width: 1080px;
  margin: 0 auto;
}

.member-showcase-detail-heading {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 34px 42px;
  border-top: 4px solid var(--brand);
  background: #f5f6f6;
}

.member-showcase-detail-photo {
  width: 270px;
  height: 338px;
  overflow: hidden;
  border: 1px solid #e1e4e7;
  background: #fff;
}

.member-showcase-detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-showcase-detail-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.member-showcase-detail-copy h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.3;
}

.member-showcase-detail-summary {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.member-showcase-detail-return {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 12px 16px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
  font-size: 13px;
  text-decoration: none;
}

.member-showcase-detail-return span:last-child {
  font-size: 19px;
  line-height: 1;
}

.member-showcase-detail-return:hover {
  color: #fff;
  background: var(--brand);
}

.member-showcase-detail-content {
  margin-top: 30px;
  padding: 30px 42px 36px;
  border: 1px solid var(--line);
  background: #fff;
}

.member-showcase-detail-content-heading {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.member-showcase-detail-content-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .02em;
}

.member-showcase-detail-body {
  max-width: 900px;
  padding-top: 28px;
  color: #495057;
  font-size: 16px;
  line-height: 2;
}

.member-showcase-detail-body p {
  margin: 0 0 18px;
}

.member-showcase-detail-body p:last-child {
  margin-bottom: 0;
}

.member-showcase-detail-body .member-profile-article-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
}

.member-showcase-detail-body .member-profile-lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.member-showcase-detail-body h4 {
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--brand);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .member-showcase-detail-shell {
    padding-top: 28px;
  }

  .member-showcase-detail-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px 26px;
  }

  .member-showcase-detail-photo {
    width: 190px;
    height: 238px;
  }

  .member-showcase-detail-copy h1 {
    font-size: 32px;
  }

  .member-showcase-detail-summary {
    font-size: 15px;
  }

  .member-showcase-detail-content {
    margin-top: 18px;
    padding: 22px 20px 26px;
  }

  .member-showcase-detail-content-heading h2 {
    font-size: 25px;
  }

  .member-showcase-detail-body {
    padding-top: 22px;
    font-size: 15px;
    line-height: 1.9;
  }

  .member-showcase-detail-body .member-profile-article-title {
    font-size: 22px;
  }

  .member-showcase-detail-body .member-profile-lead {
    font-size: 15px;
  }

  .member-showcase-detail-body h4 {
    margin-top: 28px;
    font-size: 19px;
  }
}

/* 下载条目盒子 */
.download-list {
  display: grid;
  gap: 16px;
  border-top: 0;
}

.download-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 112px;
  padding: 22px 24px 22px 28px;
  overflow: hidden;
  border: 1px solid #e1e4e7;
  background: #fff;
  box-shadow: 0 5px 16px rgba(24, 31, 36, .035);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.download-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--brand);
  content: "";
}

.download-item:hover {
  border-color: #e3a7ab;
  background: #fff;
  box-shadow: 0 12px 26px rgba(24, 31, 36, .08);
  transform: translateY(-2px);
}

.download-item-icon {
  width: 56px;
  height: 56px;
  color: var(--brand);
  background: #fff1f2;
}

.download-item-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.download-item-copy h3 {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.download-item-meta {
  gap: 0;
  color: #8a9197;
  font-size: 13px;
}

.download-item-meta span + span::before {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 15px;
  vertical-align: -1px;
  background: #d8dcdf;
  content: "";
}

.download-item-action {
  min-width: 118px;
  min-height: 42px;
  padding: 0 16px;
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
  transition: color .2s ease, background .2s ease;
}

.download-item-action:hover {
  color: #fff;
  background: var(--brand);
}

/* 会员服务频道内容聚合 */
.member-center-feed {
  background: #f5f5f3;
}

.member-center-feed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 26px;
}

.member-feed-panel {
  min-width: 0;
  padding: 26px 26px 28px;
  background: #fff;
}

.member-feed-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  /* border-bottom: 1px solid var(--line); */
}

.member-feed-label {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.member-feed-panel-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.member-feed-panel-heading a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 5px;
  color: #697178;
  font-size: 12px;
}

.member-feed-panel-heading a:hover,
.member-feed-panel-heading a :is(i, svg) {
  color: var(--brand);
}

.member-feed-panel-heading a :is(i, svg) {
  width: 15px;
  height: 15px;
}

.member-feed-panel-intro {
  min-height: 48px;
  margin: 15px 0 18px;
  color: #737a80;
  font-size: 13px;
  line-height: 1.8;
}

.member-center-feed .member-logo-grid-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 13px;
}

.member-center-feed .member-logo-card {
  border-color: #e6e8ea;
}

.member-center-feed .member-logo-card-image {
  min-height: 112px;
  padding: 12px;
}

.member-center-feed .member-logo-card-image img {
  height: 78px;
}

.member-center-feed .member-logo-card-copy {
  min-height: 72px;
  padding: 11px 12px 13px;
}

.member-center-feed .member-logo-card-copy h4 {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.45;
}

.member-center-feed .member-logo-card-copy p,
.member-center-feed .member-showcase-copy p {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-center-feed .member-logo-card-copy p {
  line-height: 1.55;
}

.member-center-feed .member-showcase-grid-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 13px;
}

.member-center-feed .member-showcase-card {
  border-color: #e6e8ea;
}

.member-center-feed .member-showcase-copy {
  padding: 11px 10px 13px;
}

.member-center-feed .member-showcase-copy h3 {
  font-size: 15px;
}

.member-center-library {
  background: #fff;
}

.member-center-lower {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  background: #fff;
}

.member-center-lower > .section {
  min-width: 0;
}

.member-center-lower > .member-center-support {
  border-left: 1px solid #f0f1f2;
}

.member-center-lower > .section > .container {
  width: auto;
  margin: 0;
  padding-right: 32px;
  padding-left: 32px;
}

.member-center-lower .member-center-library-layout {
  grid-template-columns: 1fr;
  gap: 26px;
}

.member-center-lower .member-center-support-grid {
  gap: 14px;
}

.member-center-library-layout {
  display: grid;
  grid-template-columns: minmax(190px, .55fr) minmax(0, 1.45fr);
  gap: 34px;
  align-items: start;
}

.member-center-library-intro {
  padding: 20px 0 0;
  border-top: 3px solid var(--brand);
}

.member-center-library-intro p {
  margin: 0 0 22px;
  color: #737a80;
  font-size: 14px;
  line-height: 1.9;
}

.member-center-text-link,
.member-center-support-grid a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.member-center-text-link :is(i, svg),
.member-center-support-grid a :is(i, svg) {
  width: 15px;
  height: 15px;
}

.member-service-download-list {
  border-top: 1px solid var(--line);
}

.member-service-download-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 11px 0;
  color: inherit;
  border-bottom: 1px solid var(--line);
}

.member-service-download-item:hover {
  color: inherit;
}

.member-service-download-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand);
  background: #faf0f0;
}

.member-service-download-icon :is(i, svg) {
  width: 20px;
  height: 20px;
}

.member-service-download-copy {
  min-width: 0;
}

.member-service-download-copy strong,
.member-service-download-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-service-download-copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.member-service-download-copy small {
  margin-top: 4px;
  color: #858b90;
  font-size: 11px;
}

.member-service-download-arrow {
  width: 17px;
  height: 17px;
  color: #a8adb1;
}

.member-service-download-item:hover .member-service-download-arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.member-center-support-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.member-center-support-grid > div a {
  margin-top: auto;
  padding-top: 17px;
}

.member-center-support-join {
  color: #fff;
  background: var(--brand) !important;
}

.member-center-support-join h3,
.member-center-support-join p,
.member-center-support-join a,
.member-center-support-join > :is(i, svg) {
  color: #fff;
}

@media (max-width: 991.98px) {
  .member-center-feed-grid,
  .member-center-library-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .member-feed-panel {
    padding: 21px 16px 22px;
  }

  .member-feed-panel-heading h3 {
    font-size: 21px;
  }

  .member-feed-panel-intro {
    min-height: 0;
  }

  .member-center-feed .member-logo-grid-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
  }

  .member-center-feed .member-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .member-center-feed .member-logo-grid-row {
    display: contents;
  }

  .member-center-feed .member-showcase-grid-row {
    gap: 10px;
    margin-bottom: 10px;
  }

  .member-center-library-layout {
    gap: 27px;
  }

  .member-service-download-item {
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    gap: 11px;
  }

  .member-service-download-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 767.98px) {
  .download-list {
    gap: 12px;
  }

  .download-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 17px 15px 16px 20px;
  }

  .download-item-icon {
    width: 44px;
    height: 44px;
  }

  .download-item-copy h3 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .download-item-meta {
    display: block;
    font-size: 11px;
    line-height: 1.8;
  }

  .download-item-meta span + span::before {
    margin: 0 8px;
  }

  .download-item-action {
    grid-column: 2;
    justify-self: start;
    min-width: 104px;
    min-height: 35px;
    font-size: 12px;
  }
}

/* 会员服务频道首页：修正聚合卡片的尺寸与移动端溢出 */
.member-center-feed-grid {
  align-items: stretch;
}

.member-center-feed .member-logo-card {
  display: block;
  height: auto;
  min-width: 0;
  overflow: hidden;
}

.member-center-feed .member-logo-card-image {
  height: 112px;
  min-height: 0;
  box-sizing: border-box;
}

.member-center-feed .member-logo-card-copy {
  width: auto;
  min-width: 0;
  box-sizing: border-box;
}

.member-center-feed .member-logo-card-copy h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .member-center-feed .member-showcase-grid-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.member-center-support-grid .member-center-support-join h3,
.member-center-support-grid .member-center-support-join p,
.member-center-support-grid .member-center-support-join a,
.member-center-support-grid .member-center-support-join > :is(i, svg) {
  color: #fff;
}

@media (max-width: 767.98px) {
  .member-center-feed .member-logo-card-image {
    height: 78px;
    padding: 8px;
  }

  .member-center-feed .member-logo-card-image img {
    height: 60px;
  }

  .member-center-feed .member-logo-card-copy {
    min-height: 70px;
    padding: 10px 10px 11px;
  }

  .member-center-feed .member-logo-card-copy h4 {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .member-center-page-hero::after {
    background: linear-gradient(90deg, rgba(112, 0, 9, .82) 0%, rgba(112, 0, 9, .56) 55%, rgba(112, 0, 9, .12) 100%);
  }

  .member-center-page-hero .page-hero-copy {
    max-width: 88%;
  }
}

/* 会员服务底部：将资料与会员支持重组为一个横向服务区 */
.member-center-support-standalone {
  background: #f5f5f3;
}

.member-center-home-page .member-center-support-standalone {
  padding-top: 36px;
  padding-bottom: 36px;
}

.member-center-support-standalone > .container {
  width: min(calc(100% - 64px), var(--container));
  max-width: none;
  margin: 0 auto;
  background: #fff;

}

.member-center-support-standalone .section-heading {
  margin-bottom: 25px;
}

.member-center-support-standalone .section-heading h2 {
  font-size: clamp(26px, 2.4vw, 34px);
}

.member-center-support-standalone .member-center-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.member-center-support-standalone .member-center-support-grid > div {
  min-height: 148px;
  padding: 19px 17px 17px;
}

.member-center-support-standalone .member-center-support-grid :is(i, svg) {
  width: 23px;
  height: 23px;
  margin-bottom: 13px;
}

.member-center-support-standalone .member-center-support-grid h3 {
  margin-bottom: 0;
  font-size: 16px;
}

.member-center-support-standalone .member-center-support-grid > div a {
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #e1e4e7;
  background: #fff;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.member-center-support-standalone .member-center-support-grid > div a :is(i, svg) {
  width: 15px;
  height: 15px;
  margin: 0;
  flex: 0 0 15px;
}

.member-center-support-standalone .member-center-support-join a {
  border-color: #fff;
  color: var(--brand) !important;
  background: #fff;
}

.member-center-support-standalone .member-center-support-grid > div a:hover,
.member-center-support-standalone .member-center-support-grid > div a:focus-visible {
  color: var(--brand) !important;
  border-color: var(--brand);
  background: #fff;
  box-shadow: none;
  transform: none;
}

.member-center-support-standalone .member-center-support-grid > div a:hover :is(i, svg),
.member-center-support-standalone .member-center-support-grid > div a:focus-visible :is(i, svg) {
  color: var(--brand);
}

@media (max-width: 991.98px) {
  .member-center-support-standalone > .container {
    width: min(calc(100% - 40px), var(--container));
  }
}

@media (max-width: 767.98px) {
  .member-center-home-page .member-center-support-standalone {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .member-center-support-standalone > .container {
    width: calc(100% - 28px);
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .member-center-support-standalone .member-center-support-grid {
    grid-template-columns: 1fr;
  }
}

/* 会员服务频道首页 */
.member-services-channel-hero .member-services-channel-hero-inner {
  justify-content: space-between;
  gap: 42px;
}

.channel-kicker,
.section-eyebrow {
  display: block;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.member-services-channel-hero .channel-kicker {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .72);
}

.channel-hero-mark {
  display: grid;
  width: 126px;
  height: 126px;
  flex: 0 0 126px;
  place-items: center;
  color: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.channel-hero-mark :is(i, svg) {
  width: 54px;
  height: 54px;
  stroke-width: 1.2;
}

.member-services-channel-page .section-sidebar {
  top: 108px;
}

.channel-sidebar-note {
  margin-top: 34px;
  padding: 18px 16px 17px;
  background: #faf3f3;
  border-top: 3px solid var(--brand);
}

.channel-sidebar-note span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.channel-sidebar-note p {
  margin: 9px 0 0;
  color: #737a80;
  font-size: 12px;
  line-height: 1.8;
}

.member-services-channel-content .page-editor-content {
  padding-top: 0;
}

.channel-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .72fr);
  gap: 34px;
  align-items: end;
  padding-bottom: 30px;
}

.channel-intro .section-eyebrow {
  margin-bottom: 10px;
}

.channel-intro h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
}

.channel-intro > p {
  margin: 0;
  padding-left: 28px;
  color: #737a80;
  font-size: 15px;
  line-height: 1.9;
  border-left: 1px solid var(--line);
}

.member-channel-section + .member-channel-section {
  margin-top: 64px;
}

.channel-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.channel-section-heading .section-eyebrow {
  margin-bottom: 7px;
}

.channel-section-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.channel-section-heading > p {
  margin: 0;
  color: #858b90;
  font-size: 13px;
  line-height: 1.8;
}

.member-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.member-channel-card {
  position: relative;
  display: flex;
  min-height: 246px;
  overflow: hidden;
  flex-direction: column;
  padding: 27px 28px 25px;
  color: inherit;
  background: #f8f1f1;
  border: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.member-channel-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--brand);
  content: "";
  transition: width .25s ease;
}

.member-channel-card:hover,
.member-channel-card:focus-visible {
  color: inherit;
  border-color: rgba(232, 0, 18, .3);
  box-shadow: 0 12px 28px rgba(61, 20, 24, .08);
  transform: translateY(-3px);
}

.member-channel-card:hover::before,
.member-channel-card:focus-visible::before {
  width: 100%;
}

.member-channel-card.is-primary {
  grid-column: span 2;
  min-height: 220px;
  background: #f7e9e9;
}

.member-channel-card.is-join {
  color: #fff;
  background: #a8000e;
}

.member-channel-card.is-join h4,
.member-channel-card.is-join p,
.member-channel-card.is-join .channel-card-type,
.member-channel-card.is-join .channel-card-link {
  color: #fff;
}

.channel-card-index {
  position: absolute;
  top: 23px;
  right: 26px;
  color: #aeb3b6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.is-join .channel-card-index {
  color: rgba(255, 255, 255, .62);
}

.channel-card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--brand);
}

.is-join .channel-card-icon {
  color: #fff;
}

.channel-card-type {
  margin-bottom: 7px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.member-channel-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
}

.member-channel-card p {
  max-width: 390px;
  margin: 9px 0 20px;
  color: #737a80;
  font-size: 14px;
  line-height: 1.8;
}

.channel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.channel-card-link :is(i, svg) {
  width: 16px;
  height: 16px;
  color: var(--brand);
  transition: transform .2s ease;
}

.member-channel-card:hover .channel-card-link :is(i, svg),
.member-channel-card:focus-visible .channel-card-link :is(i, svg) {
  transform: translate(3px, -3px);
}

.is-join .channel-card-link :is(i, svg) {
  color: #fff;
}

.member-rights-section {
  padding-top: 4px;
  border-top: 3px solid var(--brand);
}

.member-rights-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.member-rights-highlight {
  padding: 22px 22px 20px;
  background: #f5f5f3;
}

.member-rights-highlight > :is(i, svg) {
  width: 27px;
  height: 27px;
  margin-bottom: 16px;
  color: var(--brand);
}

.member-rights-highlight h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.member-rights-highlight p {
  margin: 0;
  color: #737a80;
  font-size: 13px;
  line-height: 1.85;
}

.member-join-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 64px;
  padding: 28px 30px;
  background: #f8f1f1;
  border-left: 4px solid var(--brand);
}

.member-join-panel .section-eyebrow {
  margin-bottom: 7px;
}

.member-join-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.member-join-panel p {
  margin: 6px 0 0;
  color: #737a80;
  font-size: 14px;
}

.member-join-panel .page-action-link {
  display: inline-flex;
  min-width: 148px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
}

.member-join-panel .page-action-link :is(i, svg) {
  width: 16px;
  height: 16px;
}

.member-channel-details {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.member-channel-details summary {
  padding: 19px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style-position: inside;
}

.member-channel-details summary:hover,
.member-channel-details[open] summary {
  color: var(--brand);
}

.member-channel-details-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: 8px 0 12px;
  border-top: 1px solid var(--line);
}

.member-channel-details-content section:last-child {
  grid-column: span 2;
}

.member-channel-details-content h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 18px;
}

.member-channel-details-content p {
  margin: 0 0 7px;
  color: #737a80;
  font-size: 14px;
  line-height: 1.85;
}

@media (max-width: 991.98px) {
  .member-services-channel-hero .member-services-channel-hero-inner {
    min-height: 250px;
  }

  .channel-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .channel-intro > p {
    padding-left: 0;
    border-left: 0;
  }

  .member-rights-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .member-services-channel-hero .member-services-channel-hero-inner {
    min-height: 235px;
    align-items: flex-end;
    padding-bottom: 30px;
  }

  .member-services-channel-hero .page-hero-copy {
    max-width: 72%;
  }

  .channel-hero-mark {
    position: absolute;
    top: 37px;
    right: 19px;
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .channel-hero-mark :is(i, svg) {
    width: 38px;
    height: 38px;
  }

  .channel-sidebar-note {
    display: none;
  }

  .channel-intro h2 {
    font-size: 26px;
  }

  .channel-section-heading {
    display: block;
  }

  .channel-section-heading > p {
    margin-top: 8px;
  }

  .member-channel-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .member-channel-card.is-primary {
    grid-column: auto;
  }

  .member-channel-card {
    min-height: 210px;
    padding: 23px 22px 21px;
  }

  .member-join-panel {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 45px;
    padding: 24px 21px;
  }

  .member-channel-details-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .member-channel-details-content section:last-child {
    grid-column: auto;
  }
}

/* 会员服务父级频道首页 */
.member-center-home-page .section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.member-center-intro {
  background: #fff;
}

.member-center-intro .container {
  background: #fff url("membercenter-leifeng-joglo.png") right 0 / 45% auto no-repeat;
}

.member-center-intro-copy {
  max-width: 720px;
}

.member-center-intro-copy .section-eyebrow {
  margin-bottom: 10px;
}

.member-center-intro-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.35;
}

.member-center-intro-copy p {
  max-width: 670px;
  margin: 18px 0 0;
  color: #737a80;
  font-size: 15px;
  line-height: 1.95;
}

.member-center-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.member-center-nav a {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 15px;
  color: #5d646a;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.member-center-nav a:hover,
.member-center-nav a.active {
  color: var(--brand);
  font-weight: 700;
}

.member-center-nav a :is(i, svg) {
  width: 15px;
  height: 15px;
  color: #a8adb1;
}

.member-center-nav a:hover :is(i, svg),
.member-center-nav a.active :is(i, svg) {
  color: var(--brand);
}

.member-center-services {
  background: #f5f5f3;
}

.member-center-services .section-heading {
  align-items: end;
}

.member-center-services .section-eyebrow {
  margin-bottom: 7px;
}

.member-center-section-note {
  color: #858b90;
  font-size: 13px;
}

.member-center-card-type {
  display: block;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lead-news-copy .member-center-card-type {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .72);
}

.member-service-card .member-center-card-type {
  order: -2;
  margin-bottom: 11px;
}

.member-service-card-join {
  color: #fff;
  background: var(--brand);
}

.member-service-card-join h3,
.member-service-card-join p,
.member-service-card-join .member-center-card-type {
  color: #fff;
}

.member-service-card-join .service-card-icon,
.member-service-card-join .service-card-arrow {
  color: #fff;
}

.member-center-support {
  background: #fff;
}

.member-center-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.member-center-support-grid > div {
  min-height: 170px;
  padding: 25px 24px;
  background: #fafafa;
  border-top: 3px solid var(--brand);
}

.member-center-support-grid :is(i, svg) {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--brand);
}

.member-center-support-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.member-center-support-grid p {
  margin: 0;
  color: #737a80;
  font-size: 13px;
  line-height: 1.85;
}

@media (max-width: 991.98px) {
  .member-center-lower {
    grid-template-columns: 1fr;
  }

  .member-center-lower > .member-center-support {
    border-top: 1px solid #f0f1f2;
    border-left: 0;
  }

  .member-center-intro .container {
    background-position: right center;
  }

  .member-center-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .member-center-home-page .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .member-center-intro .container {
    background-image: none;
  }

  .member-center-lower > .section > .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .member-center-intro-copy h2 {
    font-size: 28px;
  }

  .member-center-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .member-center-section-note {
    display: none;
  }

  .member-center-support-grid {
    gap: 12px;
  }
}

/* 商会文件资料库 */
.download-page-hero {
  background-color: #163249;
  background-image: url("hero-trade-corridor.webp");
  background-position: center 48%;
}

.download-page-hero::after {
  background: linear-gradient(90deg, rgba(232, 0, 18, .82) 0%, rgba(239, 8, 28, .52) 42%, rgba(242, 24, 43, .16) 64%, rgba(242, 24, 43, 0) 70%);
}

.download-list-page {
  padding-top: 48px;
  padding-bottom: 86px;
}

.download-layout .download-list-page {
  padding-top: 0;
  padding-bottom: 24px;
}

.download-content {
  padding-top: 30px;
}

.download-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.download-toolbar h2 {
  margin: 9px 0 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 700;
}

.download-toolbar h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.download-search-form {
  display: flex;
  width: min(100%, 480px);
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.download-search-form > svg {
  width: 17px;
  margin-left: 16px;
  color: #8b9297;
  flex: 0 0 auto;
}

.download-search-form input {
  min-width: 0;
  flex: 1 1 auto;
  height: 46px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.download-search-form input::placeholder {
  color: #a1a7ab;
}

.download-search-form button {
  display: inline-flex;
  min-width: 94px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.download-search-form button:hover {
  background: var(--brand-dark);
}

.download-search-form button svg,
.download-browse-link svg {
  width: 15px;
}

.download-category-tabs {
  display: flex;
  min-height: 58px;
  align-items: stretch;
  margin-bottom: 42px;
  overflow-x: auto;
  background: #f2f3f3;
  scrollbar-width: none;
}

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

.download-category-tabs > a,
.download-category-tabs > .class {
  position: relative;
  display: inline-flex;
  min-width: 128px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #5f666c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.download-category-tabs > a::after,
.download-category-tabs > .class::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.download-category-tabs > a:hover,
.download-category-tabs > a.active,
.download-category-tabs > .class:hover {
  color: var(--brand);
  background: #fff;
}

.download-category-tabs > a.active::after {
  background: var(--brand);
}

.download-results {
  border-top: 1px solid var(--line);
}

.download-results-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 16px;
}

.download-results-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.download-results-heading > span {
  color: var(--muted);
  font-size: 13px;
}

.download-list {
  border-top: 1px solid var(--line);
}

.download-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.download-item:hover {
  background: #fff8f8;
}

.download-item-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--brand);
  background: #fff0f0;
}

.download-item-icon svg {
  width: 22px;
  height: 22px;
}

.download-item-copy {
  min-width: 0;
}

.download-item-copy h3 {
  overflow: hidden;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.download-item-action,
.download-browse-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.download-item-action {
  min-width: 108px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--brand);
}

.download-item-action:hover,
.download-browse-link:hover {
  color: var(--brand-dark);
}

.download-item-action:hover {
  color: #fff;
  background: var(--brand);
}

.download-item-action svg {
  width: 16px;
}

.download-empty-state {
  display: none;
  padding: 64px 20px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.download-list:not(:has(.download-item)) + .download-empty-state {
  display: block;
}

.download-pagination {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.download-pagination ul {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-pagination .page-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #626970;
  background: #f2f3f3;
  font-size: 13px;
}

.download-pagination .page-link:hover,
.download-pagination .page-item.active .page-link {
  color: #fff;
  background: var(--brand);
}

.download-pagination:not(:has(.page-item:not(.disabled))) {
  display: none;
}

@media (max-width: 767.98px) {
  .download-list-page {
    padding-top: 30px;
    padding-bottom: 56px;
  }

  .download-layout .download-list-page {
    padding-top: 0;
    padding-bottom: 0;
  }

  .download-content {
    padding-top: 24px;
  }

  .download-toolbar {
    display: block;
    margin-bottom: 24px;
  }

  .download-search-form {
    width: 100%;
    margin-top: 22px;
  }

  .download-category-tabs {
    min-height: 52px;
    margin-right: -14px;
    margin-bottom: 30px;
  }

  .download-category-tabs > a,
  .download-category-tabs > .class {
    min-width: auto;
    padding: 0 18px;
    font-size: 13px;
  }

  .download-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 15px 12px;
  }

  .download-item-icon {
    width: 40px;
    height: 40px;
  }

  .download-item-copy h3 {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .download-item-meta {
    gap: 8px 12px;
    font-size: 11px;
  }

  .download-item-action {
    grid-column: 2;
    justify-self: start;
    min-height: 34px;
    font-size: 12px;
  }
}

/* 下载条目盒子最终覆盖 */
.download-results {
  border-top: 0;
}

.download-list {
  display: grid;
  gap: 16px;
  border-top: 0;
}

.download-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 112px;
  padding: 22px 24px 22px 28px;
  overflow: hidden;
  border: 1px solid #e1e4e7;
  background: #fff;
  box-shadow: none;
  transition: border-color .2s ease, background-color .2s ease;
}

.download-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--brand);
  content: "";
}

.download-item:hover {
  border-color: #e3a7ab;
  background: #fff;
  box-shadow: none;
  transform: none;
}

.download-item-icon {
  width: 56px;
  height: 56px;
  color: var(--brand);
  background: #fff1f2;
}

.download-item-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.download-item-copy h3 {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.download-item-meta {
  gap: 0;
  color: #8a9197;
  font-size: 13px;
}

.download-item-meta span + span::before {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 15px;
  vertical-align: -1px;
  background: #d8dcdf;
  content: "";
}

.download-item-action {
  min-width: 118px;
  min-height: 42px;
  padding: 0 16px;
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
  transition: color .2s ease, background .2s ease;
}

.download-item-action:hover {
  color: #fff;
  background: var(--brand);
}

@media (max-width: 767.98px) {
  .download-list {
    gap: 12px;
  }

  .download-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 17px 15px 16px 20px;
  }

  .download-item-icon {
    width: 44px;
    height: 44px;
  }

  .download-item-copy h3 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .download-item-meta {
    display: block;
    font-size: 11px;
    line-height: 1.8;
  }

  .download-item-meta span + span::before {
    margin: 0 8px;
  }

  .download-item-action {
    grid-column: 2;
    justify-self: start;
    min-width: 104px;
    min-height: 35px;
    font-size: 12px;
  }
}
