html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #7ea8d5 #eef4fb;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: #eef4fb;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8bb5df, #4f87c0);
  border: 2px solid #eef4fb;
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7ba9d8, #3f79b6);
}

body.site-shell-nav-only-page {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}

body[data-shell-current] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body[data-shell-current] .footer,
body[data-shell-current] .footer1,
body[data-shell-current] .footer2,
body[data-shell-current] .footer3 {
  display: none !important;
}

.site-shell-nav-only {
  flex: 1 0 auto;
  min-height: 0;
}

body[data-shell-current] > .cspm-wrapper,
body[data-shell-current] > main,
body[data-shell-current] > .site-shell-nav-only {
  flex: 1 0 auto;
  min-height: 0;
}

body[data-shell-current] > .cspm-wrapper {
  height: auto !important;
  overflow: visible;
}

.site-shell-header,
.site-shell-header * {
  box-sizing: border-box;
}

.site-shell-header {
  --site-shell-logo-width: 304px;
  --site-shell-bar-height: 68px;
  --site-shell-link-size: 16px;
  --site-shell-link-padding: 13px;
  --site-shell-link-gap: 4px;
  --site-shell-lang-size: 13px;
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d8e1ee;
  box-shadow: 0 10px 24px rgba(12, 35, 69, 0.06);
  backdrop-filter: blur(10px);
  font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

.site-shell-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-shell-bar {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--site-shell-bar-height);
}

.site-shell-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
  line-height: 1;
  color: #123b74;
  text-decoration: none;
}

.site-shell-brand img {
  display: block;
  width: var(--site-shell-logo-width) !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  flex: 0 0 auto;
}

.site-shell-brand-text {
  display: none;
}

.site-shell-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #e9f1fb;
  cursor: pointer;
  padding: 0;
}

.site-shell-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #123b74;
  border-radius: 999px;
}

.site-shell-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
}

.site-shell-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--site-shell-link-gap);
  flex-wrap: nowrap;
  flex: 1 1 auto;
}

.site-shell-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-shell-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 var(--site-shell-link-padding) !important;
  border-bottom: 2px solid transparent;
  color: #1460a8;
  font-family: inherit !important;
  font-size: var(--site-shell-link-size) !important;
  font-weight: 600;
  line-height: 1 !important;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.site-shell-item.is-dropdown > .site-shell-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.site-shell-link:hover,
.site-shell-link:focus-visible,
.site-shell-link.is-current {
  color: #d00b0b;
  border-color: #d00b0b;
  text-decoration: none;
}

body[data-shell-current="home"] .site-shell-link[data-nav="home"],
body[data-shell-current="company"] .site-shell-link[data-nav="company"],
body[data-shell-current="catalog"] .site-shell-link[data-nav="catalog"],
body[data-shell-current="consult"] .site-shell-link[data-nav="consult"],
body[data-shell-current="join"] .site-shell-link[data-nav="join"],
body[data-shell-current="policy"] .site-shell-link[data-nav="policy"] {
  color: #d00b0b;
  border-color: #d00b0b;
  text-decoration: none;
}

.site-shell-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  min-width: 210px;
  padding: 8px 0;
  border-radius: 0 0 12px 12px;
  background: rgba(0, 105, 178, 0.92);
  box-shadow: 0 12px 22px rgba(12, 35, 69, 0.18);
  z-index: 10;
}

.site-shell-dropdown a {
  display: block;
  padding: 9px 14px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
}

.site-shell-dropdown a:hover,
.site-shell-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.site-shell-item.is-dropdown:hover .site-shell-dropdown,
.site-shell-item.is-dropdown:focus-within .site-shell-dropdown {
  display: block;
}

.site-shell-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-shell-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #d8e1ee;
  border-radius: 999px;
  background: #f8fbff;
  color: #5a6e89;
  font-size: var(--site-shell-lang-size) !important;
  font-weight: 700;
  line-height: 1;
}

.site-shell-lang a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.site-shell-lang a:hover,
.site-shell-lang a:focus-visible,
.site-shell-lang a.is-current {
  color: #d00b0b;
}

body[data-shell-lang="en"] .site-shell-lang .lang-en,
body:not([data-shell-lang="en"]) .site-shell-lang .lang-cn {
  color: #d00b0b;
}

body[data-shell-current="home"] .site-shell-lang a {
  font-weight: 800;
}

.site-shell-footer {
  margin-top: 28px;
  clear: both;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(180deg, #14355d, #103053);
  color: #dce6f4;
}

body[data-shell-current] > .site-shell-footer {
  margin-top: auto;
}

body[data-shell-current="home"] .site-shell-footer {
  margin-top: auto;
}

body[data-shell-current="home"] .site-shell-footer::before {
  content: "";
  display: block;
  height: 40px;
  background: #f0f7fb;
}

body.site-shell-nav-only-page .site-shell-footer {
  margin-top: auto;
}

.site-shell-footer .site-shell-wrap {
  padding-top: 26px;
  padding-bottom: 22px;
}

.site-shell-footer-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.site-shell-footer-brand {
  display: block;
  margin-bottom: 14px;
}

.site-shell-footer-brand img {
  display: block;
  width: 228px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-shell-footer h3,
.site-shell-footer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.site-shell-footer p,
.site-shell-footer li {
  margin: 0 0 8px;
  color: #dce6f4;
  font-size: 14px;
  line-height: 1.7;
}

.site-shell-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell-footer a {
  color: #dce6f4;
  text-decoration: none;
}

.site-shell-footer a:hover,
.site-shell-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.site-shell-footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9eb4d2;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .site-shell-header {
    --site-shell-logo-width: 284px;
    --site-shell-link-size: 15px;
    --site-shell-link-padding: 10px;
  }

  .site-shell-wrap {
    padding: 0 18px;
  }

  .site-shell-bar {
    gap: 12px;
  }

  .site-shell-brand-text {
    display: none;
  }

  .site-shell-links {
    gap: 2px;
  }

  .site-shell-link {
    padding: 0 var(--site-shell-link-padding) !important;
    font-size: var(--site-shell-link-size) !important;
  }

  .site-shell-brand img {
    width: var(--site-shell-logo-width) !important;
    height: auto !important;
  }
}

@media (max-width: 860px) {
  .site-shell-header {
    --site-shell-logo-width: 220px;
    --site-shell-bar-height: 62px;
    --site-shell-link-size: 15px;
  }

  .site-shell-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .site-shell-brand-text {
    display: none;
  }

  .site-shell-brand img {
    width: var(--site-shell-logo-width) !important;
    height: auto !important;
    max-width: 100%;
  }

  .site-shell-menu {
    display: none !important;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid #d8e1ee;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 32px rgba(12, 35, 69, 0.12);
    flex-direction: column;
    align-items: stretch;
  }

  .site-shell-header.is-open .site-shell-menu {
    display: flex !important;
  }

  .site-shell-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex: none;
  }

  .site-shell-item {
    display: block;
    width: 100%;
  }

  .site-shell-link {
    min-height: 40px;
    padding: 0 12px;
    border-bottom: none;
    border-left: 3px solid transparent;
    justify-content: flex-start;
  }

  .site-shell-tools {
    width: 100%;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #e4ebf5;
    justify-content: flex-start;
  }

  .site-shell-lang {
    padding: 8px 12px;
  }

  .site-shell-link:hover,
  .site-shell-link:focus-visible,
  .site-shell-link.is-current {
    border-left-color: #d00b0b;
    background: #f6f9fd;
  }

  body[data-shell-current="home"] .site-shell-link[data-nav="home"],
  body[data-shell-current="company"] .site-shell-link[data-nav="company"],
  body[data-shell-current="catalog"] .site-shell-link[data-nav="catalog"],
  body[data-shell-current="consult"] .site-shell-link[data-nav="consult"],
  body[data-shell-current="join"] .site-shell-link[data-nav="join"],
  body[data-shell-current="policy"] .site-shell-link[data-nav="policy"] {
    border-left-color: #d00b0b;
    background: #f6f9fd;
  }

  .site-shell-dropdown {
    display: none;
    position: static;
    min-width: 0;
    padding: 0 0 6px 12px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-shell-item.is-expanded .site-shell-dropdown {
    display: grid;
  }

  .site-shell-item.is-expanded > .site-shell-link::after {
    transform: rotate(-135deg) translateY(-1px);
  }

  .site-shell-dropdown a {
    padding: 8px 12px;
    color: #4e6179;
    white-space: normal;
  }

  .site-shell-dropdown a:hover,
  .site-shell-dropdown a:focus-visible {
    background: #f6f9fd;
    color: #123b74;
  }

  .site-shell-footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-shell-current="home"] .site-shell-footer::before {
    height: 28px;
  }
}

.business-showcase {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid #d7e0eb;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(183, 41, 46, 0.08), transparent 26%),
    radial-gradient(circle at left 18%, rgba(18, 59, 116, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #f7f3ec 100%);
  box-shadow: 0 20px 48px rgba(26, 46, 72, 0.08);
}

.business-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(115, 83, 51, 0.02) 0,
      rgba(115, 83, 51, 0.02) 1px,
      transparent 1px,
      transparent 22px
    );
  pointer-events: none;
}

.business-showcase > * {
  position: relative;
  z-index: 1;
}

.business-showcase__intro,
.business-showcase__books-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.business-showcase__intro {
  margin-bottom: 28px;
}

.business-showcase__intro-text {
  max-width: 760px;
}

.business-showcase__eyebrow {
  margin: 0 0 10px;
  color: #9b2530;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.business-showcase__intro h5,
.business-showcase__books-head h5 {
  margin: 0;
  color: #1e2d43;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
}

.business-showcase__lead,
.business-showcase__books-head > p {
  margin: 14px 0 0;
  color: #55657d;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.business-showcase__books-head {
  margin: 34px 0 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(105, 123, 149, 0.18);
}

.business-showcase__books-head > p {
  max-width: 420px;
  margin-top: 0;
}

.business-showcase__browse,
.business-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #c8d3e0;
  background: rgba(255, 255, 255, 0.78);
  color: #173c73;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.business-showcase__browse:hover,
.business-cta:hover,
.business-text-link:hover,
.business-feature-card h5 a:hover,
.business-mini-card h6 a:hover,
.business-book-card h6 a:hover {
  color: #a01824;
  text-decoration: none;
}

.business-showcase__browse:hover,
.business-cta:hover {
  transform: translateY(-2px);
  border-color: #b05055;
  box-shadow: 0 12px 22px rgba(41, 56, 81, 0.1);
}

.business-cta--primary {
  border-color: #8d232f;
  background: linear-gradient(135deg, #ab2d38, #8d232f);
  color: #fff;
}

.business-cta--primary:hover {
  color: #fff;
}

.business-showcase__journals {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr);
  gap: 24px;
}

.business-feature-card,
.business-mini-card,
.business-book-card {
  border: 1px solid rgba(166, 181, 199, 0.3);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 32px rgba(24, 39, 59, 0.06);
}

.business-feature-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 24px;
}

.business-feature-card__cover,
.business-mini-card__cover,
.business-book-card__cover {
  display: block;
  text-decoration: none;
}

.business-feature-card__cover img,
.business-mini-card__cover img,
.business-book-card__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(25, 36, 52, 0.16);
}

.business-feature-card__body h5,
.business-mini-card__body h6,
.business-book-card__body h6 {
  margin: 0;
}

.business-feature-card__body h5 a,
.business-mini-card__body h6 a,
.business-book-card__body h6 a {
  color: #1f2e44;
  text-decoration: none;
}

.business-feature-card__body h5 {
  margin-top: 14px;
  font-family: "Merriweather", "Noto Serif SC", serif;
  font-size: 31px;
  line-height: 1.3;
  font-weight: 700;
}

.business-feature-card__body p,
.business-mini-card__body p,
.business-book-card__body p {
  margin: 0;
  color: #5a677b;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.business-feature-card__body > p {
  margin-top: 14px;
}

.business-feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.business-tags span,
.business-mini-card__label,
.business-book-card__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 59, 116, 0.08);
  color: #163f78;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.business-journal-list {
  display: grid;
  gap: 16px;
}

.business-mini-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
}

.business-mini-card__cover img {
  aspect-ratio: 0.74;
  object-fit: cover;
  object-position: center;
}

.business-mini-card__body {
  display: grid;
  gap: 10px;
}

.business-mini-card__body h6,
.business-book-card__body h6 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 700;
}

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

.business-book-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 100%;
  padding: 20px;
  border-radius: 22px;
}

.business-book-card__cover img {
  aspect-ratio: 0.72;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: linear-gradient(180deg, #fffdf9, #f2ebe1);
}

.business-book-card__body {
  display: grid;
  gap: 12px;
}

.business-text-link {
  color: #173c73;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.business-showcase a:focus-visible {
  outline: 2px solid rgba(141, 35, 47, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .business-showcase {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .business-showcase__intro h5,
  .business-showcase__books-head h5 {
    font-size: 30px;
  }

  .business-showcase__journals,
  .business-book-shelf {
    grid-template-columns: 1fr;
  }

  .business-showcase__books-head > p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .business-showcase {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .business-showcase__intro,
  .business-showcase__books-head,
  .business-feature-card,
  .business-mini-card,
  .business-book-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .business-showcase__intro,
  .business-showcase__books-head {
    align-items: flex-start;
  }

  .business-showcase__intro h5,
  .business-showcase__books-head h5 {
    font-size: 25px;
  }

  .business-showcase__lead,
  .business-showcase__books-head > p,
  .business-feature-card__body > p,
  .business-mini-card__body p,
  .business-book-card__body p {
    font-size: 15px;
    line-height: 1.7;
  }

  .business-feature-card,
  .business-mini-card,
  .business-book-card {
    gap: 14px;
    padding: 16px;
  }

  .business-showcase__browse,
  .business-cta {
    width: 100%;
  }

  .business-feature-card__actions {
    flex-direction: column;
  }

  .business-mini-card__cover,
  .business-book-card__cover,
  .business-feature-card__cover {
    max-width: 260px;
  }
}

.business-showcase--legacy {
  position: relative;
  padding: 18px;
  border: 1px solid #b7d6e8;
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(108, 160, 201, 0.1), transparent 26%),
    linear-gradient(180deg, #edf5fa 0%, #e4eef5 58%, #dce8f1 100%);
  box-shadow: none;
  overflow: hidden;
}

.business-showcase--legacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.28), transparent 20%);
  pointer-events: none;
}

.business-showcase--legacy > * {
  position: relative;
  z-index: 1;
}

.business-showcase--legacy .business-legacy-intro {
  overflow: hidden;
  margin-bottom: 18px;
}

.business-showcase--legacy .business-legacy-intro p {
  float: left;
  width: calc(100% - 90px);
  margin: 0;
  color: #666;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 14px;
  line-height: 26px;
}

.business-showcase--legacy .business-legacy-more {
  color: #66a8cf;
  font-size: 12px;
  line-height: 26px;
  text-decoration: none;
}

.business-showcase--legacy .business-legacy-more:hover {
  color: #d00b0b;
  text-decoration: none;
}

.business-showcase--legacy .business-legacy-intro .business-legacy-more {
  float: right;
}

.business-showcase--legacy .business-legacy-grid {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 6px;
}

.business-showcase--legacy .business-legacy-grid > div,
.business-showcase--legacy .business-legacy-main > div {
  padding-left: 10px;
  padding-right: 10px;
}

.business-showcase--legacy .business-legacy-grid > div {
  margin-bottom: 16px;
}

.business-showcase--legacy .business-legacy-tile {
  display: block;
  height: 100%;
  padding: 10px;
  border: 1px solid #c2e0ee;
  background: linear-gradient(180deg, rgba(236, 245, 250, 0.96), rgba(223, 237, 246, 0.98));
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.business-showcase--legacy .business-legacy-tile:hover {
  border-color: #76b0d4;
  background: linear-gradient(180deg, rgba(241, 248, 252, 0.98), rgba(229, 240, 247, 1));
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(26, 78, 120, 0.08);
  text-decoration: none;
}

.business-showcase--legacy .business-legacy-tile-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 188px;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #d8edf7;
  background: linear-gradient(180deg, #f4f8fb, #e9f1f6);
  overflow: hidden;
}

.business-showcase--legacy .business-legacy-tile-cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.business-showcase--legacy .business-legacy-tile-title {
  display: block;
  min-height: 24px;
  color: #1443a6;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.business-showcase--legacy .business-legacy-tile-sub {
  display: block;
  height: 36px;
  color: #8f9aa6;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 12px;
  line-height: 18px;
  overflow: hidden;
}

.business-showcase--legacy .business-legacy-main {
  margin-left: -10px;
  margin-right: -10px;
}

.business-showcase--legacy .business-legacy-panel {
  border: 1px solid #b5d2e4;
  background: linear-gradient(180deg, rgba(230, 240, 247, 0.96), rgba(219, 232, 241, 0.98));
}

.business-showcase--legacy .business-legacy-head {
  overflow: hidden;
  padding: 12px 14px;
  border-bottom: 1px solid #c4dceb;
  background: linear-gradient(180deg, rgba(237, 246, 251, 0.98), rgba(226, 239, 247, 0.98));
}

.business-showcase--legacy .business-legacy-label {
  display: inline-block;
  padding-left: 10px;
  border-left: 4px solid #1443a6;
  color: #1443a6;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.business-showcase--legacy .business-legacy-head .business-legacy-more {
  float: right;
  line-height: 20px;
}

.business-showcase--legacy .business-legacy-focus-body {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 16px;
}

.business-showcase--legacy .business-legacy-focus-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 220px;
  flex: 0 0 220px;
  min-height: 290px;
  padding: 8px;
  border: 1px solid #d8edf7;
  background: linear-gradient(180deg, #eff5f9, #e5edf3);
  box-shadow: 0 8px 16px rgba(29, 78, 118, 0.06);
}

.business-showcase--legacy .business-legacy-focus-cover img {
  display: block;
  max-width: 100%;
  max-height: 270px;
  width: auto;
  height: auto;
}

.business-showcase--legacy .business-legacy-focus-content {
  min-width: 0;
  flex: 1 1 auto;
  padding: 4px 0 0;
}

.business-showcase--legacy .business-legacy-focus-content h5 {
  margin: 0;
  color: #1443a6;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.business-showcase--legacy .business-legacy-focus-en {
  margin: 4px 0 12px;
  color: #8d9cae;
  font-family: "Source Sans 3", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.business-showcase--legacy .business-legacy-meta {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.business-showcase--legacy .business-legacy-meta li {
  color: #4f6278;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 13px;
  line-height: 28px;
}

.business-showcase--legacy .business-legacy-summary {
  margin: 0 0 16px;
  color: #465a70;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 13px;
  line-height: 24px;
}

.business-showcase--legacy .business-legacy-links a {
  display: inline-block;
  min-width: 88px;
  height: 30px;
  margin-right: 8px;
  padding: 0 14px;
  border: 1px solid #66a8cf;
  background: rgba(217, 233, 243, 0.95);
  color: #1460a8;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 13px;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
}

.business-showcase--legacy .business-legacy-links a:hover {
  color: #d00b0b;
  border-color: #d7a5a5;
  text-decoration: none;
}

.business-showcase--legacy .business-legacy-links a.is-primary {
  border-color: #1460a8;
  background: #1460a8;
  color: #fff;
}

.business-showcase--legacy .business-legacy-links a.is-primary:hover {
  border-color: #d00b0b;
  background: #d00b0b;
  color: #fff;
}

.business-showcase--legacy .business-legacy-book-list {
  padding: 0 14px;
}

.business-showcase--legacy .business-legacy-book-item {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(120, 168, 200, 0.55);
}

.business-showcase--legacy .business-legacy-book-item:last-child {
  border-bottom: none;
}

.business-showcase--legacy .business-legacy-book-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 98px;
  flex: 0 0 74px;
  padding: 5px;
  border: 1px solid #d8edf7;
  background: linear-gradient(180deg, #eef5f9, #e4edf3);
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(29, 78, 118, 0.06);
}

.business-showcase--legacy .business-legacy-book-cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.business-showcase--legacy .business-legacy-book-content {
  min-width: 0;
  flex: 1 1 auto;
}

.business-showcase--legacy .business-legacy-book-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 0 8px;
  background: rgba(208, 227, 239, 0.95);
  color: #4a7ba6;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 12px;
  line-height: 22px;
}

.business-showcase--legacy .business-legacy-book-content h6 {
  margin: 0 0 6px;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.business-showcase--legacy .business-legacy-book-content h6 a,
.business-showcase--legacy .business-legacy-book-link {
  color: #1443a6;
  text-decoration: none;
}

.business-showcase--legacy .business-legacy-book-content h6 a:hover,
.business-showcase--legacy .business-legacy-book-link:hover {
  color: #d00b0b;
  text-decoration: none;
}

.business-showcase--legacy .business-legacy-book-content p {
  margin: 0 0 8px;
  color: #465a70;
  font-family: "Microsoft YaHei", "Source Sans 3", sans-serif;
  font-size: 12px;
  line-height: 22px;
}

.business-showcase--legacy .business-legacy-book-link {
  font-size: 12px;
  line-height: 20px;
}

@media (min-width: 992px) {
  .business-showcase--legacy .business-legacy-main {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .business-showcase--legacy .business-legacy-main > div {
    float: none;
    display: flex;
  }

  .business-showcase--legacy .business-legacy-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
  }

  .business-showcase--legacy .business-legacy-focus-body,
  .business-showcase--legacy .business-legacy-book-list {
    flex: 1 1 auto;
  }
}

@media (max-width: 991px) {
  .business-showcase--legacy .business-legacy-focus {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .business-showcase--legacy {
    padding: 14px;
  }

  .business-showcase--legacy .business-legacy-intro p,
  .business-showcase--legacy .business-legacy-intro .business-legacy-more {
    float: none;
    width: 100%;
    display: block;
  }

  .business-showcase--legacy .business-legacy-intro .business-legacy-more {
    margin-top: 4px;
  }

  .business-showcase--legacy .business-legacy-tile-cover {
    height: 160px;
  }

  .business-showcase--legacy .business-legacy-focus-body,
  .business-showcase--legacy .business-legacy-book-item {
    display: block;
  }

  .business-showcase--legacy .business-legacy-focus-cover {
    width: 100%;
    max-width: 240px;
    margin-bottom: 14px;
  }

  .business-showcase--legacy .business-legacy-book-cover {
    width: 86px;
    height: 112px;
    margin-bottom: 10px;
  }

  .business-showcase--legacy .business-legacy-links a {
    margin-bottom: 8px;
  }
}
