:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: #00000026;
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000);
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000);
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000);
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000);
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}
.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translateZ(0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active,
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        0.2s transform,
        0.2s top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        0.2s transform,
        0.2s left;
    }
  }
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &:before {
      content: "";
      background: #000;
      position: absolute;
      inset: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}
/* @font-face {
  font-family: Huawei Sans;
  src:
    url(../fonts/LT_54361.woff) format("woff2"),
    url(../fonts/LT_54361.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
} */
/* @font-face {
  font-family: Huawei Sans;
  src:
    url(../fonts/HuaweiSans-Light.woff2) format("woff2"),
    url(../fonts/HuaweiSans-Light.woff) format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
} */
/* @font-face {
  font-family: Huawei Sans;
  src:
    url(../fonts/HuaweiSans-Regular.woff2) format("woff2"),
    url(../fonts/HuaweiSans-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */
/* @font-face {
  font-family: Huawei Sans;
  src:
    url(../fonts/HuaweiSans-Medium.woff2) format("woff2"),
    url(../fonts/HuaweiSans-Medium.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Huawei Sans;
  src:
    url(../fonts/HuaweiSans-Bold.woff2) format("woff2"),
    url(../fonts/HuaweiSans-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} */
:root {
  --swal2-confirm-button-background-color: #c7000b !important;
}
body {
  margin: 0;
  padding: 0;
  font-family:
    Huawei Sans,
    Microsoft YaHei,
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
}
.mwc2026 {
  font-weight: 400;
  /* color: #333; */
}
.mwc2026 * {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
.mwc2026 *:focus,
.mwc2026 *:active {
  outline: none;
}
.mwc2026 a {
  color: inherit;
  text-decoration: none;
}
.mwc2026 ul,
.mwc2026 ol,
.mwc2026 li {
  list-style: none;
}
.mwc2026 video,
.mwc2026 picture,
.mwc2026 img {
  width: 100%;
  display: block;
}
.mwc2026 h1,
.mwc2026 h2,
.mwc2026 h3,
.mwc2026 h4,
.mwc2026 h5,
.mwc2026 h6 {
  line-height: 1.25;
  font-weight: 600;
}
.mwc2026 img {
  width: 100%;
  display: block;
}
.mwc2026 sub,
.mwc2026 sup {
  font-size: 0.6em;
}
.mwc2026 .hidden {
  display: none !important;
}
.mwc2026 .common-title {
  position: relative;
  font-size: clamp(33px, 2.9166666667vw, 2.9166666667vw);
  line-height: 1.5;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 779px) {
  .mwc2026 .common-title {
    font-size: 7.4666666667vw;
  }
}
.mwc2026 .common-title.common-title-cn {
  font-size: clamp(30px, 2.7083333333vw, 2.7083333333vw);
}
@media screen and (max-width: 779px) {
  .mwc2026 .common-title.common-title-cn {
    font-size: 6.9333333333vw;
  }
}
.mwc2026 .common-title span {
  position: relative;
  display: inline-block;
  padding-bottom: 1.0416666667vw;
}
@media screen and (max-width: 779px) {
  .mwc2026 .common-title span {
    padding-bottom: 2.6666666667vw;
  }
}
.mwc2026 .common-title span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 30%;
  min-width: 1.8229166667vw;
  height: 2px;
  background-color: #c7000b;
  font-size: 0;
  line-height: 1;
}
@media screen and (max-width: 779px) {
  .mwc2026 .common-title span:after {
    min-width: 4.6666666667vw;
  }
}
.mwc2026 .common-title.text-center span:after {
  left: 50%;
  transform: translate(-50%);
}
.mwc2026 .common-title.small-title {
  font-size: clamp(30px, 1.875vw, 1.875vw);
}
@media screen and (max-width: 779px) {
  .mwc2026 .common-title.small-title {
    font-size: 5.8666666667vw;
  }
}
.mwc2026 .common-desc {
  margin-top: 1.25vw;
  font-size: clamp(15px, 0.8333333333vw, 0.8333333333vw);
  line-height: 1.75;
  font-weight: 400;
  color: #333;
}
@media screen and (max-width: 779px) {
  .mwc2026 .common-desc {
    margin-top: 3.7333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.8571428571;
  }
}
.mwc2026 .nowrap {
  white-space: nowrap;
}
.mwc2026 .text-left {
  text-align: left !important;
}
.mwc2026 .text-right {
  text-align: right !important;
}
.mwc2026 .text-center {
  text-align: center !important;
}
@media screen and (max-width: 779px) {
  .mwc2026 .show-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .mwc2026 .hide-pad {
    display: none !important;
  }
}
.mwc2026 .show-pad {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .mwc2026 .show-pad {
    display: block !important;
  }
}
.mwc2026 .show-mob {
  display: none !important;
}
@media screen and (max-width: 779px) {
  .mwc2026 .show-mob {
    display: block !important;
  }
}
.mwc2026-agenda .agenda-container {
  padding: 5.2083333333vw 10.4166666667vw 7.2916666667vw;
  background-color: #def4ff;
  overflow: hidden;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-container {
    padding: 13.3333333333vw 0;
  }
}
.mwc2026-agenda .agenda-nav {
  padding: 1.875vw 0 3.125vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-nav {
    padding: 6.4vw 4.8vw 5.3333333333vw;
  }
}
.mwc2026-agenda .agenda-nav .swiper-wrapper {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #fdfeff;
  border-radius: 0.4166666667vw;
  padding: 0.2083333333vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-nav .swiper-wrapper {
    padding: 0.5333333333vw;
    border-radius: 1.0666666667vw;
  }
}
.mwc2026-agenda .agenda-nav .swiper-slide {
  cursor: pointer;
}
.mwc2026-agenda .agenda-nav .agenda-nav-item {
  font-size: clamp(14px, 0.9375vw, 0.9375vw);
  padding: 0.3645833333vw 1.875vw;
  color: #333c;
  transition: all 0.3s ease;
  border-radius: 0.2083333333vw;
  max-width: fit-content;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-nav .agenda-nav-item {
    font-size: 3.7333333333vw;
    padding: 1.8666666667vw 4.8vw;
    border-radius: 0.5333333333vw;
    white-space: nowrap;
  }
}
.mwc2026-agenda .agenda-nav .agenda-nav-item.active {
  background-color: #fdfeff;
}
.mwc2026-agenda .agenda-nav .agenda-nav-item.active span {
  background: linear-gradient(117.39deg, #0cd8ff -8.43%, #0834e2 95.57%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (any-hover: hover) {
  .mwc2026-agenda .agenda-nav .agenda-nav-item:hover span {
    background: linear-gradient(117.39deg, #0cd8ff -8.43%, #0834e2 95.57%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
.mwc2026-agenda .agenda-content {
  backdrop-filter: blur(90px);
  box-shadow: 0 0 20px #7fcdfd33;
  background: linear-gradient(106.98deg, #fff9 15.28% 48.07%, #fff9 80.85%);
  border-radius: 1.0416666667vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-content {
    border-radius: 2.6666666667vw;
    margin: 0 4.8vw;
  }
}
.mwc2026-agenda .agenda-tabs .swiper-slide {
  padding: 2.0833333333vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .swiper-slide {
    padding: 3.7333333333vw;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-title {
  position: relative;
  padding-left: clamp(30px, 2.0833333333vw, 2.0833333333vw);
  font-size: clamp(18px, 1.4583333333vw, 1.4583333333vw);
  font-weight: 500;
  background: linear-gradient(117.39deg, #0cd8ff -8.43%, #0834e2 95.57%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-title {
    font-size: 4.8vw;
    padding-left: 4vw;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(14px, 1.0416666667vw, 1.0416666667vw);
  height: clamp(14px, 1.0416666667vw, 1.0416666667vw);
  background: url(../img/agenda/blue-icon.svg) no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-title:before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: 2vw;
    transform: translateY(0);
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-subtitle {
  font-size: clamp(14px, 1.25vw, 1.25vw);
  font-weight: 500;
  margin: 1.25vw 0 1.0416666667vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-subtitle {
    font-size: 4.2666666667vw;
    margin: 3.7333333333vw 0 2.6666666667vw;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-items {
  display: flex;
  margin-top: 0.8333333333vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-items {
    flex-direction: column;
    margin-top: 2.1333333333vw;
    border: 1px solid #fff;
    border-radius: 2.6666666667vw;
    overflow: hidden;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-items .agenda-content-information {
  background-color: #e9f6ff;
  border: 1px solid #fff;
  padding: 1.6666666667vw;
  border-radius: 0.5208333333vw;
  flex: 1;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information {
    padding: 3.2vw;
    border-radius: none;
    width: 100%;
    flex: 0 0 100%;
    border: none;
  }
}
.mwc2026-agenda
  .agenda-tabs
  .agenda-content-items
  .agenda-content-information:first-child {
  width: 16%;
  flex: 0 0 16%;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:first-child {
    display: flex;
    align-items: center;
    width: 100%;
    flex: 0 0 100%;
  }
}
.mwc2026-agenda
  .agenda-tabs
  .agenda-content-items
  .agenda-content-information:first-child
  .item-title:before {
  background: url(../img/agenda/time-icon.svg) no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:first-child
    .item-content {
    position: relative;
    background: linear-gradient(90deg, #0cd8ff, #0834e2);
    padding: 2.1333333333vw 2.6666666667vw 2.1333333333vw 7.4666666667vw;
    border-radius: 1.0666666667vw;
    color: #fff;
    opacity: 0.9;
  }
}
.mwc2026-agenda
  .agenda-tabs
  .agenda-content-items
  .agenda-content-information:first-child
  .item-content:before {
  display: none;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:first-child
    .item-content:before {
    display: block;
    content: "";
    position: absolute;
    left: 2.6666666667vw;
    top: 50%;
    transform: translateY(-50%);
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    background: url(../img/agenda/time-icon-white.svg) no-repeat center center;
    background-size: 100% 100%;
    padding: 1px;
  }
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:nth-child(2) {
    padding-top: 0;
    padding-bottom: 0;
  }
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:nth-child(2)
    .item-title {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 1.0666666667vw;
  }
}
@media screen and (max-width: 779px) and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:nth-child(2)
    .item-content {
    font-weight: 500;
    font-size: 3.7333333333vw;
  }
}
.mwc2026-agenda
  .agenda-tabs
  .agenda-content-items
  .agenda-content-information:last-child {
  width: 25%;
  flex: 0 0 25%;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:last-child {
    display: flex;
    align-items: center;
    width: 100%;
    flex: 0 0 100%;
  }
}
.mwc2026-agenda
  .agenda-tabs
  .agenda-content-items
  .agenda-content-information:last-child
  .item-title {
  color: #333;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:last-child
    .item-title {
    display: block;
    padding-left: 0;
  }
}
.mwc2026-agenda
  .agenda-tabs
  .agenda-content-items
  .agenda-content-information:last-child
  .item-title:before {
  background: url(../img/agenda/location-icon.svg) no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .agenda-content-information:last-child
    .item-content {
    padding-left: 2.1333333333vw;
    margin-left: 2.1333333333vw;
    border-left: 1px solid #333;
    line-height: 1;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-items .item-title {
  position: relative;
  font-size: clamp(12px, 0.8333333333vw, 0.8333333333vw);
  color: #666;
  padding-left: clamp(20px, 1.3020833333vw, 1.3020833333vw);
  margin-bottom: 0.5208333333vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-items .item-title {
    font-size: 2.6666666667vw;
    display: none;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-items .item-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(12px, 0.8333333333vw, 0.8333333333vw);
  height: clamp(12px, 0.8333333333vw, 0.8333333333vw);
  background: url(../img/agenda/theme-icon.svg) no-repeat center center;
  background-size: 100% 100%;
  padding: 1px;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-items .item-title:before {
    display: none;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-items .item-content {
  font-size: clamp(14px, 0.9375vw, 0.9375vw);
  font-weight: 500;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-items .item-content {
    font-weight: 400;
    font-size: 2.6666666667vw;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-items .person-infor {
  display: flex;
  gap: 0.5208333333vw;
  margin-top: 0.7291666667vw;
  font-size: clamp(12px, 0.6770833333vw, 0.6770833333vw);
  align-items: flex-start;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda .agenda-tabs .agenda-content-items .person-infor {
    flex-direction: column;
    gap: 0.6666666667vw;
    margin-top: 2.4vw;
    font-size: 2.6666666667vw;
  }
}
.mwc2026-agenda .agenda-tabs .agenda-content-items .person-infor .person-name {
  position: relative;
  padding-right: 0.5208333333vw;
  white-space: nowrap;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .person-infor
    .person-name {
    padding-right: 0;
  }
}
.mwc2026-agenda
  .agenda-tabs
  .agenda-content-items
  .person-infor
  .person-name:after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-56%);
  width: 1px;
  height: 100%;
  color: #333;
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda
    .agenda-tabs
    .agenda-content-items
    .person-infor
    .person-name:after {
    display: none;
  }
}
.mwc2026-agenda[data-lang="cn"] .agenda-content-title {
  font-size: clamp(18px, 1.3541666667vw, 1.3541666667vw);
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda[data-lang="cn"] .agenda-content-title {
    font-size: 4.8vw;
  }
}
.mwc2026-agenda[data-lang="cn"] .agenda-content-subtitle {
  font-size: clamp(14px, 1.1458333333vw, 1.1458333333vw);
}
@media screen and (max-width: 779px) {
  .mwc2026-agenda[data-lang="cn"] .agenda-content-subtitle {
    font-size: 4.2666666667vw;
  }
}
.mwc2026-location .location-container {
  padding: 5.2083333333vw 18.75vw 7.2916666667vw;
  background-color: #e6f7ff;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-container {
    padding: 13.3333333333vw 4.8vw;
  }
}
.mwc2026-location .location-content {
  position: relative;
  display: flex;
  width: 100%;
  box-shadow: 0 0 20px #7fcdfd33;
  overflow: hidden;
  border-radius: 1.0416666667vw;
  margin-top: 3.125vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-content {
    flex-direction: column-reverse;
    border-radius: 2.6666666667vw;
    margin-top: 6.4vw;
  }
}
.mwc2026-location .location-map {
  width: 41.0416666667vw;
  flex: 0 0 41.0416666667vw;
  height: 100%;
  cursor: pointer;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-map {
    width: 100%;
    height: auto;
  }
}
.mwc2026-location .location-map img {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .mwc2026-location .location-map:hover img {
    transform: scale(1.05);
  }
}
.mwc2026-location .location-info {
  width: 21.1458333333vw;
  flex: 0 0 21.1458333333vw;
  height: 31.25vw;
  padding: 2.0833333333vw;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  background-color: #fff;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-info {
    width: 100%;
    height: auto;
    padding: 3.7333333333vw;
  }
}
.mwc2026-location .location-info .location-title {
  font-size: 1.4583333333vw;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(130.88deg, #0cd8ff -11.46%, #0834e2 129.92%) 1;
  padding-bottom: 1.5625vw;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-info .location-title {
    font-size: 4.2666666667vw;
    padding-bottom: 3.2vw;
    margin-bottom: 5.3333333333vw;
  }
}
.mwc2026-location .location-info .location-title span {
  background: linear-gradient(117.39deg, #0cd8ff -8.43%, #0834e2 95.57%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mwc2026-location .location-info .location-items {
  display: flex;
  flex-direction: column;
  gap: 1.5625vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-info .location-items {
    flex-direction: row;
    gap: 4vw;
  }
}
.mwc2026-location .location-info .location-item {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-info .location-item {
    gap: 1.0666666667vw;
    font-size: 3.2vw;
    width: 50%;
    flex: 0 0 50%;
  }
}
.mwc2026-location .location-info .item-location {
  color: #666;
}
.mwc2026-location .location-info .item-location-text {
  font-weight: 600;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-info .item-location-text {
    font-size: 3.7333333333vw;
    font-weight: 400;
  }
}
.mwc2026-location .location-info .item-icon img {
  width: auto;
  height: 1.0416666667vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-info .item-icon img {
    width: 4vw;
    height: 4vw;
  }
}
.mwc2026-location .location-info .location-info-bottom {
  font-size: 0.8333333333vw;
  color: #666;
}
@media screen and (max-width: 779px) {
  .mwc2026-location .location-info .location-info-bottom {
    font-size: 3.2vw;
    margin-top: 10.6666666667vw;
  }
}
.mwc2026-location[data-lang="cn"] .item-location {
  font-size: 0.9375vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-location[data-lang="cn"] .item-location {
    font-size: 3.2vw;
  }
}
.mwc2026-review .review-container {
  padding: 5.2083333333vw 10.4166666667vw 10.4166666667vw;
  background-color: #f3fbff;
}
@media screen and (max-width: 779px) {
  .mwc2026-review .review-container {
    padding: 13.3333333333vw 4.8vw 21.3333333333vw;
  }
}
.mwc2026-review .review-content {
  display: flex;
  gap: 1.4583333333vw;
  margin-top: 3.125vw;
}
@media screen and (max-width: 779px) {
  .mwc2026-review .review-content {
    flex-direction: column;
    gap: 3.7333333333vw;
    margin-top: 6.4vw;
  }
}
.mwc2026-review .review-item {
  position: relative;
  width: calc(50% - 0.7291666667vw);
  flex: 0 0 calc(50% - 0.7291666667vw);
  border-radius: 1.0416666667vw;
  overflow: hidden;
}
@media screen and (max-width: 779px) {
  .mwc2026-review .review-item {
    width: 100%;
    flex: 0 0 100%;
    border-radius: 2.6666666667vw;
  }
}
@media (any-hover: hover) {
  .mwc2026-review .review-item:hover img {
    transform: scale(1.05);
  }
}
.mwc2026-review .review-item img {
  transition: all 0.3s ease;
}
.mwc2026-review .review-item .review-item-title {
  position: absolute;
  padding: 1.1979166667vw 0.2604166667vw;
  left: 0;
  width: 100%;
  bottom: 0;
  backdrop-filter: blur(10px);
  background-color: #0000001a;
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 1.25vw);
  font-weight: 500;
}
@media screen and (max-width: 779px) {
  .mwc2026-review .review-item .review-item-title {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw;
  }
}
.mwc2026-review[data-lang="cn"] .review-item .review-item-title {
  font-size: clamp(14px, 1.1458333333vw, 1.1458333333vw);
}
@media screen and (max-width: 779px) {
  .mwc2026-review[data-lang="cn"] .review-item .review-item-title {
    font-size: 3.7333333333vw;
  }
}
.mwc2026 footer {
  padding: 2.0833333333vw 2.2916666667vw;
}
@media screen and (max-width: 1024px) {
  .mwc2026 footer {
    padding: 5.3333333333vw;
  }
}
@media screen and (max-width: 779px) {
  .mwc2026 footer {
    padding: 4.2666666667vw 5.3333333333vw;
  }
}
.mwc2026 footer .mwc2026-footer-container {
  position: relative;
  max-width: 1528px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container {
    flex-direction: column;
  }
}
.mwc2026 footer .mwc2026-footer-container .footer-sharebox {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .footer-sharebox {
    margin-bottom: 4.5333333333vw;
    justify-content: space-between;
  }
}
.mwc2026 footer .mwc2026-footer-container .share-title {
  font-size: clamp(12px, 0.625vw, 0.625vw);
  padding-right: 1.25vw;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
  margin-right: 1.25vw;
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .share-title {
    font-size: 3.2vw;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}
.mwc2026 footer .mwc2026-footer-container .share-box {
  display: flex;
  gap: 0.8333333333vw;
}
@media screen and (max-width: 1024px) {
  .mwc2026 footer .mwc2026-footer-container .share-box {
    gap: 4vw;
  }
}
.mwc2026 footer .mwc2026-footer-container .share-box img {
  width: clamp(25px, 1.3020833333vw, 1.3020833333vw);
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .share-box img {
    width: 4vw;
  }
}
.mwc2026 footer .mwc2026-footer-container .share-wechat {
  position: relative;
  cursor: pointer;
}
.mwc2026 footer .mwc2026-footer-container .share-wechat .share-qrcode {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%);
  display: none;
  margin-bottom: 0.4166666667vw;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.2083333333vw;
  padding: 0.2083333333vw;
  box-shadow: 0 2px 8px #00000026;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .mwc2026 footer .mwc2026-footer-container .share-wechat .share-qrcode {
    margin-bottom: 1.0666666667vw;
    border-radius: 0.5333333333vw;
    padding: 0.5333333333vw;
  }
}
.mwc2026 footer .mwc2026-footer-container .share-wechat .share-qrcode:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-left: 0.4166666667vw solid transparent;
  border-right: 0.4166666667vw solid transparent;
  border-top: 0.4166666667vw solid #fff;
}
@media screen and (max-width: 1024px) {
  .mwc2026 footer .mwc2026-footer-container .share-wechat .share-qrcode:after {
    border-left: 1.0666666667vw solid transparent;
    border-right: 1.0666666667vw solid transparent;
    border-top: 1.0666666667vw solid #fff;
  }
}
.mwc2026
  footer
  .mwc2026-footer-container
  .share-wechat
  .share-qrcode
  .qrcode-title {
  font-size: clamp(12px, 0.625vw, 0.625vw);
  text-align: center;
  margin-bottom: 0.2083333333vw;
}
@media screen and (max-width: 779px) {
  .mwc2026
    footer
    .mwc2026-footer-container
    .share-wechat
    .share-qrcode
    .qrcode-title {
    font-size: 2.6666666667vw;
  }
}
.mwc2026 footer .mwc2026-footer-container .share-wechat .share-qrcode img {
  width: 6.6666666667vw;
  display: block;
}
@media screen and (max-width: 1024px) {
  .mwc2026 footer .mwc2026-footer-container .share-wechat .share-qrcode img {
    width: 17.0666666667vw;
  }
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .share-wechat .share-qrcode img {
    width: 26.6666666667vw;
  }
}
.mwc2026 footer .mwc2026-footer-container .share-wechat:hover .share-qrcode,
.mwc2026 footer .mwc2026-footer-container .share-wechat.show .share-qrcode {
  display: block;
}
.mwc2026 footer .mwc2026-footer-container .footer-terms-copyright {
  font-size: clamp(12px, 0.625vw, 0.625vw);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3125vw;
  color: #999;
  font-weight: 300;
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .footer-terms-copyright {
    flex-direction: column;
    gap: 0.5333333333vw;
    font-size: 2.4vw;
    align-items: flex-start;
  }
}
.mwc2026 footer .mwc2026-footer-container .footer-terms {
  display: flex;
  gap: 1.0416666667vw;
  color: #333;
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .footer-terms {
    gap: 5.3333333333vw;
  }
}
.mwc2026 footer .mwc2026-footer-container .terms-link {
  position: relative;
}
.mwc2026 footer .mwc2026-footer-container .terms-link:after {
  content: "|";
  position: absolute;
  right: -0.5729166667vw;
  top: 0;
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .terms-link:after {
    right: -2.9333333333vw;
  }
}
.mwc2026 footer .mwc2026-footer-container .terms-link:last-child:after {
  display: none;
}
.mwc2026 footer .mwc2026-footer-container .footer-copyright {
  display: flex;
  gap: 1.0416666667vw;
  align-items: center;
}
@media screen and (max-width: 779px) {
  .mwc2026 footer .mwc2026-footer-container .footer-copyright {
    flex-direction: column;
    gap: 1.3333333333vw;
    font-size: 2.6666666667vw;
    text-align: center;
  }
}
