/** Shopify CDN: Minification failed

Line 2506:1 Expected identifier but found "{"
Line 2506:2 Unexpected "{"
Line 2506:9 Expected ":"
Line 2506:16 Unexpected "{"
Line 2519:3 Expected identifier but found "{"
Line 2519:4 Unexpected "{"
Line 2519:11 Expected ":"
Line 2524:3 Expected identifier but found "{"
Line 2524:4 Unexpected "{"
Line 2524:11 Expected ":"
... and 66 more hidden warnings

**/


/* CSS from section stylesheet tags */
.ro_banner {
    --banner-height: 690;
    /* slide中内容top定位 */
    --slide-overlay-top: 50%;
    /* 遮罩阴影角度 */
    --bg-gradient-angle: 270deg;

    --timer-margin-top: 16px;
    --btns-margin-top: 24px;

    /* tag 样式 */
    --tag-font-size: 16px;
    --tag-line-height: 20px;

    position: relative;
    width: 100%;
    height: calc(var(--banner-height) * 1px);
    overflow: hidden;
  }

  /* 屏幕宽度1920以上时，改为保持宽高比，高度自适应 */
  /* @media (min-width: 1920px) {
    .ro_banner {
      aspect-ratio: 1920 / var(--banner-height);
      height: auto;
    }
  } */

  /* 屏幕宽度 900-1183 时，改为保持宽高比，高度自适应 */
  @media (min-width: 900px) and (max-width: 1183px) {
    .ro_banner {
      aspect-ratio: 900 / var(--banner-height);
      height: auto;
    }
  }

  .ro_banner.main {
    --banner-height: 690;

    /* title 样式 */
    --title-font-size: 48px;
    --title-line-height: 52px;

    /* desc 样式 */
    --desc-font-size: 24px;
    --desc-line-height: 28px;

    --btns-margin-top: 32px;

    /* 向上移动导航栏高度的距离，以实现导航栏压盖效果 */
    margin-top: calc(var(--navbar-height) * -1);
  }

  .ro_banner.sub {
    --banner-height: 480;

    /* title 样式 */
    --title-font-size: 40px;
    --title-line-height: 44px;

    /* desc 样式 */
    --desc-font-size: 20px;
    --desc-line-height: 24px;

    margin-top: 8px;
  }

  /* 重置ul元素默认样式，否则swiper计算slide的透明度有问题 */
  .ro_banner .swiper-wrapper {
    margin: 0;
    padding: 0;
  }

  /* 
   * 上下渐变背景(注：需放在slide元素中，否则会遮挡内容)
   */
  .ro_banner .slide.dark {
    /* 文字颜色为深色时，使用浅色渐变背景 */
    --bg-color: 255, 255, 255;
  }
  .ro_banner .slide.white {
    /* 文字颜色为浅色时，使用深色渐变背景 */
    --bg-color: 0, 0, 0;
  }

  .ro_banner.main .slide::before,
  .ro_banner .slide.video::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0.3;
    z-index: 5;
    pointer-events: none;
  }

  /* 只有主banner需要顶部阴影 */
  .ro_banner.main .slide::before {
    height: 180px;
    background: linear-gradient(
      180deg,
      rgba(var(--bg-color), 0.56) 0%,
      rgba(var(--bg-color), 0.56) 6.67%,
      rgba(var(--bg-color), 0.54) 13.33%,
      rgba(var(--bg-color), 0.51) 20%,
      rgba(var(--bg-color), 0.48) 26.67%,
      rgba(var(--bg-color), 0.43) 33.33%,
      rgba(var(--bg-color), 0.37) 40%,
      rgba(var(--bg-color), 0.31) 46.67%,
      rgba(var(--bg-color), 0.25) 53.33%,
      rgba(var(--bg-color), 0.18) 60%,
      rgba(var(--bg-color), 0.13) 66.67%,
      rgba(var(--bg-color), 0.08) 73.33%,
      rgba(var(--bg-color), 0.05) 80%,
      rgba(var(--bg-color), 0.02) 86.67%,
      rgba(var(--bg-color), 0) 93.33%,
      rgba(var(--bg-color), 0) 100%
    );
  }

  .ro_banner .slide.video::after {
    height: 100%;
    background: linear-gradient(
      var(--bg-gradient-angle),
      rgba(var(--bg-color), 0) 0%,
      rgba(var(--bg-color), 0) 6.67%,
      rgba(var(--bg-color), 0.02) 13.33%,
      rgba(var(--bg-color), 0.05) 20%,
      rgba(var(--bg-color), 0.08) 26.67%,
      rgba(var(--bg-color), 0.13) 33.33%,
      rgba(var(--bg-color), 0.18) 40%,
      rgba(var(--bg-color), 0.25) 46.67%,
      rgba(var(--bg-color), 0.31) 53.33%,
      rgba(var(--bg-color), 0.37) 60%,
      rgba(var(--bg-color), 0.43) 66.67%,
      rgba(var(--bg-color), 0.48) 73.33%,
      rgba(var(--bg-color), 0.51) 80%,
      rgba(var(--bg-color), 0.54) 86.67%,
      rgba(var(--bg-color), 0.56) 93.33%,
      rgba(var(--bg-color), 0.56) 100%
    );
  }

  /* 分页指示器定位 */
  .ro_banner .swiper-pagination {
    position: absolute !important;
    left: var(--inner-margin-x) !important;
    bottom: 40px !important;
    width: auto !important;
    z-index: 10;
  }

  .ro_banner .nav-btns {
    display: none;
    position: absolute;
    top: 50%;
    left: var(--outer-margin-x);
    right: var(--outer-margin-x);
    transform: translateY(-50%);
    z-index: 10;
  }

  .ro_banner:hover .nav-btns {
    display: flex;
    justify-content: space-between;
  }

  .ro_banner .nav-btns button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    color: #fff;
    background: rgba(22, 22, 22, 0.3);
  }

  .ro_banner .nav-btns button:hover {
    background: rgba(22, 22, 22, 0.4);
  }

  /* 移动\pad端适配 */
  @media (max-width: 1183px) {
    .ro_banner {
      /* tag 样式 */
      --tag-font-size: 14px;
      --tag-line-height: 20px;

      --timer-margin-top: 8px;
    }

    .ro_banner.main {
      --banner-height: 600;
      /* 移动端下主banner需要留出导航栏位置 */
      --slide-overlay-top: calc(var(--navbar-height) + 24px);
      /* 遮罩阴影角度 */
      --bg-gradient-angle: 180deg;

      /* title 样式 */
      --title-font-size: 32px;
      --title-line-height: 36px;

      /* desc 样式 */
      --desc-font-size: 16px;
      --desc-line-height: 20px;

      --btns-margin-top: 24px;
    }

    .ro_banner.sub {
      --banner-height: 460;

      --slide-overlay-top: 24px;

      /* title 样式 */
      --title-font-size: 24px;
      --title-line-height: 28px;

      /* desc 样式 */
      --desc-font-size: 14px;
      --desc-line-height: 20px;
    }

    /* 移动端上渐变背景 */
    .ro_banner.main .slide::before {
      height: 280px;
    }

    /* 内容处于底部时，顶部阴影缩小 */
    .ro_banner.main .slide.layout-end::before {
      height: 100px;
    }

    /* 分页器底部居中定位 */
    .ro_banner .swiper-pagination {
      right: var(--inner-margin-x);
      bottom: 14px !important;
      text-align: center;
    }

    /* 不展示左右箭头 */
    .ro_banner .nav-btns {
      display: none !important;
    }
  }
.ro-brand.is-list {
    background: #fff;
    padding: 40px 0 24px;
    width: 100%;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  .ro-brand_text {
    width: 620px;
    text-align: center;
    margin: auto;
  }
  .ro-brand__sub-title {
    font-weight: 600;
    color: var(--brand-color);
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
  .ro-brand__title {
    font-weight: 700;
    font-size: 56px;
    line-height: 60px;
    color: var(--main-color);
  }
  .ro-brand.is-list .ro-brand__title {
    font-size: 40px;
    line-height: 44px;
    padding: 12px 0 32px;
  }
  .ro-brand__des {
    display: none;
    font-weight: 400;
    color: var(--second-color);
    font-size: 14px;
    line-height: 20px;
  }
  .ro-brand__honor-list {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ro-brand.is-list .ro-brand__honor-list {
    display: flex;
  }
  .ro-brand__list {
    position: relative;
    display: flex;
    column-gap: 8px;
    width: max-content;
  }
  .honorscroll {
    -webkit-animation: 10s honorscroll linear infinite normal;
    animation: 10s honorscroll linear infinite normal;
  }

  @keyframes honorscroll {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-307px, 0, 0);
      transform: translate3d(-307px, 0, 0);
    }
  }

  @media (max-width: 1183px) {
    .ro-brand.is-list {
      padding: 32px 0 40px;
    }
    .ro-brand_text {
      width: 100%;
      /* max-width: 307px;  */
      font-size: 14px;
      line-height: 20px;
    }
    .ro-brand.is-list .ro-brand__title {
      font-size: 32px;
      line-height: 36px;
      padding: 12px 0 0;
    }
    .ro-brand.is-list .ro-brand__sub-title{
      letter-spacing: -0.14px;
    }
    .ro-brand.is-list .ro-brand__list {
      column-gap: 0;
    }
  }
.ro-brand.is-des {
    background: var(--bg-color);
    padding: 112px 0;
  }
  .ro-brand_text {
    width: 620px;
    text-align: center;
    margin: auto;
  }
  .ro-brand__sub-title {
    font-weight: 600;
    color: var(--brand-color);
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
  .ro-brand__title {
    font-weight: 700;
    font-size: 56px;
    line-height: 60px;
    color: var(--main-color);
  }
  .ro-brand.is-des .ro-brand__title {
    padding: 16px 0;
  }
  .ro-brand__des {
    display: none;
    font-weight: 400;
    color: var(--second-color);
    font-size: 14px;
    line-height: 20px;
  }
  .ro-brand.is-des .ro-brand__des {
    display: block;
  }
  .ro-brand.is-des .ro-brand__des p {
    margin: 0;
  }

  @media (max-width: 1183px) {
    .ro-brand.is-des {
      padding: 76px 24px;
    }
    .ro-brand_text {
      width: 530px;
      font-size: 14px;
      line-height: 20px;
    }
    .ro-brand.is-des .ro-brand__sub-title{
      letter-spacing: -0.14px;
    }
    .ro-brand.is-des .ro-brand__title {
      font-size: 32px;
      line-height: 36px;
      padding: 16px 0;
    }
    .ro-brand.is-des .ro-brand__des {
      display: block;
      font-size: 14px;
    }
  }
  @media (max-width: 767px) {
    .ro-brand.is-des {
      padding: 60px 24px 56px;
    }
    .ro-brand_text {
      width: 100%;
      /* max-width: 307px; */
      font-size: 14px;
      line-height: 20px;
    }
    .ro-brand.is-des .ro-brand__title {
      padding: 12px 0;
    }
  }
.ro-bright-spots {
    background-color: var(--bg-color);
    padding: var(--section-padding-y) 0;
  }

  .ro-bright__title {
    display: flex;
    align-items: center;
    width: var(--inner-content-width);
    font-weight: 600;
    font-size: 40px;
    line-height: 44px;
    text-transform: capitalize;
    margin: 0 auto 28px;
  }

  .ro-bright__swiper {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
  }

  .brightSwiper {
    height: max-content;
    width: 100%;
    overflow: visible;
    padding: 0 var(--inner-margin-x) !important;
  }

  .ro-bright__list {
    display: inline-flex;
    align-items: stretch;
    padding-top: 4px;
  }

  /* 自定义按键样式 */
  .ro-bright__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 31px;
    background-color: #1616164d !important;
    border: 0;
    padding: 0;
    z-index: 10;
    cursor: pointer;
  }

  .brightSwiper:hover .ro-bright__btn {
    visibility: visible;
  }

  .ro-bright__btn.prev {
    left: max(24px, calc(var(--inner-margin-x) - 96px));
  }

  .ro-bright__btn.next {
    right: max(24px, calc(var(--inner-margin-x) - 96px));
  }

  @media (max-width: 1183px) {
    .ro-bright-spots {
      padding: 40px 0;
    }

    .ro-bright__title {
      font-size: 24px;
      line-height: 28px;
      min-height: 56px;
      margin-bottom: 12px;
    }

    .ro-bright__btn {
      display: none; 
    }
  }
.ro-explore-bg {
    display: block;
    background: var(--bg-color);
    padding: var(--section-padding-y) 0;
  }

  .ro-explore__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 44px;
    color: var(--main-color);
    padding: 0 0 28px 0;
    text-transform: capitalize;
    width: var(--inner-content-width);
    margin: auto;
  }

  .ro-explore-more{
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .ro-explore-list {
    overflow: visible;
  }

  .ro-explore__swiper{
    width: 100%;
    height: auto !important;
    display: inline-flex;
    /* gap: 16px; */
    align-items: stretch;
  }

  .ro-explore__swiper .ro-explore__item:last-child {
    margin-right:0 !important;
  }

  .exploreSwiper{
    padding: 0 var(--inner-margin-x) !important;
    padding-top: 4px;
    height: max-content;
    width: 100%;
    overflow: visible;
    margin: auto;
  }

  .ro-explore__list {
    display: inline-flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    width: auto;
  }

  @media (min-width: 1184px) {
    .ro-explore__swiper.row .ro-explore__item:nth-child(3) {
      margin-right:0 !important;
    }

    .ro-explore__swiper.row .ro-explore__item {
      min-width: calc((100% - 16px * 2) / 3);
    }

    .ro-explore__swiper {
      flex-wrap: wrap;
      row-gap: 16px;
    }
  }

  @media (max-width: 1183px) {
    .ro-explore__title {
      font-size: 24px;
      line-height: 28px;
      padding-top: 40px;
      padding-bottom: 16px;
    }

    .ro-explore__list {
      grid-template-columns: repeat(auto-fit, minmax(296px, 1fr));
    }
  }
.ro_bootsrap-footer {
    width: 100%;
    min-height: 270px;
    background: var(--bg-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .ro_main-footer {
    width: var(--inner-content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .ro_main-footer .navigation {
    width: 100%;
    display: flex;
    gap: 29px;
    margin: 32px 0;
    justify-content: space-between;
  }
  .ro_main-footer .navigation .ro_footer_content-block {
    width: 20%;
    line-height: 1.2;
    /* padding-right: 3%; */
  }
  .ro_main-footer .navigation .ro_footer_content-block .block-title {
    /* font-family: ProximaNova-Semibold; */
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    color: var(--main-color);
  }
  .ro_main-footer .navigation .ro_footer_content-block .nav-title {
    /* font-family: ProximaNova-Regular; */
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 16px;
    color: var(--second-color);
  }
  .ro_main-footer .navigation .ro_footer_content-block .nav-title:hover {
    color: var(--main-color);
    text-decoration-line: underline;
    text-underline-position: under;
  }
  /* Download 模块 */
  .ro_main-footer .navigation .download {
    margin-top: 32px;
    font-size: 12px;
    color: var(--main-color);
    display: flex;
    flex-direction: column;
  }

  .ro_main-footer .navigation .download .download-btn {
    width: 130px;
    height: 40px;
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid rgba(22, 22, 22, 0.1);
    line-height: 16px;
    padding: 8px 16px;
    border-radius: 40px;
    margin-bottom: 8px;
    color: var(--main-color);
    cursor: pointer;
  }
  .ro_main-footer .navigation .download .download-btn:hover {
    text-decoration-line: underline;
    text-underline-position: under;
    color: var(--main-color);
    border-color: var(--main-color);
  }
  
  /* Download 模块 End */

  /* Contact Us 模块 */
  .ro_main-footer .navigation .customer {
    margin-top: 32px;
  }

  .ro_main-footer .navigation .customer .contact-item {
    /* font-family: ProximaNova-Semibold; */
    /* font-weight: 600; */
    line-height: 16px;
    margin-bottom: 8px;
  }
  .ro_main-footer .navigation .customer .contact-item .contact-info {
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    color: var(--second-color);
  }
  .ro_main-footer .navigation .customer .contact-item .contact-info + .contact-info {
    margin-top: 4px;
  }
  .ro_main-footer .navigation .customer .contact-item .concat-bd {
    /* font-family: ProximaNova-Semibold; */
    font-weight: 600;
    color: var(--main-color);
  }
  /* Contact Us 模块 End */
  /* 底部其他信息说明 Start */
  .ro_main-footer_info {
    width: var(--inner-content-width);
    margin: 0 auto 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--second-color);
  }
  .ro_main-footer_info a {
    color: var(--main-color);
    font-weight: 500;
    text-decoration-line: underline;
    text-underline-position: from-font;
  }
  .ro_main-footer_info a:hover {
    color: #2e2e2e;
  }
  /* 底部其他信息说明 End */
  .show-Mob {
    display: none !important;
  }
  @media screen and (max-width: 1183px) {
    .ro_main-footer {
      width: 100%;
      padding-top: 10px;
    }
    .ro_main-footer .navigation {
      flex-direction: column;
      padding: 0 24px;
      margin: 0;
      gap: 0;
    }
    .ro_main-footer .navigation .ro_footer_content-block {
      width: 100%;
      max-height: 56px;
      overflow: hidden;
      line-height: 1.2;
      border-bottom: 1px solid var(--border-color);
      transition: all 250ms ease-in-out;
    }
    .ro_main-footer .navigation .ro_footer_content-block .block-title {
      margin-bottom: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 56px;
    }
    .ro_main-footer .navigation .ro_footer_content-block .nav-title {
      margin-bottom: 16px;
    }
    .ro_main-footer .navigation .ro_footer_content-block .block-title .block-title-icon {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--main-color);
    }
    .ro_main-footer .navigation .ro_footer_content-block .block-title .block-select-country-mob:hover {
      color: var(--main-color);
    }
    .ro_main-footer .navigation .ro_footer_content-block .block-title .icon-ele {
      position: relative;
      display: block;
    }
    .ro_main-footer .navigation .ro_footer_content-block .block-title .icon-ele > span {
      display: block;
      width: 12px;
      height: 1.2px;
      background-color: #161616;
    }
    .ro_main-footer .navigation .ro_footer_content-block .block-title .icon-ele .shu {
      position: absolute;
      top: 0;
      transform: rotateZ(90deg);
      transition: all 250ms ease-in-out;
    }
    .ro_main-footer .navigation .ro_footer_content-block .block-title .icon-ele .active {
      transform: rotateZ(180deg);
    }
    .ro_main-footer .navigation .footer-menu-mob-active {
      max-height: unset;
      transition: all 500ms ease-in-out;
    }
    /* Contact Us 模块 */
    .ro_main-footer .navigation .customer {
      margin-top: 0;
    }
    .ro_main-footer .navigation .customer .contact-item {
      margin-bottom: 16px;
    }
    /* Contact Us 模块 End */
    .show-PC {
      display: none !important;
    }
    .show-Mob {
      display: block !important;
    }
  }
.media-wall {
    margin: 60px 8px;
  }

  .media-wall .media-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 注：该变量使用JS初始化，详情检索查看 */
    gap: var(--flex-gap, 8px);
    padding: 0;
    list-style: none;
  }

  .media-wall .media-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
  }

  .media-wall .media-item.hidden {
    display: none !important;
  }

  .media-wall .drag-bar {
    display: none;
  }

  .media-wall .btn-open {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 0;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background: rgba(22, 22, 22, 0.3);
  }

  .media-wall .media {
    height: 100%;
    cursor: pointer;
  }

  .media-wall .media > img,
  .media-wall .media > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 内容浮层 */
  .media-wall .media-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 200px;
    padding: 24px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 6.67%,
      rgba(0, 0, 0, 0.02) 13.33%,
      rgba(0, 0, 0, 0.05) 20%,
      rgba(0, 0, 0, 0.08) 26.67%,
      rgba(0, 0, 0, 0.13) 33.33%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0.25) 46.67%,
      rgba(0, 0, 0, 0.31) 53.33%,
      rgba(0, 0, 0, 0.37) 60%,
      rgba(0, 0, 0, 0.43) 66.67%,
      rgba(0, 0, 0, 0.48) 73.33%,
      rgba(0, 0, 0, 0.51) 80%,
      rgba(0, 0, 0, 0.54) 86.67%,
      rgba(0, 0, 0, 0.56) 93.33%,
      rgba(0, 0, 0, 0.56) 100%
    );
  }

  .media-wall .media-overlay .caption {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
    font-size: 16px;
    line-height: 20px;
  }

  .media-wall .media-overlay .caption * {
    overflow: hidden;
  }

  .media-wall .media-item:hover .media-overlay .caption,
  .media-wall .media-item:focus-within .media-overlay .caption {
    grid-template-rows: 1fr;
  }

  .media-wall .media-overlay .summary {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    line-height: 20px;
    opacity: 0.8;
  }

  .media-wall .media-overlay .summary .count {
    gap: 3px;
  }

  /* pc端hover时展示弹窗按钮 */
  .media-wall .media-item:hover .btn-open,
  .media-wall .media-item:focus-within .btn-open {
    display: inline-flex;
  }

  /* 底部按钮区域 */
  .media-wall .controls {
    margin-top: 32px;
    text-align: center;
  }

  /* 弹窗样式*/
  .media-wall .media-dialog[open] {
    height: calc(100% - 96px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    border: none;
    overflow: visible;
    padding: 0;
    background: none;
  }

  .media-wall .media-dialog::backdrop {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(50px);
  }

  .media-wall .media-dialog .media {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
  }

  .media-wall .media-dialog .media > img,
  .media-wall .media-dialog .media > video {
    aspect-ratio: 0.75;
    background: black;
    object-fit: contain;
  }

  .media-wall .media-dialog .btn-close {
    position: absolute;
    right: -64px;
    top: 12px;
    padding: 8px;
    border: none;
    background: rgba(22, 22, 22, 0.3);
    cursor: pointer;
  }

  .media-wall .media-dialog .btn-close:hover {
    background: rgba(22, 22, 22, 0.4);
  }

  .media-wall .media-dialog .media-detail {
    display: flex;
    width: 400px;
    position: relative;
    overflow: visible;
    color: #fff;
    background: var(--main-color);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .media-wall .media-detail .detail-wrapper {
    width: 100%;
    padding: 24px;
    overflow: auto;
  }

  .media-wall .media-detail .media-info {
    padding-bottom: 24px;
  }

  .media-wall .media-detail .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    font-size: 14px;
    line-height: 20px;
    opacity: 0.8;
  }

  .media-wall .media-detail .media-text {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    white-space: pre-wrap;
  }

  .media-wall .media-detail .media-source {
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    opacity: 0.8;
  }

  .media-wall .media-detail .media-source a {
    color: #fff;
    margin-left: 6px;
    text-decoration: underline;
    text-underline-position: from-font;
  }

  .media-wall .media-detail .relate-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
  }

  .media-wall .media-detail .relate-products .title {
    font-size: 14px;
    line-height: 20px;
    opacity: 0.8;
    text-transform: capitalize;
  }

  .media-wall .media-detail .relate-products .product {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .media-wall .media-detail .relate-products .product img {
    border-radius: 2px;
    background: #fff;
  }

  .media-wall .media-detail .relate-products .product .content {
    flex: 1;
  }

  .media-wall .media-detail .relate-products .product .arrow {
    visibility: hidden;
    margin-right: 12px;
  }

  .media-wall .media-detail .relate-products .product:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .media-wall .media-detail .relate-products .product:hover .arrow {
    visibility: visible;
  }

  /* 移动端及pad端 */
  @media (max-width: 1183px) {
    .media-wall .media-overlay {
      height: 100%;
      min-height: auto;
      padding: 10px 16px;
    }

    .media-wall .media-overlay .caption {
      display: none !important;
    }

    .media-wall .media-overlay .caption * {
      overflow: hidden;
    }

    .media-wall .media-overlay .summary {
      justify-content: flex-end;
      font-size: 12px;
    }

    .media-wall .media-overlay .summary .author-name {
      display: none;
    }

    /* 用于无障碍访问，提供不可见按钮打开弹窗 */
    .media-wall .media-item .btn-open {
      display: inline-block;
      opacity: 0;
    }

    .media-wall .media-dialog[open] {
      max-width: none;
      max-height: none;
      height: 100%;
      width: 100%;
      flex-direction: column;
    }

    .media-wall .media-dialog .media {
      flex: 1;
      overflow: hidden;
      border-radius: 0;
    }

    .media-wall .media-dialog .media-detail {
      flex-direction: column;
      border-radius: 0;
      width: 100%;
      height: 114px;
      /* 高度平滑变化 */
      transition: height 0.3s linear;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .media-wall .media-dialog .btn-close {
      position: fixed;
      left: 24px;
      top: 24px;
      right: auto;
    }

    .media-wall .media-dialog .media > image,
    .media-wall .media-dialog .media > video {
      width: 100%;
      aspect-ratio: auto;
    }

    .media-wall .media-dialog .drag-bar {
      display: flex;
      padding: 4px;
      justify-content: center;
      align-items: center;
      transform: rotate(180deg);
      transition: transform 0.1s linear;
    }

    .media-wall .media-dialog .drag-bar svg path {
      stroke: white;
    }

    .media-wall .media-detail .detail-wrapper {
      padding-top: 0;
      overflow-y: hidden;
    }

    .media-wall .media-detail .media-info {
      padding-bottom: 16px;
    }

    .media-wall .media-detail .relate-products {
      padding-top: 16px;
      padding-bottom: 24px;
    }

    .media-wall .media-detail .relate-products .banner {
      aspect-ratio: 342 / 96;
      overflow: hidden;
    }

    .media-wall .media-detail .relate-products .banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 内容区域展开样式 */
    .media-wall .media-detail.expand {
      height: 65.4%;
    }

    .media-wall .media-detail.expand .detail-wrapper {
      overflow-y: auto;
    }

    .media-wall .media-detail.expand .drag-bar {
      transform: rotate(0);
    }
  }

  /* pad端1024px以上 */
  @media (max-width: 1183px) and (min-width: 1024px) {
    .media-wall .media-detail .relate-products {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .media-wall .media-detail .relate-products .title {
      grid-column: 1 / 3;
    }

    .media-wall .media-detail .relate-products .product {
      aspect-ratio: 342 / 96;
      overflow: hidden;
    }

    .media-wall .media-detail .relate-products .product img {
      height: 100%;
      width: auto;
    }
  }

  /* 移动端适配 */
  @media (max-width: 767px) {
    .media-wall {
      margin: 32px 8px;
    }

    .media-wall .media-list {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .media-wall .media-item {
      width: calc(50% - 4px);
      border-radius: 2px;
    }

    /* 第一个默认100%宽度 */
    .media-wall .media-item:first-child {
      width: 100%;
    }

    .media-wall .media-item:not(:first-child) {
      opacity: 0;
    }

    /*
    * 进入动画
    */

    /* 动画期间禁用点击事件，避免误触点击，显示混乱 */
    .media-wall.fly-in .media-item {
      pointer-events: none;
    }

    .media-wall.fly-in .media-item:first-child {
      width: calc(50% - 4px);
      transform-origin: left top;
      animation: mediaShrink 0.4s linear;
    }

    .media-wall.fly-in .media-item:nth-child(even) {
      animation: mediaFlyIn 0.8s linear forwards;
    }

    .media-wall.fly-in .media-item:not(:first-child):nth-child(odd) {
      animation: mediaFadeIn 0.8s linear forwards;
    }

    /* 进入后样式重置 */
    .media-wall.fly-in-finish .media-item:first-child {
      width: calc(50% - 4px);
    }

    .media-wall.fly-in-finish .media-item:not(:first-child) {
      opacity: 1;
    }

    @keyframes mediaShrink {
      0% {
        /* 之所以使用transform是因为设计提供的动画中多个media-item之间有overlap */
        transform: scale(var(--full-width-scale));
      }
    }

    @keyframes mediaFlyIn {
      0% {
        opacity: 0;
        margin-top: 50%;
      }
      100% {
        margin-top: 0%;
        opacity: 1;
      }
    }

    @keyframes mediaFadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
  }
.ro-site-navbar {
    position: relative;
    height: var(--navbar-height);
    padding: 0 var(--outer-margin-x);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: .5px solid var(--border-color);
  }

  /* 透明模式，在主banner内设置 */
  .ro-site-navbar.transparent {
    background: none;
    border-bottom: none;
  }

  .ro-site-navbar.white,
  .ro-site-navbar.opened,
  .ro-site-navbar:hover,
  .ro-site-navbar:focus-within {
    --navbar-text-color: var(--main-color);
    --navbar-logo-color: var(--second-color);

    background: #fff;
    border-bottom: .5px solid var(--border-color);
  }

  .ro-site-navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .ro-site-navbar .nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  /* 移动端菜单开关按钮 */
  .navbar-toggle {
    display: none;
  }

  .ro-site-navbar .nav-main {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    list-style-type: none;
  }

  .ro-site-navbar .nav-menu-toggle,
  .ro-site-navbar .nav-link {
    position: relative;
    padding: 0 12px;
    height: 48px;
    color: var(--navbar-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    background: none;
    border: none;
    vertical-align: middle;
  }

  .nav-main .nav-menu > .nav-submenu {
    display: none;
  }

  .ro-site-navbar .nav-menu-toggle svg {
    display: none;
    color: var(--main-color);
  }

  .ro-site-navbar .nav-right {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style-type: none;
  }

  .ro-site-navbar .nav-right a {
    color: var(--navbar-text-color);
  }

  .ro-site-navbar .nav-right .store-link {
    gap: 6px;
    color: #fff;
  }

  .ro-site-navbar .store-link .icon {
    height: 20px !important;
  }

  /* pc端 */
  @media (min-width: 1184px) {
    /* 菜单panel展开效果 */
    .nav-main > .nav-menu.opened > .nav-submenu {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      padding: 80px var(--outer-margin-x) 24px;
      background-color: #fff;
      z-index: -1;
    }

    /* 黑色遮罩层 */
    .nav-main > .nav-menu.opened::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -2;
      background-color: rgba(0, 0, 0, 0.5);
      pointer-events: none;
    }

    /* 分割线 */
    .nav-main > .nav-menu > .nav-submenu::before {
      content: '';
      position: absolute;
      left: 0;
      top: var(--navbar-height);
      width: 100%;
      border-bottom: .5px solid var(--border-color);
      /* 与导航栏未展开时的边框完全对齐 */
      transform: translateY(-100%);
    }

    .ro-site-navbar .nav-link:hover,
    .ro-site-navbar .nav-menu-toggle:hover,
    .ro-site-navbar .nav-menu.opened > .nav-menu-toggle {
      --navbar-text-color: var(--brand-color);
    }

    .ro-site-navbar .nav-submenu .nav-link:hover {
      text-decoration-line: underline;
      text-underline-position: from-font;
      color: var(--main-color);
    }
  
    /* 一级菜单聚焦时显示箭头 */
    .ro-site-navbar .nav-menu.l1 > .nav-menu-toggle {
      width: 8px;
      padding: 0;
      margin-left: -8px;
      pointer-events: none;
    }
    
    /* PC端不显示文字 */
    .ro-site-navbar .nav-menu.l1 > .nav-menu-toggle span {
      display: none;
    }
    
    .ro-site-navbar .nav-menu.l1 > .nav-menu-toggle svg {
      display: block;
      visibility: hidden;
      transform: rotate(90deg);
    }
    
    .ro-site-navbar .nav-menu.l1 > .nav-menu-toggle:focus-visible svg {
      visibility: visible;
    }
  }

  /* 移动及Pad端样式适配 */
  @media (max-width: 1183px) {
    .ro-site-navbar {
      padding: 0 22px;
      gap: 0;
    }

    .ro-site-navbar .nav-left {
      gap: 18px;
    }

    .ro-site-navbar .nav-right {
      gap: 20px;
    }

    .navbar-toggle {
      display: inline-block;
      color: var(--navbar-text-color);
      border: none;
      background: none;
      padding: 0;
    }

    .navbar-toggle .ro-close {
      display: inline;
    }

    .navbar-toggle .ro-open {
      display: none;
    }

    .ro-site-navbar.opened .navbar-toggle .ro-close {
      display: none;
    }

    .ro-site-navbar.opened .navbar-toggle .ro-open {
      display: inline;
    }

    .ro-site-navbar .nav-main {
      display: none;
    }

    .ro-site-navbar.opened .nav-main {
      display: block;
      position: absolute;
      left: 0;
      top: var(--navbar-height);
      width: 100%;
      /* 由于顶部有消息栏，为实现铺满屏幕效果，需通过JS监控header高度，动态设置当前区域height */
      height: auto;
      padding: 0 var(--margin-x) 24px;
      background: #fff;
      overflow: auto;
    }

    .ro-site-navbar .nav-main > li {
      border-bottom: 0.5px solid var(--border-color);
    }

    .ro-site-navbar .nav-link,
    .ro-site-navbar .nav-menu-toggle {
      height: 56px;
      width: 100%;
      padding: 0;
      font-size: 16px;
      line-height: 20px;
      font-weight: 500;
    }

    /* 一级导航含子菜单时，仅展示开关按钮，不展示链接 */
    .ro-site-navbar .nav-menu.l1 > .nav-link:not(:only-child) {
      display: none;
    }

    .ro-site-navbar .nav-menu-toggle svg {
      display: inline-block;
      transition: transform 0.35s ease
    }

    .ro-site-navbar .nav-menu-toggle[aria-expanded="true"] svg {
      transform: rotate(90deg);
    }

    .ro-site-navbar .store-link .icon {
      display: none;
    }
  
    .ro-site-navbar .nav-menu.opened > .nav-submenu {
      display: block;
    }

    .ro-site-navbar .nav-menu.opened:not(:has(.nav-menu.opened)) > .nav-menu-toggle {
      color: var(--brand-color);
      font-weight: 600;
    }
  }
.ro-subscribe-popup::backdrop {
    background: rgba(0, 0, 0, 50%);
  }

  /* 弹窗样式*/
  .ro-subscribe-popup[open] {
    min-height:460px;
    border: none;
    overflow: hidden;
    padding: 0;
    /* height: 432px; */
    width: 864px;
    background: #fff;
    border-radius: 4px;
    max-height: 100vh !important;
    display: flex;
  }
  
  .ro-subscribe-popup .ro-subscribe-main {
    flex-direction: row-reverse;
    height: 100%;
    width: 100%;
  }

  .ro-subscribe-popup .ro-subscribe-close {
    position: absolute;
    padding: 4px;
    top: 16px;
    right: 16px;
    cursor: pointer;
    z-index: 1;
  }

  .ro-subscribe-popup .ro-subscribe-close:hover {
    border-radius: 32px;
    background: rgba(0, 0, 0, 0.1) !important;
  }

  .ro-subscribe-popup .ro-subscribe__content {
    justify-content: space-between;
    padding: 62px 56px;
  }

  .ro-subscribe-popup .ro-subscribe__text {
    width: 100%;
  }

  .ro-subscribe-popup .ro-subscribe__text h2 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.24px;
  }

  .ro-subscribe-popup .ro-subscribe__des {
    width: 100%;
    margin-top: 12px;
  }

  .ro-subscribe-popup .ro-subscribe__form {
    width: 100%;
    position: relative;
  }

  .ro-subscribe-popup input ~ div  {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index:1;
    border-bottom: 1px solid var(--border-color) !important;
    transition: border-color 0.3s ease; /* 平滑过渡效果 */
  }

  /* 聚焦时的样式 */
  .ro-subscribe-popup input:focus ~ div, .ro-subscribe-popup input:not(:placeholder-shown) ~ div {
      border-color: var(--main-color) !important;
  }
   
  .ro-subscribe-popup .ro-subscribe__input,
  .ro-subscribe-popup .ro-subscribe__sucess-text,
  .ro-subscribe-popup .ro-subscribe_code {
    height: 44px;
    padding-left: 0;
    color: var(--main-color);
  }

  .ro-subscribe-popup .subscribe-read-only,
  .ro-subscribe-popup .ro-subscribe__input:read-only {
    background-color: #fff;
  }

  .ro-subscribe-popup .ro-subscribe__sucess-text{
    border-bottom: 1px solid var(--main-color) !important;
    padding-bottom: 2px;
  }

  .ro-subscribe-popup .ro-subscribe_code {
    position: absolute;
    width: calc(100% - 65px);
    padding: 12px 24px;
  }

  .ro-subscribe-popup .ro-subscribe__form{
      margin-top:48px
  }

  .ro-subscribe-popup .ro-subscribe__form-submit {
    position: relative;
    width: 100%;
    height: 44px;
    margin-top: 32px;
    background-color: var(--bg-color);
    border-radius: 32px;
    /* overflow: hidden; */
  }

  .ro-subscribe-popup .ro-subscribe__submit {
    width: 100%;
    float: right;
  }

  .ro-subscribe-popup .ro-subscribe-copy {
    width: 65px;
    height: 32px;
    top: 6px;
    right: 6px;
  }

  .ro-subscribe-popup .ro-subscribe__error {
    top: 52px;
    left: 0;
  }

  .ro-subscribe-popup .ro-subscribe__agreement {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .ro-subscribe-popup .ro-subscribe__toast{
    bottom: 64px;
  }

  @media (max-width: 1183px) {
    .ro-subscribe-popup[open]{
      width: 536px;
      min-height: 364px;
    }

    .ro-subscribe-popup .ro-subscribe__content {
      padding: 48px 24px;
    }

    .ro-subscribe-popup .ro-subscribe__img {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .ro-subscribe-popup[open]{
      width: var(--inner-content-width);
      min-height: 384px;
    }

    .ro-subscribe-popup .ro-subscribe__content {
      padding: 48px 24px;
    }
  }
.ro-services{
    background: #fff;
  }
  .ro-service__content {
    padding: 60px 0 48px;
  }
  .ro-service-text {
    text-align: center;
    margin: auto;
  }
  .ro-service__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 44px;
    max-width: 548px;
    color: var(--main-color);
  }
  .ro-service__tip {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-top: 16px;
    max-width: 445px;
    color: var(--second-color);
  }
  .ro-service__list {
    display: flex;
  }

  @media (min-width: 768px) {
    .ro-service--6 .ro-service__list {
      display: flex;
      flex-wrap: wrap;
    }
  }

  @media (min-width: 768px) and (max-width: 1183px) {
    .ro-service--5 .ro-service__list {
      display: flex;
      flex-wrap: wrap;
    }
  }

  @media (max-width: 767px) {
    .ro-service__content {
      padding: 32px 0;
    }
    .ro-service__title {
      font-size: 32px;
      line-height: 36px;
      max-width: 254px;
    }
    .ro-service__tip {
      padding-top: 12px;
      max-width: 254px;
    }
    .ro-service__list {
      display: grid;
      grid-template-columns: repeat(2, 1fr) !important;
      column-gap: 16px;
      row-gap: 32px;
      padding: 40px 24px !important;
      border: 1px solid var(--border-color);
      border-left: 0;
      border-right: 0;
    }
  }

/* CSS from block stylesheet tags */
.ro-brand__honor {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 248px;
    height: 224px;
    padding: 2px 0;
    text-align: center;
    transition: background 0.2s ease-in-out;
  }
  .ro-brand__honor img {
    width: 200px;
    height: 200px;
    transition: transform 0.2s ease-in-out;
  }
  .ro-brand__honor p {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 216px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    margin: 0;
    color: var(--second-color);
  }
  .honor-hover {
    border-radius: 8px;
    background: var(--bg-color);
    cursor: pointer;
  }

  @media (min-width: 1184px) {
    .honor-hover img {
      transform: scale(1.1);
    }
  }
  @media (max-width: 1183px) {
    .ro-brand__honor {
      width: 180px;
      height: 180px;
      padding: 0;
    }
    .ro-brand__honor img {
      width: 180px;
      height: 180px;
    }

    .ro-brand__honor p {
      width: 172px;
      bottom: 0;
    }
  }
.ro-bright__item {
    position: relative;
    cursor: pointer;
    width: 368px !important;
    height: 460px !important;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
  }
  .ro-bright__item:last-child {
    margin-right: 0;
  }

  .ro-bright__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    padding: 24px;
    background: linear-gradient(180deg, 
      rgba(0, 0, 0, 0.56) 0%, 
      rgba(0, 0, 0, 0.557) 6.67%, 
      rgba(0, 0, 0, 0.54) 13.33%, 
      rgba(0, 0, 0, 0.514) 20%, 
      rgba(0, 0, 0, 0.48) 26.67%, 
      rgba(0, 0, 0, 0.43) 33.33%, 
      rgba(0, 0, 0, 0.373) 40%, 
      rgba(0, 0, 0, 0.314) 46.67%, 
      rgba(0, 0, 0, 0.247) 53.33%, 
      rgba(0, 0, 0, 0.184) 60%, 
      rgba(0, 0, 0, 0.13) 66.67%, 
      rgba(0, 0, 0, 0.082) 73.33%, 
      rgba(0, 0, 0, 0.047) 80%, 
      rgba(0, 0, 0, 0.02) 86.67%, 
      rgba(0, 0, 0, 0.004) 93.33%, 
      rgba(0, 0, 0, 0) 100%);
  }

  .ro-bright__item img,
  .ro-bright__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .is-video img{
    display: none;
  }

  .ro-bright__item-tip {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
  }

  .ro-bright__item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    vertical-align: middle;
    padding: 4px 0 8px;
    color: #fff;
  }

  .ro-bright__item-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
  }

  @media (max-width: 1183px){
    .ro-bright__item {
      width: 296px;
      height: 370px;
    }

    .ro-bright__content {
      height: 250px;
      padding: 16px;
    } 

    .ro-bright__item-title {
      font-size: 16px; 
      line-height: 20px;
    }
  }
.caty-tabs__pane{
    display: none;
    width: var(--inner-content-width);
    margin: 0 auto;
  }
  .caty-tabs__pane .product-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .caty-tabs__pane .more-btn-container{
    width: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  @media (max-width: 1183px) {
    .caty-tabs__pane .product-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px) {
    .caty-tabs__pane .product-container {
      grid-template-columns: repeat(1, 1fr);
    }
  }
.count-down-timer {
    --text-color: #fff;
    --bg-color: rgba(22, 22, 22, 0.4);
    --val-width: 40px;
    --val-height: 40px;
    --val-font-size: 20px;
    --label-font-size: 16px;
    --unit-font-size: 12px;

    display: inline-flex;
    column-gap: 6px;
    font-weight: 400;
    text-align: center;
    color: var(--text-color);
    line-height: var(--val-height);
    vertical-align: middle;
  }

  .count-down-timer.dark {
    --text-color: var(--main-color);
    --bg-color: rgba(22, 22, 22, 0.1);
  }

  .count-down-timer.small {
    --val-width: 36px;
    --val-height: 36px;
    --label-font-size: 14px;
    --val-font-size: 16px;
  }

  .count-down-timer .label {
    font-size: var(--label-font-size);
    padding-right: 6px;
    white-space: nowrap;
  }

  .count-down-timer .timer {
    display: inline-flex;
    column-gap: 6px;
  }

  .count-down-timer .seperator {
    font-size: var(--val-font-size);
  }

  .count-down-timer .val {
    display: block;
    width: var(--val-width);
    font-size: var(--val-font-size);
    letter-spacing: 0px;
    border-radius: 8px;
    background: var(--bg-color);
  }

  .count-down-timer .unit {
    display: none;
  }

  .count-down-timer.show-unit .unit {
    display: block;
    font-size: var(--unit-font-size);
    line-height: 16px;
    margin-top: 4px;
  }
.ro-explore__item{
    background:  #fff;
    border-radius: 4px;
    overflow: hidden;
  }

  .ro-explore__swiper .ro-explore__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex:1;
    height: inherit;
  }

  .ro-explore__swiper .ro-explore__item .ro-explore__content {
    width: 100%;
    padding: 24px;
  }

  .ro-explore__swiper .ro-explore__item .ro-explore__item-img {
    width: auto;
    height: 224px;
    margin: 0 auto;
  }
  .ro-explore__item-img{
    display: block;
  }

  /* card文案 */
  .ro-explore__item-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--second-color);
  }

  .ro-explore__item-desc {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--main-color);
    margin: 4px 0 16px !important;
  }

  /* 按钮样式 */
  .ro-explore__item-btns {
    display: flex; 
    column-gap: 8px;
  }

  .ro-explore__item-btns .ro-btn {
    gap: 6px;
  }

  .ro-explore__item-btns .ro-icon {
    height: 20px !important;
  }

  .ro-explore__item-imgs{
    display: flex;
    justify-content: center;
  }

  @media (min-width: 1184px) {
    /* 一个/3个以上样式 */
    .ro-explore-list .ro-explore__item:only-child,
    .ro-explore-list .ro-explore__item:nth-child(n+4){
      flex-direction: row;
      column-gap: 16px;
      height: 216px;
      width: var(--inner-content-width);
    }

    .ro-explore-list .ro-explore__item:only-child .ro-explore__content,
    .ro-explore-list .ro-explore__item:nth-child(n+4) .ro-explore__content{
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 368px;
      padding-left: 64px;
    }

    .ro-explore-list .ro-explore__item:only-child .ro-explore__item-img,
    .ro-explore-list .ro-explore__item:nth-child(n+4) .ro-explore__item-img {
      height: 100%;
      width: auto;
    }

    .ro-explore-list .ro-explore__item:only-child .ro-explore__item-desc,
    .ro-explore-list .ro-explore__item:nth-child(n+4) .ro-explore__item-desc {
      margin-top: 8px !important;
    }
  }

  @media (max-width: 1183px) {
    .ro-explore__swiper .ro-explore__item {
      min-width: 296px;
    }

    .ro-explore__swiper .ro-explore__item {
      min-width: 296px;
      min-height: 368px;
    }
    
    .ro-explore__swiper .ro-explore__item .ro-explore__content {
      padding: 16px;
    }
    
    .ro-explore__item-desc {
      font-size: 16px;
      line-height: 20px;
    }

    .ro-explore__swiper .ro-explore__item .ro-explore__item-img{
      width: auto;
      height: 188px;
    }

    /* 只有一个的时候 */
    .ro-explore__swiper .ro-explore__item:only-child .ro-explore__content {
      text-align: center;
      padding: 24px;
      padding-bottom: 0;
    }

    .ro-explore__swiper .ro-explore__item {
      width: 100%;
      min-height: 356px;
    }

    .ro-explore__swiper .ro-explore__item:only-child .ro-explore__item-btns{
      justify-content: center;
    }

    .ro-explore__swiper .ro-explore__item:only-child .ro-explore__item-img{
      height: 216px;
    }
  }
  @media (max-width: 767px) {
    /* 只有一个的时候 */
    .ro-explore__swiper .ro-explore__item:only-child .ro-explore__content {
      text-align: center;
    }

    .ro-explore__swiper .ro-explore__item {
      width: 100%;
      min-height: 213px;
    }

    .ro-explore__swiper .ro-explore__item:only-child .ro-explore__item-btns{
      justify-content: center;
    }

    .ro-explore__swiper .ro-explore__item:only-child .ro-explore__item-img{
      height: 93px;
    }
  }
.ro-tabs__pane {
    display: none;
  }
.ro-service__item:first-child{
    border-left: 0;
  }
  .ro-service__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 48px 40px 64px;
  }

  .ro-service--6 .ro-service__item{
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .ro-service__item img {
    width: 48px;
    height: 48px;
  }
  .ro-service__list-title {
    padding: 24px 0 12px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--main-color);
  }
  .ro-service__list-tip {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--second-color);
  }

  .ro-service__list-tip p{
    display: inline;
  }

  .ro-service__list-tip .ro-tooltip-wrapper {
    position: relative;
    white-space: normal;
    padding-left: 2px;
    --after-left: 50%;
  }
  
  .ro-service__list-tip .ro-tooltip-wrapper svg{
    cursor: pointer;
    transform: translateY(5px);
  }
  
  .ro-service__list-tip .ro-tooltip-wrapper span{
    z-index: 1;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    max-width: 240px;
    width: max-content;
    height: max-content;
    padding:12px 16px;
    border-radius: 4px;
    background: #000000E5;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
  }

  .ro-service__list-tip .ro-tooltip-wrapper span::after{
    content: "";
    position: absolute;
    top: 100%;
    left: var(--after-left);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4.5px solid transparent;
    border-right: 4.5px solid transparent;
    border-top: 5px solid #000000E5;
  }

  .ro-service__list-tip .ro-tooltip-wrapper:hover span{
    visibility: visible;
    opacity: 1;
  }

  @media (min-width: 768px) and (max-width: 1183px) {
    .ro-service__item{
      padding: 40px 24px 48px;
    }
    .ro-service--6 .ro-service__item,
    .ro-service--5 .ro-service__item {
      /* min-height: 204px; */
      border: 1px solid var(--border-color);
      border-right: 0;
    }

    .ro-service--5 .ro-service__item {
      min-width: calc(100% / 3);
      flex: 1 1 calc(100% / 3);
    }
    .ro-service--5 .ro-service__item:nth-last-of-type(-n + 2) {
      border-bottom: 1px solid var(--border-color);
      border-top: 0;
    }
    .ro-service--5 .ro-service__item:nth-last-of-type(2) {
      border-left: 0;
    }
  }

  @media (max-width: 1183px) {
    .ro-service__item img {
      width: 40px;
      height: 40px;
    }
    .ro-service__list-title {
      padding-top: 16px;
      font-size: 16px;
      line-height: 20px;
    }
  }
  
   @media (min-width: 768px) {
    .ro-service__item {
      /* min-height: 264px; */
      border: 1px solid var(--border-color);
      border-right: 0;
    }
    .ro-service--6 .ro-service__item {
      /* min-height: 240px; */
      border-bottom: 0;
    }

    .ro-service--6 .ro-service__item {
      min-width: calc(100% / 3);
      flex: 1 1 calc(100% / 3);
    }
    .ro-service--6 .ro-service__item:nth-last-of-type(-n + 3) {
      border-bottom: 1px solid var(--border-color);
    }
    .ro-service--6 .ro-service__item:nth-last-of-type(3n) {
      border-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .ro-service__item{
      padding: 0 16px !important;
    }
  }
.ro-subscribe__text h2 span{
    width: max-content;
  }
.text-type-count-down-timer {
    --text-color: #161616;
    --val-font-size: 14px;
    --label-font-size: 14px;
    --label-font-weight: 400;

    display: inline-flex;
    column-gap: 0;
    font-weight: 400;
    text-align: center;
    color: var(--text-color);
    vertical-align: middle;
  }

  .text-type-count-down-timer .label {
    font-size: var(--label-font-size);
    font-weight: var(--label-font-weight);
    padding-right: 6px;
    white-space: nowrap;
  }

  .text-type-count-down-timer .timer {
    display: inline-flex;
    align-items: center;
    column-gap: 1px;
  }

  .text-type-count-down-timer .seperator {
    font-size: var(--val-font-size);
  }

  .text-type-count-down-timer .val {
    display: inline-block;
    font-size: var(--val-font-size);
  }
.activity-pane {
    display: none;
    width: 100%;
    overflow: hidden;
  }

  .activity-pane.active-pane { /* 添加激活状态 */
    display: block;
  }

  .activity-pane .activity-swiper {
    width: var(--inner-content-width);
    overflow: visible;
    position: relative; /* 确保导航按钮定位 */
  }

  .activity-pane .activity-wrapper {
    display: flex;
    justify-content: center;
  }

  /* 统一 slide 类名 */
  .activity-pane .swiper-slide {
    width: 272px;
    height: auto!important;
  }

  .activity-pane .swiper-button {
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .activity-pane .activity-prev {
    left: -80px;
  }
  
  .activity-pane .activity-next {
    right: -80px;
  }

  .activity-pane .swiper-button::after {
    content: none;
  }

  /* 移动端适配 */
  @media (max-width: 1183px) {
  }

  /* 移动端适配 */
  @media (max-width: 767px) {
    .activity-pane {
      width: 100%;
      padding: 0 24px;
      overflow: hidden;
      box-sizing: border-box;
    }
    .activity-pane .activity-swiper {
      width: 100%;
    }
    .activity-pane .swiper-slide {
      width: 272px !important; /* 确保移动端宽度 */
    }
    /* 移动端调整导航位置 */
    .activity-pane .activity-prev {
      left: 0;
    }
    .activity-pane .activity-next {
      right: 0;
    }
  }
.activity-list-pane {
    display: none;
    width: var(--inner-content-width);
    margin: 0 auto;
  }
  .activity-list-pane .product-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .activity-list-pane .more-btn-container {
    width: auto;
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
  }
  @media (max-width: 1183px) {
    .activity-list-pane .product-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 767px) {
    .activity-list-pane .product-container {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
.{{ block.id }} {
    --text-color: var(--main-color);

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #fff;
  }

  .{{ block.id }}
  .white {
    --text-color: #fff;
  }

  .{{ block.id }}
  picture
  , .{{ block.id }}
  img
  , .{{ block.id }}
  video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .{{ block.id }}
  .slide-overlay {
    position: absolute;
    /* 注：该变量在上级banner容器中定义 */
    top: var(--slide-overlay-top);
    width: var(--inner-content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    z-index: 10;
    transform: translateY(-50%);
    color: var(--text-color);
  }

  .{{ block.id }}
  .slide-overlay .slide-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .{{ block.id }}
  .slide-overlay .slide-content .slide-tag {
    font-size: var(--tag-font-size);
    line-height: var(--tag-line-height);
    min-height: var(--tag-line-height);
    letter-spacing: calc(var(--tag-font-size) * 0.04);
    font-weight: 400;
    opacity: 0.8;
  }

  .{{ block.id }}
  .slide-overlay .slide-content .slide-title {
    width: 60%;
    font-size: var(--title-font-size);
    line-height: var(--title-line-height);
    letter-spacing: calc(var(--title-font-size) * -0.02);
    font-weight: 600;
  }

  .{{ block.id }}
  .slide-overlay .slide-content .slide-desc {
    width: 60%;
    font-size: var(--desc-font-size);
    line-height: var(--desc-line-height);
    letter-spacing: 0;
    font-weight: 400;
  }

  .{{ block.id }}
  .slide-overlay .slide-content .slide-price {
    width: 60%;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
  }

  .{{ block.id }}
  .slide-overlay .slide-content .slide-price .original {
    text-decoration-line: line-through;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  /* 倒计时边距设置，由于通过block引入，目前没想到更好的定制样式方式 */
  .{{ block.id }} .slide-overlay .slide-content .count-down-timer {
    margin-top: var(--timer-margin-top);
  }

  .{{ block.id }}
  .slide-overlay .slide-btns {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: var(--btns-margin-top);
  }

  /* pc动画效果 */
  @media (min-width: 1184px) {
    .swiper-slide-active .slide-overlay {
      animation: slideContentFadeIn 0.8s ease-out;
    }

    @keyframes slideContentFadeIn {
      0% {
        opacity: 0;
        transform: translateY(-30%);
      }
      100% {
        opacity: 1;
        transform: translateY(-50%);
      }
    }
  }

  /* 移动\pad端适配 */
  @media (max-width: 1183px) {
    .{{ block.id }} .slide-overlay {
      bottom: 51px;
      text-align: center;
      transform: translateY(0);
    }

    .{{ block.id }}:only-child .slide-overlay {
      bottom: 24px;
    }

    .{{ block.id }}
    .slide-overlay .slide-content {
      align-items: center;
    }

    .{{ block.id }}
    .slide-overlay .slide-btns {
      flex-wrap: wrap;
      justify-content: center;
    }

    .{{ block.id }}
    .slide-overlay .slide-btns .ro-btn {
      white-space: nowrap;
      padding: 10px 24px;
      font-size: 14px;
    }

    .{{ block.id }}
    .slide-overlay .slide-content .slide-title
    , .{{ block.id }}
    .slide-overlay .slide-content .slide-desc {
      width: 100%;
    }

    .{{ block.id }}
    .slide-overlay .slide-content .slide-price {
      width: 100%;
      font-size: 16px;
      line-height: 20px;
      justify-content: center;
    }

    .{{ block.id }}
    .slide-overlay .slide-content .slide-price .original {
      font-size: 12px;
      line-height: 16px;
    }

    /* 移动端对倒计时样式定制, 这种方式与倒计时组件内部dom结构及class命名耦合，但目前没有更好方式 */
    .{{ block.id }} .slide-overlay .slide-content .count-down-timer {
      --val-width: 32px;
      --val-height: 32px;
      --val-font-size: 16px;
      --label-font-size: 12px;
      --unit-font-size: 11px;
    }
  }

  /* 移动端适配 */
  @media (max-width: 767px) {
    .{{ block.id }} .slide-overlay .slide-content {
      gap: 4px;
    }
  }
.ro_banner .slide {
    --text-color: var(--main-color);

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #fff;
  }

  .ro_banner .slide.white {
    --text-color: #fff;
  }

  .ro_banner .slide picture,
  .ro_banner .slide img,
  .ro_banner .slide video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .ro_banner .slide .slide-link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 20;
  }

  .ro_banner .slide .slide-overlay {
    position: absolute;
    /* 注：该变量在上级banner容器中定义 */
    top: var(--slide-overlay-top);
    width: var(--inner-content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    z-index: 10;
    transform: translateY(-50%);
    color: var(--text-color);
  }

  .ro_banner .slide .slide-overlay .slide-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ro_banner .slide .slide-overlay .slide-content .slide-tag {
    font-size: var(--tag-font-size);
    line-height: var(--tag-line-height);
    /* min-height: var(--tag-line-height); */
    letter-spacing: calc(var(--tag-font-size) * 0.04);
    font-weight: 400;
    opacity: 0.8;
  }

  .ro_banner .slide .slide-overlay .slide-content .slide-title {
    width: 60%;
    font-size: var(--title-font-size);
    line-height: var(--title-line-height);
    letter-spacing: calc(var(--title-font-size) * -0.02);
    font-weight: 600;
  }

  .ro_banner .slide .slide-overlay .slide-content .slide-desc {
    width: 60%;
    font-size: var(--desc-font-size);
    line-height: var(--desc-line-height);
    letter-spacing: 0;
    font-weight: 400;
  }

  .ro_banner .slide .slide-overlay .slide-content .slide-price {
    width: 60%;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
  }

  .ro_banner .slide .slide-overlay .slide-content .slide-price .original {
    text-decoration-line: line-through;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  /* 倒计时边距设置，由于通过block引入，目前没想到更好的定制样式方式 */
  .ro_banner .slide .slide-overlay .slide-content .count-down-timer {
    margin-top: var(--timer-margin-top);
  }

  .ro_banner .slide .slide-overlay .slide-btns {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: var(--btns-margin-top);
  }

  /* pc动画效果 */
  @media (min-width: 1184px) {
    .swiper-slide-active .slide-overlay {
      animation: slideContentFadeIn 0.8s ease-out;
    }

    @keyframes slideContentFadeIn {
      0% {
        opacity: 0;
        transform: translateY(-30%);
      }
      100% {
        opacity: 1;
        transform: translateY(-50%);
      }
    }
  }

  /* 移动\pad端适配 */
  @media (max-width: 1183px) {
    .ro_banner .slide .slide-overlay {
      bottom: 51px;
      text-align: center;
      transform: translateY(0);
    }

    .ro_banner .slide:only-child .slide-overlay {
      bottom: 24px;
    }

    .ro_banner .slide .slide-overlay .slide-content {
      align-items: center;
    }

    .ro_banner .slide .slide-overlay .slide-btns {
      flex-wrap: wrap;
      justify-content: center;
    }

    .ro_banner .slide .slide-overlay .slide-btns .ro-btn {
      white-space: nowrap;
      padding: 10px 24px;
      font-size: 14px;
    }

    .ro_banner .slide .slide-overlay .slide-content .slide-title,
    .ro_banner .slide .slide-overlay .slide-content .slide-desc {
      width: 100%;
    }

    .ro_banner .slide .slide-overlay .slide-content .slide-price {
      width: 100%;
      font-size: 16px;
      line-height: 20px;
      justify-content: center;
    }

    .ro_banner .slide .slide-overlay .slide-content .slide-price .original {
      font-size: 12px;
      line-height: 16px;
    }

    /* 移动端对倒计时样式定制, 这种方式与倒计时组件内部dom结构及class命名耦合，但目前没有更好方式 */
    .ro_banner .slide .slide-overlay .slide-content .count-down-timer {
      --val-width: 32px;
      --val-height: 32px;
      --val-font-size: 16px;
      --label-font-size: 12px;
      --unit-font-size: 11px;
    }
  }

  /* 移动端适配 */
  @media (max-width: 767px) {
    .ro_banner .slide .slide-overlay .slide-content {
      gap: 4px;
    }
  }
.ro_switch-country-region .ro_switch-country-region-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .ro_switch-country-region .ro_switch-country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .ro_switch-country-show-Mob {
    display: none;
  }
  @media screen and (max-width: 1183px) {
    .ro_switch-country-region {
      max-height: 56px;
      overflow: hidden;
      border-bottom: 1px solid #e6e6e6;
      transition: all 300ms ease;
    }
    
    .ro_switch-country-region .ro_switch-country-region-title {
      margin-bottom: 0;
      padding: 16px 0;
      font-size: 16px;
      line-height: 20px;
    }
    .ro_switch-country-region .icon-arrow-right {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 300ms ease;
    }
    .ro_switch-country-region .mob-region-btn {
      display: flex;
      justify-content: space-between;
    }
    .ro_switch-country-region .ro_switch-country-list {
      gap: 8px;
      transition: all 300ms ease;
    }
    .ro_switch-country-mob-active {
      max-height: unset;
      border-bottom: none;
      padding-bottom: 24px;
    }

    .ro_switch-country-mob-active .icon-arrow-right svg {
      transform: rotate(90deg);
      transition: all 300ms ease;
    }
    /* .ro_switch-country-region .ro_switch-country-list {
      opacity: 0;
    }
    .ro_switch-country-mob-active .ro_switch-country-list {
      opacity: 1;
    } */
  }
.ro_switch-country-item {
    min-width: 368px;
    min-height: 52px;
    display: flex;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    padding: 16px;
    color: var(--main-color);
    background: var(--bg-color);
  }
  .ro_switch-country-item:hover,
  .ro_switch-country-item:hover > .country-info {
    text-decoration: underline;
    color: var(--main-color);
  }
  .ro_switch-country-item .country-content {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 20px;
  }
  .ro_switch-country-item .country-content svg path {
    /* 设置svg的外部线条颜色 */
    stroke: var(--second-color);
  }
  .ro_switch-country-item .country-info {
    font-size: 14px;
    line-height: 20px;
    color: var(--second-color);
  }
  @media screen and (max-width: 1183px) {
    .ro_switch-country-item {
      width: 100%;
      min-width: unset;
      transition: all 500ms ease;
    }
    .ro_switch-country-item .country-content {
      font-size: 14px;
    }
    /* .ro_switch-country-item .country-info {
      font-size: 16px;
    } */
  }
/* pc端 */
@media (min-width: 1184px) {
  .nav-menu-panel {
    display: flex;
    padding: 0 16px;
    gap: 64px;
  }

  .nav-menu-panel .nav-menu-title {
    color: var(--menu-color);
    padding: 4px 0;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
  }

  .nav-menu-panel .nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-menu-panel .nav-link {
    padding: 4px 0;
    height: auto;
  }
}

@media (max-width: 1183px) {
  .nav-menu-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 8px;
  }

  .nav-menu-panel .nav-menu-title {
    color: var(--second-color);
    font-size: 14px;
    line-height: 36px;
  }

  .nav-menu-panel .nav-link {
    height: 44px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
}
.nav-link-card {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
}

.nav-link-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  opacity: 0.1;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.00) 0%,
    rgba(0, 0, 0, 0.00) 6.67%,
    rgba(0, 0, 0, 0.02) 13.33%,
    rgba(0, 0, 0, 0.05) 20%,
    rgba(0, 0, 0, 0.08) 26.67%,
    rgba(0, 0, 0, 0.13) 33.33%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.25) 46.67%,
    rgba(0, 0, 0, 0.31) 53.33%,
    rgba(0, 0, 0, 0.37) 60%,
    rgba(0, 0, 0, 0.43) 66.67%,
    rgba(0, 0, 0, 0.48) 73.33%,
    rgba(0, 0, 0, 0.51) 80%,
    rgba(0, 0, 0, 0.54) 86.67%,
    rgba(0, 0, 0, 0.56) 93.33%,
    rgba(0, 0, 0, 0.56) 100%
  );
}

.nav-link-card img {
  border-radius: 4px;
  vertical-align: middle;
}

.nav-link-card span {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #FFF;
}

/* pc端 */
@media (min-width: 1184px) {
  .nav-link-card span {
    display: none;
    font-weight: 400;
    text-decoration-line: underline;
    text-underline-position: from-font;
  }

  .nav-link-card:hover span,
  .nav-link-card:focus span {
    display: block;
  }
}

/* 移动端 */
@media (max-width: 1183px) {
  .nav-link-card {
    margin-right: 4px;
  }
}
.nav-product {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  flex: 0 0 var(--prod-card-width);
  padding: 16px;
  color: var(--main-color);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

@supports (grid-template-rows: subgrid) {
  .nav-product {
    display: grid;
    grid-row: 1 / 4;
    grid-template-rows: subgrid;
    align-items: start;
    justify-items: center;
  }
}

.nav-product:hover .product-title {
  color: var(--main-color);
  text-decoration-line: underline;
  text-underline-position: from-font;
}

.nav-product .product-image {
  width: 120px;
  height: 120px;
  transition: transform 0.3s ease;
}

.nav-product:hover .product-image {
  transform: scale(1.08);
}

.nav-product .product-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

/* 移动&pad端样式适配 */
@media (max-width: 1183px) {
  .nav-product {
    padding: 8px;
  }

  .nav-product .product-image {
    width: 88px;
    height: 88px;
  }
}
.series-panel > li:last-of-type {
  margin-bottom: 8px;
}

.prod-category .quick-links {
  border-top: 0.5px solid var(--border-color);
  padding: 8px 0;
}

/* pc */
@media (min-width: 1184px) {
  .prod-category .category-title {
    height: 32px;
    padding: 0;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 500;
  }

  .series-panel {
    --series-menu-width: 216px;
    
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .series-panel > li {
    max-width: var(--series-menu-width);
  }

  .series-panel > li:last-of-type {
    margin-bottom: 10px;
  }

  .prod-category .series-panel .nav-link,
  .prod-category .series-panel .nav-menu-toggle {
    height: 32px;
    padding: 0;
  }

  .prod-category .series-panel .nav-link:hover {
    color: var(--main-color);
    text-decoration-line: underline;
    text-underline-position: from-font;
  }

  .prod-category .quick-links {
    width: var(--series-menu-width);
    padding: 16px 0 0;
  }
}

/* 移动端样式适配 */
@media (max-width: 1183px) {
  .prod-category .category-title {
    height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--second-color);
  }

  .prod-category .series-panel .nav-link,
  .prod-category .series-panel .nav-menu-toggle {
    font-size: 14px;
    font-weight: 400;
  }

  .prod-category .series-panel .nav-link {
    height: 52px;
  }

  .prod-category .series-panel .nav-menu-toggle {
    height: 56px;
  }
}
.prod-series {
  --prod-card-width: 152px;
}

.prod-series .prod-list-panel {
  display: none;
}

.prod-series.opened .prod-list-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.prod-series .prod-list-panel .prod-list-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hide buttons when there's no overflow */
.prod-list-panel:not(.has-overflow) .scroll-btn {
  visibility: hidden;
}

.prod-series .prod-list {
  flex: 1;
  display: flex;
  gap: 8px;
  padding: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@supports (grid-template-rows: subgrid) {
  .prod-series .prod-list {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fit, var(--prod-card-width));
    grid-template-rows: repeat(3, max-content);
  }
}

.prod-series .prod-list::-webkit-scrollbar {
  display: none;
}

.prod-series .scroll-btn {
  border: none;
  background: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.prod-series .scroll-btn:hover {
  background: rgba(0, 0, 0, 0.10);
}

.prod-series .scroll-btn:disabled {
  visibility: hidden;
}

.prod-series .scroll-left {
  left: 0;
}

.prod-series .scroll-right {
  right: 0;
}

/* pc样式适配 */
@media (min-width: 1184px) {
  .prod-series.opened .prod-list-panel {
    padding: 0 24px;
    position: absolute;
    left: var(--series-menu-width);
    right: 0;
    top: 0;
  }
}

/* 移动及pad端样式适配 */
@media (max-width: 1183px) {
  .prod-series {
    --prod-card-width: 128px;
  }

  /* 不展示左右滚动箭头 */
  .prod-series .scroll-btn {
    display: none;
  }

  .prod-series.opened .prod-list-panel {
    gap: 16px;
    margin: 8px calc(var(--margin-x) * -1);
  }

  .prod-series .prod-list-panel .prod-list {
    padding: 0 var(--margin-x);
  }
}

/* CSS from snippet stylesheet tags */
/* Logo & 媒体 模块 */
  .ro_main-footer-media {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ro_main-footer-media .media-list {
    display: flex;
  }
  .ro_main-footer-media .media-list .media-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ro_main-footer-media .media-list .media-logo .media-logo-normal {
    display: block;
    opacity: 0.6;
  }
  .ro_main-footer-media .media-list .media-logo .media-logo-active {
    display: none;
    border-radius: 50%;
  }
  .ro_main-footer-media .media-list .media-logo:hover .media-logo-active{
    display: block;
  }
  .ro_main-footer-media .media-list .media-logo:hover .media-logo-normal{
    display: none;
  }
  @media screen and (max-width: 1183px) {
    .ro_main-footer-media {
      padding: 32px 0 8px;
      height: auto;
      flex-direction: column;
      align-items: flex-start;
    }
    .ro_main-footer-media .ro_footer-logo {
      width: var(--inner-content-width);
      margin: 0 auto;
      height: 28px;
    }
    .ro_main-footer-media .media-list {
      display: flex;
      flex-wrap: wrap;
      margin: 24px 12px 0;
      gap: 0px 8px;
    }
    .ro_main-footer-media .media-list .media-logo {
      width: 48px;
      height: 48px;
      display: flex;
    }
    .ro_main-footer-media .media-list .media-logo svg {
      width: 28px;
      height: 28px;
    }
    .ro_main-footer-media .media-list .media-logo .media-logo-normal {
      opacity: 0.8;
    }
  }
  /* Logo & 媒体 模块 End */
.ro_main-footer-payments {
    width: var(--inner-content-width);
    margin: 0 auto 16px;
  }
  .ro_main-footer-payments .ro_payments-list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }
  .ro_main-footer-payments .ro_payments-list .ro_payments-custom{
    height: 24px;
  }
/* 版权 & 协议 & 国家选择 模块 */
  .ro_main-footer-protocol {
    border-top: 1px solid var(--border-color);
  }
  .ro_main-footer-protocol .ro_footer-bottom {
    width: var(--inner-content-width);
    margin: 0 auto;
    height: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    color: var(--second-color);
  }
  .ro_main-footer-protocol .separator {
    margin: 0 8px;
  }
  .ro_main-footer-protocol .ro_footer-bottom a {
    font-size: 12px;
    color: var(--second-color);
  }
  .ro_main-footer-protocol .ro_footer-bottom a:hover {
    color: var(--main-color);
    text-decoration-line: underline;
    text-underline-position: from-font;
  }
  .ro_main-footer-protocol .ro_footer-bottom .ro_main-footer-protocol-nav {
    flex: 1;
  }
  .ro_main-footer-protocol .ro_footer-bottom .country-info {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .ro_main-footer-protocol .ro_footer-bottom .country-info svg,
  .ro_main-footer-protocol .ro_footer-bottom .country-info img {
    opacity: 0.6;
  }
  .ro_main-footer-protocol .ro_footer-bottom .country-info:hover svg,
  .ro_main-footer-protocol .ro_footer-bottom .country-info img {
    opacity: 1;
  }
  .ro_main-footer-protocol .ro_footer-bottom .country-info .country-logo {
    width: 32px;
    height: 32px;
  }
  .show-Mob {
    display: none !important;
  }
  /* 版权 & 协议 & 国家选择 模块 End */
  @media (max-width: 1183px) {
    .ro_main-footer-protocol .ro_footer-bottom {
      height: auto;
      gap: 16px;
      align-items: flex-start;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px 0 16px;
    }
    .ro_main-footer-protocol .ro_footer-bottom .ro_main-footer-protocol-nav {
      flex: unset;
    }
    .show-PC {
      display: none !important;
    }
    .show-Mob {
      display: block !important;
    }
  }
  @media screen and (max-width: 767px) {
    .ro_main-footer-protocol {
      border-top: unset;
    }
    .ro_main-footer-protocol .ro_footer-bottom {
      height: unset;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 24px;
      margin: 0 24px;
      border-top: 1px solid var(--border-color);
    }
  }
/* PC 顶部导航栏隐藏 */
@media (min-width: 1184px) {  
  .nav-menu-livestream {
    display: none;
  }
}

@media (max-width: 1183px) {
  .nav-menu-livestream {
    display: list-item;
  }
  .ro-site-navbar .nav-link-livestream {
    gap: 8px;
    justify-content: flex-start;
  }
}
.ro-subscribe__text h2 span {
    width: max-content;
  }