
.ae_big {
	transform: scale(1.05, 1.05);
}

.ae_left {
	transform: translateX(-100px);
	opacity: 0;
}

.ae_right {
	transform: translateX(100px);
	opacity: 0;
}

.ae_top {
	transform: translateY(100%);
	opacity: 0;
}

.ae_bottom {
	transform: translateY(-100%);
	opacity: 0;
}

.ae {
	transform: translateY(0px);
	opacity: 1;
	transform: scale(1, 1);
	transition: all 1s ease-out;
}


.ys-header {
  height: 72px;
  display: flex;
  transition: all 0.2s;
  position: relative;
  z-index: 100;
}
.ys-header.is-sticky {
  position: sticky;
  top: 0;
  background: white;
}
.ys-header .ys-header-nav {
  width: 92%;
  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;
  margin: 0 auto;
}

.ys-header__logo {
  height: 72px;
}

.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: 80px 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__list--child {
  margin-left: 10px;
}
.ys-header .nav-solution__link {
  display: inline-block;
  line-height: 24px;
  padding: 6px 10px;
  text-decoration: none;
  color: var(--ys-color-text-000);
  border-left: 1px solid var(--ys-color-text-500);
}
.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: 245px;
  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 {
  width: 100%;
  position: relative;
  /* 590 / 1920 = 30.72196 */
  height: 30.7296vw;
  overflow: hidden;
}
.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: calc((100vw - var(--ys-content-width)) / 2);
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ys-color-white);
}
.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 #ffffff99;
  background-color: transparent;
  color: var(--ys-color-white);
  height: 44px;
  line-height: 44px;
  width: 124px;
  font-size: 16px;
  line-height: 1;
  margin-top: 70px;
  cursor: pointer;
  border-radius: 4px;
}
.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: var(--ys-color-white);
  color: var(--ys-color-text-000);
}
.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: 1200px) { 
  .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: 340px;
  }
}
@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: 26px;
  }
  .ys-banner .banner-slide .banner-desc p {
    font-size: 12px;
  }
}/* 首页 */
.ys-index {
  --ys-content-width: 1300px;
  --ys-page-padding: calc((100% - var(--ys-content-width)) / 2);
  --ys-product-width: 310px;
  --ys-content-height-max: 764px;
  --ys-product-img-w: 238px;
  --ys-solution-img-w: 186px;
  --ys-solution-img-h: 124px;
  --ys-new-img-w: 180px;
  width: 100%;
  /* min-width: var(--ys-content-width); */
}
@media only screen and (max-width: 1440px) {
  .ys-index {
    --ys-content-width: 1200px;
    --ys-page-padding: calc(50vw - 600px);
    --ys-product-width: 286px;
    --ys-content-height-max: 747px;
    --ys-product-img-w: 200px;
    --ys-solution-img-w: 180px;
    --ys-solution-img-h: 120px;
    --ys-new-img-w: 163px;
  }
}
@media only screen and (max-width: 1280px) {
  .ys-index,
  .ys-banner,
  .ys-index__content {
    --ys-content-width: calc(100% - 40px);
    --ys-page-padding: 20px;
    --ys-product-width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .ys-index,
  .ys-banner,
  .ys-index__content {
    --ys-content-width: calc(100% - 30px);
    --ys-page-padding: 15px;
  }
}
.ys-index .ys-index__title {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
}
.ys-index .ys-index__subtitle {
  font-size: 14px;
  color: var(--ys-color-text-300);
  margin-top: 16px;
}
.ys-index .ys-index__more {
  height: 38px;
  width: 70px;
  text-align: center;
  line-height: 38px;
  border: 1px solid var(--ys-color-text-700);
  display: block;
  font-size: 14px;
  color: var(--ys-color-text-100);
  border-radius: 24px;
  text-decoration: none;
}
.ys-index .ys-index__more:hover {
  color: var(--ys-color-white);
  background-color: var(--ys-color-primary);
}

/* 产品中心 start */
.ys-index__product {
  padding: 60px 0 50px;
  overflow: hidden;
  height: 950px;
}
.ys-index__product .ys-product__title {
  margin: 0 auto;
  width: var(--ys-content-width);
}
.ys-index__product .product-content {
width: 1200px;
margin: 0 auto;
  overflow: hidden;
}
.ys-index__product .product_swiper {
	width: 1400px;
	margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 800px;
}
.ys-index__product .product-list {
  margin-top: 30px;
  position: absolute;
  display: none;
}
.ys-index__product .product-list.active {
	display: block;
}
.ys-index__product .product-item {
  display: inline-block;
  vertical-align: top;
  width: 400px;
  height: 340px;
  background: #F1F2F6;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.ys-index__product .product-item:first-child {
	height: 675px;
	padding-bottom: 0;
}
.ys-index__product .product-item:nth-child(5), .ys-index__product .product-item:nth-child(2) {
	background: white;
}
.ys-index__product .product-item:nth-child(4) {
	background-color: #fbfbfb;
}
.ys-index__product .product-item:first-child .product-img {
}
.ys-index__product .product-item:nth-child(3) {
	left: -5px;
}
.ys-index__product .product-item:nth-child(4) {
	top: -330px;
	left: 405px;
}
.ys-index__product .product-item:nth-child(5) {
	top: -330px;
	left: 400px;
}
.ys-index__product .product-item .product-img {
width: 100%;
  object-fit: contain;
  margin: 0 auto;
  mix-blend-mode: darken;
  transition: all 0.2s ease-in-out;
}
.ys-index__product .product-item:hover {
	box-shadow: 0 0.1rem 0.24rem rgba(0, 0, 0, 0.25);
}
.ys-index__product .product-item:hover .product-img {
	transform: scale(1.05);
}
.ys-index__product .product-item:first-child .product-more {
	bottom: unset;
}
.ys-index__product .product-item .product-more .cn {
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: 600;
	color: #3D3D3D;
	height: 30px;
}
.ys-index__product .product-item .product-more .en {
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: 350;
	color: #3D3D3D;
}
.ys-index__product .product-item .product-more,
.ys-index__product .product-item .product-title {
  margin-top: 32px;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  font-weight: 600;
  color: var(--ys-color-text-000);
}

.ys-index__product .product-item .product-title {
	display: none;
}

.ys-index__product .product-item .product-more {
  top: auto;
  bottom: 0px;
  font-size: 16px;
  color: var(--ys-color-text-100);
}
.ys-index__product .product-item .product-more .iconfont {
  margin-left: 5px;
  font-weight: 400;
}
.ys-index__product .product-item .product-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(308px);
  transition: all 0.2s;
  transform-origin: bottom;
  background: linear-gradient(
    360deg,
    rgba(4, 14, 23, 0.7) 28.9%,
    rgba(1, 5, 8, 0) 100%
  );
  width: 100%;
  color: var(--ys-color-white);
  display: none;
}
.ys-index__product .product-item:hover .product-cover {
  transform: translate(0);
}
.ys-index__product .product-item .product-cover .product-title {
  top: auto;
  bottom: 30px;
  font-weight: 600;
  width: fit-content;
  margin: auto;
  color: var(--ys-color-white);
}
.ys-index__product .product-item .product-desc {
  font-size: 14px;
  line-height: 24px;
  width: 230px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 96px;
  color: rgba(255, 255, 255, 0.9);
}
.ys-index__product .product-item .product-slide {
  background: var(--ys-color-assist);
  width: 30px;
  height: 3px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
}
.ys-index__product .product-item .product-title::after {
  background-color: var(--ys-color-white);
}
.ys-index__product .product-subtitle {
  font-size: 26px;
  font-weight: 300;
}
.ys-index__product .product-arrow {
  display: flex;
  margin-top: 10px;
  width: 160px;
}
.ys-index__product .product-arrow .arrow-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ys-color-text-700);
  margin: 0 8px;
  color: var(--ys-color-text-000);
  cursor: pointer;
  text-align: center;
  line-height: 48px;
}
.ys-index__product .product-arrow .arrow-item:hover {
  border-color: var(--ys-color-text-000);
  background-color: var(--ys-color-text-000);
  color: var(--ys-color-white);
}
.ys-index__product .product-arrow .arrow-item i {
  font-size: 22px;
  display: block;
}
.ys-index__product .product-arrow .arrow-item:first-child i {
  transform: rotate(180deg);
}
/* 产品中心 end */

/* 公司介绍 start */
.ys-index__about {
  padding: 40px 0 0;
  background: #f5f5f5;
  font-size: 18px;
  margin-bottom: 80px;
  color: var(--ys-color-text-000);
  background-image: url(../image/content-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.ys-index__about .index-about-box {
  width: var(--ys-content-width);
  margin: auto;
}
.ys-index__about .about-desc {
  width: 66%;
  margin-bottom: 30px;
  color: var(--ys-color-text-100);
}
.ys-index__about .about-title {
  font-size: 30px;
  margin-bottom: 30px;
}
.ys-index__about .about-cover {
  position: relative;
}
.ys-index__about .about-cover__pc {
  width: 100%;
  height: 100%;
  max-height: 500px;
  min-height: 350px;
  object-fit: cover;
  object-position: right;
  border-radius: 6px;
}
.ys-index__about .about-cover__mobile {
  display: none;
}
.ys-index__about .about-box {
  position: absolute;
  left: var(--ys-page-padding);
  bottom: 10%;
  color: var(--ys-color-white);
  padding: 16px;
}
.ys-index__about .about-box__title {
  color: var(--ys-color-white);
  text-decoration: none;
}
.ys-index__about .about-box__title h3 {
  font-size: 26px;
  display: inline-block;
}
.ys-index__about .about-box__desc {
  width: 33%;
  font-size: 16px;
  margin: 15px 0 30px;
}
.ys-index__about .about-box__link {
  color: var(--ys-color-white);
  text-decoration: none;
  font-size: 16px;
}
.ys-index__about .about-box__link .iconfont {
  display: inline-block;
  transition: 0.3s;
}
.ys-index__about .about-box__link:hover .iconfont {
  transform: translateX(20px);
}
.ys-index__about .about-culture__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--ys-page-padding);
  color: var(--ys-color-white);
}
.ys-index__about .about-culture__list {
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.45);
  list-style: none;
  padding: 0;
  margin: 0;
}
.ys-index__about .about-culture__item + .about-culture__item {
  margin-top: 20px;
}
.ys-index__about .about-culture__title {
  font-size: 24px;
  margin-bottom: 6px;
}
/* 公司介绍 end */

@media only screen and (max-width: 1280px) {
  /* 产品 start */
  .ys-index__product .product-content {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    width: var(--ys-content-width);
    margin: auto;
  }
  .ys-index__product .product-operate {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .ys-index__product .product-arrow {
    margin-top: 0;
    width: auto;
  }
  .ys-index__product .product_swiper  {
    width: 100%;
  }
  /* 产品 end */

  /* 公司介绍 start */
  .ys-index__about .about-desc {
    width: 80%;
  }
  .ys-index__about .about-culture__item + .about-culture__item {
    margin-top: 18px;
  }
  .ys-index__about .about-culture__title {
    font-size: 22px;
  }
  .ys-index__about .about-culture__desc {
    font-size: 14px;
  }
  /* 公司介绍 end */
}
@media only screen and (max-width: 768px) {
  /* 公司介绍 start */
  .ys-index__about .about-desc {
    width: 100%;
  }
  .ys-index__about .about-box__desc {
    width: 80%;
  }
  /* 公司介绍 end */
}

@media only screen and (max-width: 580px) {
  .ys-index__about .about-cover__pc {
    display: none;
  }
  .ys-index__about .about-cover__mobile {
    display: block;
  }
  .ys-index__about .about-culture__content {
    position: static;
    transform: translateY(0);
    background: var(--ys-color-white);
    color: var(--ys-color-text-000);
    padding: 15px var(--ys-page-padding) 0;
  }
  .ys-index__about .about-culture__list {
    text-shadow: none;
  }
}

@media only screen and (max-width: 540px) {
  .ys-index__about .about-desc {
    font-size: 16px;
  }

  .ys-index .ys-index__title,
  .ys-index__about .about-title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 340px) {
  .ys-index__about .about-desc {
    font-size: 14px;
  }
}/* 热门产品 start */
.ys-index__hot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--ys-content-width);
  margin: 0 auto 80px;
}
.ys-index__hot .hot-cover {
  width: 68%;
  height: 490px;
}
.ys-index__hot .hot-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ys-index__hot .hot-box {
  flex: 1;
  color: var(--ys-color-text-000);
  text-decoration: none;
}
.ys-index__hot .hot-box__title {
  font-size: 30px;
  display: inline-block;
}
.ys-index__hot .hot-box__title:hover {
  color: var(--ys-color-primary);
}
.ys-index__hot .hot-box__desc {
  font-size: 16px;
  padding: 10px 0 30px;
}
.ys-index__hot .hot-box__btn {
  cursor: pointer;
  background-color: var(--ys-color-white);
  border: 1px solid var(--ys-color-text-100);
  color: var(--ys-color-text-100);
  border-radius: 20px;
  padding: 8px 16px;
}
.ys-index__hot .hot-box__btn:hover {
  color: var(--ys-color-primary);
  border-color: var(--ys-color-primary);
}
.ys-index__hot .hot-box__btn .iconfont {
  display: inline-block;
  transition: 0.3s;
}
.ys-index__hot .hot-box__btn:hover .iconfont {
  transform: translateX(5px);
}
/* 热门产品 end */

@media only screen and (max-width: 992px) {
  /* 热门产品 start */
  .ys-index__hot .hot-cover {
    width: 60%;
  }
  /* 热门产品 end */
}

@media only screen and (max-width: 768px) {
  /* 热门产品 start */
  .ys-index__hot {
    flex-direction: column;
  }
  .ys-index__hot .hot-cover {
    width: 100%;
    height: 0;
    padding-bottom: 47.85%;
    position: relative;
  }
  .ys-index__hot .hot-cover img {
    position: absolute;
  }
  .ys-index__hot .hot-box {
    padding: 20px 10px 0 ;
  }
  /* 热门产品 end */
}/* 网站底部 */
.ys-footer {
  width: 100%;
  background: #ececec;
  --ys-page-padding: calc(50vw - 650px);
}
@media only screen and (max-width: 1440px) {
  .ys-footer {
    --ys-page-padding: calc(50vw - 600px);
  }
}

.ys-footer__ad {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--ys-page-padding);
  margin: 0 auto;
  border-top: 1px solid var(--ys-color-text-700);
  border-bottom: 1px solid var(--ys-color-text-700);
}

.ys-footer__content {
  padding: 40px var(--ys-page-padding) 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--ys-color-text-700);
}

.ys-footer__content .footer-logo {
  width: 200px;
  margin: -20px 0;
}
.ys-footer__content .footer-phone-box {
  margin: 12px 0 6px;
}
.ys-footer__content .footer_phone,
.ys-footer__content .footer_address {
  font-size: 14px;
  color: rgba(51, 51, 51, 0.68);
}
.ys-footer__content .footer-address-box {
  display: flex;
}
.ys-footer__content .footer_address {
  white-space: pre-line;
  font-size: 12px;
}
.ys-footer__content .left-part {
  max-width: 260px;
}
.ys-footer__content .left-part .iconfont {
  display: inline-block;
  margin: 0 4px 0 0;
  position: relative;
  color: rgba(51, 51, 51, 0.68);
  font-size: 16px;
}
.ys-footer__content .left-part .icon-clock-fill {
  top: 1px;
}
.ys-footer__content .left-part .icon-email-fill {
  top: 2px;
}

.ys-footer__content .center-part {
  display: flex;
  padding: 6px 0 0 0;
}
.ys-footer__content .center-part.is-fold .content-link {
  display: block!important;
}
.ys-footer__content .content-link {
  min-width: 90px;
}
.ys-footer__content .content-link + .content-link {
  margin: 0 0 0 80px;
}

.ys-footer__content .content-link span {
  font-size: 16px;
  color: var(--ys-color-text-000);
  font-weight: 600;
}
.ys-footer__content .content-link__icon {
  display: none;
}

.ys-footer__content .children-link-wrap {
  list-style: none;
  padding-inline-start: 0;
  margin: 22px 0 0 0;
  height: 100%;
}
.ys-footer__content .children-link-wrap a {
  font-size: 14px;
  line-height: 17px;
  color: var(--ys-color-text-100);
  text-decoration: none;
}
.ys-footer__content .children-link-wrap li + li {
  margin: 16px 0 0 0;
}
.ys-footer__content .children-link-wrap a:hover {
  color: var(--ys-color-primary);
}

.ys-footer__content .right-part {
  display: flex;
  /* gap: 12px; */
}
.ys-footer__content .right-part .part-item:first-of-type{
  margin-right: 12px;
}
.ys-footer__content .right-part .part-item {
  padding: 10px 12px 12px;
  text-align: center;
  font-size: 14px;
  background-color: var(--ys-color-white);
  height: fit-content;
}
.ys-footer__content .right-part img {
  width: 82px;
  height: 82px;
}
.ys-footer__content .right-part p {
  margin-bottom: 4px;
}

.ys-footer__friendly {
  padding: 16px var(--ys-page-padding);
  margin: 0 auto;
  border-bottom: 1px solid var(--ys-color-text-700);
}
.ys-footer__friendly span {
  font-size: 16px;
  line-height: 32px;
  color: var(--ys-color-text-000);
}
.ys-footer__friendly ul {
  display: inline-flex;
  list-style: none;
  padding-inline-start: 0;
  margin: 0;
}
.ys-footer__friendly a {
  padding: 4px 10px;
  position: relative;
  font-size: 14px;
  color: var(--ys-color-text-100);
  text-decoration: none;
}
.ys-footer__friendly a:hover {
  color: var(--ys-color-primary);
}
.ys-footer__friendly li + li a:before {
  content: '|';
  color: var(--ys-color-text-300);
  position: absolute;
  left: -2px;
  top: 4px;
}

.ys-footer__end {
  box-sizing: border-box;
  height: 76px;
  padding: 16px var(--ys-page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #202228;
}
.ys-footer__end .end-link {
  font-size: 14px;
  color: #fff;
}
.ys-footer__end .end-link a {
  position: relative;
  text-decoration: none;
  color: #fff;
  margin-right: 10px;
}
.ys-footer__end .end-link a:not(:last-child)::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 15px;
  right: -9px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--ys-color-white);
}
.ys-footer__end .right-part {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}
.ys-footer__end .right-part img {
  height: 42px;
  max-width: 110px;
}
.ys-footer__end .copyright-wrap {
  margin-right: 10px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  /* gap: 6px; */
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
}
.ys-footer__end .copyright-wrap a{
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
}

@media only screen and (max-width: 1200px) {
  .ys-footer {
    --ys-page-padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .ys-footer {
    --ys-page-padding: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .ys-footer__content .center-part {
    flex: 1;
    justify-content: space-around;
  }
  .ys-footer__content .content-link + .content-link {
    margin: 0;
  }
}
@media only screen and (max-width: 992px) {
  .ys-footer__content .content-link {
    min-width: 80px;
  }
  .ys-footer__end .end-link {
    font-size: 12px;
  }
}
@media only screen and (min-width: 769px) {
  .ys-footer__content .children-link-wrap {
    display: block!important;
  }
}
@media only screen and (max-width: 768px) {
  .ys-footer__content {
    flex-wrap: wrap;
  }
  .ys-footer__content .left-part,
  .ys-footer__content .right-part {
    order: 2;
    margin-top: 20px;
  }
  .ys-footer__content .center-part {
    display: block;
    flex: 100%;
  }
  .ys-footer__content .content-link {
    min-width: auto;
  }
  .ys-footer__content .content-link + .content-link {
    margin-top: 20px;
  }
  .ys-footer__content .content-link__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ys-footer__content .content-link.show .content-link__icon {
    transform: rotate(270deg);
  }
  .ys-footer__content .content-link__icon {
    display: inline-block;
    transform: rotate(90deg);
    font-size: 18px;
    transition: 0.3s;
  }
  .ys-footer__content .children-link-wrap {
    display: none;
  }
  .ys-footer__end {
    flex-direction: column;
    height: auto;
  }
  .ys-footer__end .right-part {
    padding: 0 0 10px;
  }

  .ys-footer__end .right-part {
    flex-direction: column;
  }
  .ys-footer__end .copyright-wrap {
    margin-top: 0;
    order: 2;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ys-footer__end .copyright-wrap a {
    margin: 0 10px 0;
  }
  .ys-footer__end .end-link {
    order: 2;
  }
}.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;
  }
}