/* ========================================
   全局基础样式 - 从各HTML页面提取
   ======================================== */

/* 防止横向溢出 */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* 字体抗锯齿和优化 */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* 键盘导航焦点状态 */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
  outline: 0.125rem solid #4d65ff;
  outline-offset: 0.125rem;
}

/* 继承颜色 */
.inherit-color * {
  color: inherit;
}

/* Rich Text元素首尾margin重置 */
.w-richtext > :not(div):first-child,
.w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}

.w-richtext > :last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
  margin-bottom: 0 !important;
}

/* 容器居中 */
.container-medium,
.container-small,
.container-large {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* ========================================
   文本截断工具类
   ======================================== */

/* 4行后省略号 */
.text-style-4lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* 3行后省略号 */
.text-style-3lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* 2行后省略号 */
.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ========================================
   工具类 - Margin/Padding
   ======================================== */

.margin-0 {
  margin: 0rem !important;
}

.padding-0 {
  padding: 0rem !important;
}

.spacing-clean {
  padding: 0rem !important;
  margin: 0rem !important;
}

.margin-top {
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-top {
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-right {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-right {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-bottom {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.padding-bottom {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

.margin-left {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-left {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-horizontal {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-horizontal {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-vertical {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.padding-vertical {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

/* ========================================
   隐藏类工具
   ======================================== */

.hide {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .hide,
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-mobile-landscape {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ========================================
   导航相关全局样式
   ======================================== */

/* 滚动条隐藏 */
.hide-scroll::-webkit-scrollbar {
  display: none;
}

.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* 导航下拉菜单背景色 */
.nav_component:has(.nav_dropdown-toggle.w--open) {
  background-color: var(--_colors---background-color--background-white);
}

.nav_component:has(.nav_dropdown-toggle.w--open) .nav_brand,
.nav_component.scroll .nav_brand {
  color: rgb(62, 116, 143) !important;
}

.nav_component:has(.nav_dropdown-toggle.w--open)
  .nav_dropdown-toggle.w--open,
.nav_component:has(.nav_dropdown-toggle.w--open) .nav_link:hover,
.nav_component.scroll .nav_dropdown-toggle.w--open,
.nav_component.scroll .nav_link:hover,
.nav_component.scroll .nav_dropdown-toggle:hover {
  color: rgb(62, 116, 143) !important;
}

.nav_component:has(.nav_dropdown-toggle.w--open) .nav_dropdown-toggle,
.nav_component:has(.nav_dropdown-toggle.w--open) .nav_link {
  color: var(--_colors---text-color--text-primary) !important;
}

/* 导航链接颜色 */
.nav_link.w--current,
.nav_dropdown-toggle.w--open,
/*.nav_link:hover {*/
/*  color: var(--color--blue) !important;*/
/*}*/

/* 滚动状态下的导航样式 */
.nav_component.scroll .nav_dropdown-toggle,
.nav_component.scroll .nav_link {
  color: var(--_colors---text-color--text-primary) !important;
  transition: all 300ms ease;
}

.nav_component.scroll .top,
.nav_component.scroll .middle,
.nav_component.scroll .bottom {
  background-color: var(--_colors---text-color--text-primary) !important;
}

.nav_component.scroll .nav_bg {
  opacity: 1 !important;
}

/* ========================================
   下拉菜单显示控制 - 强制由 w--open 类控制
   覆盖 Webflow 可能设置的 inline style
   ======================================== */
/* 阻止 Webflow IX2 在滚动时隐藏导航栏（translate3d(0,-100%,0)） */
.nav_component.w-nav {
  transform: none !important;
}

.nav_menu.w-nav-menu .nav_dropdown_list.w-dropdown-list {
  display: none !important;
}

.nav_menu.w-nav-menu .nav_dropdown.w-dropdown .nav_dropdown_list.w-dropdown-list.w--open {
  display: flex !important;
}

/* 当 dropdown 本身有 w--open 类时，也显示其列表（双重保障） */
.nav_menu.w-nav-menu .nav_dropdown.w-dropdown.w--open .nav_dropdown_list.w-dropdown-list {
  display: flex !important;
}

/* 防止 nav_bg 和 menu_bg 遮挡点击事件 */
.nav_bg,
.menu_bg {
  pointer-events: none !important;
}

/* 当导航栏打开时，允许背景层拦截点击用于关闭菜单 */
.nav_component.active .nav_bg,
.nav_component.active .menu_bg,
.nav_component.w--open .nav_bg,
.nav_component.w--open .menu_bg {
  pointer-events: auto !important;
}

.nav_list-main-link.w--current .button.is-icon-nav {
  opacity: 100% !important;
}

.nav_list-main-link.w--current {
  color: var(--_colors---text-color--text-secondary) !important;
}

/* Application section accordion fix - ensure active blocks are visible */
.solution_detail-block.active {
  max-height: 2000px !important;
}

/* Hide dropdown icon when the section is active/open */
.solution_top-block.active .dropdown_icon {
  display: none !important;
}

/* Specification scroll hint */
.specification_detail {
  position: relative;
}

.specification_detail.scroll-hint::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, 
    rgba(245, 245, 245, 0) 0%, 
    rgba(245, 245, 245, 0.6) 40%,
    rgba(245, 245, 245, 0.95) 100%);
  pointer-events: none;
  z-index: 5;
}

.specification_detail .scroll-indicator {
  position: sticky;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  margin-top: auto;
}

.specification_detail .scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.specification_detail .scroll-indicator .indicator-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3e748f, #2a5670);
  box-shadow: 0 4px 12px rgba(62, 116, 143, 0.35);
  animation: indicatorPulse 2s ease-in-out infinite;
}

.specification_detail .scroll-indicator .indicator-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
  animation: indicatorArrow 1.5s ease-in-out infinite;
}

.specification_detail .scroll-indicator-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #3e748f;
  text-transform: uppercase;
  white-space: nowrap;
  animation: textFade 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(62, 116, 143, 0.35),
                0 0 0 0 rgba(62, 116, 143, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(62, 116, 143, 0.35),
                0 0 0 8px rgba(62, 116, 143, 0);
  }
}

@keyframes indicatorArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes textFade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Make mission_left-detail span full width */
/*.mission_left-detail {*/
/*   grid-column: 1 / -1!important;*/
/*  max-width: none !important;*/
/*}*/

/* Mission video */
.mission_control-block .mission_left-detail {
  grid-column: 1;
  grid-row: 1;
  /*max-width: none !important;*/
}

.mission_control-block .mission_video {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  align-self: start;
}

.mission_control-block .mission_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission_control-block .mission_right-image {
  grid-column: 1;
  grid-row: 2;
}

.mission_control-block .mission-bottom-detail {
  grid-column: 2;
  grid-row: 2;
}

@media only screen and (max-width: 993px) {
  .mission_control-block .mission_left-detail,
  .mission_control-block .mission_video,
  .mission_control-block .mission_right-image,
  .mission_control-block .mission-bottom-detail {
    grid-column: 1;
    grid-row: auto;
  }
}

/* ========================================
   S10 产品参数 - 白色主题分组布局
   ======================================== */

.specs_section {
  position: relative;
  z-index: 1;
  background: #ffffff !important;
  color: #000000 !important;
}

.specs_bg {
  background: #ffffff !important;
  color: #000000 !important;
}

.specs_intro {
  text-align: center;
  margin-bottom: 4rem;
}

.specs_intro-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #000000 !important;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.specs_intro-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #000000 !important;
  margin: 0;
  letter-spacing: 0.05em;
}

/* Group container */
.specs_groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.specs_group {
  position: relative;
}

.specs_group:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}

/* Group header */
.specs_group-header {
  text-align: center;
  margin-bottom: 2rem;
}

.specs_group-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: #000000 !important;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.08em;
}

.specs_group-subtitle {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #000000 !important;
  text-transform: uppercase;
}

/* Group grid */
.specs_group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid #e5e7eb;
}

/* Spec item */
.specs_item {
  padding: 1.75rem 2rem;
  position: relative;
  transition: background 0.3s ease;
}

.specs_item:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, #d1d5db, transparent);
}

.specs_item:not(:last-child)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}

.specs_item:hover {
  background: rgba(0, 0, 0, 0.03) !important;
}

.specs_item-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000 !important;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.specs_item-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: #000000 !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Responsive */
@media only screen and (max-width: 992px) {
  .specs_group-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs_item:not(:nth-child(3n))::after {
    display: none;
  }

  .specs_item:not(:nth-child(2n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color--dark-gray), transparent);
    display: block;
  }

  .specs_item {
    padding: 1.5rem;
  }
}

@media only screen and (max-width: 640px) {
  .specs_intro {
    margin-bottom: 3rem;
  }

  .specs_groups {
    gap: 2rem;
  }

  .specs_group:not(:last-child)::after {
    bottom: -1rem;
    width: 40px;
  }

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

  .specs_item {
    padding: 1.25rem 1.5rem;
  }

  .specs_item::after,
  .specs_item:not(:nth-child(2n))::after {
    display: none !important;
  }

  .specs_item:not(:last-child)::before {
    left: 5%;
    right: 5%;
  }

  .specs_item-label {
    font-size: 0.8125rem;
  }

  .specs_item-value {
    font-size: 1.125rem;
  }
}

/* ========================================
   产品参数 - 深色变体（仅 sp 页面）
   背景 rgb(22,22,22) + 白字，结构与白色版共用
   ======================================== */
.specs_section--dark,
.specs_section--dark .specs_bg {
  background: rgb(22, 22, 22) !important;
  color: #ffffff !important;
}

.specs_section--dark .specs_intro-label {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}

.specs_section--dark .specs_intro-title {
  color: #ffffff !important;
}

.specs_section--dark .specs_intro-title::after {
  background: rgba(255, 255, 255, 0.25);
}

.specs_section--dark .specs_group {
  background: #1e1e1e;
  border-color: #2c2c2c;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.30),
              0 10px 28px rgba(0, 0, 0, 0.35);
}

.specs_section--dark .specs_group::before {
  display: none;
}

.specs_section--dark .specs_group:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.40),
              0 18px 44px rgba(0, 0, 0, 0.50);
}

.specs_section--dark .specs_group-header {
  border-bottom-color: #2c2c2c;
}

.specs_section--dark .specs_group-title {
  color: #ffffff !important;
}

.specs_section--dark .specs_group-title::before {
  display: none;
}

.specs_section--dark .specs_group-subtitle {
  color: #9ca3af !important;
  opacity: 0.75;
}

.specs_section--dark .specs_group-grid {
  background: #1e1e1e !important;
}

.specs_section--dark .specs_item:not(:nth-child(3n))::after {
  background: #2c2c2c;
}

.specs_section--dark .specs_item:not(:last-child)::before {
  background: #262626;
}

.specs_section--dark .specs_item:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}

.specs_section--dark .specs_item-label {
  color: #9ca3af !important;
  opacity: 0.85;
}

.specs_section--dark .specs_item-value {
  color: #ffffff !important;
}

@media only screen and (max-width: 992px) {
  .specs_section--dark .specs_item:not(:nth-child(2n))::after {
    background: #2c2c2c;
  }
}

@keyframes zoomInFromBottom {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes progressAnimation {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/* ========================================
   视频弹窗 - 动画与圆角样式
   ======================================== */
.video_popup {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.video_popup.is-active {
  display: flex;
  opacity: 1;
}

.video-popup-wrapper {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: #000;
}

.video_popup.is-active .video-popup-wrapper {
  transform: scale(1);
}

.video-popup-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.video-popup-wrapper .video_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-popup-wrapper .video_close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.video-popup-wrapper .video_close::before,
.video-popup-wrapper .video_close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.video-popup-wrapper .video_close::before {
  transform: rotate(45deg);
}

.video-popup-wrapper .video_close::after {
  transform: rotate(-45deg);
}

/* ========================================
   其他全局样式
   ======================================== */

/* 导航遮罩层 */
.w-nav-overlay {
  width: 100% !important;
}

/* 这些类永远不会被覆盖 */
.hide {
  display: none !important;
}

/* 视频相关 */
.vision_video.w-background-video.w-background-video-atom {
  height: 100%;
}

.video_outer-block {
  width: 100%;
}

.vp-placeholder {
  visibility: hidden;
  width: 100%;
  max-height: 100%;
  height: 100%;
  max-width: 100%;
  margin: auto;
}

iframe#vimeo-video {
  width: 100%;
  height: 100%;
}

/* 轮播组件 */
.slick-prev {
  display: none !important;
}

.slick-next {
  display: none !important;
}

.image_slider .slick-list {
  height: 100%;
}

.slick-list {
  height: 100% !important;
}

/* 测试证词详情从底部移入 */
.company_logo.w-dyn-item.slick-slide.slick-active.slick-center {
  opacity: 100%;
  border-bottom: 4px solid #3e748f;
}

.slick-slide.slick-active .testimonial_left-inner {
  animation: zoomInFromBottom 0.5s both 0.3s;
}

/* 特性行动画 */
.feature_row.active .payload_number {
  color: #fff;
}

.feature_row.active .payload_name {
  font-size: 32px;
  line-height: 38px;
}

.feature_row.active .verticle_white-line {
  animation: progressAnimation 18s linear forwards;
}

.feature_bottom-line {
  display: flex;
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
}

/* 行业卡片悬停效果 */
.industries_card:hover .hero_bg-video {
  opacity: 100%;
}

/* 轮播点样式 */
.dot.active-dot {
  background-color: var(--_colors---button-color--button-secondary) !important;
}

.circle.active-dot {
  border-color: var(--color--light-blue) !important;
  background-color: #2c99c333 !important;
}

/* ========================================
   全局响应式微调
   ======================================== */

@media only screen and (min-width: 1560px) {
  .contact_form {
    margin-left: 19%;
    max-width: 68%;
  }
}

@media only screen and (max-width: 1330px) and (min-width: 1280px) {
  .bg_image {
    width: 31.1875rem;
    inset: 5rem 0% 0% auto;
  }
}

@media only screen and (max-width: 1279px) and (min-width: 992px) {
  .bg_image {
    width: 28.1875rem;
    inset: 5rem 0% 0% auto;
  }
}

@media only screen and (max-width: 1210px) and (min-width: 992px) {
  .nav_brand {
    max-width: 15rem;
  }
}

@media only screen and (max-width: 1152px) and (min-width: 992px) {
  .nav_menu-outer {
    grid-column-gap: 2rem;
  }
}

@media only screen and (max-width: 1130px) and (min-width: 992px) {
  .nav_main-block {
    grid-column-gap: 2rem;
  }

  .nav_brand {
    max-width: 14rem;
  }

  .nav_menu-outer {
    grid-column-gap: 1.5rem;
  }

  .nav_inner-block {
    grid-column-gap: 1rem;
  }
}

@media only screen and (max-width: 1070px) and (min-width: 992px) {
  .nav_link-bottom {
    padding: 1.5rem 0.75rem;
  }

  .nav_link-main-block {
    padding: 1.5rem;
  }

  .nav_list-main-link {
    padding: 0.5rem 0.75rem;
  }
}

@media only screen and (max-width: 1032px) and (min-width: 992px) {
  .nav_dropdown-toggle,
  .nav_link {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 992px) {
  .left_inner-block {
    padding-right: 20px;
  }

  .value_image {
    margin-right: 0px;
  }
}

/* 筛选按钮当前态 */
.all_button.is-active .case_category {
  color: var(--_colors---text-color--text-secondary);
}

/* Webflow共享初始状态 */
@media (min-width: 992px) {
  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="0c8b71a3-b268-42f3-d45e-b32afa8bc5f0"] {
    width: 50%;
  }

  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="0c8b71a3-b268-42f3-d45e-b32afa8bc5f7"],
  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="0c8b71a3-b268-42f3-d45e-b32afa8bc5f5"],
  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="f267a6f0-f25b-8f18-0867-4ff78872f354"] {
    opacity: 0;
  }

  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="e8851cb2-3609-b5c0-3a92-696b9934a51e"] {
    opacity: 1;
  }

  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="eec96286-040d-f12c-63b7-d964de50dd61"] {
    width: 50%;
  }

  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="eec96286-040d-f12c-63b7-d964de50dd68"],
  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="eec96286-040d-f12c-63b7-d964de50dd66"],
  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="30bcfce5-a028-da83-ccc0-ad29afe89360"] {
    opacity: 0;
  }

  html.w-mod-js:not(.w-mod-ix)
    [data-w-id="e3c6da61-8eaf-3b7e-4cc0-a44b185e48f2"] {
    opacity: 1;
  }
}
