.ys-header {
  height: 72px;
  display: flex;
  transition: all 0.2s;
  position: relative;
  z-index: 100;
}
.ys-header.is-sticky {
  position: sticky;
  top: 0;
}
.ys-header .ys-header-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #fff;
  position: relative;
  z-index: 20;
  box-shadow: 0 15px 10px -15px #0000000f;
}

.ys-header__logo {
  height: 100px;
}

.ys-header__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-width: 440px;
  max-width: 670px;
  width: 50%;
  height: 100%;
  transition: max-width 0.3s;
}
.ys-header__nav .nav-item.relative {
  position: relative;
}
.ys-header__nav .nav-one {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: var(--ys-color-text-000);
  text-decoration: none;
  cursor: pointer;
}
.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-one .nav-item:hover .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: end;
}
.ys-header__call {
  color: var(--ys-color-text-000);
  font-size: 18px;
  font-weight: 500;
}
.ys-header__call a {
  text-decoration: none;
  font-size: 16px;
  color: var(--ys-color-text-000);
  font-weight: 700;
  padding: 0 40px 0 12px;
}
.ys-header__right.open {
  flex: 1;
}
.ys-header__search {
  display: none;
  position: relative;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 203px;
  height: 44px;
  padding: 10px 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: all 0.2s;
  transform-origin: right;
}
.ys-header__right.open .ys-header__search {
  width: calc(100% - 130px);
  padding: 10px 12px;
}
.ys-header__right {
  transition: 0.3s;
}
.ys-header.is-show-mobile-search .ys-header__search {
  display: block;
}
.ys-header.is-show-mobile-search .ys-header__call {
  display: none;
}
.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__right.open .ys-header__search:focus-within:after {
  display: none;
}
@keyframes flashing {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.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 .ys-header__search-input::placeholder {
  color: var(--ys-color-text-500);
}
.ys-header__search .search-btn {
  width: 26px;
  padding: 0;
  position: absolute;
  top: 2px;
  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: 26px;
  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);
}
.ys-header-search--mobile {
  margin-top: 5px;
}
.ys-header-search--mobile .icon-search {
  font-size: 30px;
}
/* search end */

/* 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);
  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__cover {
  position: fixed;
  z-index: 17;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition-delay: 100ms;
}
/* 悬停卡片 end */

/* 搜索卡片 start */
.ys-header__search-card {
  background-color: #f3f5f8;
  padding: 50px 40px;
}
.ys-header__search-card i {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
}
.ys-header__search-card .search-hot {
  margin-bottom: 40px;
}
.ys-header__search-card .search-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.ys-header__search-card .search-title span {
  font-weight: 400;
  color: var(--ys-color-text-300);
  margin-left: 16px;
  cursor: pointer;
}
.ys-header__search-card .search-words a {
  margin-right: 20px;
  font-size: 14px;
  text-decoration: none;
  color: var(--ys-color-text-000);
}
/* 搜索卡片 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 */

/* 内容与服务 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;
}
.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%;
  height: 58px;
}
.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 18px;
}
.ys-header__common .header-common__item.active,
.ys-header__common .header-common__item:hover {
  color: var(--ys-color-primary);
}
/* 公用 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: 500px;
  }
}

@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: 38%;
  }
  .ys-header__nav .nav-one {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1100px) {
  .ys-header__service .service-content-box {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .ys-header .ys-header-nav {
    padding: 0 20px;
  }
  .ys-header__nav {
    min-width: 390px;
  }
  .ys-header__call a {
    font-size: 14px;
    padding: 0 10px 0 6px;
  }
  .ys-header__nav .nav-one {
    font-size: 14px;
  }
  .ys-header__search {
    width: 160px;
  }
  .ys-header__search .ys-header__search-input::placeholder {
    font-size: 12px;
  }
  .ys-header__user {
    margin-left: 22px;
  }
  .ys-header__product .product-child {
    width: 460px;
  }
}

@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;
  }
}.ys-banner {
  --ys-content-width: 1300px;
  --ys-page-padding: calc((100% - var(--ys-content-width)) / 2);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  /* 590 / 1920 = 30.72196 */
  height: 30.7296vw;
  overflow: hidden;
}

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

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

.ys-banner .banner-slide img,
.ys-banner .banner-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ys-banner .banner-slide .banner-desc {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ys-page-padding);
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ys-color-white);
}
.banner-desc h2, .banner-desc p {
    white-space: pre-wrap;
}
.ys-banner .banner-slide .banner-desc h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}
.ys-banner .banner-slide .banner-desc p {
  font-size: 16px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.ys-banner .banner-slide .banner-desc button {
  border: 1px solid #509bff;
  background-color: #509bff;
  color: var(--ys-color-white);
  height: 44px;
  line-height: 44px;
  width: 124px;
  font-size: 16px;
  line-height: 1;
  margin-top: 40px;
  cursor: pointer;
  border-radius: 22px;
}
.ys-banner .banner-slide .banner-desc button a {
  display: block;
  text-decoration: none;
  color: var(--ys-color-white);
}
.ys-banner .banner-slide .banner-desc button:hover {
    background-color: #3b88ef;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(85, 157, 249, 0.4);
}
.ys-banner .banner-slide .banner-desc button:hover a {
  color: var(--ys-color-text-000);
}
.ys-banner .ys-banner__indicator {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.ys-banner__indicator .swiper-pagination-bullet {
  display: flex;
  margin: 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 1s;
  border: 1px solid rgba(51, 51, 51, 0.5);
}
.ys-banner__indicator .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(251, 251, 252, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
  width: 28px;
}
.ys-banner .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--ys-color-white);
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  opacity: 0;
  transition: all 0.2s;
  z-index: 2;
}
.ys-banner:hover .btn {
  opacity: 1;
}
.ys-banner .btn i {
  font-size: 30px;
}
.ys-banner #prev {
  left: 20px;
  transform: rotate(180deg);
}
.ys-banner #next {
  right: 20px;
}

@media only screen and (max-width: 1400px) { 
  .ys-banner .banner-slide .banner-desc {
    width: 500px;
  }
}

@media only screen and (max-width: 1280px) { 
  .ys-banner .banner-slide .banner-desc {
    left: var(--ys-page-padding);
  }
}

@media only screen and (max-width: 992px) { 
  .ys-banner .banner-slide .banner-desc h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .ys-banner .banner-slide .banner-desc p {
    font-size: 13px;
    margin-top: 12px;
  }
  .ys-banner .banner-slide .banner-desc button {
    margin-top: 25px;
    font-size: 13px;
    width: 102px;
    height: 36px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .ys-banner {
    min-height: 180px;
  }
  .ys-banner .banner-slide .banner-desc h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .ys-banner .banner-slide .banner-desc button {
    margin-top: 15px;
    font-size: 12px;
    width: 80px;
    height: 28px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .ys-banner .banner-slide .banner-desc {
    width: calc(100% - var(--ys-page-padding) * 2);
  }
  .ys-banner .banner-slide .banner-desc h2 {
    font-size: 16px;
    line-height: 22px;
  }
  .ys-banner .banner-slide .banner-desc p {
    font-size: 10px;
    margin-top: 6px;
  }
  .ys-banner .banner-slide .banner-desc button {
    margin-top: 10px;
    font-size: 10px;
    width: 70px;
    height: 24px;
    line-height: 24px;
  }
  .ys-banner .ys-banner__indicator {
    bottom: 10px;
  }
}.ys-index {
  --ys-content-width: 1300px;
  --ys-page-padding: calc((100% - var(--ys-content-width)) / 2);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

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

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

/* 产品中心 start */
.product-section {
    background-color: #f1f4ff; 
    background: url('/asset/img/index/product_center-bg.png') center/cover; 
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}
.container {
    width: var(--ys-content-width);
    margin: 0 auto;
    box-sizing: border-box;
}
.section-title {
    text-align: center;
    font-size: 36px;
    color: #000;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 7px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 10px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); 
    transition: transform 0.3s ease;
    text-decoration: none;
    min-width: 0;
    box-sizing: border-box;
}
.product-card:hover { transform: translateY(-5px); }
.card-image {
    width: 100%;
    height: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.card-title {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
}
.card-btn {
    display: inline-block;
    background-color: #1d2089; 
    color: #ffffff;
    padding: 8px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}
.card-btn:hover { opacity: 0.85; }
.bottom-action { text-align: center; }
.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #1d2089;
    border: 1px solid #1d2089;
    padding: 8px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-outline:hover { background-color: #1d2089; color: #ffffff; }
/* 产品中心 end */



/* 解决方案 start  */
.solutions-section {
  padding: 80px 0;
  background-color: #f8f9fa; 
  background: url('/asset/img/index/solution-bg.png') center/cover;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/* 公共头部左对齐标题容器 */
.section-title-wrap {
  margin-bottom: 50px;
  text-align: left; 
}
.section-en-title {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
}
.section-en-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: #1d2089; 
}
.section-zh-title {
  font-size: 20px;
  color: #666;
  font-weight: normal;
  margin-top: 15px;
  letter-spacing: 1px;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}
.solution-item {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 100%;
}
.solution-item:hover { transform: translateY(-5px); }
.solution-item.reverse { flex-direction: row-reverse; }
.solution-item .item-img-wrap {
  width: 76%; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.solution-item .item-img-wrap img {
  width: 100%;
  height: 280px; 
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.solution-item:hover .item-img-wrap img { transform: scale(1.05); }

.solution-item .item-text-wrap {
  width: 21%; 
    display: flex;
    align-items: center; 
    justify-content: center;
}


.solution-item .item-text-inner {
  background-color: #1d2089; 
  padding: 30px 60px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 2px; 
  transition: background-color 0.3s ease;
  text-align: center; 
}

.solution-item:hover .item-text-inner { 
    background-color: #15186b; 
}

.solution-item .item-name {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.4;
}
/* 解决方案 end */


/* 关于我们 start  */
.about-section {
    padding: 80px 0;
    background-color: #ffffff; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.about-content-box {
    position: relative;
    width: 100%;
    height: 520px; 
    border-radius: 8px; 
    overflow: hidden;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 提示：已经删除了 .about-title-overlay 相关代码，因为它已经被移出并复用了公共样式 */

.about-overlay-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;  
    height: 75%;
    background-color: #1A1D88; /* 移除了 rgba 兼容叠加代码，保留纯色 */
    background-color: rgba(26, 29, 136, 0.85); 
    border-top-left-radius: 120px; 
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
}

.about-description {
    color: #ffffff;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-description p {
    margin: 0 0 10px;
}

.about-btn {
    display: inline-block;
    background-color: #ffffff; 
    color: #3e4aa8; 
    padding: 8px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start; 
}

.about-btn:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
/* 关于我们 end */


/* 合作伙伴 start */
.ys-index__partner {
  background-color: #f5f6f7;
  padding: 60px 0;
}
.ys-index__partner .ys-index__title { text-align: center; }
.ys-index__partner .partner-img {
  margin: 30px auto 0;
  width: var(--ys-content-width);
}
/* 合作伙伴 end */


/* 新闻资讯 start */
.news-section {
    display: flex;
    justify-content: center;
    padding: 88px 0;
    background-color: #fff;
    background: url('/asset/img/index/news-bg.png') center/cover; 
}
.news-section a { text-decoration: none; }
.news-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: var(--ys-content-width);
    margin: 0 auto;
    box-sizing: border-box;
}
.news-title {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-title .arrow {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 300;
    color: #1d2089;
    transform: translateY(2px);
    display: inline-block; 
}
.information { flex: 2; min-width: 0; }
.information_content { display: flex; gap: 24px; width: 100%; }
.information_left {
    position: relative;
    cursor: pointer;
    width: 60%;
    max-width: 100%;
    height: 340px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
}
.information_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.information_left::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(0deg, rgba(6, 24, 101, 0.7) 0%, transparent 60%);
    pointer-events: none;
}
.information_left:hover img { transform: scale(1.08); }
.information_title {
    position: absolute;
    bottom: 72px; left: 16px;
    font-size: 20px; font-weight: 500; color: #fff; z-index: 2; padding-right: 16px;
}
.information_text {
    position: absolute;
    bottom: 16px; left: 16px; width: calc(100% - 32px);
    display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all;
    -webkit-box-orient: vertical; -webkit-line-clamp: 2;
    opacity: 0.8; line-height: 22px; font-size: 14px; color: #fff; z-index: 2;
}
.information_right {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; justify-content: flex-start;
}
.news-section .info_item { padding: 0px 0 20px; line-height: 1.5; max-width: 100%; overflow: hidden; }
.news-section .info_title {
    display: block; width: 100%; max-width: 100%;
    margin-bottom: 5px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
    cursor: pointer; font-size: 15px; color: #333; transition: color 0.3s ease;
}
.news-section .info_title:hover { color: #1d2089; }
.news-section .info_time { font-size: 13px; color: #999; }

.headlines { flex: 1; min-width: 0; margin-left: 0; }
.headline-item { padding: 0px 0 20px !important; border-bottom: 1px dashed #eee; }
.headline-item:last-child { border-bottom: none; }
.headlines .info_title { max-width: 100%; display: block; }
.headlines .dot {
    display: inline-block; width: 4px; height: 4px; background-color: #999;
    border-radius: 50%; margin-right: 10px; vertical-align: middle; margin-top: -2px;
}
.headlines .time-indent { margin-left: 14px; }
/* 新闻资讯 end */


/* JCTC横幅 start */
.global-banner-section { background-color: #1d2089; width: 100%; }
.global-banner-container {
    display: flex; align-items: center; justify-content: space-between;
    gap: 150px; width: var(--ys-content-width); margin: 0 auto; box-sizing: border-box;
}
.banner-logo { flex-shrink: 0; }
.banner-logo img { object-fit: contain; display: block; }
.banner-text {
    flex: 1; color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; min-width: 0;
}
.banner-text p { margin: 0; font-size: 15px; line-height: 1.8; letter-spacing: 0.5px; }
.banner-social { display: flex; gap: 15px; flex-shrink: 0; }
.social-btn {
    display: flex; justify-content: center; align-items: center; width: 36px; height: 36px;
    background-color: rgba(255, 255, 255, 0.25); border-radius: 6px; color: #ffffff; transition: all 0.3s ease;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background-color: rgba(255, 255, 255, 0.4); transform: translateY(-2px); }
/* JCTC横幅 end */


/* 媒体查询 (响应式自适应) */
@media screen and (max-width: 1280px) {
    .global-banner-container { gap: 90px; }
    
    .about-overlay-card { width: 65%; padding: 40px; border-top-left-radius: 80px; }
    .solution-item .item-text-inner {
        padding: 30px 40px;
    }
}

@media only screen and (max-width: 1024px) {
    .about-content-box { height: 420px; }
    .about-overlay-card { width: 85%; }
}

@media only screen and (max-width: 768px) {
    /* 产品中心 */
    .product-section { padding: 30px 0; }
    .section-title { font-size: 20px !important; margin-bottom: 20px !important; letter-spacing: 2px !important; }
    .product-grid { gap: 6px; margin-bottom: 30px; }
    .product-card { padding: 10px 5px; border-radius: 8px; }
    .card-image { height: 60px; margin-bottom: 10px; }
    .card-title { font-size: 12px; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .card-btn { padding: 4px 10px; font-size: 10px; }
    .btn-outline { padding: 6px 15px; font-size: 10px; }

    /* 解决方案 */
    .solutions-section { padding: 40px 0; }
    .section-title-wrap { margin-bottom: 30px; }
    .section-en-title { font-size: 24px; }
    .section-zh-title { font-size: 14px; margin-top: 10px; }
    .solutions-list { gap: 20px; }
    .solution-item, .solution-item.reverse { 
        /* flex-direction: column; */
        gap: 10px; 
    }
    .solution-item .item-img-wrap { width: 100%; }
    .solution-item .item-img-wrap img { height: 180px; }
    .solution-item .item-text-wrap { width: 60%; padding: 15px; }
    .solution-item .item-name { font-size: 18px; }

    .about-section { padding: 40px 0; }
    .about-content-box { height: auto; display: flex; flex-direction: column; border-radius: 8px; }
    .about-bg-img { height: 220px; }
    
    .about-overlay-card {
        position: relative; 
        width: 100%; 
        height: auto;
        border-top-left-radius: 0; 
        padding: 30px 20px;
        background-color: #3e4aa8; 
    }
    .about-description { font-size: 13px; margin-bottom: 20px; line-height: 1.6; }
    .about-btn { padding: 6px 20px; font-size: 13px; }

    .about-overlay-card {
        position: relative; 
        width: 100%; 
        height: auto;
        border-top-left-radius: 0; 
        padding: 30px 20px;
        background-color: #3e4aa8; 
    }
    .about-description { font-size: 13px; margin-bottom: 20px; line-height: 1.6; }
    .about-btn { padding: 6px 20px; font-size: 13px; }

    /* 合作伙伴 */
    .ys-index__partner { padding: 30px 0; }
    .ys-index__partner .partner-img { margin-top: 15px; }

    /* 新闻资讯 */
    .news-section { padding: 30px 0; }
    .news-container { gap: 15px; }
    .news-title { font-size: 16px; margin-bottom: 15px; }
    .information_content { gap: 10px; }
    .information_left { height: 120px; }
    .information_title { bottom: 30px; font-size: 12px; left: 8px; }
    .information_text { bottom: 8px; font-size: 10px; line-height: 12px; left: 8px; width: calc(100% - 16px); -webkit-line-clamp: 1; }
    .news-section .info_title { font-size: 11px; margin-bottom: 2px; }
    .news-section .info_time { font-size: 9px; }
    .headline-item { padding: 0 0 10px !important; }
    .news-section .info_item { padding: 0 0 10px !important; }

    /* 横幅 */
    .global-banner-container { gap: 10px; }
    .banner-logo img { width: 70px; } 
    .banner-text p { font-size: 6px; line-height: 1.4; }
    .banner-social { gap: 6px; }
    .social-btn { width: 20px; height: 20px; border-radius: 4px; }
    .social-btn svg { width: 10px; height: 10px; }
}

@media only screen and (max-width: 480px) {
    /* 产品中心 */
    .section-title { font-size: 16px !important; margin-bottom: 20px !important; letter-spacing: 2px !important; }
    .card-title { font-size: 10px; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    
    /* 合作伙伴 */
    .ys-index__partner .ys-index__title { font-size: 16px; }
    
    /* 新闻资讯 */
    .news-title { font-size: 12px; margin-bottom: 15px; }
    .news-section .info_time { font-size: 8px; }
}.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;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #666;
}

@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;
}

/* --- 顶部四列布局 --- */
.ys-footer-clean .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.ys-footer-clean .footer-col {
    flex: 1;
    min-width: 180px;
    margin-bottom: 30px;
}

.ys-footer-clean .newsletter-col {
    flex: 1.5; /* 新闻通讯栏稍微宽一点 */
    margin-left: 20px;
}

.ys-footer-clean .col-title {
    font-size: 18px;
    color: #1d2088; /* 提取自图片的深蓝色 */
    font-weight: bold;
    margin-bottom: 30px;
}

/* --- 链接列表 --- */
.ys-footer-clean .col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ys-footer-clean .col-links li {
    margin-bottom: 18px;
}

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

.ys-footer-clean .col-links a:hover {
    color: #1d2088;
}

/* --- 新闻通讯表单 --- */
.ys-footer-clean .newsletter-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ys-footer-clean .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 380px;
    padding: 14px 20px;
    border: none;
    background-color: #e5e9f2; /* 图片中的浅蓝灰色 */
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    outline: none;
    color: #333;
}

.ys-footer-clean .newsletter-form button {
    background-color: #1d2088;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.ys-footer-clean .newsletter-form button:hover {
    background-color: #141763;
}

.ys-footer-clean .footer-bottom {
    border-top: 1px solid #e2e8f0; /* 顶部分割线 */
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #aaa;
}


.ys-footer-clean .bottom-links a {
    color: #aaa;
    text-decoration: none;
    position: relative;
    margin-right: 20px;
    transition: color 0.3s;
}

.ys-footer-clean .bottom-links a:hover {
    color: #1d2088;
}
/* 蓝色分隔符 | */
.ys-footer-clean .bottom-links a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -12px;
    top: -1px;
    color: #1d2088; 
    font-weight: bold;
}

/* --- 响应式适配 --- */
@media screen and (max-width: 1024px) {
    .ys-footer-clean .footer-col {
        min-width: 120px;
    }
    .ys-footer-clean .newsletter-col {
        margin-left: 10px;
    }
}
@media screen and (max-width: 900px) {
    .ys-footer-clean .footer-col {
        min-width: 0;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    /* 保持同行多列 */
    .ys-footer-clean .newsletter-col {
        margin-left: 0;
        margin-top: 0px;
    }
    .ys-footer-clean .col-title {
        font-size: 14px;
        margin-bottom: 15px;
        word-break: break-all;
    }
    .ys-footer-clean .col-links li {
        margin-bottom: 10px;
    }
    .ys-footer-clean .col-links a {
        font-size: 11px;
    }
    .ys-footer-clean .newsletter-desc {
        font-size: 11px;
        margin-bottom: 12px;
    }
    .ys-footer-clean .newsletter-form input[type="email"] {
        padding: 8px 10px;
        font-size: 11px;
        margin-bottom: 10px;
    }
    .ys-footer-clean .newsletter-form button {
        padding: 8px 15px;
        font-size: 11px;
    }
    .ys-footer-clean .footer-bottom {
        padding-top: 15px;
        font-size: 10px;
    }
    .ys-footer-clean .bottom-links a {
        margin-right: 14px;
        font-size: 10px;
    }
    .ys-footer-clean .bottom-links a:not(:last-child)::after {
        right: -9px;
    }
}
@media screen and (max-width: 768px) {
    .ys-footer-clean .footer-top {
        margin-bottom: 20px;
    }
    .ys-footer-clean .col-title {
        font-size: 10px;
        margin-bottom: 8px;
    }
    .ys-footer-clean .col-links a {
        font-size: 9px;
    }
    .ys-footer-clean .col-links li {
        margin-bottom: 6px;
    }
    .ys-footer-clean .newsletter-desc {
        font-size: 9px;
        line-height: 1.2;
    }
    .ys-footer-clean .newsletter-form input[type="email"] {
        padding: 4px 6px;
        font-size: 9px;
    }
    .ys-footer-clean .newsletter-form button {
        padding: 4px 8px;
        font-size: 9px;
    }
}.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;
}
.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;
  }
}