.elementor-80 .elementor-element.elementor-element-c95b774{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-444f521 */.title-with-icon {
  display: flex;
  margin-top: -520px;
  flex-direction: column;
  align-items: flex-start;
}

.top-icon img {
  width: 500px;
  height: auto;
}

.title-text {
  display: flex;
  align-items: baseline; /* 关键：文字底部基线对齐 */
  gap: 12px;
}

.welcome-text {
  margin-top: -20px;
  padding-left: 40px;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
}

.hub-text {
  padding-top: 20px;
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c95b774 *//* 整个页面区域 */
.innovation-page {
  width: 100%;
  color: #222222;
}

/* 统一段落样式 */
.innovation-page p {
  margin-top: 0;
  margin-bottom: 20px;

  font-size: 17px;
  line-height: 1.75;
}

/* 顶部左右布局 */
.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: start;
}

/* 左侧介绍文字 */
.intro-text {
  min-width: 0;
}

/* 右侧红色菜单 */
.side-menu {
  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 300px;
  justify-self: end;
  box-sizing: border-box;

  padding: 18px 20px;

  background-color: #af203f;
  text-align: left;

  overflow: hidden;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}


/* 菜单链接 */
.side-menu a {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 46px;
  padding: 9px 14px;
  box-sizing: border-box;

  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}


/* 链接左侧白线 */
.side-menu a::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 3px;
  height: 0;

  background-color: #ffffff;

  transform: translateY(-50%);

  transition: height 0.2s ease;
}


/* 菜单悬停 */
.side-menu a:hover {
  color: #ffffff;

  background-color: rgba(255, 255, 255, 0.14);

  transform: translateX(4px);
}


/* 悬停时显示左侧白线 */
.side-menu a:hover::before {
  height: 62%;
}

/* 通用内容区域 */
.content-section {
  margin-top: 48px;
}

/* 红色 H2 */
.red-heading {
  margin-top: 0;
  margin-bottom: 18px;

  color: #bb1e41;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
/* 黑色 H3 */
.black-subheading {
  margin-top: 0;
  margin-bottom: 18px;

  color: #000000;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.3;
}

/* 视频区域 */
.video-section {
  width: 100%;
}

.inlab-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000000;
}
/* 视频下方说明 */
.video-caption {
  margin-top: 14px !important;

  color: #555555;
  font-size: 16px !important;
  font-style: italic;
  text-align: center;
}


/* 四栏布局 */
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* 单个 Workspace 卡片 */
.workspace-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  min-height: 450px;
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;

  background-image: var(--workspace-bg);
  background-size: cover;
  background-position: var(--workspace-position, center);
  background-repeat: no-repeat;

  border-top: 5px solid #bb1e41;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* 图片上的深色渐变，保证文字能看清 */
.workspace-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.6) 100%
  );

  pointer-events: none;
}

/* 让标题和正文显示在遮罩上方 */
.workspace-card > * {
  position: relative;
  z-index: 1;
}

/* 卡片内容纵向排列 */
.workspace-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 卡片悬停 */
.workspace-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* 卡片小标题 */
.workspace-title {
  margin-top: 0;
  margin-bottom: 14px;

  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

/* 卡片正文 */
.workspace-card p {
  margin: 0;

  color: #ffffff;
  font-size: 16px;
  line-height: 1.65;
}

/* 开放时间推到内容区域底部 */
.workspace-card .workspace-open-time {
  margin-top: auto;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* 午休提示缩小 */
.workspace-card .workspace-open-time .small-note {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

/* 平板 */
@media (max-width: 1024px) {
  .intro-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .side-menu {
    align-items: flex-start;
    text-align: left;
  }

  .side-menu a:hover {
    transform: translateX(5px);
  }

  .workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 640px) {
  .innovation-page p {
    font-size: 16px;
  }

  .side-menu {
    padding: 24px;
  }

  .side-menu a {
    font-size: 18px;
  }

  .red-heading {
    font-size: 26px;
  }

  .workspace-heading {
    font-size: 25px;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-card {
    padding: 20px;
  }
}

.expand-row {
  display: flex;
  width: 100%;
  height: 600px;
  overflow: hidden;
}


/* 卡片主体 */
.expand-card {
  position: relative;

  flex: 1;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  color: #ffffff;

  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: flex 0.45s ease;
}


/* 彩色遮罩 */
.expand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: var(--card-color);
  opacity: 0.7;

  transition: opacity 0.45s ease;
}


/*
  黑色渐变始终保留一点。
  它不是主要色块，只用于保证白色文字清晰。
*/
.expand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );

  opacity: 0.35;
  pointer-events: none;

  transition: opacity 0.45s ease;
}


/* 红色和灰色卡片 */
.card-1,
.card-3 {
  --card-color: #af2641;
}

.card-2,
.card-4 {
  --card-color: #9d9d9d;
}


/* 鼠标进入整行后，其他卡片缩小 */
.expand-row:hover .expand-card {
  flex: 0.4;
}


/* 当前卡片展开 */
.expand-row .expand-card:hover {
  flex: 4;
}


/* 悬停时彩色遮罩变淡，显露背景图片 */
.expand-card:hover::before {
  opacity: 0.12;
}


/* 悬停时略微加强深色渐变，保证文字清晰 */
.expand-card:hover::after {
  opacity: 0.8;
}


/* 标题和正文都必须位于遮罩上方 */
.card-title,
.card-text {
  z-index: 2;
}


/* 默认标题 */
.card-title {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: calc(100% - 32px);

  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;

  transition:
    top 0.4s ease,
    left 0.4s ease,
    transform 0.4s ease,
    font-size 0.4s ease,
    opacity 0.4s ease;
}


/* 未悬停卡片的标题缩小 */
.expand-row:hover .expand-card:not(:hover) .card-title {
  font-size: 16px;
  opacity: 0.8;
}


/* 展开卡片的标题 */
.expand-card:hover .card-title {
  top: 42px;
  left: 42px;

  width: calc(100% - 84px);

  transform: none;

  font-size: 32px;
  text-align: left;
}


/* 正文 */
.card-text {
  position: absolute;

  top: 105px;
  left: 42px;
  right: 42px;

  opacity: 0;
  transform: translateY(20px);

  color: #ffffff;


  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}


/* 展开时显示正文 */
.expand-card:hover .card-text {
  opacity: 1;
  transform: translateY(0);
}


.card-text p {
  margin: 0;

  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
}

/* Policies & Guidance */
.policies-section {
  margin-top: 56px;
}

.policies-wrap {
  width: 100%;
  padding: 0px;

}

/* 英文政策标题 */
.policy-main-en {
  margin-bottom: 6px;
}

/* 中文政策标题 */
.policy-main-cn {
  margin-bottom: 6px;
}

/* 下载文件标题 */
.policy-download {
  margin-bottom: 28px;
}

/* 三种链接的共同样式 */
.policy-main-en a,
.policy-main-cn a,
.policy-download a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

/* 链接文字下划线 */
.policy-main-en a span,
.policy-main-cn a span,
.policy-download a span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* 圆形 SVG 图标 */
.policy-circle-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.2s ease;
}

/* 所有链接悬停 */
.policy-main-en a:hover,
.policy-main-en a:focus,
.policy-main-cn a:hover,
.policy-main-cn a:focus,
.policy-download a:hover,
.policy-download a:focus {
  color: #bb1e41 !important;
  transform: translateX(4px);
  text-decoration: none;
}

/* 网页链接图标悬停时向右移动 */
.policy-main-en a:hover .policy-arrow-icon,
.policy-main-en a:focus .policy-arrow-icon,
.policy-main-cn a:hover .policy-arrow-icon,
.policy-main-cn a:focus .policy-arrow-icon {
  transform: translateX(2px);
}

/* 下载图标悬停时向下移动 */
.policy-download a:hover .policy-download-icon,
.policy-download a:focus .policy-download-icon {
  transform: translateY(2px);
}

/* 标签容器 */
.policy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 单个标签 */
.policy-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 10px 20px;

  background: #C0C0C0;
  color: #000000;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;

  border-radius: 3px;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

/* 标签悬停 */
.policy-tag:hover {
  background: #bb1e41;
  color: #ffffff;
  transform: translateY(-2px);
}

/* 手机适配 */
@media (max-width: 640px) {
  .policies-wrap {
    padding: 22px 18px;
  }

  .policy-main-en a {
    font-size: 19px;
  }

  .policy-main-cn a {
    font-size: 18px;
  }

  .policy-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .policy-tag {
    width: 100%;
    padding: 12px 16px;
  }
}

/* 手机端：把右侧悬浮菜单改成底部导航 */
@media (max-width: 768px), (hover: none), (pointer: coarse) {
  .floating-side-menu {
    position: fixed;

    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    width: 100%;
    max-width: none;
    height: auto;
    padding: 6px;

    background-color: #af203f;

    overflow: visible;

    transform: none;

    box-sizing: border-box;

    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.2);

    transition: none;
  }

  /* 手机端不再显示竖向 Menu 标记 */
  .floating-side-menu::before {
    display: none;
  }

  /* 覆盖桌面端展开效果 */
  .floating-side-menu:hover,
  .floating-side-menu:focus-within {
    width: 100%;
    padding: 6px;
  }

  /* 手机端链接始终显示 */
  .floating-side-menu a,
  .floating-side-menu a:link,
  .floating-side-menu a:visited,
  .floating-side-menu a:hover,
  .floating-side-menu a:focus,
  .floating-side-menu a:active {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 44px;
    padding: 8px 5px;

    color: #ffffff !important;
    background: transparent;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    white-space: normal;
    overflow-wrap: anywhere;

    opacity: 1;

    transform: none;

    box-sizing: border-box;

    transition:
      background-color 0.2s ease,
      opacity 0.2s ease;
  }

  /* 手机点击反馈 */
  .floating-side-menu a:active,
  .floating-side-menu a:focus-visible {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.18);
    transform: none;
  }

  /* 去掉桌面端左侧白线 */
  .floating-side-menu a::before {
    display: none;
  }

  /* 防止底部菜单遮挡最后一部分正文 */
  body {
    padding-bottom: 126px;
  }
}

/* Program 手机端 */
@media (max-width: 640px) {
  .expand-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;

    width: 100%;
    height: auto;

    overflow: visible;
  }

  .expand-card {
    position: relative;

    display: block;

    width: 100%;
    min-height: 240px;
    height: auto;

    padding: 24px 20px;
    box-sizing: border-box;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    flex: none;
    transition: none;
  }

  /* 手机端不再执行横向展开逻辑 */
  .expand-row:hover .expand-card,
  .expand-row .expand-card:hover {
    flex: none;
  }

  /* 默认彩色遮罩稍微淡一点，让背景图可见 */
  .expand-card::before {
    opacity: 0.48;
    transition: none;
  }

  /* 保留深色遮罩，保证文字清晰 */
  .expand-card::after {
    opacity: 0.72;

    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.5) 100%
    );

    transition: none;
  }

  /* 手机点击时不改变遮罩 */
  .expand-card:hover::before,
  .expand-card:active::before {
    opacity: 0.48;
  }

  .expand-card:hover::after,
  .expand-card:active::after {
    opacity: 0.72;
  }

  /* 标题改回普通文档流 */
  .card-title {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;
    margin: 0 0 14px;

    transform: none;

    color: #ffffff;
    font-size: 23px;
    line-height: 1.3;
    text-align: left;

    opacity: 1;

    transition: none;
  }

  /* 覆盖桌面端非悬停卡片标题缩小 */
  .expand-row:hover .expand-card:not(:hover) .card-title {
    font-size: 23px;
    opacity: 1;
  }

  /* 覆盖桌面端悬停标题位置 */
  .expand-card:hover .card-title {
    top: auto;
    left: auto;

    width: 100%;

    transform: none;

    font-size: 23px;
    text-align: left;
  }

  /* 正文改回普通文档流并始终显示 */
  .card-text {
    position: relative;

    top: auto;
    left: auto;
    right: auto;

    width: 100%;

    opacity: 1;
    transform: none;

    color: #ffffff;

    transition: none;
  }

  .expand-card:hover .card-text {
    opacity: 1;
    transform: none;
  }

  .card-text p {
    margin: 0;

    color: #ffffff;
    font-size: 16px;
    line-height: 1.55;
  }
}




.ppc-carousel {
  --ppc-ink: #11182b;
  --ppc-paper: #f4f1e9;
  --ppc-card: #fffdf7;
  --ppc-accent: #ff5c35;
  --ppc-acid: #c9f278;
  --ppc-muted: #626879;
  --ppc-line: rgba(17, 24, 43, 0.18);
  --ppc-gap: 24px;
  width: 100%;
  padding-top: 80px;
  background: #fff;
  color: var(--ppc-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.ppc-carousel,
.ppc-carousel * {
  box-sizing: border-box;
}

.ppc-carousel a {
  color: inherit;
  text-decoration: none;
}

.ppc-carousel button {
  color: inherit;
  font: inherit;
}

.ppc-carousel__header {
  margin-bottom: 0;
}

.ppc-carousel__title {
  margin-top: 0;
  margin-bottom: 18px;
  color: #bb1e41;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.3;
}

.ppc-carousel__controls {
  display: contents;
}

.ppc-carousel__stage {
  position: relative;
  padding-right: 64px;
  padding-left: 64px;
}

.ppc-carousel__button {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ppc-ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.ppc-carousel__button--previous {
  left: 0;
}

.ppc-carousel__button--next {
  right: 0;
}

.ppc-carousel__button:hover {
  color: var(--ppc-paper);
  background: var(--ppc-ink);
  transform: translateY(-50%) scale(1.05);
}

.ppc-carousel__button:focus-visible,
.ppc-card:focus-visible,
.ppc-carousel__viewport:focus-visible {
  outline: 3px solid var(--ppc-acid);
  outline-offset: 3px;
}

.ppc-carousel__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.ppc-carousel__viewport.ppc-is-dragging {
  cursor: grabbing;
}

.ppc-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--ppc-gap);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ppc-card {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ppc-line);
  background: var(--ppc-card);
  overflow: hidden;
}

.ppc-card__image {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 242, 120, 0.78), rgba(255, 92, 53, 0.58)),
    var(--ppc-ink);
}

.ppc-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(12, 18, 34, 0.38));
  opacity: 0;
  transition: opacity 400ms ease;
}

.ppc-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ppc-card__image img.ppc-image-error {
  opacity: 0;
}

.ppc-card:hover .ppc-card__image img {
  transform: scale(1.045);
}

.ppc-card:hover .ppc-card__image::after {
  opacity: 1;
}

.ppc-card__body {
  flex: 1 1 auto;
  min-height: 194px;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.ppc-card__series {
  margin: 0 0 6px;
  color: #bb1e41;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ppc-card__tag {
  align-self: flex-start;
  margin: 0 0 15px;
  padding: 0;
  color: var(--ppc-muted);
  border: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ppc-card__title {
  margin: 0 0 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.ppc-card__author {
  min-height: 30px;
  margin: auto 0 0;
  color: var(--ppc-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ppc-carousel__footer {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 23px;
}

.ppc-carousel__progress {
  height: 2px;
  background: var(--ppc-line);
  overflow: hidden;
}

.ppc-carousel__progress span {
  width: 4%;
  height: 100%;
  display: block;
  background: var(--ppc-accent);
  transition: width 500ms ease;
}

.ppc-carousel__status {
  margin: 0;
  color: var(--ppc-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .ppc-carousel {
    --ppc-gap: 16px;
  }

  .ppc-carousel__stage {
    padding-right: 50px;
    padding-left: 50px;
  }

  .ppc-carousel__header {
    align-items: center;
  }

  .ppc-carousel__button {
    width: 43px;
    height: 43px;
  }

  .ppc-card__body {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ppc-carousel *,
  .ppc-carousel *::before,
  .ppc-carousel *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}/* End custom CSS */