/*
 * China Movie Metropolis — 2026 visual system
 * Loaded after the legacy stylesheet so existing templates, routes and data stay intact.
 */

:root {
  --brand-ink: #07111b;
  --brand-ink-soft: #0d1a27;
  --brand-slate: #526170;
  --brand-line: rgba(7, 17, 27, 0.12);
  --brand-paper: #f4f6f8;
  --brand-white: #ffffff;
  --brand-red: #e31b23;
  --brand-red-dark: #bb1017;
  --brand-gold: #c9a96e;
  --brand-radius: 18px;
  --brand-shadow: 0 24px 70px rgba(7, 17, 27, 0.12);
}

html {
  scroll-behavior: smooth;
  background: var(--brand-ink);
  font-size: clamp(15px, .18vw + 14.4px, 16px);
}

body {
  margin: 0;
  color: var(--brand-ink);
  background: var(--brand-white);
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.brand-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--brand-red);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

p,
li,
a,
span,
strong {
  overflow-wrap: anywhere;
}

.container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  padding-left: 0;
  padding-right: 0;
}

.brand-skip-link {
  position: fixed;
  top: -80px;
  left: 24px;
  z-index: 10002;
  padding: 12px 18px;
  color: #fff;
  background: var(--brand-red);
  border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}

.brand-skip-link:focus {
  top: 0;
  color: #fff;
}

/* Header */
.header.brand-header,
.header.brand-header.active {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  height: auto !important;
  margin: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 10, 16, .9), rgba(4, 10, 16, .48) 72%, transparent);
  border: 0;
  box-shadow: none;
  transform: none !important;
  transition: background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.header.brand-header.is-scrolled {
  background: rgba(5, 13, 21, .94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand-topline {
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  letter-spacing: .03em;
}

.brand-topline .container,
.brand-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-topline .container {
  height: 100%;
}

.brand-topline__contact {
  display: flex;
  gap: 26px;
  min-width: 0;
  color: rgba(255, 255, 255, .72);
}

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

.brand-topline__contact a {
  color: rgba(255, 255, 255, .78);
}

.brand-topline__contact a:hover {
  color: #fff;
}

.brand-topline__label {
  margin-right: 7px;
  color: var(--brand-gold);
  text-transform: uppercase;
}

.brand-topline__links {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.brand-topline__links a {
  color: rgba(255, 255, 255, .78);
}

.brand-nav-row {
  min-height: 76px;
  gap: 28px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 158px;
  min-height: 54px;
}

.brand-logo img {
  display: block;
  width: 100%;
  max-height: 60px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  margin-left: auto;
}

.brand-nav > ul {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.brand-nav__link,
.brand-nav__trigger {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  padding: 0 13px;
  border: 0;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
  cursor: pointer;
}

.brand-nav__link::after,
.brand-nav__trigger::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 15px;
  left: 13px;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.brand-nav__link:hover,
.brand-nav__link:focus,
.brand-nav__trigger:hover,
.brand-nav__trigger:focus,
.brand-nav__item.is-current > .brand-nav__link {
  color: #fff;
  outline: none;
}

.brand-nav__link:hover::after,
.brand-nav__link:focus::after,
.brand-nav__trigger:hover::after,
.brand-nav__trigger:focus::after,
.brand-nav__item.is-current > .brand-nav__link::after {
  transform: scaleX(1);
}

.brand-nav__trigger::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.brand-nav__dropdown {
  position: absolute;
  top: calc(100% - 8px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  width: 360px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  background: rgba(8, 18, 28, .98);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.brand-nav__item:hover .brand-nav__dropdown,
.brand-nav__item:focus-within .brand-nav__dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.brand-nav__dropdown a {
  padding: 12px 14px;
  color: rgba(255, 255, 255, .76);
  border-radius: 9px;
  font-size: 13px;
}

.brand-nav__dropdown a:hover,
.brand-nav__dropdown a:focus {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.brand-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.brand-language {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
}

.brand-language a {
  min-width: 38px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, .7);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.brand-language a.active {
  color: #fff;
  background: var(--brand-red);
}

.brand-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  cursor: pointer;
}

.brand-icon-button:hover,
.brand-icon-button:focus {
  color: #fff;
  background: var(--brand-red);
  border-color: var(--brand-red);
  outline: none;
}

.brand-search-icon {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  margin: 12px 0 0 10px;
  background: currentColor;
  transform: rotate(45deg);
}

.brand-menu-button {
  display: none;
}

.brand-menu-lines,
.brand-menu-lines::before,
.brand-menu-lines::after {
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}

.brand-menu-lines {
  position: relative;
}

.brand-menu-lines::before,
.brand-menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.brand-menu-lines::before { top: -6px; }
.brand-menu-lines::after { top: 6px; }

.brand-search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(6, 15, 24, .98);
  border-top: 1px solid rgba(255, 255, 255, .08);
  opacity: 0;
  transition: max-height .25s ease, opacity .2s ease;
}

.brand-search-panel.is-open {
  max-height: 130px;
  opacity: 1;
}

.brand-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
}

.brand-search-form input {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 11px;
  outline: none;
}

.brand-search-form input:focus {
  border-color: var(--brand-red);
}

.brand-search-form button,
.brand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.brand-search-form button:hover,
.brand-button:hover,
.brand-button:focus {
  color: #fff;
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  transform: translateY(-2px);
}

.brand-button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .38);
}

.brand-button--ghost:hover,
.brand-button--ghost:focus {
  background: #fff;
  border-color: #fff;
  color: var(--brand-ink);
}

.brand-mobile-panel {
  display: none;
}

/* Home hero */
.s_banner {
  position: relative;
  height: clamp(620px, 72vh, 790px);
  min-height: 620px;
  margin-top: 0 !important;
  overflow: hidden;
  background: var(--brand-ink);
}

.s_banner .swiper1,
.s_banner .swiper1 .swiper-wrapper,
.s_banner .swiper1 .swiper-slide {
  height: 100%;
}

.s_banner .swiper1 .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 0 !important;
  background-size: cover !important;
}

.s_banner .swiper1::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 10, 16, .76) 0%, rgba(4, 10, 16, .34) 46%, rgba(4, 10, 16, .08) 75%),
    linear-gradient(0deg, rgba(4, 10, 16, .72) 0%, transparent 35%, rgba(4, 10, 16, .18) 100%);
}

.brand-hero-copy {
  position: absolute;
  top: 56%;
  left: 50%;
  z-index: 4;
  width: min(100% - 48px, 1280px);
  color: #fff;
  transform: translate(-50%, -50%);
}

.brand-hero-copy__inner {
  max-width: 690px;
}

.brand-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--brand-red);
}

.brand-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.08;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .32);
}

.brand-hero-copy p {
  max-width: 620px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.brand-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-hero-facts {
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 82px;
  z-index: 4;
  display: flex;
  gap: 30px;
  color: #fff;
}

.brand-hero-fact {
  max-width: 135px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .36);
  font-size: 12px;
  line-height: 1.5;
}

.brand-hero-fact strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.s_banner .s_gg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: auto;
  min-height: 48px;
  padding: 0;
  color: rgba(255, 255, 255, .86);
  background: #07121c;
  border-top: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.s_banner .s_gg .container {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 18px;
  background: transparent !important;
  box-shadow: none !important;
}

.s_banner .s_gg span {
  flex: 0 0 auto;
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.s_banner .s_gg a {
  overflow: hidden;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s_banner .swiper-pagination1 {
  right: auto;
  bottom: 67px;
  left: max(24px, calc((100vw - 1280px) / 2));
  z-index: 4;
  width: auto;
  text-align: left;
}

.s_banner .swiper-pagination1 .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  margin: 0 5px 0 0;
  background: rgba(255, 255, 255, .42);
  border-radius: 0;
  opacity: 1;
  transition: width .3s ease, background-color .3s ease;
}

.s_banner .swiper-pagination1 .swiper-pagination-bullet-active {
  width: 54px;
  background: #fff;
}

/* Curated production imagery */
.brand-showcase {
  padding: 112px 0;
  color: #fff;
  background: #07121c;
}

.brand-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 44px;
}

.brand-showcase .brand-eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .58);
}

.brand-showcase__header h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.brand-showcase__header p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
  line-height: 1.8;
}

.brand-showcase__header a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
}

.brand-showcase__header a span {
  color: var(--brand-red);
  font-size: 20px;
  transition: transform .25s ease;
}

.brand-showcase__header a:hover span {
  transform: translateX(4px);
}

.brand-showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.brand-showcase-card {
  position: relative;
  grid-column: span 4;
  min-height: 340px;
  overflow: hidden;
  background: #111d27;
  border-radius: 18px;
  isolation: isolate;
}

.brand-showcase-card--wide {
  grid-column: span 8;
}

.brand-showcase-card--full {
  grid-column: span 12;
  min-height: 440px;
}

.brand-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 7, 11, .82) 100%);
  pointer-events: none;
}

.brand-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.brand-showcase-card > span {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  color: #fff;
}

.brand-showcase-card small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-showcase-card strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 620;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.brand-showcase-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

/* Home sections */
.snew,
.s_about,
.s_fuwu,
.s_zhengce,
.s_link,
.svideo {
  margin: 0;
  padding: 96px 0;
}

.snew {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}

.snew .swiper2,
.ny_new .swiper2 {
  overflow: hidden;
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
}

.snew .swiper2 .swiper-slide a {
  padding-top: 62%;
}

.snew .swiper2 .swiper-slide a::after,
.ny_new .swiper2 .swiper-slide a::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(4, 10, 16, .78), transparent);
}

.snew .swiper2 .swiper-slide a span,
.ny_new .swiper2 .swiper-slide a span {
  z-index: 2;
  padding: 24px 26px;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
}

.sy_biao {
  display: flex;
  align-items: flex-end;
  min-height: 48px;
  margin-bottom: 26px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--brand-line);
}

.sy_biao strong {
  position: relative;
  padding-bottom: 1px;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.sy_biao strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -17px;
  left: 0;
  height: 3px;
  background: var(--brand-red);
}

.sy_biao strong a {
  color: var(--brand-ink);
}

.sy_biao .fr {
  margin-left: auto;
  color: var(--brand-slate);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sy_biao ul {
  margin: 0 0 2px 20px;
  padding: 0;
  color: #b4bcc3;
}

.sy_biao ul li a {
  color: var(--brand-slate);
  font-size: 13px;
}

.sy_biao ul li.active a,
.sy_biao ul li a:hover {
  color: var(--brand-red);
}

.snew .col-md-6:last-child > p {
  margin: 0;
}

.snew .col-md-6:last-child > p a {
  min-height: 47px;
  padding: 11px 98px 11px 18px;
  border-bottom: 1px solid var(--brand-line);
  color: #283542;
  line-height: 25px;
}

.snew .col-md-6:last-child > p a::after {
  left: 2px;
  width: 5px;
  height: 5px;
  background: var(--brand-red);
}

.snew .col-md-6:last-child > p a i {
  right: 2px;
  color: #8b969f;
}

.s_about {
  background: var(--brand-paper);
}

.s_about .container,
.s_fuwu .container {
  border-bottom: 0;
}

.s_about .row,
.s_fuwu .row {
  display: flex;
  flex-wrap: wrap;
}

.s_about .row .col-md-6,
.s_fuwu .row .col-md-4,
.s_fuwu .row .col-md-6 {
  margin-bottom: 30px;
}

.s_about .row.brand-auto-grid,
.s_fuwu .row.brand-auto-grid,
.s_zhengce .row.brand-auto-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 30px;
  margin-right: 0;
  margin-left: 0;
}

.brand-auto-grid::before,
.brand-auto-grid::after {
  display: none;
}

.brand-auto-grid > [class*="col-"] {
  float: none;
  width: auto;
  min-width: 0;
  margin-bottom: 0 !important;
  padding-right: 0;
  padding-left: 0;
}

.sab_a,
.sab_b,
.sfw_a,
.sfw_b,
.sfw_c {
  height: calc(100% - 74px);
  min-height: 260px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid rgba(7, 17, 27, .08);
  border-radius: var(--brand-radius);
  box-shadow: 0 16px 42px rgba(7, 17, 27, .06);
}

.sab_a .ty_content,
.sab_b,
.sfw_a,
.sfw_b,
.sfw_c {
  color: var(--brand-slate);
}

.sab_b h5,
.sfw_a h5 {
  margin: 0 0 10px;
  font-size: 17px;
}

.syzl_li + .syzl_li {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--brand-line);
}

.s_fuwu {
  background: #fff;
}

.s_fuwu ul {
  margin: 0 0 20px;
  padding: 0;
}

.s_zhengce {
  background: var(--brand-ink);
  color: #fff;
}

.s_zhengce .sy_biao,
.svideo .sy_biao {
  border-color: rgba(255, 255, 255, .16);
}

.s_zhengce .sy_biao strong a,
.s_zhengce .sy_biao .fr,
.svideo .sy_biao strong a,
.svideo .sy_biao .fr {
  color: #fff;
}

.s_link {
  background: var(--brand-paper);
}

.link_flex,
.flex_content {
  gap: 18px;
}

.link_img,
.sv a,
.videoPlay {
  overflow: hidden;
  border-radius: 14px;
}

/* Inner pages */
.n_banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 315px;
  margin-top: 0 !important;
  padding-top: 110px;
  overflow: hidden;
  background-color: var(--brand-ink);
}

.n_banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 10, 16, .7), rgba(4, 10, 16, .12)), linear-gradient(0deg, rgba(4, 10, 16, .45), transparent);
}

.n_banner .container,
.n_banner .ty_bai {
  position: relative;
  z-index: 2;
}

.n_banner .ty_bai {
  padding-bottom: 40px;
  color: #fff;
}

.n_banner .ty_bai a,
.n_banner .ty_bai span,
.n_banner .ty_bai i {
  color: rgba(255, 255, 255, .76);
}

.n_zhong {
  min-height: 420px;
  padding-top: 78px;
  padding-bottom: 100px;
  background: #fff;
}

.ny_biao {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin-bottom: 32px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--brand-line);
}

.ny_biao strong {
  padding-left: 16px;
  color: var(--brand-ink);
  border-left: 4px solid var(--brand-red);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.ny_biao span {
  margin-left: auto;
  color: var(--brand-slate);
}

.ty_content,
.nnew_content,
.ny_about {
  color: #3c4a57;
  font-size: 16px;
  line-height: 1.9;
}

.ty_content img,
.nnew_content img,
.ny_about img {
  height: auto !important;
  margin: 18px auto;
  border-radius: 12px;
}

.nnew_content {
  max-width: 920px;
  margin: 0 auto;
}

.nynew_list,
.ny_zhengce_body {
  display: grid;
  gap: 18px;
}

.nynew_li {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  min-height: 190px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: 0 14px 38px rgba(7, 17, 27, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.nynew_li:hover {
  transform: translateY(-4px);
  box-shadow: var(--brand-shadow);
}

.nynew_img {
  min-height: 190px;
}

.nynew_text {
  padding: 26px 30px;
}

.nynew_text h5 {
  margin-top: 0;
  color: var(--brand-ink);
  font-size: 20px;
  font-weight: 620;
}

.ny_zhengce_header {
  overflow: hidden;
  background: var(--brand-ink);
  border-radius: 14px;
}

.ny_zhengce_li {
  min-height: 104px;
  padding: 14px 24px 14px 128px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 14px;
}

.ny_zhengce_body .ny_zhengce_li:last-child {
  border-bottom: 1px solid var(--brand-line);
}

.paishe {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
}

.ps_left {
  position: sticky;
  top: 128px;
  align-self: start;
  overflow: hidden;
  background: var(--brand-ink);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
}

.ps_left a {
  color: rgba(255, 255, 255, .72);
}

.ps_left a:hover,
.ps_left .cur > a {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.ps_content,
.ps_swiper,
.dw_ps_text {
  min-width: 0;
}

.ps_swiper,
.gallery-top,
.gallery-thumbs {
  overflow: hidden;
  border-radius: var(--brand-radius);
}

.fanye,
.fanye02 {
  margin-top: 42px;
}

.fanye a,
.fanye02 a,
.pagination a {
  border-radius: 999px !important;
}

/* Footer */
.footer.brand-footer {
  margin: 0;
  padding: 76px 0 0 !important;
  color: rgba(255, 255, 255, .68);
  background: #050d15;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.brand-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) 2fr;
  gap: 80px;
  padding-bottom: 56px;
}

.brand-footer__identity img {
  display: block;
  width: 174px;
  margin-bottom: 24px;
}

.brand-footer__identity > p {
  max-width: 470px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .58);
}

.brand-footer__contact {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.brand-footer__contact strong {
  display: inline-block;
  min-width: 52px;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

.brand-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 32px;
}

.brand-footer__nav h5 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.brand-footer__nav a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.brand-footer__nav a:hover {
  color: #fff;
  transform: none;
}

.brand-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
  line-height: 1.7;
}

.brand-footer__bottom a {
  color: rgba(255, 255, 255, .68);
}

.brand-footer__bottom img {
  width: 16px;
  margin: -2px 4px 0 8px;
}

/* Motion, focus, and responsive behavior */
@media (max-width: 1199px) {
  .brand-nav__link,
  .brand-nav__trigger {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 13px;
  }

  .brand-nav__link::after,
  .brand-nav__trigger::after {
    right: 9px;
    left: 9px;
  }

  .brand-logo { width: 142px; }
  .brand-hero-facts { display: none; }
}

/* Secondary pages keep a single content heading. The legacy hero heading was a
   duplicate and caused long Chinese/English titles to overlap the content card. */
.ny_ny_banner > span {
  display: none !important;
}

@media (max-width: 991px) {
  .container {
    width: min(100% - 36px, 1280px);
  }

  .brand-topline,
  .brand-nav {
    display: none;
  }

  .brand-nav-row {
    min-height: 72px;
  }

  .brand-logo {
    width: 142px;
  }

  .brand-language {
    margin-left: auto;
  }

  .brand-menu-button {
    display: inline-flex;
  }

  .brand-menu-button[aria-expanded="true"] .brand-menu-lines {
    background: transparent;
  }

  .brand-menu-button[aria-expanded="true"] .brand-menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .brand-menu-button[aria-expanded="true"] .brand-menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .brand-mobile-panel {
    position: fixed;
    inset: 72px 0 0;
    z-index: 9998;
    display: block;
    padding: 12px 18px 40px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(5, 13, 21, .985);
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .brand-mobile-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .brand-mobile-panel__nav {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .brand-mobile-panel__nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 17px;
  }

  .brand-mobile-panel__secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .brand-mobile-panel__secondary a {
    padding: 12px;
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    font-size: 13px;
  }

  .brand-search-panel {
    top: 72px;
  }

  .s_banner {
    height: 680px;
    min-height: 680px;
  }

  .brand-showcase {
    padding: 84px 0;
  }

  .brand-showcase__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-showcase-card,
  .brand-showcase-card--wide {
    grid-column: span 6;
  }

  .brand-showcase-card--full {
    grid-column: span 12;
  }

  .brand-hero-copy {
    top: 49%;
  }

  .brand-hero-copy__inner {
    max-width: 620px;
  }

  .brand-hero-copy h1 {
    font-size: clamp(46px, 8vw, 68px);
  }

  .snew,
  .s_about,
  .s_fuwu,
  .s_zhengce,
  .s_link,
  .svideo {
    padding: 72px 0;
  }

  .s_about .row,
  .s_fuwu .row {
    display: block;
  }

  .sab_a,
  .sab_b,
  .sfw_a,
  .sfw_b,
  .sfw_c {
    height: auto;
  }

  .n_banner {
    min-height: 250px;
    padding-top: 72px;
  }

  .n_zhong {
    padding-top: 60px;
    padding-bottom: 78px;
  }

  .paishe {
    display: block;
  }

  .ps_left {
    position: static;
    margin-bottom: 28px;
  }

  .brand-footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  body { font-size: 15px; }

  .container {
    width: calc(100% - 32px);
  }

  .brand-nav-row {
    min-height: 66px;
  }

  .brand-logo { width: 126px; }
  .brand-actions { gap: 7px; }
  .brand-icon-button { width: 36px; height: 36px; }
  .brand-language a { min-width: 34px; padding: 5px 6px; }

  .brand-mobile-panel {
    inset-top: 66px;
    top: 66px;
  }

  .brand-search-panel { top: 66px; }

  .brand-search-form {
    padding: 16px 0;
  }

  .brand-search-form input { height: 46px; }
  .brand-search-form button { min-height: 46px; padding: 0 18px; }

  .s_banner {
    height: 610px;
    min-height: 610px;
  }

  .s_banner .swiper1 .swiper-slide a {
    padding-top: 0 !important;
  }

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

  .brand-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: .14em;
  }

  .brand-hero-copy h1 {
    font-size: 42px;
    letter-spacing: -.04em;
  }

  .brand-hero-copy p {
    margin: 18px 0 24px;
    font-size: 15px;
    line-height: 1.7;
  }

  .brand-button {
    min-height: 44px;
    padding: 0 19px;
    font-size: 13px;
  }

  .s_banner .s_gg .container { gap: 10px; }
  .s_banner .s_gg span { font-size: 10px; }
  .s_banner .s_gg a { font-size: 12px; }

  .s_banner .swiper-pagination1 {
    bottom: 64px;
    left: 16px;
  }

  .s_banner .swiper-pagination1 .swiper-pagination-bullet {
    width: 20px;
  }

  .s_banner .swiper-pagination1 .swiper-pagination-bullet-active {
    width: 38px;
  }

  .brand-showcase {
    padding: 68px 0;
  }

  .brand-showcase__header {
    margin-bottom: 30px;
  }

  .brand-showcase__header h2 {
    font-size: 40px;
  }

  .brand-showcase__header p {
    font-size: 15px;
  }

  .brand-showcase__grid {
    gap: 14px;
  }

  .brand-showcase-card,
  .brand-showcase-card--wide,
  .brand-showcase-card--full {
    grid-column: span 12;
    min-height: 315px;
    border-radius: 14px;
  }

  .brand-showcase-card > span {
    right: 22px;
    bottom: 21px;
    left: 22px;
  }

  .snew,
  .s_about,
  .s_fuwu,
  .s_zhengce,
  .s_link,
  .svideo {
    padding: 56px 0;
  }

  .snew .swiper2 { margin-bottom: 38px !important; }

  .sy_biao {
    align-items: center;
    min-height: 42px;
    margin-bottom: 20px;
  }

  .sy_biao strong { font-size: 21px; }
  .sy_biao ul { display: none; }

  .sab_a,
  .sab_b,
  .sfw_a,
  .sfw_b,
  .sfw_c {
    min-height: 0;
    padding: 22px;
    border-radius: 14px;
  }

  .n_banner {
    min-height: 215px;
  }

  .n_banner .ty_bai { padding-bottom: 28px; }

  .n_zhong {
    padding-top: 44px;
    padding-bottom: 62px;
  }

  .ny_biao {
    margin-bottom: 24px;
  }

  .ny_biao strong { font-size: 21px; }

  .nynew_li {
    display: block;
  }

  .nynew_img { min-height: 210px; }
  .nynew_text { padding: 22px; }

  .ny_zhengce_li {
    padding: 20px;
  }

  .brand-footer__main {
    gap: 38px;
    padding-bottom: 40px;
  }

  .brand-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .brand-footer__bottom {
    display: block;
    max-width: 100%;
    padding: 22px 0;
    overflow: hidden;
  }

  .brand-footer__bottom > div + div {
    margin-top: 8px;
  }

  .brand-footer,
  .brand-footer .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .brand-footer__bottom > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
  }

  .brand-footer__bottom a {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .brand-footer__bottom img {
    flex: 0 0 auto;
    margin-left: 0;
  }
}

/* Final secondary-page typography and homepage service order. */
.n_banner > .container > span {
  display: none !important;
}

.brand-service-grid {
  display: flex;
  flex-wrap: wrap;
}

.brand-service-grid > .brand-service-card {
  float: none;
  min-width: 0;
}

.brand-service-card--place { order: 1; }
.brand-service-card--cast { order: 2; }
.brand-service-card--business { order: 3; }
.brand-service-card--tech { order: 4; }

.brand-service-grid > .brand-service-card:only-child {
  width: 100%;
}

.brand-home-flow {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.brand-service-grid .sy_biao {
  flex-wrap: wrap;
  align-content: flex-end;
}

.brand-service-grid .sy_biao ul {
  order: 3;
  width: 100%;
  margin: 10px 0 0;
  white-space: normal;
}

/* Five production-support categories stay on one clean row on desktop cards. */
.brand-service-card--cast .sy_biao ul li {
  margin-right: 1px !important;
  margin-left: 1px !important;
}

.brand-service-card--cast .sy_biao ul li a {
  font-size: 12px !important;
  letter-spacing: -.04em;
}

.brand-service-grid .sab_a,
.brand-service-grid .sab_b,
.brand-service-grid .sfw_a,
.brand-service-grid .sfw_b {
  padding: 22px;
}

.brand-hero-fact {
  color: inherit;
  text-decoration: none;
}

.brand-hero-fact:hover {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.brand-video-placeholder a {
  display: block;
  min-height: 255px;
  position: relative;
}

.brand-video-placeholder a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 22, .08), rgba(4, 13, 22, .82));
}

.brand-video-placeholder a span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  text-align: left;
}

.brand-video-placeholder a span strong { font-size: 17px; }
.brand-video-placeholder a span small { font-size: 12px; line-height: 1.55; opacity: .88; }

html,
body,
button,
input,
select,
textarea,
.brand-header,
.brand-footer,
.n_zhong,
.s_about,
.s_fuwu,
.s_zixun {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif !important;
}

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

.ty_content,
.sh_zhipian,
.haibao_bai {
  font-family: inherit !important;
  font-size: clamp(15px, 1.12vw, 18px) !important;
  line-height: 1.82 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}

.ty_content p,
.ty_content li,
.ty_content span,
.ty_content p *,
.ty_content li *,
.sh_zhipian p,
.sh_zhipian li,
.sh_zhipian span,
.sh_zhipian p *,
.sh_zhipian li *,
.haibao_bai p,
.haibao_bai li,
.haibao_bai span,
.haibao_bai p *,
.haibao_bai li * {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
}

.ty_content h1,
.sh_zhipian h1,
.haibao_bai h1 {
  font-family: inherit !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1.24 !important;
}

.ty_content h2,
.sh_zhipian h2,
.haibao_bai h2 {
  font-family: inherit !important;
  font-size: clamp(23px, 2.2vw, 34px) !important;
  line-height: 1.3 !important;
}

.ty_content h3,
.ty_content h4,
.sh_zhipian h3,
.sh_zhipian h4,
.haibao_bai h3,
.haibao_bai h4 {
  font-family: inherit !important;
  font-size: clamp(19px, 1.65vw, 25px) !important;
  line-height: 1.4 !important;
}

.ty_content .iconfont,
.sh_zhipian .iconfont,
.haibao_bai .iconfont {
  font-family: "iconfont" !important;
}

.verified-contact {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid #e60012;
  background: #f6f7f9;
  color: #202733;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .brand-service-grid > .brand-service-card {
    width: 100%;
  }

  .brand-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .brand-service-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 2026-07 secondary-page navigation and responsive breadcrumb polish. */
.ny_biao--breadcrumb-only {
  min-height: 34px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  justify-content: flex-end;
}

.ny_biao--breadcrumb-only span {
  margin-left: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.ps_left > ul li > a,
.ps_left > ul > li > ul > li > a,
.ps_left > ul > li > ul > li > ul > li > a,
.ps_left > ul > li > ul > li > ul > li > ul > li > a {
  color: rgba(255, 255, 255, .88) !important;
}

.ps_left > ul li > a .glyphicon {
  color: rgba(255, 255, 255, .72) !important;
}

.ps_left > ul li > a:hover,
.ps_left > ul li > a:focus,
.ps_left > ul li.active > a {
  color: #fff !important;
  background: rgba(231, 0, 18, .24) !important;
}

@media (max-width: 767px) {
  .ny_biao--breadcrumb-only {
    justify-content: flex-start;
    min-height: 0;
  }

  .ny_biao--breadcrumb-only span {
    width: 100%;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* 2026-07 responsive follow-up: remove legacy overlap and fixed-width behavior. */
.sy_biao {
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  height: auto;
}

.sy_biao strong {
  flex: 0 0 auto;
  max-width: 100%;
}

.sy_biao ul {
  display: flex;
  flex: 1 1 180px;
  flex-wrap: wrap;
  gap: 4px 0;
  min-width: 0;
}

.sy_biao .fr {
  flex: 0 0 auto;
  margin-top: 0 !important;
  margin-left: auto;
}

.s_about .row.brand-auto-grid + .row.brand-auto-grid {
  margin-top: 54px;
}

.s_about .brand-auto-grid > [class*="col-"],
.s_fuwu .brand-auto-grid > [class*="col-"],
.s_zhengce .brand-auto-grid > [class*="col-"] {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.sab_a,
.sab_b,
.sfw_a,
.sfw_b,
.sfw_c {
  flex: 1 1 auto;
  width: 100%;
  height: auto !important;
  min-width: 0;
  overflow-wrap: anywhere;
}

.s_zhengce .caption {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  min-height: 420px;
  padding: 30px 20px;
  border-color: rgba(255, 255, 255, .18);
}

.s_zhengce .caption > .row {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-content: center;
  margin-right: -10px;
  margin-left: -10px;
}

.s_zhengce .caption > .row > [class*="col-"] {
  display: flex;
  align-items: center;
  padding-right: 10px;
  padding-left: 10px;
}

.s_zhengce .caption > .row .svideo {
  width: 100%;
  padding: 0;
}

.s_zhengce p,
.s_zhengce p a,
.s_zhengce p span,
.s_zhengce p strong {
  color: rgba(255, 255, 255, .78) !important;
}

.s_zhengce p a:hover,
.s_zhengce p a:focus {
  color: #fff !important;
}

.s_zhengce p a::after {
  background: rgba(255, 255, 255, .55);
}

.n_zhong.paishe {
  display: block;
}

.n_zhong.paishe .container {
  max-width: calc(100% - 32px);
}

.ps_content {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: 100%;
}

.ps_content > .ps_left,
.ps_content > .ps_swiper,
.ps_content > .ps_text {
  width: auto !important;
  min-width: 0;
}

.ps_content .ps_left {
  position: sticky !important;
  top: 104px;
  left: auto !important;
  z-index: 3 !important;
  grid-row: 1 / span 2;
  transform: none !important;
}

.ps_content .ps_text {
  position: relative;
  grid-column: 2;
  margin-top: 0 !important;
}

.ps_content .dw_ps_text {
  position: static !important;
  width: 100%;
  height: auto !important;
}

.ps_content .dw_ps_text .ty_content {
  height: auto !important;
  max-height: none;
  overflow: visible;
  overflow-wrap: anywhere;
}

.ps_content .ty_content img,
.haibao_bai img,
.ty_content iframe,
.haibao_bai iframe {
  max-width: 100% !important;
  height: auto !important;
}

.haibao_bai,
.ty_bai,
.ty_content {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1199px) {
  .ps_content {
    grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
  }

  .ps_content .ps_text {
    grid-column: 2;
  }

  .s_zhengce .caption {
    min-height: 400px;
  }
}

/* 2026-07 editorial system: one hierarchy for every database-driven detail page. */
.brand-detail-heading {
  max-width: 920px;
  margin: 0 0 34px 288px;
}

.brand-detail-heading__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  max-width: 100%;
  line-height: 1.5;
  overflow-wrap: anywhere;
  white-space: normal;
}

.brand-detail-heading__kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--brand-red);
}

.brand-detail-heading h1 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.brand-detail-heading p {
  max-width: 780px;
  margin: 15px 0 0;
  color: var(--brand-slate);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
}

.ps_content .gallery-top .swiper-slide a {
  aspect-ratio: 16 / 9;
  padding-top: 0 !important;
}

.ps_content .gallery-thumbs .swiper-slide a {
  aspect-ratio: 16 / 10;
  padding-top: 0 !important;
}

.ps_content .ps_text {
  padding: clamp(24px, 3.5vw, 46px);
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: 0 18px 48px rgba(7, 17, 27, .07);
}

.ps_content .zp_biao {
  margin-bottom: 22px;
}

.ps_content .zp_biao strong {
  color: var(--brand-ink);
  font-size: 24px;
  font-weight: 700;
}

.brand-rich > :first-child { margin-top: 0; }
.brand-rich > :last-child { margin-bottom: 0; }

.brand-rich .brand-rich__lead {
  margin-bottom: 28px;
  color: #253442;
  font-size: clamp(17px, 1.3vw, 20px) !important;
  line-height: 1.85 !important;
}

.brand-rich h3 {
  position: relative;
  margin: 34px 0 14px;
  padding-left: 16px;
  color: var(--brand-ink);
  font-size: clamp(20px, 1.7vw, 26px) !important;
  font-weight: 700;
}

.brand-rich h3::before {
  position: absolute;
  top: .18em;
  bottom: .18em;
  left: 0;
  width: 3px;
  border-radius: 999px;
  content: "";
  background: var(--brand-red);
}

.brand-rich ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
}

.brand-rich li {
  position: relative;
  padding-left: 22px;
}

.brand-rich li::before {
  position: absolute;
  top: .76em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--brand-red);
}

.brand-rich__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.brand-rich__fact {
  padding: 18px;
  background: var(--brand-paper);
  border-radius: 12px;
}

.brand-rich__fact strong,
.brand-rich__fact span {
  display: block;
}

.brand-rich__fact strong {
  color: var(--brand-ink);
  font-size: clamp(20px, 2vw, 30px) !important;
  line-height: 1.2 !important;
}

.brand-rich__fact span {
  margin-top: 7px;
  color: var(--brand-slate);
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.verified-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  margin-top: 36px;
  padding: 22px 24px;
  border: 0;
  border-left: 4px solid var(--brand-red);
  background: #f2f4f6;
  border-radius: 0 12px 12px 0;
}

.verified-contact strong {
  grid-column: 1;
  color: var(--brand-ink) !important;
  font-size: 16px !important;
}

.verified-contact span {
  display: block;
  min-width: 0;
  color: var(--brand-slate) !important;
  overflow-wrap: anywhere;
}

.verified-contact br {
  display: none;
}

@media (max-width: 991px) {
  .brand-detail-heading {
    margin-left: 0;
  }

  .ps_content .ps_text {
    padding: 26px;
  }

  .ps_content .ps_left {
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .ps_content .ps_logo {
    display: none;
  }
}

@media (max-width: 600px) {
  .brand-detail-heading,
  .brand-detail-heading h1,
  .brand-detail-heading p {
    width: calc(100vw - 24px) !important;
    min-width: 0;
    max-width: calc(100vw - 24px) !important;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .brand-detail-heading__kicker {
    display: flex;
    font-size: 11px;
    letter-spacing: .075em;
  }

  .brand-rich__facts,
  .verified-contact {
    grid-template-columns: 1fr;
  }
}

/* 2026-07-21 service, business and contact refinements. */
.brand-service-page .ty_bai {
  overflow: visible;
}

.brand-service-heading {
  max-width: 980px;
  margin: 0 auto 44px;
}

.brand-service-heading h1 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.brand-service-heading > p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--brand-slate);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
}

.brand-service-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.brand-service-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  color: var(--brand-ink);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}

.brand-service-switch a.active,
.brand-service-switch a:hover,
.brand-service-switch a:focus {
  border-color: var(--brand-red);
  color: #fff;
  background: var(--brand-red);
}

.brand-service-layout {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.brand-service-toc {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--brand-line);
  border-radius: 16px;
  background: #f7f8fa;
}

.brand-service-toc > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-ink);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-service-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-service-toc a {
  display: block;
  padding: 7px 0;
  color: var(--brand-slate);
  font-size: 14px;
  line-height: 1.45;
}

.brand-service-toc a:hover,
.brand-service-toc a:focus {
  color: var(--brand-red);
}

.brand-service-sections {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.brand-service-section {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 3.8vw, 48px);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 17, 27, .055);
  scroll-margin-top: 110px;
}

.brand-service-section__number {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.brand-service-section h2 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.brand-service-section__lead {
  max-width: 760px;
  margin: 14px 0 22px;
  color: var(--brand-slate);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
}

.brand-service-section .brand-rich {
  margin-top: 22px;
}

.brand-service-section .brand-rich p:empty {
  display: none;
}

.brand-service-grid > .brand-service-card {
  min-height: 520px;
}

.brand-service-grid > .brand-service-card > .sab_b,
.brand-service-grid > .brand-service-card > .sfw_a {
  max-height: 390px;
  overflow: hidden;
}

.ny_about .ty_content {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--brand-slate) !important;
  font-size: clamp(16px, 1.15vw, 18px) !important;
  line-height: 1.82 !important;
}

.ny_about .ty_content h1,
.ny_about .ty_content h2 {
  margin: 42px 0 16px !important;
  color: var(--brand-ink) !important;
  font-family: inherit !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  letter-spacing: -.03em !important;
}

.ny_about .ty_content h3,
.ny_about .ty_content h4 {
  margin: 30px 0 12px !important;
  color: var(--brand-ink) !important;
  font-size: clamp(21px, 2vw, 30px) !important;
  font-weight: 720 !important;
  line-height: 1.3 !important;
}

@media (max-width: 991px) {
  .brand-service-layout {
    grid-template-columns: 1fr;
  }

  .brand-service-toc {
    position: static;
  }

  .brand-service-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-service-grid > .brand-service-card {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .brand-service-heading {
    margin-bottom: 30px;
  }

  .brand-service-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .brand-service-switch a {
    justify-content: center;
    text-align: center;
  }

  .brand-service-toc ol {
    grid-template-columns: 1fr;
  }
}

/* English titles need a little more horizontal room than Chinese labels. */
html[lang="en"] .brand-service-grid .sy_biao .fr {
  margin-top: 0 !important;
  white-space: nowrap;
}

html[lang="en"] .brand-service-grid .sy_biao {
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  min-height: 59px;
}

html[lang="en"] .brand-service-grid .sy_biao strong {
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 106px);
  padding: 0 0 1px !important;
  font-size: 17px !important;
  line-height: 1.25;
}

html[lang="en"] .brand-service-grid .sab_b > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  color: transparent;
  list-style: none;
}

html[lang="en"] .brand-service-grid .sab_b > ul > li {
  margin: 0 !important;
}

html[lang="en"] .brand-service-grid .sab_b > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  color: var(--brand-slate);
  background: #fff;
  font-size: 11px;
  line-height: 1.2;
}

html[lang="en"] .brand-service-grid .sab_b > ul > li.active > a,
html[lang="en"] .brand-service-grid .sab_b > ul > li > a:hover,
html[lang="en"] .brand-service-grid .sab_b > ul > li > a:focus {
  border-color: var(--brand-red);
  color: #fff;
  background: var(--brand-red);
}

html[lang="en"] .brand-service-card--cast .sab_b > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 5px;
  height: 104px;
}

html[lang="en"] .brand-service-card--cast .sab_b > ul > li > a {
  justify-content: center;
  width: 100%;
  min-height: 24px;
  padding: 2px 4px;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
}

html[lang="en"] .brand-detail-heading h1,
html[lang="en"] .brand-service-heading h1,
html[lang="en"] .brand-service-section h2,
html[lang="en"] .ps_left a,
html[lang="en"] .ny_biao span {
  overflow-wrap: anywhere;
  word-break: normal;
}

html[lang="en"] .ty_content table,
html[lang="en"] .brand-rich table {
  display: block;
  max-width: 100% !important;
  overflow-x: auto;
}

@media (min-width: 992px) {
  html[lang="en"] .brand-service-grid .sab_b > ul {
    align-content: flex-start;
    min-height: 104px;
  }
}

/* English page-review sitemap. */
.brand-sitemap .brand-service-heading {
  margin-right: 0;
  margin-left: 0;
}

.brand-sitemap__primary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.brand-sitemap__primary a {
  padding: 10px 16px;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  color: var(--brand-ink);
  background: #fff;
  font-weight: 700;
}

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

.brand-sitemap__section {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 17, 27, .055);
}

.brand-sitemap__section-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--brand-line);
}

.brand-sitemap__section-heading h2 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(22px, 2.2vw, 32px);
}

.brand-sitemap__section-heading > a {
  flex: 0 0 auto;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 700;
}

.brand-sitemap__list,
.brand-sitemap__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-sitemap__list--depth-1,
.brand-sitemap__list--depth-2,
.brand-sitemap__items {
  margin: 9px 0 13px 14px;
  padding-left: 15px;
  border-left: 1px solid var(--brand-line);
}

.brand-sitemap__category {
  margin: 8px 0;
}

.brand-sitemap__category-link {
  color: var(--brand-ink);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.brand-sitemap__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 14px;
}

.brand-sitemap__items a {
  color: var(--brand-slate);
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.brand-sitemap a:hover,
.brand-sitemap a:focus {
  color: var(--brand-red);
}

@media (max-width: 900px) {
  .brand-sitemap__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-sitemap__items {
    grid-template-columns: 1fr;
  }

  .brand-sitemap__section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .s_about .row.brand-auto-grid + .row.brand-auto-grid {
    margin-top: 38px;
  }

  .ps_content {
    display: block !important;
  }

  .ps_content .ps_left {
    position: static !important;
    width: 100% !important;
    margin-bottom: 24px;
    transform: none !important;
  }

  .ps_content .sj_daohang {
    display: none !important;
  }

  .ps_content .ps_swiper,
  .ps_content .ps_text {
    width: 100% !important;
  }

  .ps_content .ps_text {
    margin-top: 24px !important;
  }

  .ps_content .dw_ps_text .ty_content {
    max-height: none;
    overflow: visible;
  }

  .s_zhengce .caption {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .sy_biao {
    align-items: flex-start;
    gap: 10px 12px;
  }

  .sy_biao strong {
    flex: 1 1 calc(100% - 110px);
    font-size: clamp(20px, 6.5vw, 25px) !important;
  }

  .sy_biao .fr {
    padding-top: 4px;
  }

  .s_about .row.brand-auto-grid + .row.brand-auto-grid {
    margin-top: 32px;
  }

  .s_zhengce .caption > .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0;
  }

  .s_zhengce .caption > .row > [class*="col-"] {
    width: 100%;
    padding: 0;
  }

  .ps_content .ps_left {
    border-radius: 14px;
  }

  .n_zhong.paishe .container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px);
  }
}
