:root {
  --brand: #1765c7;
  --brand-dark: #0b4fa7;
  --brand-deep: #0b2f67;
  --ink: #18263a;
  --muted: #68758a;
  --line: #e8edf4;
  --surface: #f5f8fc;
  --white: #fff;
  --shadow: 0 18px 50px rgba(26, 75, 132, 0.12);
  --container: 1240px;
  --header-height: 84px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* //panda 官网提测，禁止滑到底后回弹露出页脚外的白底 */
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial,
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 18px;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--surface);
}

.section-blue {
  color: var(--white);
  background: linear-gradient(145deg, #0756b7, #2473d4);
}

.section-heading {
  margin-bottom: 46px;
  text-align: center;
}

.section-heading .eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-blue .section-heading .eyebrow {
  color: #c8ddff;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.section-blue .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  color: var(--white);
  font-weight: 600;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  transition: 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--brand);
  background: transparent;
}

.button-white {
  color: var(--brand-dark);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* 公共头部 */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 26, 64, 0.42), transparent);
}

.site-header.header-solid {
  position: relative;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  position: relative;
  z-index: 103;
  display: block;
  width: 154px;
}

.brand-logo .logo-dark {
  display: none;
}

.header-solid .brand-logo .logo-light {
  display: none;
}

.header-solid .brand-logo .logo-dark {
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 46px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 29px 0 25px;
  font-size: 15px;
  font-weight: 500;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  z-index: 103;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.header-solid .menu-toggle {
  border-color: var(--line);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: 0.2s ease;
}

.mobile-search-pill {
  display: none;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-meta {
  display: none;
}

/* 首页轮播 */
.home-hero {
  position: relative;
  /* //panda 全站自然滚动，桌面轮播按原图比例展示 */
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dceafa;
}

.hero-slides,
.hero-slide,
.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-dot {
  width: 30px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 10px;
}

.hero-dot.is-active {
  background: var(--white);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 5;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.scroll-hint::after {
  display: block;
  width: 1px;
  height: 50px;
  margin: 10px auto 0;
  content: "";
  background: rgba(255, 255, 255, 0.75);
}

/* 首页内容 */
.home-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.home-intro-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px 90px 4px 4px;
  box-shadow: var(--shadow);
}

.home-intro-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-intro-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.25;
}

.home-intro-copy p {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.stat-item {
  padding: 25px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.stat-value {
  display: block;
  color: var(--brand);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 60px;
  align-items: center;
}

.product-showcase-visual {
  position: relative;
}

.product-showcase-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(0, 24, 68, 0.35);
}

.product-showcase-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.2;
}

.product-showcase-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 32px;
  list-style: none;
}

.category-pills li {
  padding: 7px 14px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.chain-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.chain-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: #174f91;
  border-radius: 10px;
}

.chain-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chain-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(2, 29, 68, 0.92));
}

.chain-card-content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.chain-card-content span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.chain-card-content h3 {
  margin: 0;
  font-size: 24px;
}

.chain-card:hover img {
  transform: scale(1.05);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.news-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.news-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-card-content {
  padding: 20px;
}

.news-card time {
  color: var(--brand);
  font-size: 12px;
}

.news-card h2,
.news-card h3 {
  display: -webkit-box;
  margin: 10px 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  font: inherit;
  text-align: left;
  background: #0f284d;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.78;
}

.video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 45%, rgba(0, 22, 55, 0.85));
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -60%);
}

.play-button::before {
  margin-left: 4px;
  content: "▶";
}

.video-card-title {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  margin: 0;
  font-size: 18px;
}

/* 内页头图 */
.page-hero {
  position: relative;
  min-height: 56.25vw;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-deep);
}

.page-hero picture,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero img {
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 28, 67, 0.42), transparent 65%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 56.25vw;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--header-height);
}

.page-hero-content h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-shadow: 0 6px 24px rgba(0, 31, 74, 0.24);
}

.page-hero-content p {
  margin-bottom: 0;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.breadcrumb {
  padding: 20px 0;
  color: #8490a2;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

/* //panda 企业动态搜索与面包屑对齐 */
.breadcrumb ol {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 10px;
  content: "/";
}

/* 关于我们 */
.about-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.about-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.2;
}

.about-intro-copy p {
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.value-card {
  min-height: 190px;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(20, 64, 115, 0.06);
}

.value-card b {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 21px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.design-section {
  margin: 0;
  background: var(--white);
}

.design-section picture,
.design-section img {
  width: 100%;
}

.design-section img {
  height: auto;
}

/* 全产业链 */
.anchor-nav,
.chain-tabs {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  margin: 0;
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.anchor-nav a,
.chain-tabs button {
  display: block;
  min-width: 130px;
  padding: 9px 18px;
  color: var(--muted);
  font: inherit;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.anchor-nav a:hover,
.anchor-nav a.is-active {
  color: var(--white);
  background: var(--brand);
}

.chain-tabs button:hover,
.chain-tabs button:focus-visible,
.chain-tabs button[aria-selected="true"] {
  color: var(--brand);
  background: transparent;
}

.chain-tabs button {
  position: relative;
}

.chain-tabs button:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -4px;
  color: #9ba4b2;
  content: "/";
  transform: translateY(-50%);
}

.chain-tabs button:focus-visible {
  box-shadow: 0 0 0 3px rgba(23, 101, 199, 0.24);
  outline: none;
}

.chain-chapter {
  scroll-margin-top: 20px;
}

.chain-tab-panel[hidden] {
  display: none !important;
}

.chain-tab-panel.is-active {
  animation: chain-panel-enter 0.36s ease both;
}

@keyframes chain-panel-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chain-chapter-title {
  padding: 56px 24px 32px;
  text-align: center;
}

.chain-chapter-title span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.chain-chapter-title h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3vw, 44px);
}

.chain-design-stack img {
  width: 100%;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* 产品 */
.products-hero {
  min-height: 51.05vw;
  background: #2864c9;
}

.products-hero::after {
  background: none;
}

.products-hero .page-hero-content {
  min-height: 51.05vw;
  align-items: center;
  text-align: center;
}

.products-hero .page-hero-content > h1,
.products-hero .page-hero-content > p {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.products-hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.products-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.products-catalog {
  padding: 0;
  background: var(--white);
}

.products-catalog > .container {
  width: 100%;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  border-bottom: 1px solid #edf0f4;
}

.product-tab {
  position: relative;
  padding: 25px 10px 23px;
  color: #777;
  font-size: 15px;
  text-align: center;
  transition: color 0.2s ease;
}

.product-tab + .product-tab::before {
  position: absolute;
  top: 50%;
  left: 0;
  color: #a2a2a2;
  content: "/";
  transform: translate(-50%, -50%);
}

.product-tab:hover,
.product-tab:focus-visible {
  color: var(--brand);
  font-weight: 700;
}

.product-panel {
  scroll-margin-top: 18px;
}

.product-panel + .product-panel {
  margin-top: 0;
}

@media (min-width: 768px) {
  /* //panda 官网提测：PC 产品系列横向铺满，图片仍按运营原图比例自然展示 */
  body[data-page="products"] .product-panel {
    width: 100%;
    margin-inline: 0;
  }

  body[data-page="products"] .product-feature-media picture {
    aspect-ratio: 1205 / 559;
  }

  body[data-page="products"] .product-feature-copy {
    top: auto;
    bottom: clamp(14px, 2.4svh, 24px);
    font-size: clamp(9px, 1.2svh, 15px);
    line-height: 1.35;
  }

  body[data-page="products"] .product-feature-copy p {
    grid-template-columns: clamp(68px, 9svh, 92px) minmax(0, 1fr);
    gap: clamp(7px, 1svh, 12px);
    margin-bottom: clamp(4px, 1svh, 10px);
  }
}

.product-feature {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

#panel-fresh .product-feature,
#panel-sashimi .product-feature,
#panel-chilled .product-feature,
#panel-frozen .product-feature {
  background: #05080b;
}

#panel-prepared .product-feature {
  background: #f6d7a6;
}

#panel-gift .product-feature {
  background: #eef8ff;
}

.product-feature-media picture,
.product-feature-media img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.product-feature-media img {
  height: auto;
}

.product-feature-copy {
  position: absolute;
  top: 63%;
  left: 8.1%;
  z-index: 1;
  width: min(38%, 650px);
  color: #fff;
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1.5;
}

.product-feature-copy p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0 0 10px;
}

.product-feature-copy b {
  padding: 4px 9px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background: #1557bb;
}

.product-feature-copy span {
  padding-top: 2px;
}

#panel-prepared .product-feature-copy,
#panel-gift .product-feature-copy {
  color: #343434;
}

.product-card-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.product-card-grid.product-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card-grid.product-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: #f7f8fa;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-card picture,
.product-card img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.product-card img {
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  /* //panda 官网提测，运营换图默认居中，具体焦点由内容字段控制 */
  object-position: var(--product-card-focus-x, 50%) center;
}

.product-card--crop-left img {
  object-position: 18% center;
}

.product-card--crop-center img {
  object-position: 42% center;
}

.product-card--crop-right img {
  object-position: 68% center;
}

.product-card--crop-far-right img {
  object-position: 88% center;
}

.product-card h3 {
  padding: 10px 8px 12px;
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* //panda 全站自然滚动，产品系列按内容比例自然展开 */

/* 企业动态 */
.news-page-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0;
  margin: 0 0 52px;
  list-style: none;
}

.news-page-tabs a {
  padding-bottom: 8px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.news-page-tabs a[aria-current="page"],
.news-page-tabs a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.featured-news {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.featured-news img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.featured-news time {
  color: var(--brand);
  font-size: 13px;
}

.featured-news h2 {
  margin: 12px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.35;
}

.featured-news p {
  color: var(--muted);
}

.news-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.news-list-toolbar h1 {
  margin: 0;
  font-size: 34px;
}

/* //panda 企业动态搜索与面包屑对齐 */
.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 360px);
  min-height: 52px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form:focus-within {
  border-color: rgba(23, 101, 199, 0.55);
  box-shadow: 0 0 0 3px rgba(23, 101, 199, 0.1);
}

.search-form input {
  width: auto;
  min-width: 0;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}

.search-form input::placeholder {
  color: #929cab;
}

.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 0 20px;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  transition: background 0.2s ease;
}

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

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}

.pagination a {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.pagination a[aria-current="page"] {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: start;
}

.article-header {
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
}

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

.article-summary {
  padding: 20px 24px;
  margin-bottom: 30px;
  color: #536175;
  background: var(--surface);
  border-left: 3px solid var(--brand);
}

.article-body {
  color: #3d4b5e;
  font-size: 17px;
  line-height: 2;
}

.article-body h2 {
  margin: 44px 0 18px;
  color: var(--ink);
  font-size: 26px;
}

.article-body img {
  width: 100%;
  margin: 26px 0;
  border-radius: 6px;
}

.related-panel {
  padding: 28px;
  background: var(--surface);
  border-radius: 10px;
}

.related-panel h2 {
  margin-bottom: 18px;
  font-size: 22px;
}

.related-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.related-list li + li {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-list a {
  display: block;
  font-size: 15px;
  line-height: 1.55;
}

.related-list time {
  color: var(--muted);
  font-size: 12px;
}

/* 招商加盟 */
.join-hero-desktop {
  background: var(--brand-deep);
}

.join-hero-desktop::after {
  background: none;
}

.join-hero-desktop picture {
  display: block;
}

.join-hero-desktop picture img {
  object-position: center top;
}

.join-hero-desktop .page-hero-content {
  visibility: hidden;
}

.join-page-nav {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #777;
  background: var(--white);
}

.join-page-nav a {
  padding: 18px 6px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.support-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(28, 72, 122, 0.06);
}

.support-scene {
  width: min(720px, 100%);
  aspect-ratio: 1.82 / 1;
  margin: 36px auto 0;
  background: url("../images/mobile/招商加盟/1招商加盟_03.jpg") center bottom / 100% auto no-repeat;
  border-radius: 18px;
}

.support-index {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 700;
  background: var(--brand);
  border-radius: 50%;
  place-items: center;
}

.support-card h3 {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 21px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* 底部 */
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: #115bc0;
}

.site-footer::before {
  display: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 70px;
  padding: 76px 0 54px;
}

.footer-brand img {
  width: 152px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links button,
.social-links a {
  display: grid;
  width: 45px;
  height: 45px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  place-items: center;
}

.social-links button {
  color: inherit;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* 悬浮按钮与弹窗 */
.floating-tools {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 90;
  display: grid;
  gap: 6px;
}

.floating-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  font-size: 0;
  background: var(--brand);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(10, 73, 151, 0.28);
}

.floating-button img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* //panda 移动端产品与交互校准 */
.floating-service-icon {
  font-size: 12px;
  font-weight: 700;
}

.floating-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.floating-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  width: max-content;
  max-width: 180px;
  padding: 7px 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  pointer-events: none;
  background: rgba(16, 52, 100, 0.94);
  border-radius: 5px;
  opacity: 0;
  transform: translate(6px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-button:hover .floating-tooltip,
.floating-button:focus-visible .floating-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-qr-card {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 0;
  display: grid;
  width: 126px;
  padding: 10px;
  color: #20344f;
  font-size: 12px;
  pointer-events: none;
  background: #fff;
  border: 1px solid #dce5f1;
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(9, 42, 84, 0.2);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  place-items: center;
}

.floating-button:hover .floating-qr-card,
.floating-button:focus-visible .floating-qr-card {
  opacity: 1;
  transform: translateX(0);
}

.floating-qr-placeholder {
  display: grid;
  width: 96px;
  height: 96px;
  margin-bottom: 6px;
  color: #37679d;
  font-size: 11px;
  background: repeating-conic-gradient(#18334f 0 25%, #fff 0 50%) 50% / 14px 14px;
  border: 6px solid #fff;
  outline: 1px solid #d8e1ec;
  place-items: center;
}

.floating-qr-placeholder b {
  padding: 3px;
  background: rgba(255, 255, 255, 0.92);
}

.floating-icon-headset {
  position: relative;
  width: 24px;
  height: 22px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.floating-icon-headset::before,
.floating-icon-headset::after {
  position: absolute;
  bottom: -3px;
  width: 5px;
  height: 9px;
  content: "";
  background: currentColor;
  border-radius: 3px;
}

.floating-icon-headset::before { left: -3px; }
.floating-icon-headset::after { right: -3px; }

.floating-icon-top {
  position: relative;
  width: 22px;
  height: 24px;
}

.floating-icon-top::before,
.floating-icon-top::after {
  position: absolute;
  content: "";
}

.floating-icon-top::before {
  top: 7px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.floating-icon-top::after {
  top: 8px;
  left: 10px;
  width: 2px;
  height: 15px;
  background: currentColor;
}

.back-to-top {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  /* //panda 官网提测，关闭态不参与根滚动区域计算 */
  display: none;
  visibility: hidden;
  padding: 24px;
  background: rgba(5, 22, 46, 0.62);
  opacity: 0;
  place-items: center;
  transition: 0.2s ease;
}

.modal.is-open {
  display: grid;
  visibility: visible;
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 38px;
  text-align: center;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 20, 54, 0.35);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.modal.is-open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--muted);
  background: transparent;
  border: 0;
  place-items: center;
}

.qr-placeholder {
  display: grid;
  width: 210px;
  height: 210px;
  margin: 22px auto;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  background:
    linear-gradient(90deg, #e9f1fb 50%, transparent 50%) 0 0 / 18px 18px,
    linear-gradient(#e9f1fb 50%, transparent 50%) 0 0 / 18px 18px;
  border: 12px solid var(--white);
  outline: 1px solid var(--line);
  place-items: center;
}

.toast {
  position: fixed;
  bottom: 34px;
  left: 50%;
  z-index: 1200;
  visibility: hidden;
  padding: 12px 20px;
  color: var(--white);
  background: rgba(8, 34, 68, 0.94);
  border-radius: 6px;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: 0.2s ease;
}

.toast.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.not-found {
  display: grid;
  min-height: 100svh;
  padding: 40px;
  text-align: center;
  background: linear-gradient(145deg, #eff6ff, #fff);
  place-items: center;
}

.not-found strong {
  display: block;
  color: var(--brand);
  font-size: clamp(84px, 18vw, 180px);
  line-height: 1;
}

/* 首页：按最新效果图重排 */
.home-product-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 96px;
  color: var(--white);
  background: var(--white);
}

.home-product-reference {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .home-product-section::after {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 3.2%;
    height: 51.05vw;
    max-height: 980px;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, #2864c9 0%, #2a68cf 46%, #edf5ff 76%, #fff 100%);
  }
}

.home-product-inner {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-product-heading {
  margin-bottom: 34px;
  text-align: center;
}

.home-product-heading span {
  display: block;
  margin-bottom: 7px;
  color: #cde0ff;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.home-product-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.2;
}

.home-product-heading p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.home-product-matrix {
  width: min(1040px, 90%);
  margin: 0 auto;
  filter: drop-shadow(0 28px 28px rgba(1, 42, 99, 0.2));
}

.home-product-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-product-nav a {
  min-width: 118px;
  padding: 9px 17px;
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.home-product-carousel {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px;
  gap: 22px;
  align-items: center;
  max-width: 1240px;
  margin-top: 10px;
}

.home-product-slides {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1205 / 559;
  background: #111820;
  border-radius: 10px;
  box-shadow: 0 20px 54px rgba(31, 77, 135, 0.22);
}

.home-product-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-product-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.home-product-slide picture,
.home-product-slide img {
  width: 100%;
  height: 100%;
}

.home-product-slide img {
  object-fit: cover;
}

.home-product-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 76px;
  padding: 0;
  background: transparent;
  border: 0;
}

.home-product-arrow img {
  width: 90px;
  height: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-product-arrow:hover img,
.home-product-arrow:focus-visible img {
  opacity: 0.78;
  transform: scale(1.06);
}

.home-strength-section {
  padding: 90px 0;
  background: var(--white);
}

.brand-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 52px;
  max-width: 1050px;
  margin: 0 auto 58px;
}

.brand-quotes blockquote {
  position: relative;
  padding: 22px 28px;
  margin: 0;
  color: var(--brand);
  font-size: clamp(19px, 1.6vw, 27px);
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #f0ad35;
}

.brand-quotes blockquote::before,
.brand-quotes blockquote::after {
  position: absolute;
  top: -2px;
  color: #dce9fb;
  font-size: 54px;
  line-height: 1;
}

.brand-quotes blockquote::before { left: 0; content: "“"; }
.brand-quotes blockquote::after { right: 0; content: "”"; }

.brand-quotes small {
  display: block;
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  font-weight: 400;
}

.home-strength-stats {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.home-strength-stats div {
  min-width: 0;
  text-align: center;
}

.home-strength-stats strong {
  display: block;
  color: var(--brand);
  font-size: clamp(28px, 3vw, 47px);
  line-height: 1.1;
}

.home-strength-stats sup { font-size: 0.48em; }

.home-strength-stats span {
  display: block;
  margin-top: 9px;
  color: var(--brand-dark);
  font-size: 13px;
}

.home-chain-feature {
  position: relative;
  min-height: 650px;
  padding: 115px 0;
  color: var(--white);
  background: #0b356c url("../images/pc/关于我们/关于我们_01.jpg") center / cover no-repeat;
}

.home-chain-feature::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(4, 36, 78, 0.7);
}

.home-chain-feature .container { position: relative; z-index: 1; text-align: center; }
.home-chain-feature h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 58px); }
.home-chain-feature p { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.82); }

.home-chain-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 850px;
  margin: 74px auto 0;
}

.home-chain-links a {
  padding: 90px 10px 18px;
  font-size: 20px;
  background: linear-gradient(transparent, rgba(13, 88, 179, 0.72));
  border-right: 1px solid rgba(255,255,255,.28);
}

.home-strategy { padding: 82px 0 90px; text-align: center; }
.home-strategy header h2 { margin-bottom: 6px; font-size: clamp(30px, 3vw, 46px); }
.home-strategy header p { color: #333; font-size: 13px; }
.strategy-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 850px; margin: 56px auto 0; }
.strategy-grid div { display: grid; gap: 12px; place-items: center; }
.strategy-grid b { display: grid; width: 74px; height: 74px; color: var(--brand); font-size: 31px; border: 3px solid var(--brand); border-radius: 24px; place-items: center; }
.strategy-grid span { font-size: 20px; }

.home-news-section {
  position: relative;
  padding: 92px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #e4f0ff, #c9ddf8);
}

.home-news-panel {
  padding: 34px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(31, 87, 153, 0.1);
}

.home-news-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 48px;
  align-items: start;
}

.home-news-feature img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.home-news-feature-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; padding-top: 16px; }
.home-news-feature time { display: block; flex: 0 0 auto; color: var(--muted); font-size: 12px; }
.home-news-feature h3 { margin: 0; font-size: 16px; line-height: 1.55; }

.home-news-list a {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(21, 74, 140, .18);
}

.home-news-list time { color: var(--muted); font-size: 11px; text-align: center; }
.home-news-list time b { display: block; color: var(--brand); font-size: 30px; line-height: 1; }
.home-news-list span { min-width: 0; font-size: 15px; line-height: 1.45; }
.home-news-list strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-news-list small { display: block; margin-top: 5px; overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }

.home-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.home-news-more { margin-top: 28px; text-align: center; }
.home-news-more .button { min-height: 36px; padding: 0 24px; font-size: 13px; }

.home-boat-strip {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 24px auto -1px;
}

.home-boat-strip img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .site-footer {
  display: block;
}

body[data-page="home"] .floating-tools {
  display: grid;
}

.home-pixel-section {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.home-pixel-section picture,
.home-pixel-section > picture > img {
  display: block;
  width: 100%;
  height: auto;
}

body[data-page="home"] .home-pixel-section::before,
body[data-page="home"] .home-pixel-section::after {
  display: none !important;
}

.home-live-news {
  --home-news-curve-depth: 92px;
  position: relative;
  z-index: 2;
  padding-bottom: calc(64px + 22.9167vw);
  margin-bottom: calc(var(--home-news-curve-depth) * -1);
  overflow: hidden;
  background-color: #c9ddff;
  background-image: url("../images/pc/首页/首页品牌动态背景.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 50% 50% / 0 0 var(--home-news-curve-depth) var(--home-news-curve-depth);
  box-shadow: 0 18px 0 #1e55aa;
}

.home-live-news > .container {
  width: min(calc(100% - 80px), 1640px);
  padding-top: 92px;
}

.home-live-news-heading {
  margin-bottom: 82px;
  color: #282828;
  text-align: center;
}

.home-live-news-heading h2 {
  margin: 0;
  font-size: clamp(38px, 3.3vw, 62px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.18em;
}

.home-live-news-heading p {
  margin: 8px 0 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.home-live-news-panel {
  padding: 36px 24px 72px;
  background: #fff;
  border-radius: 22px;
}

.home-live-news-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 76px;
}

.home-live-feature img {
  width: 100%;
  aspect-ratio: 790 / 530;
  object-fit: cover;
  border-radius: 14px;
}

.home-live-feature-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6px 0;
}

.home-live-feature-title h3 {
  margin: 0;
  color: #1453a5;
  font-size: clamp(18px, 1.35vw, 27px);
  line-height: 1.45;
}

.home-live-feature-title time,
.home-live-feature p {
  color: #888;
  font-size: 15px;
}

.home-live-feature-title time {
  flex: 0 0 auto;
  padding-top: 4px;
}

.home-live-feature p {
  padding: 12px 6px 0;
  margin: 0;
}

.home-live-news-list a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 148px;
  border-bottom: 1px solid #aaa;
}

.home-live-news-list a:last-child {
  border-bottom: 0;
}

.home-live-news-list time {
  color: #777;
  font-size: 14px;
  text-align: center;
}

.home-live-news-list time b {
  display: block;
  margin-bottom: 4px;
  color: #202020;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.home-live-news-list time span,
.home-live-news-list small {
  display: block;
}

.home-live-news-list strong {
  display: block;
  overflow: hidden;
  color: #202020;
  font-size: clamp(17px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-live-news-list small {
  margin-top: 6px;
  overflow: hidden;
  color: #888;
  font-size: 15px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-live-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.home-live-video {
  padding: 0;
  color: #111;
  background: transparent;
  border: 0;
}

.home-live-video img {
  width: 100%;
  /* //panda 官网提测：视频中心与首页统一使用运营上传的16:9封面 */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 0.2s ease;
}

.home-live-video:hover img,
.home-live-video:focus-visible img {
  filter: brightness(1.08);
}

.home-live-video span {
  display: block;
  padding: 18px 12px 0;
  font-size: clamp(18px, 1.25vw, 26px);
}

.home-live-news-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 58px;
  margin: 56px auto 0;
  color: #fff;
  font-size: 22px;
  background: #2367ca;
  border-radius: 999px;
}

.home-live-news-more span {
  margin-left: 8px;
}

.home-live-footer {
  position: relative;
  z-index: 1;
  background: #2864c9;
}

.home-live-footer::before {
  display: none;
}

body[data-page="home"] .home-live-footer .home-footer-channels {
  padding-top: 178px;
}

.home-footer-channels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  width: min(calc(100% - 80px), 1380px);
  padding: 86px 0 110px;
}

.home-footer-channels button,
.home-footer-channels a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  text-align: left;
  background: transparent;
  border: 0;
}

.home-footer-channels img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
}

.home-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: min(calc(100% - 80px), 1680px);
  padding-bottom: 42px;
  color: #fff;
}

.home-footer-bottom nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 16px;
}

.home-footer-bottom nav i {
  font-style: normal;
  opacity: 0.8;
}

.home-footer-phone {
  display: grid;
  grid-template-columns: auto auto;
  color: #fff;
  line-height: 1.15;
}

.home-footer-phone > span {
  grid-row: 1 / 3;
  align-self: center;
  margin-right: 10px;
  font-size: 42px;
}

.home-footer-phone small {
  font-size: 15px;
}

.home-footer-phone strong {
  font-size: 24px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  /* //panda 官网提测，关闭态不参与根滚动区域计算 */
  display: none;
  visibility: hidden;
  padding: 24px;
  background: rgba(3, 16, 39, 0.84);
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  place-items: center;
}

.video-modal.is-open {
  display: grid;
  visibility: visible;
  opacity: 1;
}

.video-modal-dialog {
  position: relative;
  width: min(900px, 100%);
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  transform: translateY(18px);
  transition: transform 0.2s ease;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0);
}

.video-modal-dialog h2 {
  padding-right: 44px;
  margin-bottom: 18px;
}

.video-modal-dialog video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07152b;
}

.video-modal-dialog p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #31557f;
  background: #eef4fb;
  border: 0;
  border-radius: 50%;
}

.about-design-stack img { width: 100%; height: auto; }

/* 关于我们：设计图展示区与可交互荣誉轮播 */
body[data-page="about"] main {
  background: #f8f8f8;
}

.about-page-hero {
  min-height: 56.25vw;
}

.about-anchor-nav {
  position: relative;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid #edf0f5;
}

.about-anchor-nav .container {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 86px);
}

.about-anchor-nav a {
  position: relative;
  color: #697588;
  font-size: 14px;
  transition: color 0.2s ease;
}

.about-anchor-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -10px;
  left: 50%;
  height: 2px;
  content: "";
  background: #1765c7;
  transition: right 0.2s ease, left 0.2s ease;
}

.about-anchor-nav a:hover,
.about-anchor-nav a:focus-visible {
  color: #1765c7;
}

.about-anchor-nav a:hover::after,
.about-anchor-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.about-profile {
  padding: 72px 0 78px;
  background: #fff;
}

.about-profile-inner {
  display: grid;
  width: min(calc(100% - 96px), 1640px);
  margin: 0 auto;
  grid-template-columns: 220px minmax(0, 1fr) 192px;
  gap: 58px;
  align-items: start;
}

.about-profile-title span {
  display: block;
  margin-bottom: 8px;
  color: #8b96a5;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.about-profile-title h2 {
  margin: 0;
  color: #0c1e36;
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1.2;
}

.about-profile-title h2::after {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 18px;
  content: "";
  background: #1765c7;
}

.about-profile-copy {
  padding-top: 24px;
}

.about-profile-copy p {
  margin-bottom: 18px;
  color: #4b5564;
  font-size: 14px;
  line-height: 2;
}

.about-profile-copy p:last-child {
  margin-bottom: 0;
}

.about-values-image {
  display: block;
  width: 192px;
  height: 528px;
  object-fit: contain;
}

.about-image-section,
.about-mobile-profile,
.about-awards,
.about-showcase-section {
  background: #f8f8f8;
}

.about-image-section img,
.about-mobile-profile img,
.about-awards > img,
.about-showcase-section > img,
.about-showcase-section > picture,
.about-showcase-section > picture > img,
.about-showcase-section > div > img {
  display: block;
  width: 100%;
  height: auto;
}

.about-image-section .mobile-only,
.about-awards > .mobile-only,
.about-showcase-section > .mobile-only {
  display: none;
}

.about-section-heading {
  padding: 74px 24px 42px;
  text-align: center;
}

.about-section-heading h2 {
  margin: 0;
  color: #0f58c4;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.about-section-heading h2 strong {
  font-weight: 500;
}

.about-section-heading p {
  margin: 10px 0 0;
  color: #a2a2a2;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.about-awards .about-section-heading {
  padding-bottom: 0;
}

.about-carousel {
  --about-gap: 18px;
  padding-bottom: 92px;
  overflow: hidden;
  background: #f8f8f8;
}

.about-carousel-shell {
  display: grid;
  width: min(calc(100% - 72px), 1700px);
  margin: 0 auto;
  grid-template-columns: 113px minmax(0, 1fr) 113px;
  gap: 22px;
  align-items: center;
}

.about-carousel-button {
  display: flex;
  width: 113px;
  height: 72px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-carousel-button:hover,
.about-carousel-button:focus-visible {
  background: rgba(23, 101, 199, 0.06);
  transform: scale(1.04);
}

.about-carousel-button img {
  display: block;
  width: 113px;
  height: 52px;
  object-fit: contain;
}

.about-carousel-viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
  outline: none;
}

.about-carousel-viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(23, 101, 199, 0.24);
}

.about-carousel-track {
  display: flex;
  gap: var(--about-gap);
  align-items: stretch;
  will-change: transform;
  transition: none;
}

.about-carousel-slide {
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - 72px) / 5);
  align-items: flex-end;
  justify-content: center;
  margin: 0;
}

.about-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-carousel-base {
  display: block;
  width: 100%;
  height: 54px;
  margin-top: -9px;
  object-fit: fill;
}

.about-carousel-tech .about-carousel-slide {
  aspect-ratio: 258 / 340;
}

.about-carousel-cert .about-carousel-slide,
.about-carousel-patent .about-carousel-slide,
.about-carousel-honor .about-carousel-slide {
  flex-basis: calc((100% - 54px) / 4);
}

.about-carousel-cert .about-carousel-slide {
  height: clamp(360px, 29vw, 560px);
}

.about-carousel-patent .about-carousel-slide {
  height: clamp(300px, 22vw, 410px);
}

.about-carousel-honor .about-carousel-slide {
  height: clamp(270px, 20vw, 360px);
}

.about-showcase-section {
  overflow: hidden;
}

.about-partners .about-section-heading {
  padding-top: 60px;
  padding-bottom: 34px;
}

/* //panda 合作伙伴列表活态化 */
.about-partners-grid {
  display: grid;
  width: min(calc(100% - 80px), 1640px);
  padding: 0 0 78px;
  margin: 0 auto;
  list-style: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 58px);
  row-gap: 48px;
}

.about-partner-item,
.about-partner-item figure {
  min-width: 0;
  margin: 0;
}

.about-partner-item figure {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.about-partner-logo {
  display: flex;
  width: 100%;
  height: 102px;
  align-items: center;
  justify-content: center;
}

.about-partner-logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.about-partner-item:hover .about-partner-logo img {
  transform: translateY(-3px);
}

.about-partner-item figcaption,
.about-partners-note p {
  margin: 0;
  color: #211b1b;
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.4;
}

.about-partners-note {
  display: grid;
  min-height: 130px;
  align-content: center;
  justify-items: center;
  gap: 32px;
  text-align: center;
}

.about-partners-note span {
  color: #211b1b;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.28em;
}

.about-products .about-section-heading {
  padding-bottom: 0;
}

.about-products {
  border-bottom: 1px solid #1765c7;
}

.about-business {
  overflow: hidden;
  background: #f8f8f8;
}

.about-business-header {
  padding: 48px 24px 44px;
  color: #fff;
  text-align: center;
  background: #2463c9;
}

.about-business-header h2 {
  margin: 0;
  font-size: clamp(32px, 2.3vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.about-business-header p {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.15vw, 21px);
  letter-spacing: 0.04em;
}

.about-business-list {
  width: min(calc(100% - 96px), 1648px);
  margin: 0 auto;
}

.about-business-item {
  display: grid;
  padding: 80px 0;
  grid-template-columns: minmax(330px, 493px) minmax(0, 1fr);
  gap: clamp(24px, 3.1vw, 60px);
  align-items: center;
  border-bottom: 1px dashed #8b8b8b;
}

.about-business-item:last-child {
  border-bottom: 0;
}

.about-business-item:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 493px);
}

.about-business-item:nth-child(even) .about-business-cover {
  grid-column: 2;
  grid-row: 1;
}

.about-business-item:nth-child(even) .about-business-copy {
  grid-column: 1;
  grid-row: 1;
}

.about-business-cover {
  --crop-x: -27.6%;
  --crop-y: -112.4%;
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 493 / 251;
  background: #dfeaf8;
}

.about-business-cover img {
  position: absolute;
  top: var(--crop-y);
  left: var(--crop-x);
  display: block;
  width: 389.45%;
  max-width: none;
  height: auto;
}

.about-business-cover-processing {
  --crop-x: -260.5%;
  --crop-y: -257.4%;
}

.about-business-cover-commerce {
  --crop-x: -27.6%;
  --crop-y: -397.6%;
}

.about-business-cover-data {
  --crop-x: -260.5%;
  --crop-y: -529.5%;
}

.about-business-copy {
  min-width: 0;
}

.about-business-title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  margin-bottom: 12px;
  color: #0f5ac7;
}

.about-business-title-line h3,
.about-business-title-line p {
  margin: 0;
  color: inherit;
}

.about-business-title-line h3 {
  font-size: clamp(30px, 2.2vw, 42px);
  font-weight: 700;
  line-height: 1.15;
}

.about-business-title-line p {
  font-size: clamp(17px, 1.25vw, 23px);
  font-weight: 600;
}

.about-business-description {
  margin: 0;
  color: #555;
  font-size: clamp(16px, 1.1vw, 21px);
  line-height: 1.75;
  text-align: justify;
}

.embedded-title-hero .page-hero-content,
.chain-chapter-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.embedded-title-hero::after {
  background: none;
}

.news-video-grid {
  grid-template-columns: repeat(6, 1fr);
}

.news-video-grid .video-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.news-video-grid .video-card:nth-child(n + 3) {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chain-card-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-shell {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

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

  .section {
    padding: 70px 0;
  }

  .brand-logo {
    width: 126px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: flex;
    visibility: hidden;
    padding: 100px 28px 32px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    flex-direction: column;
    transition: 0.25s ease;
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
  }

  .main-nav ul {
    width: 100%;
    align-items: stretch;
    gap: 0;
    flex-direction: column;
  }

  .main-nav a {
    padding: 15px 8px;
    font-size: 20px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-menu-meta {
    display: block;
    width: 100%;
    margin-top: auto;
    color: var(--muted);
    font-size: 13px;
  }

  .menu-open .brand-logo .logo-light {
    display: none;
  }

  .menu-open .brand-logo .logo-dark {
    display: block;
  }

  .menu-open .menu-toggle {
    color: var(--ink);
    border-color: var(--line);
  }

  .home-intro-grid,
  .product-showcase,
  .about-intro,
  .featured-news {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .stats-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero,
  .page-hero-content {
    min-height: 56.25vw;
  }

  .page-hero-content {
    justify-content: flex-end;
    padding-bottom: 42px;
  }

  .products-hero,
  .products-hero .page-hero-content {
    min-height: 51.05vw;
  }

  .product-feature-media img {
    height: auto;
    aspect-ratio: 1205 / 559;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .related-panel {
    margin-top: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .site-header {
    background: linear-gradient(to bottom, rgba(1, 31, 72, 0.5), transparent);
  }

  .site-header.header-solid {
    background: var(--white);
  }

  .home-hero {
    /* //panda 全站自然滚动，移动轮播按原图比例展示 */
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 75 / 88;
  }

  .home-product-section,
  .home-strength-section {
    padding: 0;
  }

  .home-product-inner,
  .home-strength-inner,
  .home-chain-feature,
  .home-strategy {
    display: none;
  }

  .home-mobile-cut {
    width: 100%;
    height: auto;
  }

  .home-product-carousel {
    position: absolute;
    right: 0;
    bottom: 7%;
    left: 0;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 2px;
    width: 96%;
    margin: 0 auto;
  }

  .home-product-slides {
    border-radius: 6px;
  }

  .home-product-arrow {
    width: 36px;
    height: 56px;
  }

  .home-product-arrow img {
    width: 34px;
  }

  .home-product-section {
    background: #fff;
  }

  .home-news-section {
    padding: 62px 0 0;
    background: #cfddf6 url("../images/mobile/首页/1_05.jpg") center top / 100% auto no-repeat;
  }

  .home-news-section::after {
    display: none;
  }

  .home-news-layout,
  .home-video-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-news-list a {
    grid-template-columns: 62px 1fr;
  }

  .home-news-panel {
    padding: 14px;
    border-radius: 8px;
  }

  .home-news-feature-meta {
    flex-direction: column;
    gap: 7px;
  }

  .home-video-grid {
    margin-top: 22px;
  }

  .home-boat-strip {
    width: 100%;
    margin-top: 36px;
  }

  .home-boat-strip img {
    max-height: none;
  }

  body[data-page="about"] .breadcrumb,
  .about-desktop-intro {
    display: none;
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero-controls {
    bottom: 18px;
  }

  .scroll-hint {
    display: none;
  }

  .home-intro-image {
    border-radius: 4px 50px 4px 4px;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat-item {
    padding: 20px 10px;
  }

  .product-showcase {
    display: flex;
    flex-direction: column-reverse;
  }

  .chain-card-grid,
  .support-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .news-video-grid .video-card:nth-child(n) {
    grid-column: auto;
  }

  .chain-card {
    min-height: 340px;
  }

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

  .page-hero,
  .page-hero-content {
    min-height: 118vw;
  }

  .page-hero-content h1,
  .page-hero-content p {
    display: none;
  }

  .page-hero::after {
    background: none;
  }

  .anchor-nav,
  .chain-tabs {
    justify-content: flex-start;
    padding: 14px 18px;
  }

  .anchor-nav a,
  .chain-tabs button {
    min-width: 112px;
    padding: 8px 14px;
  }

  .chain-tabs {
    justify-content: stretch;
    gap: 0;
    padding: 14px 9px;
    overflow: visible;
  }

  .chain-tabs button {
    min-width: 0;
    padding: 8px 3px;
    flex: 1 1 25%;
    font-size: 12px;
    white-space: nowrap;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .products-hero,
  .products-hero .page-hero-content {
    min-height: 118.14vw;
  }

  .products-hero .page-hero-content {
    width: 100%;
    padding: 0;
  }

  .products-hero-visual {
    width: 100%;
    margin: 0;
  }

  .products-hero-visual img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .products-catalog {
    padding-bottom: 0;
  }

  .products-catalog > .container {
    width: 100%;
  }

  .product-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 5px 12px;
  }

  .product-tab {
    padding: 3px;
    font-size: clamp(11px, 1.8vw, 15px);
    line-height: 1.5;
  }

  .product-tab:nth-child(3n + 1)::before {
    display: none;
  }

  .product-panel {
    scroll-margin-top: 0;
  }

  .product-panel + .product-panel {
    margin-top: 0;
  }

  /* //panda 移动端产品与交互校准 */
  body[data-page="products"] .product-card-grid {
    gap: 5px;
    padding: 0 12px;
    margin-top: 0;
  }

  .product-feature-media img {
    width: 100%;
    height: 50vw;
    object-fit: cover;
  }

  .product-feature-copy,
  #panel-prepared .product-feature-copy,
  #panel-gift .product-feature-copy {
    position: static;
    display: flex;
    width: 100%;
    min-height: clamp(190px, 44vw, 330px);
    padding: clamp(18px, 3.5vw, 28px);
    flex-direction: column;
    justify-content: center;
    color: #4c4c4c;
    font-size: clamp(10px, 1.75vw, 14px);
    line-height: 1.55;
    background: #fff;
  }

  .product-feature-copy p {
    grid-template-columns: clamp(70px, 13vw, 96px) minmax(0, 1fr);
    gap: clamp(8px, 1.8vw, 14px);
    margin-bottom: clamp(7px, 1.6vw, 12px);
  }

  .product-feature-copy p:last-child {
    margin-bottom: 0;
  }

  .product-feature-copy b {
    padding: 3px 5px;
  }

  body[data-page="products"] .product-card-grid.product-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="products"] .product-card-grid.product-card-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="products"] .product-card:nth-child(n + 4) {
    display: none;
  }

  .product-card img {
    aspect-ratio: 1.45 / 1;
  }

  .product-card h3 {
    padding: 7px 2px 8px;
    font-size: clamp(8px, 1.55vw, 12px);
  }

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

  .news-page-tabs {
    gap: 20px;
    margin-bottom: 36px;
  }

  .news-list-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-form {
    width: 100%;
  }

  .article-body {
    font-size: 16px;
  }

  .join-hero-desktop {
    background-image: none;
  }

  .join-hero-desktop picture {
    display: block;
  }

  .join-hero-desktop .page-hero-content {
    visibility: visible;
  }

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

  .join-support .support-card {
    min-width: 0;
    padding: 22px 14px;
  }

  .join-support .support-card h3 {
    font-size: 18px;
  }

  .join-support .support-card p {
    font-size: 12px;
    line-height: 1.65;
  }

  .support-scene {
    margin-top: 24px;
    border-radius: 10px;
  }

  .home-live-news > .container {
    width: calc(100% - 32px);
    padding-top: 58px;
  }

  .home-live-news {
    --home-news-curve-depth: 54px;
    padding-bottom: calc(30px + 74vw);
    background-color: #d8e7ff;
    background-image: url("../images/mobile/首页/1_06.jpg");
    background-position: center bottom;
    background-size: 100% auto;
  }

  .home-live-news-heading {
    margin-bottom: 34px;
  }

  .home-live-news-heading h2 {
    font-size: 30px;
    letter-spacing: 0.16em;
  }

  .home-live-news-heading p {
    font-size: 10px;
  }

  .home-live-news-panel {
    padding: 16px 16px 22px;
    border-radius: 8px;
  }

  .home-live-news-top,
  .home-live-videos {
    grid-template-columns: 1fr;
  }

  .home-live-news-top {
    gap: 18px;
  }

  .home-live-feature img {
    border-radius: 5px;
  }

  .home-live-feature-title {
    gap: 10px;
    padding: 11px 2px 0;
  }

  .home-live-feature-title h3 {
    font-size: 12px;
    line-height: 1.45;
  }

  .home-live-feature-title time,
  .home-live-feature p {
    font-size: 8px;
  }

  .home-live-feature p {
    padding: 7px 2px 12px;
    border-bottom: 1px solid #b7b7b7;
  }

  .home-live-news-list a {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    min-height: 82px;
  }

  .home-live-news-list time {
    font-size: 9px;
  }

  .home-live-news-list time b {
    font-size: 30px;
  }

  .home-live-news-list strong {
    font-size: 11px;
  }

  .home-live-news-list small {
    margin-top: 3px;
    font-size: 8px;
  }

  .home-live-news-last {
    display: none !important;
  }

  .home-live-videos {
    gap: 16px;
    margin-top: 20px;
  }

  .home-live-video span {
    padding-top: 8px;
    font-size: 13px;
  }

  .home-live-news-more {
    display: none;
  }

  .home-footer-channels {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px 6px;
    width: calc(100% - 32px);
    padding: 40px 0 54px;
  }

  body[data-page="home"] .home-live-footer .home-footer-channels {
    padding-top: 94px;
  }

  .home-footer-channels > * {
    grid-column: span 2;
  }

  .home-footer-channels > :nth-child(4) {
    grid-column: 2 / span 2;
  }

  .home-footer-channels > :nth-child(5) {
    grid-column: 4 / span 2;
  }

  .home-footer-channels button,
  .home-footer-channels a {
    gap: 7px;
    font-size: 10px;
  }

  .home-footer-channels img {
    width: 45px;
    height: 45px;
  }

  .home-footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 24px;
    width: calc(100% - 32px);
    padding-bottom: 28px;
    text-align: center;
  }

  .home-footer-bottom nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 10px;
    font-size: 10px;
  }

  .home-footer-phone {
    margin: 0 auto;
  }

  .home-footer-phone > span {
    font-size: 30px;
  }

  .home-footer-phone small {
    font-size: 10px;
    text-align: left;
  }

  .home-footer-phone strong {
    font-size: 16px;
  }

  .video-modal-dialog {
    padding: 22px 16px 16px;
  }

  .video-modal-dialog h2 {
    font-size: 18px;
  }

  .footer-main,
  .footer-bottom .container {
    display: flex;
    gap: 30px;
    flex-direction: column;
  }

  .footer-main {
    padding: 60px 0 36px;
  }

  /* //panda 移动端产品与交互校准 */
  .floating-tools {
    right: 6px;
    bottom: 72px;
    display: grid;
    gap: 4px;
  }

  .floating-button {
    width: 38px;
    height: 38px;
    border-radius: 6px;
  }

  .floating-button img {
    width: 20px;
    height: 20px;
  }

  .floating-service-icon {
    font-size: 9px;
  }

  .floating-tooltip,
  .floating-qr-card {
    display: none;
  }

  /* //panda 移动端仅保留在线客服与回到顶部 */
  .floating-button-social {
    display: none;
  }
}

@media (min-width: 768px) {
  .join-hero-desktop,
  .join-hero-desktop .page-hero-content {
    min-height: 50.25vw;
  }
}

@media (max-width: 1100px) {
  .about-profile-inner {
    width: min(calc(100% - 56px), 1040px);
    grid-template-columns: 170px minmax(0, 1fr) 150px;
    gap: 30px;
  }

  .about-values-image {
    width: 150px;
    height: auto;
  }

  .about-carousel-shell {
    width: min(calc(100% - 32px), 1060px);
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    gap: 12px;
  }

  .about-carousel-button,
  .about-carousel-button img {
    width: 70px;
  }

  .about-carousel-tech .about-carousel-slide {
    flex-basis: calc((100% - 54px) / 4);
  }

  .about-carousel-cert .about-carousel-slide,
  .about-carousel-patent .about-carousel-slide,
  .about-carousel-honor .about-carousel-slide {
    flex-basis: calc((100% - 36px) / 3);
  }

  .about-business-list {
    width: min(calc(100% - 48px), 1040px);
  }

  .about-partners-grid {
    width: min(calc(100% - 48px), 1040px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-business-item,
  .about-business-item:nth-child(even) {
    padding: 56px 0;
    grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
    gap: 30px;
  }

  .about-business-item:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
  }
}

@media (max-width: 767px) {
  .about-page-hero {
    min-height: 118vw;
  }

  .about-anchor-nav {
    display: none;
  }

  .about-image-section .desktop-only,
  .about-awards > .desktop-only,
  .about-showcase-section > .desktop-only {
    display: none;
  }

  .about-image-section .mobile-only,
  .about-awards > .mobile-only,
  .about-showcase-section > .mobile-only {
    display: block;
  }

  .about-image-section .mobile-only img,
  .about-mobile-profile img,
  .about-showcase-section .mobile-only img {
    width: 100%;
  }

  .about-section-heading {
    padding: 48px 18px 28px;
  }

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

  .about-section-heading p {
    margin-top: 7px;
    font-size: 9px;
  }

  .about-carousel {
    --about-gap: 7px;
    padding-bottom: 42px;
  }

  .about-carousel-shell {
    width: calc(100% - 8px);
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 2px;
  }

  .about-carousel-button,
  .about-carousel-button img {
    width: 32px;
    height: 36px;
  }

  .about-carousel-tech .about-carousel-slide {
    flex-basis: calc((100% - 28px) / 5);
    aspect-ratio: 258 / 340;
  }

  .about-carousel-cert .about-carousel-slide,
  .about-carousel-patent .about-carousel-slide,
  .about-carousel-honor .about-carousel-slide {
    flex-basis: calc((100% - 21px) / 4);
  }

  .about-carousel-cert .about-carousel-slide {
    height: auto;
    aspect-ratio: 300 / 560;
  }

  .about-carousel-patent .about-carousel-slide {
    height: auto;
    aspect-ratio: 280 / 400;
  }

  .about-carousel-honor .about-carousel-slide {
    height: auto;
    aspect-ratio: 210 / 285;
  }

  .about-carousel-base {
    height: 18px;
    margin-top: -3px;
  }

  .about-partners .about-section-heading,
  .about-products .about-section-heading {
    padding-top: 42px;
    padding-bottom: 12px;
  }

  .about-partners .about-section-heading {
    padding-bottom: 26px;
  }

  .about-partners-grid {
    width: calc(100% - 28px);
    padding-bottom: 42px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 28px;
  }

  .about-partner-item figure {
    gap: 9px;
  }

  .about-partner-logo {
    height: 70px;
  }

  .about-partner-logo img {
    width: 66px;
    height: 66px;
  }

  .about-partner-item figcaption,
  .about-partners-note p {
    font-size: 12px;
  }

  .about-partners-note {
    min-height: 96px;
    gap: 20px;
  }

  .about-partners-note span {
    font-size: 18px;
  }

  .about-business-header {
    padding: 35px 18px 32px;
  }

  .about-business-header h2 {
    font-size: 30px;
  }

  .about-business-header p {
    margin-top: 9px;
    font-size: 14px;
  }

  .about-business-list {
    width: calc(100% - 32px);
  }

  .about-business-item,
  .about-business-item:nth-child(even) {
    padding: 24px 0;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .about-business-item:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .about-business-item .about-business-cover {
    grid-column: 1;
    grid-row: 1;
  }

  .about-business-item .about-business-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .about-business-item:nth-child(even) .about-business-cover {
    grid-column: 2;
    grid-row: 1;
  }

  .about-business-item:nth-child(even) .about-business-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .about-business-cover {
    --crop-x: -14.35%;
    --crop-y: -30.81%;
    aspect-ratio: 223 / 198;
  }

  .about-business-cover img {
    width: 336.32%;
  }

  .about-business-cover-processing {
    --crop-x: -221.97%;
    --crop-y: -183.33%;
  }

  .about-business-cover-commerce {
    --crop-x: -14.35%;
    --crop-y: -328.28%;
  }

  .about-business-cover-data {
    --crop-x: -221.97%;
    --crop-y: -477.78%;
  }

  .about-business-title-line {
    gap: 4px 7px;
    margin-bottom: 7px;
  }

  .about-business-title-line h3 {
    font-size: 18px;
  }

  .about-business-title-line p {
    font-size: 10px;
  }

  .about-business-description {
    font-size: 9px;
    line-height: 1.58;
    text-align: left;
  }
}

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

/* 企业动态：严格对应 PC 与移动端设计稿 */
.news-anchor-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 118px;
  color: #777;
  font-size: 15px;
  background: #fff;
}

.news-anchor-nav a {
  color: inherit;
}

.news-anchor-nav a:hover,
.news-anchor-nav a[aria-current="page"] {
  color: #333;
}

.news-anchor-nav i {
  color: #aaa;
  font-style: normal;
}

.news-page-section {
  padding: 50px 0 78px;
  background: #fff;
}

.news-page-container {
  width: min(calc(100% - 96px), 1640px);
  margin: 0 auto;
}

.news-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.news-section-header h2 {
  margin: 0;
  color: #30343c;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.news-more-link {
  min-width: 86px;
  padding: 7px 12px;
  color: #999;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  border: 1px solid #cfcfcf;
}

.news-more-link:hover {
  color: var(--brand);
  border-color: var(--brand);
}

body[data-page="news"] .news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

body[data-page="news"] .news-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #f4f4f4;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

body[data-page="news"] .news-card:hover {
  box-shadow: none;
  transform: none;
}

body[data-page="news"] .news-card > a {
  display: block;
  overflow: hidden;
}

body[data-page="news"] .news-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body[data-page="news"] .news-card:hover .news-card-image {
  transform: scale(1.025);
}

body[data-page="news"] .news-card-content {
  display: flex;
  min-height: 174px;
  padding: 18px 15px 20px;
  flex: 1;
  flex-direction: column;
}

body[data-page="news"] .news-card h3 {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: #333;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="news"] .news-card p {
  display: -webkit-box;
  margin: 0 0 20px;
  overflow: hidden;
  color: #888;
  font-size: 12px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-page="news"] .news-card time {
  margin-top: auto;
  color: #aaa;
  font-size: 11px;
}

.news-video-section {
  padding-top: 46px;
  padding-bottom: 174px;
}

body[data-page="news"] .news-video-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 54px 20px;
}

body[data-page="news"] .news-video-grid .video-card:nth-child(-n + 2) {
  grid-column: span 3;
}

body[data-page="news"] .news-video-grid .video-card:nth-child(n + 3) {
  grid-column: span 2;
}

body[data-page="news"] .video-card {
  overflow: visible;
  color: #222;
  text-align: center;
  background: #fff;
  border-radius: 0;
}

body[data-page="news"] .video-card::after {
  display: none;
}

body[data-page="news"] .video-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #14294a;
}

body[data-page="news"] .video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

body[data-page="news"] .video-card:hover img {
  opacity: 0.92;
  transform: scale(1.018);
}

body[data-page="news"] .video-card .play-button {
  transform: translate(-50%, -50%);
}

body[data-page="news"] .video-card-title {
  position: static;
  padding: 15px 6px 0;
  margin: 0;
  color: #222;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.news-page-footer {
  position: relative;
  padding-top: 82px;
  overflow: hidden;
}

.news-footer-curve {
  position: absolute;
  top: -108px;
  left: 50%;
  z-index: 2;
  width: 112%;
  height: 210px;
  background: #fff;
  border-radius: 0 0 50% 50%;
  box-shadow: 0 18px 0 #1e55aa;
  transform: translateX(-50%);
  pointer-events: none;
}

.news-page-footer .home-footer-channels {
  padding-top: 68px;
}

@media (max-width: 1100px) {
  body[data-page="news"] .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .news-anchor-nav {
    gap: 25px;
    min-height: 72px;
    font-size: 11px;
  }

  .news-page-section {
    padding: 24px 0 38px;
  }

  .news-page-container {
    width: calc(100% - 28px);
  }

  .news-section-header {
    margin-bottom: 13px;
  }

  .news-section-header h2 {
    font-size: 18px;
  }

  .news-more-link {
    min-width: 57px;
    padding: 5px 7px;
    font-size: 9px;
  }

  body[data-page="news"] .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  body[data-page="news"] .news-card-image {
    aspect-ratio: 1.18 / 1;
  }

  body[data-page="news"] .news-card-content {
    min-height: 92px;
    padding: 8px 7px 10px;
  }

  body[data-page="news"] .news-card h3 {
    margin-bottom: 7px;
    font-size: 9px;
    line-height: 1.45;
  }

  body[data-page="news"] .news-card p {
    margin-bottom: 9px;
    font-size: 7px;
    line-height: 1.55;
  }

  body[data-page="news"] .news-card time {
    font-size: 7px;
  }

  .news-video-section {
    padding-top: 16px;
    padding-bottom: 76px;
  }

  body[data-page="news"] .news-video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-page="news"] .news-video-grid .video-card:nth-child(n) {
    grid-column: auto;
  }

  body[data-page="news"] .video-card-title {
    padding-top: 8px;
    font-size: 13px;
  }

  body[data-page="news"] .video-card .play-button {
    width: 52px;
    height: 52px;
  }

  .news-page-footer {
    padding-top: 46px;
  }

  .news-footer-curve {
    top: -53px;
    width: 116%;
    height: 102px;
    box-shadow: 0 10px 0 #1e55aa;
  }

  .news-page-footer .home-footer-channels {
    padding-top: 34px;
  }
}

/* //panda 招商加盟双端视觉校准 */
body[data-page="join"] .join-hero-desktop {
  min-height: 56.25vw;
  background-position: center top;
  background-size: 100% auto;
}

.join-hero-cta {
  display: none;
}

body[data-page="join"] .join-page-nav {
  min-height: 116px;
  gap: 38px;
  font-size: 14px;
}

.join-support {
  padding: 72px 0 105px;
  background: #fff;
}

.join-support-container {
  width: min(calc(100% - 160px), 1680px);
  margin: 0 auto;
}

.join-support-heading {
  position: relative;
  display: grid;
  min-height: 78px;
  margin-bottom: 58px;
  text-align: center;
  place-items: center;
}

.join-support-heading span {
  position: absolute;
  color: #f1f1f1;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 300;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.join-support-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #2f2f2f;
  font-size: 42px;
  font-weight: 500;
}

body[data-page="join"] .support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 590px) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(205px, auto));
  gap: 84px 38px;
  align-items: center;
}

body[data-page="join"] .support-card {
  position: relative;
  min-width: 0;
  min-height: 210px;
  padding: 45px 58px 24px 68px;
  color: #555;
  background: transparent;
  border: 0;
  border-radius: 0 0 0 28px;
  box-shadow: none;
}

body[data-page="join"] .support-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  /* //panda 官网提测，2px外框避免小数坐标把1px线拆成两排虚线 */
  background:
    linear-gradient(90deg, rgba(42, 110, 215, 0.72) 0%, rgba(42, 110, 215, 0.3) 58%, rgba(42, 110, 215, 0) 100%) left top / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(42, 110, 215, 0.72) 0%, rgba(42, 110, 215, 0.3) 58%, rgba(42, 110, 215, 0) 100%) left bottom / 100% 2px no-repeat;
  border-left: 2px solid rgba(42, 110, 215, 0.72);
  border-radius: 0 0 0 28px;
}

/* //panda 招商支持线点与文字间距校准 */
body[data-page="join"] .support-card::after {
  position: absolute;
  top: 87px;
  right: 22px;
  left: 53px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, #2a6ed7 0%, rgba(42, 110, 215, 0.32) 60%, rgba(42, 110, 215, 0) 100%);
}

body[data-page="join"] .support-card-brand,
body[data-page="join"] .support-card-sales {
  padding-right: 68px;
  padding-left: 58px;
  text-align: right;
  border-radius: 0 0 28px;
}

body[data-page="join"] .support-card-brand::before,
body[data-page="join"] .support-card-sales::before {
  background:
    linear-gradient(90deg, rgba(42, 110, 215, 0) 0%, rgba(42, 110, 215, 0.3) 42%, rgba(42, 110, 215, 0.72) 100%) right top / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(42, 110, 215, 0) 0%, rgba(42, 110, 215, 0.3) 42%, rgba(42, 110, 215, 0.72) 100%) right bottom / 100% 2px no-repeat;
  border-right: 2px solid rgba(42, 110, 215, 0.72);
  border-left: 0;
  border-radius: 0 0 28px;
}

body[data-page="join"] .support-card-brand::after,
body[data-page="join"] .support-card-sales::after {
  right: 53px;
  left: 22px;
  background: linear-gradient(90deg, rgba(42, 110, 215, 0) 0%, rgba(42, 110, 215, 0.32) 40%, #2a6ed7 100%);
}

body[data-page="join"] .support-card-quality {
  grid-column: 1;
  grid-row: 1;
}

body[data-page="join"] .support-card-brand {
  grid-column: 3;
  grid-row: 1;
}

body[data-page="join"] .support-card-marketing {
  grid-column: 1;
  grid-row: 2;
}

body[data-page="join"] .support-card-sales {
  grid-column: 3;
  grid-row: 2;
}

body[data-page="join"] .support-index {
  position: absolute;
  top: -23px;
  left: -22px;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0;
  color: transparent;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  background-color: #2868ce;
  background-image: url("../images/mobile/招商加盟/1招商加盟_03.jpg");
  background-repeat: no-repeat;
  background-size: 750px 1012px;
  border-radius: 50%;
  z-index: 2;
  place-items: center;
}

body[data-page="join"] .support-card-quality .support-index {
  background-position: -29px -151px;
}

body[data-page="join"] .support-card-brand .support-index {
  background-position: -405px -151px;
}

body[data-page="join"] .support-card-marketing .support-index {
  background-position: -29px -369px;
}

body[data-page="join"] .support-card-sales .support-index {
  background-position: -405px -369px;
}

body[data-page="join"] .support-card-brand .support-index,
body[data-page="join"] .support-card-sales .support-index {
  right: -22px;
  left: auto;
}

body[data-page="join"] .support-card h3 {
  position: relative;
  z-index: 1;
  display: table;
  margin: 0 0 10px;
  padding-right: 10px;
  color: #2868ce;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  background: #fff;
}

body[data-page="join"] .support-card h3::before {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 10px;
  height: 10px;
  content: "";
  background: #2868ce;
  border-radius: 50%;
}

body[data-page="join"] .support-card-brand h3,
body[data-page="join"] .support-card-sales h3 {
  padding-right: 0;
  padding-left: 10px;
  margin-left: auto;
}

body[data-page="join"] .support-card-brand h3::before,
body[data-page="join"] .support-card-sales h3::before {
  right: -20px;
  left: auto;
}

body[data-page="join"] .support-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.72;
}

body[data-page="join"] .support-scene {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid #2c70dc;
  border-radius: 50%;
  box-shadow: inset 0 0 0 14px #fff, inset 0 0 0 16px #d4e1f7;
}

body[data-page="join"] .support-scene img {
  position: absolute;
  bottom: -17%;
  left: 50%;
  width: 205%;
  max-width: none;
  transform: translateX(-50%);
}

body[data-page="join"] .support-scene::after {
  position: absolute;
  inset: 2px;
  z-index: 1;
  content: "";
  pointer-events: none;
  border: 14px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #d4e1f7;
}

@media (min-width: 768px) {
  /* //panda 官网提测，独立PC场景图按1:1槽位居中铺满 */
  body[data-page="join"] .support-scene--pc-standard img {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }
}

@media (max-width: 1200px) {
  body[data-page="join"] .support-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px) minmax(0, 1fr);
    gap: 56px 38px;
  }

  body[data-page="join"] .support-card {
    padding: 40px 30px 22px 48px;
  }

  body[data-page="join"] .support-card-brand,
  body[data-page="join"] .support-card-sales {
    padding-right: 48px;
    padding-left: 30px;
  }

  /* //panda 招商支持线点与文字间距校准 */
  body[data-page="join"] .support-card::after {
    right: 22px;
    left: 33px;
  }

  body[data-page="join"] .support-card-brand::after,
  body[data-page="join"] .support-card-sales::after {
    right: 33px;
    left: 22px;
  }

  body[data-page="join"] .support-card h3 {
    font-size: 25px;
  }

  body[data-page="join"] .support-card p {
    font-size: 13px;
  }

  .join-support-container {
    width: min(calc(100% - 72px), 1120px);
  }
}

@media (max-width: 767px) {
  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    width: 100px;
    margin-right: auto;
  }

  .mobile-search-pill {
    position: relative;
    z-index: 103;
    display: block;
    width: 104px;
    height: 34px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
  }

  .mobile-search-pill span,
  .mobile-search-pill span::after {
    position: absolute;
    content: "";
  }

  .mobile-search-pill span {
    top: 8px;
    right: 10px;
    width: 13px;
    height: 13px;
    border: 1px solid currentColor;
    border-radius: 50%;
  }

  .mobile-search-pill span::after {
    right: -4px;
    bottom: -3px;
    width: 6px;
    height: 1px;
    background: currentColor;
    transform: rotate(48deg);
  }

  .header-solid .mobile-search-pill,
  .menu-open .mobile-search-pill {
    color: var(--ink);
    border-color: var(--line);
  }

  /* //panda 移动端菜单及招商快捷栏校准 */
  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 7px;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 0;
    flex: 0 0 auto;
  }

  .header-solid .menu-toggle,
  .menu-open .menu-toggle {
    color: var(--ink);
  }

  body[data-page="join"] .join-hero-desktop {
    min-height: 118vw;
    background-image: none;
  }

  body[data-page="join"] .join-hero-desktop picture {
    display: block;
  }

  .join-hero-cta {
    position: absolute;
    top: 36%;
    left: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 5px 18px;
    color: #fff;
    font-size: 12px;
    background: #2a6ace;
    border-radius: 999px;
    transform: translateX(-50%);
  }

  body[data-page="join"] .join-page-nav {
    min-height: 55px;
    gap: 34px;
    font-size: 12px;
  }

  .join-support {
    padding: 25px 0 15px;
    background: #f9f9ff;
  }

  .join-support-container {
    width: calc(100% - 30px);
  }

  .join-support-heading {
    min-height: 42px;
    margin-bottom: 15px;
  }

  .join-support-heading span {
    font-size: 28px;
  }

  .join-support-heading h2 {
    font-size: 21px;
  }

  body[data-page="join"] .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 17px;
  }

  /* //panda 招商支持线点与文字间距校准 */
  body[data-page="join"] .support-card,
  body[data-page="join"] .support-card-brand,
  body[data-page="join"] .support-card-sales {
    align-self: stretch;
    min-height: 98px;
    padding: 24px 8px 9px 26px;
    text-align: left;
    border: 0;
    border-radius: 0 0 0 18px;
  }

  body[data-page="join"] .support-card::before,
  body[data-page="join"] .support-card-brand::before,
  body[data-page="join"] .support-card-sales::before {
    background:
      linear-gradient(90deg, #2a6ed7 0%, rgba(42, 110, 215, 0.42) 58%, rgba(42, 110, 215, 0) 100%) left top / 100% 1px no-repeat,
      linear-gradient(90deg, #2a6ed7 0%, rgba(42, 110, 215, 0.42) 58%, rgba(42, 110, 215, 0) 100%) left bottom / 100% 1px no-repeat;
    border-right: 0;
    border-left: 1px solid #2a6ed7;
    border-radius: 0 0 0 18px;
  }

  /* //panda 招商支持线点与文字间距校准 */
  body[data-page="join"] .support-card::after {
    top: 54px;
    right: 8px;
    left: 13px;
  }

  body[data-page="join"] .support-card-brand::after,
  body[data-page="join"] .support-card-sales::after {
    background: linear-gradient(90deg, #2a6ed7 0%, rgba(42, 110, 215, 0.32) 60%, rgba(42, 110, 215, 0) 100%);
  }

  body[data-page="join"] .support-card-quality {
    grid-column: 1;
    grid-row: 1;
  }

  body[data-page="join"] .support-card-brand {
    grid-column: 2;
    grid-row: 1;
  }

  body[data-page="join"] .support-card-marketing {
    grid-column: 1;
    grid-row: 2;
  }

  body[data-page="join"] .support-card-sales {
    grid-column: 2;
    grid-row: 2;
  }

  body[data-page="join"] .support-index,
  body[data-page="join"] .support-card-brand .support-index,
  body[data-page="join"] .support-card-sales .support-index {
    top: -13px;
    right: auto;
    left: -10px;
    width: 30px;
    height: 30px;
    background-size: 450px 607.2px;
  }

  body[data-page="join"] .support-card-quality .support-index {
    background-position: -17.4px -90.6px;
  }

  body[data-page="join"] .support-card-brand .support-index {
    background-position: -243px -90.6px;
  }

  body[data-page="join"] .support-card-marketing .support-index {
    background-position: -17.4px -221.4px;
  }

  body[data-page="join"] .support-card-sales .support-index {
    background-position: -243px -221.4px;
  }

  /* //panda 招商支持线点与文字间距校准 */
  body[data-page="join"] .support-card h3 {
    margin-bottom: 17px;
    padding-right: 6px;
    font-size: 16px;
    background: #f9f9ff;
  }

  body[data-page="join"] .support-card h3::before {
    top: calc(100% + 7px);
    left: -17px;
    width: 7px;
    height: 7px;
  }

  body[data-page="join"] .support-card-brand h3,
  body[data-page="join"] .support-card-sales h3 {
    padding-right: 6px;
    padding-left: 0;
    margin-left: 0;
  }

  body[data-page="join"] .support-card-brand h3::before,
  body[data-page="join"] .support-card-sales h3::before {
    right: auto;
    left: -17px;
  }

  body[data-page="join"] .support-card p {
    font-size: 7px;
    line-height: 1.65;
  }

  body[data-page="join"] .support-scene {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    aspect-ratio: 1.95 / 1;
    margin-top: 0;
    border: 1px solid #c7d9f8;
    border-radius: 12px;
    box-shadow: inset 0 0 0 5px #fff;
  }

  body[data-page="join"] .support-scene img {
    bottom: -30px;
    width: 110%;
  }

  /* //panda 官网提测，独立移动场景图按1170×600槽位居中铺满 */
  body[data-page="join"] .support-scene--mobile-standard img {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  body[data-page="join"] .support-scene::after {
    display: none;
  }

}
