/** Shopify CDN: Minification failed

Line 1032:1 Expected identifier but found "{"
Line 1032:2 Unexpected "{"
Line 1032:9 Expected ":"
Line 1032:16 Unexpected "{"
Line 1045:3 Expected identifier but found "{"
Line 1045:4 Unexpected "{"
Line 1045:11 Expected ":"
Line 1050:3 Expected identifier but found "{"
Line 1050:4 Unexpected "{"
Line 1050:11 Expected ":"
... and 66 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:banner (INDEX:41) */
.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;
    }
  }
/* END_SECTION:banner */

/* START_SECTION:main-footer (INDEX:150) */
.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;
    }
  }
/* END_SECTION:main-footer */

/* START_SECTION:nav-bar (INDEX:155) */
.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;
    }
  }
/* END_SECTION:nav-bar */

/* START_SECTION:popup-subscribe (INDEX:203) */
.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;
    }
  }
/* END_SECTION:popup-subscribe */

/* CSS from block stylesheet tags */
/* START_BLOCK:_activity-carousel-card (INDEX:486) */
.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;
    }
  }
/* END_BLOCK:_activity-carousel-card */

/* START_BLOCK:_activity-list-pane (INDEX:489) */
.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));
    }
  }
/* END_BLOCK:_activity-list-pane */

/* START_BLOCK:_activity-swiper-slide (INDEX:493) */
.{{ 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;
    }
  }
/* END_BLOCK:_activity-swiper-slide */

/* START_BLOCK:_banner-slide (INDEX:496) */
.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;
    }
  }
/* END_BLOCK:_banner-slide */

/* START_BLOCK:_language-region-category (INDEX:499) */
.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;
    } */
  }
/* END_BLOCK:_language-region-category */

/* START_BLOCK:_language-region-country (INDEX:500) */
.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;
    } */
  }
/* END_BLOCK:_language-region-country */

/* START_BLOCK:_nav-menu (INDEX:505) */
/* 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;
  }
}
/* END_BLOCK:_nav-menu */

/* START_BLOCK:_nav-menuitem (INDEX:506) */
.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;
  }
}
/* END_BLOCK:_nav-menuitem */

/* START_BLOCK:_nav-prod-card (INDEX:507) */
.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;
  }
}
/* END_BLOCK:_nav-prod-card */

/* START_BLOCK:_nav-prod-category (INDEX:508) */
.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;
  }
}
/* END_BLOCK:_nav-prod-category */

/* START_BLOCK:_nav-prod-series (INDEX:509) */
.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);
  }
}
/* END_BLOCK:_nav-prod-series */

/* START_BLOCK:count-down-timer (INDEX:516) */
.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;
}
/* END_BLOCK:count-down-timer */

/* START_BLOCK:subscribe-title-text (INDEX:518) */
.ro-subscribe__text h2 span{
    width: max-content;
  }
/* END_BLOCK:subscribe-title-text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:bootstrap-footer-media (INDEX:537) */
/* 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 */
/* END_SNIPPET:bootstrap-footer-media */

/* START_SNIPPET:bootstrap-footer-payments (INDEX:538) */
.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;
  }
/* END_SNIPPET:bootstrap-footer-payments */

/* START_SNIPPET:bootstrap-footer-protocol (INDEX:539) */
/* 版权 & 协议 & 国家选择 模块 */
  .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);
    }
  }
/* END_SNIPPET:bootstrap-footer-protocol */

/* START_SNIPPET:text-type-count-down-timer (INDEX:718) */
.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: 0px;
    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);
  }
/* END_SNIPPET:text-type-count-down-timer */