.ys-header {
  height: 72px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.ys-header.is-home {
  position: fixed;
}
.ys-header.is-home:not(.is-sticky) {
  background-color: transparent;
}
.ys-header.is-solution-showcase {
  position: fixed;
  transform: translateY(0);
}
body.solution-showcase-tabs-stuck .ys-header.is-solution-showcase {
  transform: translateY(-100%);
  pointer-events: none;
}
.ys-header.is-solution-showcase:not(.is-sticky),
body.solution-showcase-at-top .ys-header.is-solution-showcase {
  background-color: transparent;
}
.ys-header .ys-header-nav {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 3vw, 64px);
  background-color: #fff;
  position: relative;
  z-index: 20;
  box-shadow: 0 15px 10px -15px #0000000f;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.ys-header__logo {
  height: 72px;
  object-fit: contain;
  transition: opacity 0.3s;
}
.ys-header.is-home:not(.is-sticky) .ys-header-nav {
  background-color: transparent;
  box-shadow: none;
}
.ys-header.is-solution-showcase:not(.is-sticky) .ys-header-nav,
body.solution-showcase-at-top .ys-header.is-solution-showcase .ys-header-nav {
  background-color: transparent;
  box-shadow: none;
}
.ys-header.is-sticky .ys-header-nav {
  background-color: #fff;
  box-shadow: 0 15px 10px -15px #0000000f;
}

.ys-header__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
  transition: max-width 0.3s, opacity 0.3s;
  max-width: min(58vw, 880px);
  margin: 0 clamp(16px, 2vw, 48px);
  gap: clamp(20px, 1.5vw, 36px);
  white-space: nowrap; /* Prevent text wrapping inside nav */
}
.ys-header__nav.display-none {
  opacity: 0;
  pointer-events: none;
}
.ys-header__nav .nav-item.relative {
  position: static; /* Change to static so full-width dropdowns can position correctly */
}
.ys-header__nav .nav-one {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(8px, 0.7vw, 16px);
  font-size: clamp(15px, 0.82vw, 16px);
  font-weight: 500;
  color: var(--ys-color-text-000);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap; /* Ensure individual items never wrap */
}
.ys-header__nav .nav-item:hover .nav-one {
  color: var(--ys-color-primary);
}
.ys-header__nav .nav-one .icon-short-arrow {
  display: inline-block;
  position: relative;
  left: 2px;
  transform: rotate(90deg);
  transition: transform 0.2s;
  color: var(--ys-color-text-300);
  font-weight: 400;
}
.ys-header__nav .nav-item:hover .nav-one .icon-short-arrow {
  transform: rotate(-90deg);
}

.ys-header__nav .nav-two {
  font-size: 14px;
  color: var(--ys-color-text-000);
  text-decoration: none;
}
.ys-header__nav .nav-two:hover {
  color: var(--ys-color-primary);
}

/* search start */
.ys-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 200px;
}
.ys-header__right.open {
  flex: 1;
  position: relative;
  z-index: 21;
}
.ys-header__right.open .ys-header__lang-dropdown,
.ys-header__right.open .ys-header__contact-btn,
.ys-header__right.open .ys-header__search-icon {
  display: none;
}
.ys-header__search {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 0;
  height: 44px;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #fff;
  border: 0;
  border-radius: 4px;
  transition: all 0.2s;
  transform-origin: right;
  z-index: 22;
}
.ys-header__right.open .ys-header__search {
  width: 100%;
  padding: 0;
  border: none;
  opacity: 1;
  background-color: #f5f5f5;
  height: 44px;
}
.ys-header__right.open .ys-header__search::after {
  display: none;
}
.ys-header__right.open .ys-header__search .ys-header__search-input {
  width: calc(100% - 44px);
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  background-color: transparent;
  box-sizing: border-box;
  text-align: center;
}
.ys-header__right.open .ys-header__search .search-btn {
  width: 44px;
  height: 44px;
  top: 0;
  right: 0;
  background-color: var(--ys-color-primary, #2b37b3);
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ys-header__right.open .ys-header__search .search-btn .icon-search {
  color: #fff;
  font-size: 20px;
}
.ys-header__search::after {
  content: '';
  position: absolute;
  height: 16px;
  left: 12px;
  top: 13px;
  width: 1px;
  background-color: var(--ys-color-text-000);
  animation: flashing 0.8s infinite;
}
.ys-header__search .ys-header__search-input {
  width: calc(100% - 46px);
  height: 16px;
  color: var(--ys-color-text-000);
  caret-color: var(--ys-color-primary);
  border: none;
  outline: none;
}
.ys-header__search:focus-within {
  border-color: var(--ys-color-primary);
}
.ys-header__search:focus-within::after {
  display: none;
}
.ys-header__search .ys-header__search-input::placeholder {
  color: var(--ys-color-text-500);
}
.ys-header__search .search-btn {
  width: 26px;
  padding: 0;
  position: absolute;
  top: 8px;
  right: 10px;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.ys-header__search .search-btn .icon-search {
  display: inline-block;
  font-size: 24px;
  color: var(--ys-color-text-000);
  transition: transform 0.2s;
}
.ys-header__search .search-btn:hover .icon-search {
  color: var(--ys-color-primary);
  transform: scale(1.1);
}
@keyframes flashing {
  0% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 1; }
}
.ys-header__search-icon, .ys-header__lang-trigger {
  color: var(--ys-color-text-000);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.ys-header__lang-dropdown {
  position: relative;
  display: inline-block;
}

.ys-header__lang-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.ys-header__lang-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: #fff;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  display: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.ys-header__lang-dropdown:hover .ys-header__lang-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ys-header__lang-menu .lang-item {
  display: block;
  padding: 10px 20px;
  color: var(--ys-color-text-000);
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s, color 0.2s;
}

.ys-header__lang-menu .lang-item:hover:not(.disabled) {
  background-color: #f5f5f5;
  color: var(--ys-color-primary);
}

.ys-header__lang-menu .lang-item.active {
  color: var(--ys-color-primary);
}

.ys-header__lang-menu .lang-item.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.ys-header__lang-menu .lang-divider {
  height: 1px;
  background-color: #eee;
  margin: 8px 0;
}
.ys-header__contact-btn {
  background-color: #2b37b3;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.ys-header__contact-btn:hover {
  background-color: #1e268a;
}
/* 透明状态下的文字颜色与Logo颜色 (仅首页有效) */
.ys-header.is-home:not(.is-sticky) .nav-one,
.ys-header.is-home:not(.is-sticky) .ys-header__search-icon,
.ys-header.is-home:not(.is-sticky) .ys-header__lang-trigger,
.ys-header.is-home:not(.is-sticky) .icon-menu {
  color: #fff;
}
.ys-header.is-solution-showcase:not(.is-sticky) .nav-one,
.ys-header.is-solution-showcase:not(.is-sticky) .ys-header__search-icon,
.ys-header.is-solution-showcase:not(.is-sticky) .ys-header__lang-trigger,
.ys-header.is-solution-showcase:not(.is-sticky) .icon-menu,
body.solution-showcase-at-top .ys-header.is-solution-showcase .nav-one,
body.solution-showcase-at-top .ys-header.is-solution-showcase .ys-header__search-icon,
body.solution-showcase-at-top .ys-header.is-solution-showcase .ys-header__lang-trigger,
body.solution-showcase-at-top .ys-header.is-solution-showcase .icon-menu {
  color: #fff;
}
.ys-header.is-home:not(.is-sticky) .nav-one .icon-short-arrow {
  color: rgba(255, 255, 255, 0.8);
}
.ys-header.is-solution-showcase:not(.is-sticky) .nav-one .icon-short-arrow,
body.solution-showcase-at-top .ys-header.is-solution-showcase .nav-one .icon-short-arrow {
  color: rgba(255, 255, 255, 0.8);
}
.ys-header.is-home:not(.is-sticky) .ys-header__logo {
  filter: brightness(0) invert(1);
}
.ys-header.is-solution-showcase:not(.is-sticky) .ys-header__logo,
body.solution-showcase-at-top .ys-header.is-solution-showcase .ys-header__logo {
  filter: brightness(0) invert(1);
}
body.solution-showcase-at-top .ys-header.is-solution-showcase .ys-header__contact-btn,
.ys-header.is-solution-showcase:not(.is-sticky) .ys-header__contact-btn {
  background-color: #fff;
  color: var(--ys-color-text-000);
}
body.solution-showcase-at-top .ys-header.is-solution-showcase .ys-header__contact-btn:hover,
.ys-header.is-solution-showcase:not(.is-sticky) .ys-header__contact-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.ys-header__logo.display-none {
  opacity: 0;
  pointer-events: none;
}

/* user start */
.ys-header__user {
  margin-left: 30px;
  position: relative;
  height: 40px;
  padding-top: 3px;
  box-sizing: border-box;
}
.ys-header__user > a > i {
  font-size: 24px;
  cursor: pointer;
  color: var(--ys-color-text-000);
}
.ys-header__user .ys-header__user-card {
  position: absolute;
  top: 40px;
  right: -10px;
  padding: 16px;
  background-color: var(--ys-color-white);
  z-index: 20;
  border-radius: 2px;
  box-shadow: 0px 4px 14px 0px #0000001a;
  border: 1px solid var(--ys-color-text-700);
  transition: all 0.2s;
  transform-origin: top;
  transform: scaleY(0);
}
.ys-header__user:hover .ys-header__user-card {
  transform: scaleY(1);
}
.ys-header__user .ys-header__user-card button {
  height: 32px;
  line-height: 32px;
  margin-bottom: 12px;
  width: 100px;
  font-size: 12px;
  padding: 0;
}
.ys-header__user .ys-header__user-card button a {
  color: unset;
  text-decoration: none;
  display: block;
}
.ys-header__user .ys-header__user-card button:last-child {
  margin-bottom: 0;
}
/* user end */

/* 悬停卡片 start */
.ys-header__card {
  position: fixed;
  z-index: 18;
  left: 0;
  right: 0;
  top: var(--ys-header-height, 72px);
  background-color: var(--ys-color-white);
  transition: transform .2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
  max-height: 82vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1) inset;
  border-top: 0.5px solid var(--ys-color-text-700);
  border-bottom: 1px solid var(--ys-color-text-700);
  transition-delay: 150ms;
}
.ys-header__card.active,
.ys-header__card.show {
  transform: scaleY(1);
}
.ys-header__image-dropdown {
  padding: 0;
  overflow-x: auto;
}
.header-solution-grid,
.header-investor-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 40px clamp(40px, 4vw, 72px);
}
.header-solution-grid {
  gap: 20px;
  width: max-content;
  max-width: 1280px;
  padding: 40px 40px;
}
.header-investor-grid {
  gap: clamp(20px, 2vw, 40px);
  width: min(100%, 1280px);
  min-width: 0;
}
.header-solution-item,
.header-investor-item {
  text-align: left;
  text-decoration: none;
  color: #333;
}
.header-solution-item {
  flex: 0 0 224px;
  width: 224px;
}
.header-investor-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 350px;
}
.header-solution-thumb,
.header-investor-thumb {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
}
.header-solution-thumb {
  height: 191px;
}
.header-investor-thumb {
  height: 220px;
}
.header-dropdown-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s;
}
.header-solution-item:hover .header-dropdown-image,
.header-investor-item:hover .header-dropdown-image {
  transform: scale(1.04);
}
.header-solution-name,
.header-investor-name {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-solution-name {
  margin-bottom: 8px;
}
.header-solution-desc {
  color: #999;
  font-size: 14px;
  line-height: 1.5;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ys-header__cover {
  position: fixed;
  z-index: 17;
  left: 0;
  right: 0;
  top: var(--ys-header-height, 72px);
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition-delay: 100ms;
}
/* 悬停卡片 end */



/* 解决方案 start */
.ys-header__card.ys-header__case {
  padding: 40px 52px;
}
.ys-header__case {
  background-color: #f3f5f8;
}
.ys-header .nav-solution-title {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--ys-color-text-000);
}
.ys-header .nav-solution__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ys-header .nav-solution__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* 允许子项过多时自动换行 */
}

.ys-header .nav-solution__list:not(.nav-solution__list--child) > .nav-solution__item {
  margin-bottom: 12px; 
}

.ys-header .nav-solution__list--child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 0;
}

.ys-header .nav-solution__link {
  display: inline-block;
  line-height: 24px;
  padding: 6px 10px;
  text-decoration: none;
  color: var(--ys-color-text-000);
}

/* 仅第一级保留左侧的提示性竖线 */
.ys-header .nav-solution__list:not(.nav-solution__list--child) > .nav-solution__item > .nav-solution__link {
  border-left: 1px solid var(--ys-color-text-500);
}

.ys-header .nav-solution__list--child .nav-solution__link {
  border-left: none;
  padding: 6px 5px;
}

.ys-header .nav-solution__list--child .nav-solution__item::before {
  content: "——";
  color: var(--ys-color-text-300);
  margin: 0 4px; /* 控制 "-" 两侧的间距 */
}

.ys-header .nav-solution__link:hover {
  color: var(--ys-color-primary);
}
/* 解决方案 end */

/* 产品弹窗 start */
.ys-header__card.ys-header__product {
  position: absolute;
  left: 0;
  right: auto;
  width: auto;
  padding: 0;
  background-color: initial;
  overflow: initial;
}
.ys-header__product a {
  display: block;
  text-decoration: none;
  line-height: normal;
}
.ys-header__product .product-wrap {
  background-color: #fbfbfb;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: -1px 1px 10px rgba(51, 51, 51, 0.2);
}
.ys-header__product .product-wrap::-webkit-scrollbar,
.ys-header__product .product-child::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: var(--ys-color-background-100);
}
.ys-header__product .product-wrap::-webkit-scrollbar-thumb,
.ys-header__product .product-child::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #C1C1C1;
}
.ys-header__product .to-product {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--ys-color-text-000);
  margin-bottom: 20px;
}
.ys-header__product .to-product i {
  transform: rotate(0deg) !important;
  display: block;
  font-size: 18px;
}
.ys-header__product .to-product:hover,
.ys-header__product .product-item:hover .product-title {
  color: var(--ys-color-primary);
}
.ys-header__product .product-img {
  width: 140px;
  height: 140px;
  margin: auto;
  background: unset;
}
.ys-header__product .product-img img {
  object-fit: contain;
}
.ys-header__product .product-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  padding: 8px 0;
  font-size: 14px;
  display: inline-block;
  color: var(--ys-color-text-000);
}
.ys-header__product .product-item {
  position: relative;
  width: 180px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ys-header__product .product-item.active {
  background-color: var(--ys-color-primary);
}
.ys-header__product .product-item.active .product-title {
  color: var(--ys-color-white);
}
.ys-header__product .product-item.active .iconfont {
  color: var(--ys-color-white);
}
.ys-header__product .product-item .iconfont {
  color: var(--ys-color-text-000);
}
.ys-header__product .product-child {
  position: absolute;
  top: 0;
  left: 100%;
  width: 500px;
  height: 100%;
  min-height: 100%;
  padding: 8px 10px;
  margin: 0;
  font-size: 14px;
  list-style: none;
  background-color: var(--ys-color-white);
  overflow-y: auto;
  box-shadow: 6px 1px 10px rgba(51,51,51,.2);

  display: flex;
  align-items: center;
  align-content: flex-start;
  flex-wrap: wrap;
}
.ys-header__product .product-child__item {
  line-height: normal;
  padding: 0;
  margin: 10px;
}
.ys-header__product .product-child__link {
  color: var(--ys-color-text-000);
}
.ys-header__product .product-child__link:hover {
  color: var(--ys-color-primary);
}
/* 产品弹窗 end */

/* mega menu product start */
.ys-header__mega {
  padding: 0;
  overflow-x: hidden;
}
.mega-menu-container {
  width: min(100%, 1840px);
  min-width: 0;
  max-width: 1840px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 clamp(24px, 3vw, 64px);
}
.mega-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 clamp(18px, 1.4vw, 26px);
  border-bottom: 1px solid #eee;
}
.all-products-link {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.all-products-link:hover {
  color: var(--ys-color-primary);
}
.close-mega-menu {
  cursor: pointer;
  color: #999;
  font-size: 20px;
}
.mega-menu-content {
  display: flex;
  padding: clamp(24px, 2.4vw, 44px) 0;
}
.mega-sidebar {
  flex: 0 0 clamp(180px, 12vw, 240px);
  border-right: 1px solid #eee;
  padding-right: clamp(18px, 1.6vw, 32px);
}
.mega-sidebar-item {
  padding: clamp(12px, 1vw, 18px) 0;
  font-size: clamp(15px, 0.82vw, 16px);
  color: #666;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 0;
  gap: 8px;
}
.mega-sidebar-item__name {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-sidebar-item.active {
  color: var(--ys-color-primary);
  font-weight: bold;
}
.mega-sidebar-item .icon-short-arrow {
  transform: rotate(-90deg);
  font-size: 12px;
  opacity: 0;
}
.mega-sidebar-item.active .icon-short-arrow {
  opacity: 1;
}
.mega-panels {
  flex: 1;
  padding-left: clamp(28px, 2.8vw, 56px);
}
.mega-panel {
  display: none;
}
.mega-panel.active {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(190px, 12vw, 240px), 1fr));
  gap: clamp(16px, 1.3vw, 28px);
}
.mega-grid-item {
  min-height: clamp(78px, 5vw, 96px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 22px);
  background: #f9f9f9;
  padding: clamp(12px, 1vw, 18px);
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}
.mega-grid-item:hover {
  background: #f0f0f0;
  color: var(--ys-color-primary);
}
.mega-grid-item__image {
  flex: 0 0 clamp(58px, 4vw, 78px);
  width: clamp(58px, 4vw, 78px);
  height: clamp(44px, 3.2vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-grid-item__image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.mega-grid-item__name {
  flex: 1 1 auto;
  font-size: clamp(13px, 0.78vw, 16px);
  line-height: 1.5;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* mega menu product end */

/* 内容与服务 start */
.ys-header__service {
  display: flex;
  padding: 0;
}
.ys-header__service .service-cate {
  background-color: #f3f5f8;
  padding: 30px 40px;
  width: 200px;
  box-sizing: border-box;
  margin: 0;
}
.ys-header__service .service-cate li {
  list-style: none;
}
.ys-header__service .service-cate .service-cate-title {
  font-weight: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--ys-color-text-000);
}
.ys-header__service .service-cate .service-cate-item {
  margin-bottom: 30px;
  font-size: 14px;
  cursor: pointer;
  color: var(--ys-color-text-100);
}
.ys-header__service .service-cate .service-cate-item a {
  color: var(--ys-color-text-100);
  text-decoration: none;
}
.ys-header__service .service-cate .service-cate-item:hover a,
.ys-header__service .service-cate .service-cate-item:hover,
.ys-header__service .service-cate .service-cate-item.active,
.ys-header__service .service-cate .service-cate-item.active a {
  color: var(--ys-color-primary);
}
.ys-header__service .service-content {
  padding: 40px;
  overflow-y: auto;
}
.ys-header__service .service-content-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.ys-header__service .content-item {
  width: 180px;
  text-decoration: none;
  display: block;
}
.ys-header__service .content-item[data-type="information"] {
  width: 193px;
}
.ys-header__service .content-item[data-type="information"] .content-img {
  height: 118px;
}
.ys-header__service .content-item[data-type='sample'],
.ys-header__service .content-item[data-type='quote'] {
  width: 230px;
}
.ys-header__service .content-item[data-type='sample'] .content-img,
.ys-header__service .content-item[data-type='quote'] .content-img {
  height: 140px;
}
.ys-header__service .content-item:hover img {
  transform: scale(1.1);
}
.ys-header__service .content-item:hover .content-title {
  color: var(--ys-color-primary);
}
.ys-header__service .content-item .content-img {
  display: block;
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
}
.ys-header__service .content-item .content-title {
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: var(--ys-color-text-000);
}
.ys-header__service .content-item .content-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: var(--ys-color-text-300);
  margin-top: 6px;
}
.ys-header__service .service-content-slide {
  height: 1px;
  background-color: var(--ys-color-text-700);
  margin: 30px 0 20px;
}
.ys-header__service .service-content-more {
  color: var(--ys-color-primary);
  font-size: 14px;
  text-decoration: none;
}
.ys-header__service .service-content-more i {
  transform: rotate(0deg) translateY(1px) !important;
  margin-left: 0px;
}
/* 内容与服务 end */

/* 公用 start */
.ys-header__common {
  display: flex;
  padding: 0;
  overflow-x: auto;
}
.ys-header__common a {
  text-decoration: none;
  color: var(--ys-color-text-000);
}
.ys-header__common.ys-header__card {
  background: transparent;
}
.ys-header__common .header-common__title {
  font-weight: 600;
}
.ys-header__common .header-common__title::after {
  content: '|';
  padding-left: 22px;
  color: rgba(0, 0, 0, 0.2);
}
.ys-header__common .common-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ys-header__common .common-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  width: 100%;
  min-width: 760px;
  height: clamp(56px, 3.5vw, 68px);
}
.ys-header__common .header-common__list {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.ys-header__common .header-common__item {
  margin: 0 clamp(14px, 1.2vw, 28px);
  font-size: clamp(15px, 0.82vw, 16px);
}
.ys-header__common .header-common__item.active,
.ys-header__common .header-common__item:hover {
  color: var(--ys-color-primary);
}
.display-none {
  display: none !important;
}
/* 公用 end */

/* 抽屉 start */
.ys-header__menu,
.ys-header-menu,
.ys-header.is-show-mobile-search .ys-header-search--mobile,
.ys-header .header-menu__second {
  display: none;
}
/* 抽屉 end */

@media only screen and (max-height: 600px) {
  .ys-header__product .product-wrap {
    max-height: 82vh;
  }
}

@media only screen and (max-width: 1895px) {
  /* 解决方案 start */
  .ys-header__case .case-item{
    width: calc(16% - 40px);
  }
  /* 解决方案 end */
}

@media only screen and (max-width: 1500px) {
  .ys-header__nav {
    max-width: min(58vw, 760px);
  }
}

@media only screen and (max-width: 1440px) {
  /* 解决方案 start */
  .ys-header__case {
    /* gap: 20px; */
    margin: 0 -10px;
  }
  .ys-header__case .case-item{
    margin: 0 10px 10px;
    width: calc(16.66% - 20px);
  }
  /* 解决方案 end */

  /* 内容与服务 start */
  .ys-header__service .service-content {
    width: calc(100% - 200px);
  }
  .ys-header__service .service-content-box {
    gap: 20px;
  }
  .ys-header__service .content-item {
    width: 100%;
  }
  .ys-header__service .content-item[data-type="information"] {
    width: 100%;
  }
  /* 内容与服务 end */
}

@media only screen and (max-width: 1280px) {
  .ys-header__nav {
    max-width: min(60vw, 680px);
    gap: clamp(18px, 1.4vw, 20px);
  }
  .ys-header__nav .nav-one {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 1000px) {
  .ys-header__image-dropdown {
    overflow-x: hidden !important;
  }
  .header-solution-grid {
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
    padding: 36px 24px !important;
  }
  .header-solution-item {
    flex: 0 1 calc((100vw - 96px) / 5) !important;
    width: calc((100vw - 96px) / 5) !important;
  }
}

@media only screen and (max-width: 999px) and (min-width: 900px) {
  .ys-header .ys-header-nav {
    justify-content: space-between !important;
  }
  .ys-header__nav {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    gap: 16px !important;
  }
  .ys-header__image-dropdown {
    overflow-x: hidden !important;
  }
  .header-solution-grid {
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
    padding: 32px 16px !important;
  }
  .header-solution-item {
    flex: 0 1 calc((100vw - 64px) / 5) !important;
    width: calc((100vw - 64px) / 5) !important;
  }
  .header-solution-name {
    font-size: 15px !important;
  }
  .header-solution-desc {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 1100px) {
  .ys-header .ys-header-nav {
    padding: 0 20px;
  }
  .ys-header__nav {
    margin: 0 14px;
    gap: 16px;
  }
  .ys-header__nav .nav-one {
    font-size: 15px;
    padding: 0 6px;
  }
  .ys-header__right {
    gap: 10px;
    min-width: 150px;
  }
  .ys-header__user {
    margin-left: 10px;
  }
  .ys-header__service .service-content-box {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .ys-header__nav {
    min-width: auto;
    max-width: 64vw;
    margin: 0 12px;
    gap: 14px;
  }
  .ys-header__nav .nav-one {
    font-size: 15px;
    padding: 0 5px;
  }
  .ys-header__right {
    gap: 10px;
    min-width: 120px;
  }
  .ys-header__call a {
    font-size: 13px;
    padding: 0 5px 0 3px;
  }
  .ys-header__search {
    width: 140px;
  }
  .ys-header__search .ys-header__search-input::placeholder {
    font-size: 12px;
  }
  .ys-header__user {
    margin-left: 10px;
  }
  .ys-header__product .product-child {
    width: 400px;
  }
}

@media only screen and (max-width: 850px) {
  .ys-header__card.ys-header__product {
    left: -40px;
  }
}

@media only screen and (max-width: 768px) {
  .ys-header__call,
  .ys-header-shortcut,
  .ys-header__search,
  .ys-header__nav {
    display: none;
  }
  .ys-header-menu,
  .ys-header__menu,
  .ys-header-search--mobile {
    display: block;
  }
  /* 抽屉 start */
  .ys-header__menu {
    min-width: 59px;
  }
  .ys-header__menu .iconfont {
    font-size: 24px;
    cursor: pointer;
    color: var(--ys-color-text-000);
  }
  .ys-header-menu {
    position: fixed;
    z-index: 102;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background-color: var(--ys-color-white);
    transform: translateX(-260px);
    transition: 0.3s;
  }
  .ys-header-menu.show {
    transform: translateX(0);
  }
  .ys-header-menu.show + .ys-header__cover {
    z-index: 101;
  }
  .ys-header-menu .header-menu-close {
    height: var(--ys-header-height);
    line-height: var(--ys-header-height);
    padding-left: var(--ys-page-padding);
  }
  .ys-header-menu .header-menu-close .iconfont {
    font-size: 16px;
    color: var(--ys-color-text-000);
  }
  .ys-header-menu .header-menu-list {
    padding-top: 18px;
    height: calc(94% - 115px);
    overflow-y: auto;
  }
  .ys-header-menu .header-menu-list > div {
    border-bottom: 1px solid var(--ys-color-background-100);
  }
  .ys-header-menu .header-menu__link {
    text-decoration: none;
    color: var(--ys-color-text-000);
    margin-left: 40px;
    height: 62px;
    line-height: 62px;
  }
  .ys-header-menu .header-menu-other {
    position: absolute;
    width: 100%;
    bottom: 6%;
    text-align: center;
  }
  .ys-header-menu .header-menu__tel {
    color: var(--ys-color-text-100);
    font-size: 14px;
  }
  .ys-header-menu .header-menu__tel a {
    text-decoration: none;
    color: var(--ys-color-strong);
    font-size: 14px;
    font-weight: bold;
  }
  .ys-header__right {
    transition: 0.3s;
  }
  .ys-header.is-show-mobile-search .ys-header__logo {
    display: none;
  }
  .ys-header__right.open .ys-header__search {
    width: 100%;
  }
  
  .ys-header .header-menu__button,
  .ys-header .header-menu__more {
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ys-header .header-menu__button .header-menu__link,
  .ys-header .header-menu__more .header-menu__link {
    margin: 0;
  }
  .ys-header .header-menu__list {
    display: none;
    list-style: none;
    margin: 0 60px;
    padding: 0;
  }
  .ys-header .header-menu__item {
    display: block;
    text-decoration: none;
    color: var(--ys-color-text-000);
    margin-bottom: 15px;
  }
  .ys-header .header-menu__item:hover {
    color: var(--ys-color-primary);
  }
  /* 抽屉 end */

  /* 抽屉二级菜单 start */
  .ys-header .header-menu__second {
    display: block;
    transform: translateX(-100vw);
    position: fixed;
    z-index: 1;
    width: 100vw;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--ys-color-white);
    transition: 0.3s;
  }
  .ys-header .header-menu__second.active {
    transform: translateX(0);
  }
  .ys-header .header-menu__second .header-menu-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--ys-page-padding) 0 10px;
    border-bottom: 1px solid var(--ys-color-text-700);
  }
  .ys-header .header-second__head .icon-short-arrow {
    font-size: 28px;
    display: block;
    transform: rotate(180deg);
  }
  .ys-header .header-second-back {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .ys-header .header-second__content {
    padding: 20px var(--ys-page-padding) 0;
    height: calc(100% - var(--ys-header-height));
    overflow-y: auto;
  }
  .ys-header .header-menu__second .header-menu__more {
    padding: 0;
    justify-content: flex-start;
  }
  .ys-header .header-menu__second .header-menu__link {
    height: auto;
    line-height: normal;
    padding: 20px 10px;
    cursor: pointer;
  }
  .ys-header .header-second__item {
    border-bottom: 1px solid var(--ys-color-background-100);
  }
  /* 抽屉二级菜单 end */
}

@media only screen and (max-width: 540px) {
  .ys-header__user {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 340px) {
  .ys-header__menu {
    min-width: auto;
  }
}
.jxtzx-page {
  --jxtzx-blue: #3355ff;
  --jxtzx-text: #2b2b2b;
  --jxtzx-muted: #6d6d6d;
  --jxtzx-soft: #f9faff;
  --jxtzx-container: min(1240px, calc(100vw - 320px));
  color: var(--jxtzx-text);
  background: #fff;
  overflow: hidden;
}

.jxtzx-page *,
.jxtzx-page *::before,
.jxtzx-page *::after {
  box-sizing: border-box;
}

.jxtzx-container {
  width: var(--jxtzx-container);
  margin: 0 auto;
}

.jxtzx-heading,
.jxtzx-title {
  position: relative;
  margin: 0;
  padding-left: 55px;
  color: var(--jxtzx-blue);
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.25;
  font-weight: 700;
}

.jxtzx-heading::before,
.jxtzx-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .08em;
  width: 35px;
  height: 46px;
  background: url("https://images.jctc.com.cn/gw/202606/fe7c223d-c294-409e-999e-462f16fe068d/%E6%A0%87%E9%A2%98%E5%9B%BE%E7%89%87.png") center / contain no-repeat;
}

.jxtzx-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(90deg, rgba(21, 17, 143, .5), rgba(60, 79, 173, .5) 54%, rgba(87, 123, 193, .17)),
    url("https://images.jctc.com.cn/gw/202606/a1b3fdbc-b436-43ba-bb61-800e3786dcf7/jxtzx-bg.jpg") center / cover no-repeat;
  color: #fff;
}

.jxtzx-nav-spacer {
  height: 124px;
}

.jxtzx-hero__content {
  width: min(1800px, calc(100vw - 120px));
  margin: 0 auto;
  padding-top: 290px;
}

.jxtzx-hero h1 {
  max-width: 1320px;
  margin: 0;
  font-size: clamp(42px, 3.4vw, 64px);
  line-height: 1.25;
  font-weight: 800;
}

.jxtzx-hero p {
  margin: 28px 0 190px;
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.5;
}

.jxtzx-hero__more {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 32px);
  text-decoration: none;
  background: transparent;
  cursor: default;
}

.jxtzx-hero__more i {
  font-family: Arial, sans-serif;
  font-size: 1.2em;
  font-style: normal;
  line-height: 1;
}

.jxtzx-bg-section {
  position: relative;
  background: #fff;
}

.jxtzx-bg-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(100% - 185px);
  background: url("https://images.jctc.com.cn/gw/202606/77d27a0a-8df8-455d-a5dd-17bbfe07cbc9/section-bg.jpg") top center / cover no-repeat;
  pointer-events: none;
}

.jxtzx-bg-section > section {
  position: relative;
  z-index: 1;
}

.jxtzx-intro {
  padding: 65px 0 0;
}

.jxtzx-intro__text {
  margin: 36px 0 0;
  max-width: 1603px;
  color: var(--jxtzx-muted);
  font-size: clamp(18px, 1.45vw, 28px);
  line-height: 2.2;
  letter-spacing: 0;
}

.jxtzx-intro__text span {
  color: var(--jxtzx-text);
  font-weight: 700;
}

.jxtzx-wire-visual {
  height: 510px;
  position: relative;
}

.jxtzx-wire-visual__cable {
  position: absolute;
  right: -22%;
  top: 50px;
  width: 62%;
  max-height: 520px;
  object-fit: contain;
}

.jxtzx-wire-visual__label {
  position: absolute;
  left: 10%;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
}

.jxtzx-wire-visual__label--top {
  top: 96px;
}

.jxtzx-wire-visual__label--bottom {
  top: 310px;
}

.jxtzx-wire-visual__label small {
  display: block;
  color: var(--jxtzx-muted);
  font-size: 26px;
  line-height: 1.65;
  letter-spacing: 0;
}

.jxtzx-wire-visual__label strong {
  display: block;
  color: var(--jxtzx-text);
  font-size: 46px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.jxtzx-wire-visual__line {
  position: absolute;
  height: 2px;
  background: var(--jxtzx-blue);
  opacity: 0;
}

.jxtzx-wire-visual__line::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 18px;
  height: 18px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border-radius: 999px;
  background: var(--jxtzx-blue);
  transform: translateY(-50%);
}

.jxtzx-wire-visual__line--top {
  right: 34%;
  top: 118px;
  width: 0;
}

.jxtzx-wire-visual__line--bottom {
  right: 18%;
  top: 331px;
  width: 0;
}

.jxtzx-wire-visual--animated .jxtzx-wire-visual__label {
  animation: jxtzxFadeUp .65s ease forwards;
}

.jxtzx-wire-visual--animated .jxtzx-wire-visual__label--bottom {
  animation-delay: .14s;
}

.jxtzx-wire-visual--animated .jxtzx-wire-visual__line--top {
  animation: jxtzxLineRetractTop 1.8s cubic-bezier(.25, 1, .5, 1) forwards;
}

.jxtzx-wire-visual--animated .jxtzx-wire-visual__line--bottom {
  animation: jxtzxLineRetractBottom 1.8s cubic-bezier(.25, 1, .5, 1) forwards;
  animation-delay: .25s;
}

@keyframes jxtzxFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jxtzxLineRetractTop {
  from {
    opacity: 0;
    width: 0;
  }
  15% {
    opacity: 1;
    width: 0;
  }
  to {
    opacity: 1;
    width: calc(56% - 322px);
  }
}

@keyframes jxtzxLineRetractBottom {
  from {
    opacity: 0;
    width: 0;
  }
  15% {
    opacity: 1;
    width: 0;
  }
  to {
    opacity: 1;
    width: calc(72% - 166px);
  }
}

.jxtzx-scenes {
  padding: 0 0 80px;
}

.jxtzx-title {
  margin-top: 0;
  margin-bottom: 44px;
  padding-left: 0;
  color: var(--jxtzx-text);
}

.jxtzx-title::before {
  display: none;
}

.jxtzx-scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.jxtzx-scene-grid article {
  min-width: 0;
  height: 405px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(51, 85, 255, .08);
  overflow: hidden;
  transition: box-shadow .28s ease, transform .28s ease;
}

.jxtzx-scene-grid article:hover {
  box-shadow: 0 6px 20px 7px rgba(51, 85, 255, .1);
  transform: translateY(-2px);
}

.jxtzx-scene-grid > article > img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.jxtzx-scene-grid article:hover > img {
  transform: scale(1.04);
}

.jxtzx-scene-grid article div {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 12px 24px;
}

.jxtzx-scene-grid article div img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.jxtzx-scene-grid h3 {
  margin: 0;
  padding: 0 16px 16px;
  text-align: center;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 500;
}

.jxtzx-benefits {
  max-width: 540px;
  margin: 140px auto;
  display: grid;
  justify-items: stretch;
  gap: 52px;
  transform: translateX(80px);
}

/* 通用滚动入场动画 */
.jxtzx-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.1s ease, transform 1.4s cubic-bezier(.25, 1, .5, 1);
}

.jxtzx-reveal-left.jxtzx-revealed {
  opacity: 1;
  transform: translateX(0);
}

.jxtzx-reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.1s ease, transform 1.6s cubic-bezier(.25, 1, .5, 1);
}

.jxtzx-reveal-up.jxtzx-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 体积节省模块大屏下需要叠加平移 translateX(80px) */
.jxtzx-benefits.jxtzx-reveal-up {
  transform: translateY(50px) translateX(80px);
}

.jxtzx-benefits.jxtzx-reveal-up.jxtzx-revealed {
  transform: translateY(0) translateX(80px);
}

/* 应用场景卡片从左到右依次显现 */
.jxtzx-reveal-grid article {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.1s ease, transform 1.4s cubic-bezier(.25, 1, .5, 1);
}

.jxtzx-reveal-grid.jxtzx-revealed article {
  opacity: 1;
  transform: translateX(0);
}

.jxtzx-reveal-grid.jxtzx-revealed article:nth-child(1) { transition-delay: 0s; }
.jxtzx-reveal-grid.jxtzx-revealed article:nth-child(2) { transition-delay: 0.22s; }
.jxtzx-reveal-grid.jxtzx-revealed article:nth-child(3) { transition-delay: 0.44s; }
.jxtzx-reveal-grid.jxtzx-revealed article:nth-child(4) { transition-delay: 0.66s; }

.jxtzx-benefits article {
  width: min(100%, 540px);
  justify-self: center;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 8px 20px;
  align-items: center;
}

.jxtzx-benefits__icon {
  display: contents;
}

.jxtzx-benefits__icon img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.jxtzx-benefits__icon strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--jxtzx-text);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.jxtzx-benefits p {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  margin: 0;
  color: var(--jxtzx-muted);
  font-size: clamp(14px, .95vw, 18px);
  line-height: 1.45;
  letter-spacing: 0;
}

.jxtzx-explore {
  position: relative;
  height: 210px;
  width: min(1120px, 100%);
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding-right: 120px;
  border: 0;
  color: #fff;
  text-decoration: none;
  background: transparent;
  cursor: default;
  overflow: hidden;
}

.jxtzx-explore img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  transition: transform .45s ease;
}

.jxtzx-explore::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 34, 158, .3);
}

.jxtzx-explore span,
.jxtzx-explore i {
  position: relative;
  z-index: 2;
}

.jxtzx-explore span {
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0;
}

.jxtzx-explore i {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--jxtzx-blue);
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-style: normal;
  line-height: 1;
  background: #fff;
  transition: all .35s ease;
}

.jxtzx-explore:hover img {
  transform: scaleX(-1) scale(1.06);
}

.jxtzx-explore:hover i {
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #86a1ff 42%, var(--jxtzx-blue) 100%);
}

.jxtzx-pain {
  padding: 82px 0 118px;
}

.jxtzx-pain__grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px minmax(0, 610px);
  gap: 96px;
  align-items: center;
  transform: translateX(64px);
}

.jxtzx-pain__image {
  display: block;
  width: min(320px, 72%);
  margin: 104px auto 0;
}

.jxtzx-pain__list {
  display: grid;
  gap: 30px;
  padding-top: 98px;
}

.jxtzx-pain__list h3 {
  margin: 0 0 8px;
  color: var(--jxtzx-text);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.3;
}

.jxtzx-pain__list p {
  margin: 0;
  color: var(--jxtzx-muted);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.75;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.jxtzx-system {
  padding: 80px 0 100px;
  background: rgba(232, 238, 255, .2);
}

.jxtzx-system__cards {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.jxtzx-system__cards article {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .28s ease, transform .28s ease;
}

.jxtzx-system__cards article:hover {
  box-shadow: 0 6px 20px 7px rgba(51, 85, 255, .1);
  transform: translateY(-2px);
}

.jxtzx-system__cards img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.jxtzx-system__cards article:hover img {
  transform: scale(1.04);
}

.jxtzx-system__cards h3 {
  margin: 18px 0 8px;
  text-align: center;
  font-size: clamp(20px, 1.25vw, 26px);
  padding: 0 20px;
}

.jxtzx-system__cards p {
  margin: 0 0 24px;
  color: var(--jxtzx-muted);
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.65;
  letter-spacing: 0;
  padding: 0 20px;
  text-align: left;
}

.jxtzx-process-title {
  margin: 120px 0 55px;
  text-align: center;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 500;
}

.jxtzx-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 90px 40px;
  align-items: start;
}

.jxtzx-process li {
  position: relative;
  text-align: center;
}

.jxtzx-process li::after {
  content: "";
  position: absolute;
  left: calc(100% - 18px);
  top: 32px;
  width: 72px;
  height: 10px;
  background: url("https://images.jctc.com.cn/gw/202607/1a186461-acbe-41d7-b4f1-1963b3283df8/%E6%95%B0%E5%AD%97%E8%BF%9E%E6%8E%A5%E7%BA%BF.png") center / contain no-repeat;
  pointer-events: none;
}

.jxtzx-process li:nth-child(5)::after {
  left: 50%;
  top: calc(100% + 45px);
  transform: translate(-50%, -50%) rotate(90deg);
}

.jxtzx-process li:nth-child(6)::after {
  left: calc(100% - 2px);
}

.jxtzx-process li:nth-child(10)::after {
  display: none;
}

.jxtzx-process img {
  display: block;
  width: auto;
  height: clamp(80px, 7vw, 120px);
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.jxtzx-process span {
  display: block;
  margin-top: -12px;
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 500;
}

.jxtzx-process em {
  display: block;
  margin-top: 8px;
  color: var(--jxtzx-muted);
  font-size: clamp(14px, 1.05vw, 22px);
  font-style: normal;
}

.jxtzx-results {
  padding: 100px 0 120px;
}

.jxtzx-result-list {
  margin-top: 70px;
  display: grid;
  gap: 88px;
}

.jxtzx-result-list article {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.jxtzx-result-list article:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.jxtzx-result-list img {
  width: 300px;
  height: 278px;
  object-fit: cover;
}

.jxtzx-result-list article:nth-child(odd) > div {
  padding-left: 0;
}

.jxtzx-result-list h3 {
  margin: 0 0 30px;
  font-size: clamp(24px, 1.9vw, 36px);
  line-height: 1.25;
}

.jxtzx-result-list p {
  position: relative;
  margin: 0 0 28px;
  padding-left: 20px;
  color: var(--jxtzx-muted);
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.9;
  display: flex;
  align-items: flex-start;
}

.jxtzx-result-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  background: var(--jxtzx-blue);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.jxtzx-reveal-para b,
.jxtzx-reveal-para span {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.1s ease, transform 1.4s cubic-bezier(.25, 1, .5, 1);
}

.jxtzx-reveal-para.jxtzx-revealed::before {
  opacity: 1;
}

.jxtzx-reveal-para.jxtzx-revealed b,
.jxtzx-reveal-para.jxtzx-revealed span {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.45s;
}

.jxtzx-result-list b {
  color: var(--jxtzx-text);
  flex-shrink: 0;
}

.jxtzx-standard {
  padding: 85px 0 95px;
  background: rgba(217, 217, 217, .2);
}

.jxtzx-standard__heading {
  margin-bottom: 55px;
}

.jxtzx-standard__grid {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 58px;
  align-items: stretch;
}

.jxtzx-standard__grid > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jxtzx-standard__grid > img {
  width: 100%;
  height: 100%;
  min-height: 355px;
  object-fit: cover;
}

.jxtzx-standard h3 {
  margin: 0 0 20px;
  font-size: clamp(24px, 1.8vw, 34px);
}

.jxtzx-standard__item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 12px 0;
  color: var(--jxtzx-muted);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
}

.jxtzx-standard__item strong {
  color: var(--jxtzx-text);
  font-weight: 700;
  white-space: nowrap;
}

.jxtzx-standard__item span {
  min-width: 0;
}

.jxtzx-cert-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
  margin-top: auto;
  padding-top: 24px;
  white-space: nowrap;
}

.jxtzx-cert-list img {
  width: auto;
  height: 58px;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.jxtzx-cases {
  padding: 95px 0;
}

.jxtzx-case-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  justify-content: center;
  gap: 60px;
}

.jxtzx-case-grid article {
  padding: 22px;
  background: var(--jxtzx-soft);
  box-shadow: none;
  transition: box-shadow .28s ease, transform .28s ease;
}

.jxtzx-case-grid article:hover {
  box-shadow: 0 6px 20px 7px rgba(51, 85, 255, .1);
  transform: translateY(-2px);
}

.jxtzx-case-grid img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: contain;
  background: #fff;
  transition: transform .35s ease;
}

.jxtzx-case-grid article:hover img {
  transform: scale(1.03);
}

.jxtzx-case-grid dl {
  margin: 34px 0 0;
}

.jxtzx-case-grid dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  margin-top: 22px;
}

.jxtzx-case-grid dt {
  color: var(--jxtzx-text);
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
  text-align-last: justify;
  -moz-text-align-last: justify;
}

.jxtzx-case-grid dd {
  margin: 0;
  color: var(--jxtzx-muted);
  font-size: 20px;
  line-height: 1.45;
}

.jxtzx-resources {
  padding: 60px 0 160px;
}

.jxtzx-resources__grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 260px);
  gap: 0;
  justify-content: center;
  align-items: center;
}

.jxtzx-resources__grid > div {
  align-self: center;
  padding: 0 22px 0 0;
}

.jxtzx-resources .jxtzx-heading {
  white-space: nowrap;
  font-size: clamp(28px, 2vw, 36px);
}

.jxtzx-resources__grid > div p {
  margin: 42px 0 0;
  font-size: 18px;
  line-height: 1.9;
  color: var(--jxtzx-muted);
}

.jxtzx-resource-card {
  height: 420px;
  padding: 22px 22px;
  background: #fff;
  border-left: 1px solid #e6e6e6;
  color: inherit;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

.jxtzx-resource-card:hover {
  box-shadow: 0 6px 20px 7px rgba(51, 85, 255, .1);
  border-color: transparent;
  transform: translateY(-2px);
}

.jxtzx-resources span {
  color: var(--jxtzx-text);
  font-size: 32px;
  font-weight: 500;
}

.jxtzx-resources h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.jxtzx-resources p {
  margin: 0;
  color: var(--jxtzx-muted);
  font-size: 14px;
  line-height: 1.55;
}

.jxtzx-resources img {
  width: 100%;
  height: 132px;
  margin-top: 18px;
  display: block;
  object-fit: cover;
  clip-path: inset(1px);
  background: #fff;
}

.jxtzx-resource-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  flex: 0 0 44px;
  align-self: flex-start;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 18px;
  padding: 0;
  border: 1px solid #b9bec8;
  border-radius: 999px;
  color: #7f8490;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transform: translateY(-1px);
  transition: color .28s ease, border-color .28s ease, background .28s ease;
}

.jxtzx-resource-card:hover .jxtzx-resource-arrow {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #3355ff 0%, #6685ff 100%);
}

/* ================= 底部横幅 (Bottom Banner) ================= */
.jxtzx-bottom-banner {
  min-height: 330px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.jxtzx-bottom-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.jxtzx-bottom-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.jxtzx-bottom-text p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #cbd5e1;
}

.jxtzx-bottom-btn {
  display: inline-block;
  padding: 15px 50px;
  background-color: var(--jxtzx-blue);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
}

.jxtzx-bottom-btn:hover {
  background-color: var(--jxtzx-blue);
  transform: scale(1.05);
}

@media only screen and (max-width: 1400px) {
  .jxtzx-page {
    --jxtzx-container: min(1180px, calc(100vw - 64px));
  }
  .jxtzx-hero {
    min-height: 100vh;
  }
  .jxtzx-hero__content {
    padding-top: 220px;
  }
  .jxtzx-hero p {
    margin-bottom: 120px;
  }
  .jxtzx-wire-visual__label {
    left: 12%;
  }
  .jxtzx-scene-grid,
  .jxtzx-system__cards {
    grid-template-columns: repeat(3, 1fr);
    justify-content: stretch;
  }
  .jxtzx-scene-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .jxtzx-scene-grid article {
    height: auto;
  }
  .jxtzx-scene-grid > article > img {
    height: 310px;
  }
  .jxtzx-scene-grid article div {
    height: 150px;
  }
  .jxtzx-pain__grid {
    grid-template-columns: 45% 1fr;
    gap: 80px;
  }
  .jxtzx-result-list article,
  .jxtzx-result-list article:nth-child(even),
  .jxtzx-standard__grid {
    grid-template-columns: 1fr 1fr;
  }
  .jxtzx-case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .jxtzx-result-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 638 / 586;
  }
  .jxtzx-resources__grid {
    grid-template-columns: 1.15fr repeat(3, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .jxtzx-page {
    --jxtzx-container: calc(100vw - 32px);
  }
  .jxtzx-hero {
    min-height: 100vh;
  }
  .jxtzx-hero__content {
    padding-top: 170px;
  }
  .jxtzx-hero p {
    margin-bottom: 70px;
  }
  .jxtzx-intro,
  .jxtzx-pain,
  .jxtzx-system,
  .jxtzx-results,
  .jxtzx-standard,
  .jxtzx-cases,
  .jxtzx-resources {
    padding: 58px 0;
  }
  .jxtzx-heading,
  .jxtzx-title {
    padding-left: 28px;
  }
  .jxtzx-heading::before,
  .jxtzx-title::before {
    width: 18px;
    height: 24px;
  }
  .jxtzx-wire-visual {
    height: 420px;
  }
  .jxtzx-wire-visual__line {
    opacity: 1;
    transform: none;
  }
  .jxtzx-wire-visual--animated .jxtzx-wire-visual__line,
  .jxtzx-wire-visual--animated .jxtzx-wire-visual__line--bottom {
    animation: none;
  }
  .jxtzx-wire-visual__label {
    left: 0;
  }
  .jxtzx-wire-visual__label--top {
    top: 88px;
  }
  .jxtzx-wire-visual__label--bottom {
    top: 260px;
  }
  .jxtzx-wire-visual__label small {
    font-size: 16px;
  }
  .jxtzx-wire-visual__label strong {
    font-size: 28px;
  }
  .jxtzx-wire-visual__cable {
    width: 64%;
    top: 72px;
  }
  .jxtzx-wire-visual__line--top,
  .jxtzx-wire-visual__line--bottom {
    left: 38%;
    right: auto;
    width: 54%;
  }
  .jxtzx-wire-visual__line--top {
    top: 156px;
  }
  .jxtzx-wire-visual__line--bottom {
    top: 320px;
  }
  .jxtzx-scene-grid,
  .jxtzx-system__cards,
  .jxtzx-pain__grid,
  .jxtzx-result-list article,
  .jxtzx-result-list article:nth-child(even),
  .jxtzx-standard__grid,
  .jxtzx-case-grid,
  .jxtzx-resources__grid {
    grid-template-columns: 1fr;
  }
  .jxtzx-result-list article {
    max-width: none;
  }
  .jxtzx-scene-grid > article > img {
    height: 280px;
  }
  .jxtzx-benefits {
    margin: 56px 0;
    gap: 24px;
    transform: none;
  }
  .jxtzx-benefits.jxtzx-reveal-up {
    transform: translateY(50px);
  }
  .jxtzx-benefits.jxtzx-reveal-up.jxtzx-revealed {
    transform: translateY(0);
  }
  .jxtzx-benefits article {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }
  .jxtzx-benefits__icon {
    gap: 8px;
  }
  .jxtzx-benefits__icon img {
    width: 56px;
    height: 56px;
  }
  .jxtzx-benefits__icon strong {
    font-size: 16px;
  }
  .jxtzx-explore {
    height: 168px;
    padding-right: 24px;
  }
  .jxtzx-pain__image {
    margin-top: 42px;
  }
  .jxtzx-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 18px;
  }
  .jxtzx-process li::after {
    display: none;
  }
  .jxtzx-result-list article:nth-child(even) img {
    order: -1;
  }
  .jxtzx-standard__grid > img {
    height: auto;
    min-height: none;
  }
  .jxtzx-case-grid img {
    height: auto;
  }
  .jxtzx-case-grid article {
    padding: 18px;
  }
  .jxtzx-case-grid dl div {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }
  .jxtzx-case-grid dt,
  .jxtzx-case-grid dd,
  .jxtzx-resources p {
    font-size: 16px;
  }
  .jxtzx-resource-card {
    height: auto;
    padding: 28px;
    border-left: 0;
    border-top: 1px solid #e6e6e6;
  }
  .jxtzx-bottom-text h2 {
    font-size: 28px;
  }
  .jxtzx-bottom-text p {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .jxtzx-bottom-btn {
    padding: 12px 36px;
    font-size: 16px;
  }
  .jxtzx-standard__grid > div {
    display: block;
    height: auto;
  }
  .jxtzx-cert-list {
    margin-top: 24px;
    padding-top: 0;
  }
  .jxtzx-cert-list img {
    height: 44px;
    max-width: 102px;
  }
}

@media only screen and (max-width: 540px) {
  .jxtzx-page {
    --jxtzx-container: calc(100vw - 28px);
  }
  .jxtzx-hero {
    min-height: 100vh;
  }
  .jxtzx-hero__content {
    padding-top: 150px;
  }
  .jxtzx-hero h1 {
    font-size: 30px;
  }
  .jxtzx-hero p {
    font-size: 17px;
  }
  .jxtzx-hero__more {
    font-size: 16px;
  }
}

/* ================= 英文翻译适配 (English Translation Adjustments) ================= */
@media only screen and (min-width: 993px) {
  /* 问题一：亚毫米线径，高速传输折行与上面的线缩短 */
  html[data-translated="en"] .jxtzx-wire-visual__label--top small {
    max-width: 380px;
    white-space: normal;
    word-break: keep-all;
  }

  @keyframes jxtzxLineRetractTopEn {
    from { opacity: 0; width: 0; }
    15% { opacity: 1; width: 0; }
    to { opacity: 1; width: calc(56% - 372px); }
  }

  html[data-translated="en"] .jxtzx-wire-visual--animated .jxtzx-wire-visual__line--top {
    animation: jxtzxLineRetractTopEn 1.8s cubic-bezier(.25, 1, .5, 1) forwards;
  }

  /* 问题二：当空间与性能不可兼得 大屏绝对定位通栏 */
  html[data-translated="en"] .jxtzx-pain__grid {
    position: relative;
    padding-top: 130px;
    align-items: flex-start;
  }

  html[data-translated="en"] .jxtzx-pain__grid > div:first-child h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 64px);
    max-width: 1040px;
    font-size: 32px;
  }

  html[data-translated="en"] .jxtzx-pain__image {
    margin: 30px auto 0;
  }

  html[data-translated="en"] .jxtzx-pain__list {
    padding-top: 0;
  }

  /* 问题三：大屏下的案例列宽适配 */
  html[data-translated="en"] .jxtzx-case-grid dl div {
    grid-template-columns: 190px 1fr;
    gap: 16px;
  }

  /* 问题四：大屏下的资源与协同列宽与换行 */
  html[data-translated="en"] .jxtzx-resources__grid {
    grid-template-columns: 310px repeat(3, 250px);
  }

  html[data-translated="en"] .jxtzx-resources .jxtzx-heading {
    font-size: 32px;
    max-width: 220px;
    white-space: normal;
    word-break: keep-all;
  }
}

/* ================= 英文翻译适配 - 通用/小屏 (Universal & Mobile translation tweaks) ================= */
/* 问题四卡片标题换行与大小适配 */
html[data-translated="en"] .jxtzx-resources h3 {
  white-space: normal;
  font-size: 18px;
  word-break: keep-all;
}

/* 问题三小标题和文字变小 */
html[data-translated="en"] .jxtzx-case-grid dt {
  font-size: 14px;
  text-align: left;
  text-align-last: left;
  -moz-text-align-last: left;
}

html[data-translated="en"] .jxtzx-case-grid dd {
  font-size: 14px;
}

/* 兼容小屏下的案例卡片列宽 */
@media only screen and (max-width: 992px) {
  html[data-translated="en"] .jxtzx-case-grid dl div {
    grid-template-columns: 140px 1fr;
    gap: 12px;
  }
}
.ys-footer-clean {
    --ys-content-width: 1300px;
    --ys-page-padding: calc((100% - var(--ys-content-width)) / 2);
    width: 100%;
    max-width: 100vw;
    /* overflow-x: hidden; Removed to prevent clipping of the dropdown menu */
    box-sizing: border-box;
    background-color: #000000;
    padding: 40px 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #999;
}

@media only screen and (min-width: 1441px) {
  .ys-footer-clean {
    --ys-content-width: min(1320px, calc(100% - 120px));
    --ys-page-padding: calc((100% - var(--ys-content-width)) / 2);
  }
}

@media only screen and (max-width: 1440px) {
  .ys-footer-clean {
    --ys-content-width: 1200px;
    --ys-page-padding: calc(50vw - 600px);
  }
}

@media only screen and (max-width: 1280px) {
  .ys-footer-clean {
    --ys-content-width: 1000px;
  }
}
@media only screen and (max-width: 1024px) {
  .ys-footer-clean {
    --ys-content-width: calc(100% - 40px);
    --ys-page-padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .ys-footer-clean {
    --ys-content-width: calc(100% - 20px);
    --ys-page-padding: 10px;
  }
}

.ys-footer-clean .footer-container {
    width: var(--ys-content-width);
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ys-footer-clean .footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ys-footer-clean .footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ys-footer-clean .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ys-footer-clean .footer-links a:hover {
    color: #fff;
}

.ys-footer-clean .dropdown-link {
    position: relative;
}

.ys-footer-clean .dropdown-link .dropdown-trigger {
    display: inline-flex;
    align-items: center;
}

.ys-footer-clean .dropdown-link .dropdown-trigger .icon-short-arrow {
    display: inline-block;
    transform: rotate(90deg);
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.ys-footer-clean .dropdown-link:hover .dropdown-trigger .icon-short-arrow {
    transform: rotate(-90deg);
}

.ys-footer-clean .dropdown-link:hover .dropdown-trigger {
    color: #4b55c4; /* Match the blue color */
}

.ys-footer-clean .dropdown-menu {
    display: none;
    position: absolute;
    bottom: 100%; /* 向上弹出，因为是在页脚 */
    left: -20px;
    background-color: #fff;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin: 0 0 15px 0;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    z-index: 9999; /* Increased z-index to ensure it sits above index/4 */
}

/* 增加一个隐形的桥梁，填补菜单和触发按钮之间的空隙，防止鼠标移出 hover 区域 */
.ys-footer-clean .dropdown-menu::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px; /* 高度与 margin-bottom 保持一致 */
    background: transparent;
}

.ys-footer-clean .dropdown-link:hover .dropdown-menu {
    display: block;
}

.ys-footer-clean .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ys-footer-clean .dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: #2b37b3;
}

.ys-footer-clean .footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ys-footer-clean .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center; /* 恢复居中对齐，通过宽度控制文字 */
    background-color: #000000; /* 与 footer 背景一致的深色背景 */
    padding: 10px; /* 增加一点内边距避免图片贴边，可根据需要调整 */
    border-radius: 4px; /* 可选：一点圆角 */
}

.ys-footer-clean .footer-logo img {
    max-width: 140px; /* 稍微缩小图片宽度以匹配文字感官 */
    height: auto;
    object-fit: contain;
}

.ys-footer-clean .logo-text {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 140px; /* 强制文字容器宽度与图片一致 */
    padding: 0;
    margin: 0;
}

.ys-footer-clean .logo-text span {
    line-height: 1;
    display: inline-block;
}

.ys-footer-clean .copyright-text {
    color: #666;
    font-size: 12px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .ys-footer-clean .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .ys-footer-clean .footer-links {
        gap: 15px;
    }
    .ys-footer-clean .footer-links a {
        font-size: 13px;
    }
}
.ys-rightNav {
  --ys-right-nav-primary: #25272D;
  
  position: fixed;
  right: 20px;
  bottom: 90px;
  text-align: center;
  z-index: 99;
  font-size: 14px;
  line-height: 16px;
}
.ys-rightNav .service {
  background-color: var(--ys-right-nav-primary);
  padding: 10px 13px;
  width: 50px;
  color: var(--ys-color-white);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-left: auto;
}
.ys-rightNav .service:hover {
  background-color: var(--ys-color-primary);
}
.ys-rightNav .service i {
  font-size: 24px;
  margin-bottom: 6px;
}
.ys-rightNav .service div::before {
  content: '';
  display: block;
  height: 14px;
  width: 1px;
  background-color: var(--ys-color-white);
  margin: 7px auto;
}
html[data-translated="en"] .ys-rightNav {
  width: 168px;
}
html[data-translated="en"] .ys-rightNav .service {
  width: 50px;
  box-sizing: border-box;
  min-height: 50px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  transition: width .2s, background-color .2s;
}
html[data-translated="en"] .ys-rightNav:hover .service {
  width: 168px;
  justify-content: flex-start;
  background-color: var(--ys-color-primary);
}
html[data-translated="en"] .ys-rightNav .service i {
  flex: 0 0 24px;
  margin-bottom: 0;
}
html[data-translated="en"] .ys-rightNav .service div {
  display: block;
  width: 0;
  flex: 1 1 auto;
  min-width: 0;
  opacity: 0;
  color: var(--ys-color-white);
  line-height: 16px;
  text-align: left;
  white-space: normal;
  overflow: hidden;
  transition: opacity .2s, width .2s;
}
html[data-translated="en"] .ys-rightNav .service div::before {
  display: none;
}
html[data-translated="en"] .ys-rightNav:hover .service div {
  opacity: 1;
  width: auto;
}
.ys-rightNav .circle {
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
  margin-top: 1px;
}
.ys-rightNav .circle-icon {
  width: 50px;
  height: 50px;
  padding: 17px 12px 12px;
  background: var(--ys-color-primary);
  margin-left: auto;
}
.ys-rightNav .circle i {
  font-size: 24px;
  color: var(--ys-color-white);
}
.ys-rightNav .circle-header {
  display: flex;
  align-items: center;
}
.ys-rightNav .circle .text-cover {
  /* position: absolute; */
  width: 0;
  height: 50px;
  overflow: hidden;
  background-color: var(--ys-right-nav-primary);
  color: var(--ys-color-white);
  text-align: left;
  transition: all .2s;
  transform-origin: center;
  /* transform: scale(0); */
}
.ys-rightNav .circle .text-cover span {
  padding: 18px 20px;
  display: block;
  white-space: nowrap;
}
.ys-rightNav .circle:hover .text-cover {
  width: 167px;
}
.ys-rightNav #backTop {
  display: none;
}
.ys-rightNav #backTop i {
  display: block;
}
.ys-rightNav .code-cover {
  width: 217px;
  height: fit-content;
  margin: auto;
  transform-origin: right;
  z-index: 2;
  text-align: left;
}
.ys-rightNav .code-cover-box {
  width: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50px;
  background: var(--ys-color-white);
  transition: width .2s;
  z-index: 2;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}
.ys-rightNav .circle:hover .code-cover-box {
  width: 100%;
}
.ys-rightNav .code-cover-box.code-cover-box--reserve {
  top: auto;
  bottom: 50px;
}
.ys-rightNav .code-cover.code-cover--contact {
  padding: 25px 20px;
}
.ys-rightNav .code-cover.narrow {
  width: auto;
}
.ys-rightNav .code-cover .code-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--ys-color-background-100);
  font-size: 12px;
  color: var(--ys-color-text-300);
}
.ys-rightNav .code-cover .code-item:last-child {
  border-bottom: 0;
}
.ys-rightNav .code-cover img {
  width: 82px;
  height: 82px;
  margin-right: 10px;
}
.ys-rightNav .code-cover .code-item i {
  font-size: 18px;
  color: var(--ys-color-success);
  margin-right: 4px;
}
.ys-rightNav .code-cover .code-item span {
  color: var(--ys-color-text-000);
  font-size: 14px;
}
.ys-rightNav .code-cover p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
.ys-rightNav .code-cover .code-row {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  color: var(--ys-color-text-000);
}
.ys-rightNav .code-cover .code-row + .code-row {
  margin-top: 22px;
}
.ys-rightNav .code-row a {
  text-decoration: none;
  color: var(--ys-color-text-000);
}
.ys-rightNav .code-row i {
  font-size: 16px;
  color: var(--ys-color-text-000);
  margin-right: 14px;
}
#newBridge .nb-icon-wrap {
  display: none;
}

@media only screen and (max-width: 768px) {
  .ys-rightNav {
    right: 10px;
  }
  .ys-rightNav .service {
    height: 50px;
    padding: 16px 13px;
  }
  .ys-rightNav .service div {
    display: none;
  }
}
