@charset "utf-8";

:root {
  --i_color: #068c7f;

  /* 全局颜色 */

  --i_color2: #fff;

  /* 副颜色 */

  --top_h: 1rem;

  /* 顶部信息 */

  /* 导航 */

  --header_height: 1rem;

  /* 导航总高度 */
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1024px) {
  :root {
    --top_h: 0.6rem;

    --header_height: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 560px) {
  :root {
    --top_h: 0.5rem;

    --header_height: 0.5rem;
  }
}

.wrap {
  width: 94vw;

  max-width: 1500px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 10.93%;
}

.wrap_r {
  display: block;

  box-sizing: border-box;

  padding-right: 10.93%;
}

.wrap_h {
  width: 94vw;

  max-width: 1600px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_f {
  width: 98vw;

  max-width: 1820px;

  margin-left: auto;

  margin-right: auto;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

@media screen and (min-width: 1921px) {
  .wrap {
    width: 85vw;

    max-width: none;
  }

  .wrap_h {
    width: 85vw;

    max-width: none;
  }

  .wrap_f {
    width: 85vw;

    max-width: none;
  }
}

@media screen and (max-width: 1024px) {
  .wrap_l {
    padding-left: 3%;
  }

  .wrap_r {
    padding-right: 3%;
  }
}

@media screen and (max-width: 560px) {
  .wrap_l {
    padding-left: 3%;

    padding-right: 3%;
  }

  .wrap_r {
    padding-left: 3%;

    padding-right: 3%;
  }
}

/* --------------------占位盒子----------------- */

.header_heightbox {
  height: calc(var(--header_height));

  display: none;
}

@media screen and (max-width: 1024px) {
  .header_heightbox {
    display: block;
  }
}

/* 产品详情页面特殊导航字体颜色，logo颜色 */

.detailHeader .i_nav > .current-menu-item > a,
.i_nav > .current-category-ancestor > a,
.i_nav > .current-post-ancestor > a,
.i_nav > .current-menu-ancestor > a,
.i_nav > .current-menu-parent > a {
  color: #fff;
}

.detailHeader .i_nav > li > a {
  color: #333;
}

.detailHeader .i_nav > li > a::before {
  background: var(--i_color);
}

.detailHeader .top_cont .top {
  border-color: rgba(51, 51, 51, 0.2);
}

.detailHeader .logo img {
  filter: brightness(0) saturate(100%) invert(57%) sepia(21%) saturate(3755%)
    hue-rotate(134deg) brightness(69%) contrast(95%);
}

.detailHeader .top_search_ico iconify-icon,
.detailHeader .top_language_btn iconify-icon {
  color: #333333;
}

.detailHeader .tr_separatorLine::before {
  background: #333333;
}

.detailHeader .top_language_btn::before {
  border-top: 6px solid #333333;
}

.fixedHeader.detailHeader {
  background: rgba(255, 255, 255, 0.8);

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* -----------------------public_btn / other_btn------------------------ */

.public_btn,
.other_btn {
  display: flex;
}

.public_btn a,
.other_btn a {
  --btn-h: 0.56rem;

  --btn-r: 1.2rem;

  --btn-fs: 0.18rem;

  --btn-pl: 0.4rem;

  --btn-gap: 0.25rem;

  --btn-inner: calc(var(--btn-h) - 2px);

  --btn-overlap: calc(var(--btn-h) * 0.32);
}

/* public_btn：一体胶囊，图标在文本内部 */

.public_btn a {
  display: inline-flex;

  align-items: center;

  height: var(--btn-h);

  padding: 1px calc(var(--btn-inner) + var(--btn-gap) + 1px) 1px
    calc(var(--btn-pl) + 1px);

  box-sizing: border-box;

  font-size: var(--btn-fs);

  border-radius: var(--btn-r);

  position: relative;

  overflow: hidden;

  transition: color 0.35s ease;

  color: var(--i_color);

  background: var(--i_color);
}

.public_btn a::before,
.public_btn a::after {
  content: "";

  position: absolute;

  z-index: 0;

  transition:
    background 0.45s ease,
    background-size 0.45s ease;
}

.public_btn a::before {
  inset: 1px;

  border-radius: calc(var(--btn-r) - 1px);

  background-color: #fff;

  background-image: linear-gradient(var(--i_color), var(--i_color));

  background-repeat: no-repeat;

  background-position: left center;

  background-size: 0% 100%;
}

.public_btn a::after {
  right: 1px;

  top: 1px;

  width: var(--btn-inner);

  height: var(--btn-inner);

  border-radius: 50%;

  background: var(--i_color);
}

.public_btn a .btn_txt,
.public_btn a .btn_icon {
  position: relative;

  z-index: 1;
}

.public_btn a .btn_icon {
  position: absolute;

  right: 1px;

  top: 1px;

  width: var(--btn-inner);

  height: var(--btn-inner);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: calc(var(--btn-fs) + 0.04rem);
}

.public_btn a .btn_icon iconify-icon {
  color: #fff;

  transition: color 0.45s ease;
}

.public_btn a:hover {
  color: #fff;
}

.public_btn a:hover::before {
  background-size: 100% 100%;
}

.public_btn a:hover::after {
  background: #fff;
}

.public_btn a:hover .btn_icon iconify-icon {
  color: var(--i_color);
}

/* other_btn：文本胶囊 + 独立图标圆，两者轻微重合 */

.other_btn a {
  display: inline-flex;

  align-items: center;

  font-size: var(--btn-fs);
}

.other_btn a .btn_txt {
  position: relative;

  z-index: 1;

  display: inline-flex;

  align-items: center;

  height: var(--btn-h);

  padding: 0 calc(var(--btn-pl) + var(--btn-overlap)) 0 var(--btn-pl);

  box-sizing: border-box;

  border-radius: var(--btn-r);

  color: #fff;

  background-color: var(--i_color);

  background-image: linear-gradient(#fff, #fff);

  background-repeat: no-repeat;

  background-position: left center;

  background-size: 0% 100%;

  transition:
    color 0.35s ease,
    background-size 0.45s ease;
}

.other_btn a .btn_icon {
  position: relative;

  z-index: 2;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: var(--btn-h);

  height: var(--btn-h);

  margin-left: calc(var(--btn-overlap) * -1);

  border-radius: 50%;

  background: #fff;

  font-size: calc(var(--btn-fs) + 0.04rem);

  transition: background 0.45s ease;
}

.other_btn a .btn_icon iconify-icon {
  color: var(--i_color);

  transition: color 0.45s ease;
}

.other_btn a:hover .btn_txt {
  color: var(--i_color);

  background-size: 100% 100%;
}

.other_btn a:hover .btn_icon {
  background: var(--i_color);
}

.other_btn a:hover .btn_icon iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .public_btn a,
  .other_btn a {
    --btn-h: 0.52rem;

    --btn-fs: 0.17rem;

    --btn-pl: 0.38rem;

    --btn-gap: 0.23rem;
  }
}

@media screen and (max-width: 1200px) {
  .public_btn a,
  .other_btn a {
    --btn-h: 0.48rem;

    --btn-fs: 0.16rem;

    --btn-pl: 0.36rem;

    --btn-gap: 0.22rem;
  }
}

@media screen and (max-width: 1024px) {
  .public_btn a,
  .other_btn a {
    --btn-h: 0.44rem;

    --btn-fs: 0.15rem;

    --btn-pl: 0.32rem;

    --btn-gap: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .public_btn a,
  .other_btn a {
    --btn-h: 0.4rem;

    --btn-r: 1rem;

    --btn-fs: 0.14rem;

    --btn-pl: 0.28rem;

    --btn-gap: 0.18rem;
  }
}

@media screen and (max-width: 560px) {
  .public_btn a,
  .other_btn a {
    --btn-h: 0.36rem;

    --btn-r: 0.9rem;

    --btn-fs: 0.13rem;

    --btn-pl: 0.24rem;

    --btn-gap: 0.16rem;
  }
}

@media screen and (max-width: 425px) {
  .public_btn a,
  .other_btn a {
    --btn-h: 0.32rem;

    --btn-r: 0.8rem;

    --btn-fs: 0.12rem;

    --btn-pl: 0.2rem;

    --btn-gap: 0.14rem;
  }
}

.pdt_l_btn {
}

.pdt_l_btn a {
  color: #fff;

  background: var(--i_color);

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 0.08rem;

  padding: 0.1rem 0.48rem;

  box-sizing: border-box;

  border: 1px solid var(--i_color);

  transition: all 0.35s ease;
}

.pdt_l_btn a:hover {
  background: transparent;

  color: var(--i_color);
}

.pdt_l_otherbtn a {
  color: var(--i_color);

  background: transparent;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 0.08rem;

  padding: 0.1rem 0.48rem;

  box-sizing: border-box;

  border: 1px solid var(--i_color);

  transition: all 0.35s ease;
}

.pdt_l_otherbtn a:hover {
  background: var(--i_color);

  color: #fff;
}

@media screen and (max-width: 1024px) {
  .pdt_l_btn a,
  .pdt_l_otherbtn a {
    padding: 0.05rem 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .pdt_l_btn a,
  .pdt_l_otherbtn a {
    padding: 0.05rem 0.15rem;
  }
}

/* ---------------------public_title------------------- */

.public_title {
}

.public_title h3 {
  font-family: "Arial Black";

  color: #222222;

  padding-bottom: 0.1rem;

  margin-bottom: 0.2rem;

  position: relative;

  width: fit-content;

  padding-right: 0.5rem;

  z-index: 1;
}

.public_title h3 img {
  position: absolute;

  left: 0;

  bottom: 0;

  max-width: 100%;

  object-fit: contain;

  z-index: -1;
}

.public_title h4 {
  color: #666666;
}

.public_title h4 a {
  display: inline;

  color: var(--i_color);
}

.public_title h4 a:hover {
  text-decoration: underline;
}

/* ---------------no_p_r------------------- */

.no_p_r h3 {
  padding-right: 0;

  margin-bottom: 0.1rem;
}

/* --------------------------------------------------header----------------------------------------- */

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--header_height);

  transition: all 0.35s ease;
}

.top_cont {
  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  height: var(--top_h);
}

.top_cont .top {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: 100%;

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fixedHeader {
  background: rgba(51, 51, 51, 0.8);
}

.fixedHeader .top_cont .top {
  border-bottom: none;
}

/* @media screen and (max-width:1024px) {

	.top_cont{background: #373737;}

} */

/* logo */

.logo {
  display: -webkit-flex;

  height: 56.74%;
}

.logo a {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;

  position: relative;
}

.logo img {
  width: 100%;

  object-fit: contain;
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1024px) {
  .top_cont {
    background: #333;
  }
}

@media screen and (max-width: 560px) {
}

/* 导航 */

@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 2.1rem;

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.35rem;

    z-index: 2014;

    height: 100%;
  }

  .i_nav > li {
    position: relative;

    display: flex;

    align-items: center;
  }

  .i_nav > li::before {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    /* display: none; */
  }

  .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > .active::before {
    width: 100%;

    display: none;
  }

  .i_nav > li > a {
    display: block;

    font-size: 0.18rem;

    color: #fff;

    /* line-height: var(--top_h); */

    line-height: 0.32rem;

    white-space: nowrap;

    box-sizing: border-box;

    border-radius: 2.3rem;

    padding: 0.06rem 0.2rem;

    position: relative;

    overflow: hidden;
  }

  .i_nav > li > a::before {
    content: "";

    background: rgba(255, 255, 255, 0.4);

    display: block;

    position: absolute;

    top: 0;

    left: 0;

    width: 0%;

    height: 100%;

    transition: all 0.45s ease;

    z-index: -1;
  }

  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > .active > a {
    color: #fff;
  }

  .i_nav > .current-menu-item > a::before,
  .i_nav > .current-category-ancestor > a::before,
  .i_nav > .current-post-ancestor > a::before,
  .i_nav > .current-menu-ancestor > a::before,
  .i_nav > .current-menu-parent > a::before,
  .i_nav > li:hover > a::before,
  .i_nav > .active > a::before {
    width: 100%;
  }

  .i_nav > li > .sub-menu {
    display: none;

    position: absolute;

    left: 0;

    min-width: 1.6rem;

    background: var(--i_color2);

    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);

    font-size: 0;

    top: 100%;
  }

  .nav_dropdown_menu1 > .sub-menu,
  .nav_dropdown_menu2 > .sub-menu,
  .nav_dropdown_menu3 > .sub-menu,
  .nav_dropdown_menu4 > .sub-menu {
    display: none !important;
  }

  .i_nav > li > .sub-menu li {
    position: relative;

    border-bottom: 1px solid var(--border_color);
  }

  .i_nav > li > .sub-menu a {
    display: block;

    padding: 0 0.16rem;

    font-size: 0.15rem;

    color: #333;

    line-height: 0.36rem;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    position: relative;
  }

  .i_nav > li > .sub-menu > li:hover > a {
    background: var(--i_color);

    color: #fff;
  }

  .i_nav .sub-menu .sub-menu {
    position: absolute;

    top: 0;

    left: 100%;

    background: #979797;

    min-width: 1.4rem;
  }

  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: rgb(255 255 255 / 15%);
  }

  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;

    color: #fff;
  }

  .i_nav .sub-menu .sub-menu li:hover {
    background: #acacac;
  }
}

@media screen and (max-width: 1440px) {
  .i_nav {
    margin-left: 1.5rem;
  }

  .i_nav > li > a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1366px) {
  .i_nav > li > a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.2rem;

    margin-left: 1rem;
  }

  .i_nav > li > a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;

    position: fixed;

    top: calc(var(--header_height));

    left: 101%;

    width: 100%;

    width: 100vw;

    height: calc(100vh - var(--header_height));

    background: #fff;

    overflow-y: auto;

    z-index: 2;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    overflow: hidden;
  }

  .i_nav.active {
    opacity: 1;

    left: 0;

    margin-left: 0;
  }

  /*滚动条*/

  .i_nav::-webkit-scrollbar {
    width: 3px;

    height: 8px;
  }

  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

    background: #555;
  }

  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

    border-radius: 0;

    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;

    border-bottom: 1px solid var(--border_color);

    position: relative;
  }

  .i_nav > .menu-item-has-children span {
    display: block;

    position: absolute;

    top: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);

    background-size: 0.24rem;
  }

  .i_nav > li > a {
    padding: 0 3%;

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

  .i_nav > li > .sub-menu {
    display: none;
  }

  .i_nav > li > .sub-menu li {
    position: relative;
  }

  .i_nav .sub-menu a {
    padding: 0 0.4rem;

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

  /* .i_nav .sub-menu li:not(:last-child) {

		border-bottom: 1px solid var(--border_color)

	} */

  .i_nav > li > .sub-menu b {
    position: absolute;

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;

    background-size: 0.16rem;
  }

  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;

    background-size: 0.16rem;
  }

  .i_nav .sub-menu .sub-menu {
    display: none;
  }

  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 768px) {
  .i_nav {
    top: calc(var(--header_height));
  }
}

/* 移动端导航按钮 */

.nav_menu {
  /* position: absolute;

	right: 0;

	top: 50%;

	transform: translateY(-50%); */

  position: relative;

  width: 22px;

  height: 16px;

  display: none;

  cursor: pointer;
}

.nav_menu i {
  display: block;

  width: 100%;

  height: 3px;

  position: absolute;

  top: 50%;

  margin-top: -2px;

  background: #fff;

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before,
.nav_menu::after {
  content: "";

  width: 100%;

  height: 3px;

  background: #fff;

  position: absolute;

  left: 0;

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);

  top: 50%;

  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);

  top: 50%;

  margin-top: -2px;
}

@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;

    margin-left: 0.1rem;
  }
}

.top_r {
  --size: 0.24rem;
}

.top_r {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  margin-left: auto;

  gap: 0.15rem;

  position: relative;

  height: 100%;
}

.tr_separatorLine {
  position: relative;

  height: 100%;
}

.tr_separatorLine::before {
  content: "";

  display: block;

  width: 0.01rem;

  height: 25%;

  background: #fff;

  position: absolute;

  top: 50%;

  left: 0;

  transform: translateY(-50%);
}

.top_r i {
  display: block;

  width: 1px;

  height: 0.25rem;

  background-color: #333;

  margin: 0 0.2rem;
}

@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;
  }
}

@media screen and (max-width: 560px) {
  .top_r {
    gap: 0.1rem;
  }
}

.search_cont,
.top_language {
  height: var(--top_h);

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  text-align: center;

  position: relative;
}

.top_search_ico iconify-icon,
.top_language_btn iconify-icon {
  font-size: 0.24rem;

  color: #fff;

  cursor: pointer;
}

.top_search_ico iconify-icon:hover,
.top_search_ico.on iconify-icon,
.top_language_btn.on iconify-icon {
  color: var(--i_color);
}

.top_language {
  position: relative;
}

.top_language_btn {
  padding: 0.1rem 0.18rem 0.1rem 0;

  position: relative;

  cursor: pointer;
}

.top_language_btn::before {
  content: "";

  position: absolute;

  top: 44%;

  right: 0;

  width: 0;

  height: 0;

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;

  border-top: 6px solid #fff;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.top_language_btn.on::before {
  -webkit-transform: rotate(-180deg);

  transform: rotate(-180deg);

  border-top-color: var(--i_color);
}

.top_language_btn.on p {
  color: var(--i_color);
}

.language_list {
  opacity: 0;

  visibility: hidden;

  position: absolute;

  top: calc(var(--header_height) + 0.2rem);

  right: 0;

  background: #fff;

  min-width: 1.2rem;

  z-index: 2016;

  box-shadow: 0 8px 0.1rem rgb(0 0 0 / 10%);

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  padding: 0.16rem 0.2rem;

  text-align: left;
}

.language_list.on {
  opacity: 1;

  visibility: visible;

  top: var(--top_h);
}

.language_list dt > h6 {
  margin-bottom: 0.08rem;

  font-size: 0.17rem;

  font-weight: bold;

  white-space: nowrap;
}

.curr_lang {
  margin-bottom: 0.12rem;

  padding-bottom: 0.12rem;

  border-bottom: 1px solid #eee;
}

.lang_list a {
  display: block;

  padding: 0.06rem 0;
}

.lang_list span img {
  display: none;
}

.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;

  font-size: 14px;

  position: relative;
}

.lang_list .trp-ls-language-name::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.18rem;

  height: 0.18rem;

  box-sizing: border-box;

  border: 1px solid #aaa;

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.lang_list .trp-ls-language-name::after {
  display: none;

  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0.06rem;

  width: 0.06rem;

  height: 0.06rem;

  background: var(--i_color);

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.lang_list li:hover .trp-ls-language-name::after,
.curr_lang .trp-ls-language-name::after {
  display: block;
}

.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name {
  color: var(--i_color);
}

/* @media screen and (max-width:1024px) {

	.language_list dt>h6{font-size: 16px;}

}

@media screen and (max-width:768px) {

	.top_language_btn p{display: none;}

	.top_language_btn iconify-icon{display: block;}

	.language_list dt>h6{font-size: 15px;}

}

@media screen and (max-width:560px) {

	.language_list dt>h6{font-size: 14px;}

	.language_list{-webkit-border-radius:6px; border-radius:6px;}

	.lang_list .trp-ls-language-name{font-size: 13px;}

} */

@media screen and (max-width: 1024px) {
  .top_search_ico iconify-icon,
  .top_language_btn iconify-icon {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

@media screen and (max-width: 560px) {
}

/* search */

.top_search {
  --search_height: 0.38rem;
}

.top_search {
  visibility: hidden;

  opacity: 0;

  position: fixed;

  top: calc(var(--header_height) + 0.3rem);

  right: 0;

  width: 100%;

  padding: 0.2rem 0;

  background: #fff;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  z-index: 99;
}

.top_search.on {
  visibility: visible;

  opacity: 1;

  top: var(--header_height);

  box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
}

.top_search form {
  width: 90%;

  margin: 0 auto;

  max-width: 5rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  box-sizing: border-box;

  border: 1px solid var(--i_color);

  overflow: hidden;
}

.top_search_ipt {
  width: calc(100% - var(--search_height) * 2);

  height: var(--search_height);

  box-sizing: border-box;

  padding: 0 0 0 0.12rem;
}

.top_search_btn {
  font-size: 0;

  color: #fff;

  width: calc(var(--search_height) * 2);

  height: var(--search_height);

  background: var(--i_color)
    url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="white" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;

  background-size: 0.24rem;

  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 0.34rem;
  }
}

.full_header_height {
  height: var(--header_height);
}

/* nav dropdown menu   nav_solutions*/

.nav_dropdown,
.nav_solutions {
  display: none;

  position: fixed;

  top: var(--header_height);

  left: 0;

  width: 100%;

  background: linear-gradient(180deg, #ffffff 0%, #f3fbf8 100%);

  border-top: 1px solid rgba(6, 140, 127, 0.12);

  box-shadow: 0 0.18rem 0.4rem rgba(15, 40, 36, 0.1);

  z-index: 2026;
}

.nav_p {
  padding: 0.4rem 0 0.46rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: stretch;
}

.nav_p_list {
  width: 100%;

  margin-left: 0;

  box-sizing: border-box;

  padding: 0;
}

.nav_p_list ul {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;
}

.nav_p_list li {
  width: 18.4%;

  margin: 0.14rem 2% 0.14rem 0;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.nav_p_list li:nth-child(5n) {
  margin-right: 0;
}

.nav_p_list li a {
  display: block;

  padding: 0.12rem;

  box-sizing: border-box;

  color: inherit;

  text-decoration: none;

  background: #fff;

  border: 1px solid rgba(6, 140, 127, 0.08);

  border-radius: 0.16rem;

  box-shadow: 0 0.04rem 0.16rem rgba(15, 40, 36, 0.05);

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.nav_p_list .img {
  width: 100%;

  position: relative;

  overflow: hidden;

  border-radius: 0.1rem;

  background: #f5fcff;
}

.nav_p_list .img::before {
  content: "";

  display: block;

  padding-bottom: 80%;
}

.nav_p_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;

  height: 100%;

  object-fit: contain;

  -webkit-transition: transform 0.45s ease;

  transition: transform 0.45s ease;
}

.nav_p_list .txt {
  text-align: center;

  margin-top: 0.1rem;
}

.nav_p_list .txt p {
  font-size: 0.14rem;

  color: #222;

  font-weight: 700;

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;

  -webkit-transition: color 0.35s ease;

  transition: color 0.35s ease;
}

.nav_p_list li:hover {
  -webkit-transform: translate(0, -8px);

  transform: translate(0, -8px);
}

.nav_p_list li:hover a {
  background: #f3fbfa;

  border-color: var(--i_color);

  box-shadow: 0 0.08rem 0.24rem rgba(6, 140, 127, 0.14);
}

.nav_p_list li:hover .img {
  border-color: var(--i_color);
}

.nav_p_list li:hover .img img {
  transform: translate(-50%, -50%) scale(1.05);
}

.nav_p_list li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .nav_dropdown {
    display: none !important;
  }
}

/* -------------------------------------------footer------------------------------------- */

footer {
}

.ft_top_box {
  background: linear-gradient(to right, #057b75 50%, #02585f 50%);

  width: 100%;

  height: 0.5rem;
}

.ftb_box {
  background: #fff;

  width: 100%;

  height: 100%;

  border-radius: 0 0 2rem 2rem;
}

.alan {
  opacity: 0;

  transform: translateY(0.3rem);

  transition-property: opacity, transform;

  transition-duration: 1.2s;

  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.foot_show .alan {
  opacity: 1;

  transform: translateY(0);
}

.foot_hide .alan {
  transition-delay: 0ms !important;
}

@media (prefers-reduced-motion: reduce) {
  .alan {
    opacity: 1;

    transform: none;

    transition: none;
  }
}

.footer_maxBox {
  background-image: url(static/images/footer_bg.webp);

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  background-attachment: fixed;

  padding: 0.7rem 0 0.5rem 0;

  box-sizing: border-box;
}

@media screen and (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .footer_maxBox {
    background-attachment: scroll;
  }
}

.footer_topMaxBox {
  text-align: center;

  margin-bottom: 0.5rem;
}

.footer_topMaxBox h3 {
  color: #fff;

  margin-bottom: 0.2rem;

  font-family: "Arial Black";
}

.footer_topMaxBox h4 {
  color: #fff;

  margin-bottom: 0.5rem;
}

.ft_btn {
  display: flex;

  justify-content: center;
}

.footer_bottomMaxBox {
  padding: 0.7rem 0 0 0;

  border-radius: 0.2rem;

  background: rgba(255, 255, 255, 0.18);
}

.fbm_box {
  padding-bottom: 0.6rem;
}

.fbm_box > ul {
  display: flex;
}

.fbm_box > ul > li:not(:last-child) {
  margin-right: 3%;
}

.fbm_box > ul > li:nth-child(1) {
  margin-right: 7%;

  flex: 2;

  flex-shrink: 0;
}

.fbm_box > ul > li:nth-child(2),
.fbm_box > ul > li:nth-child(3) {
  flex: 1;
}

.fbm_box > ul > li:nth-child(4) {
  flex: 1.5;
}

.fbm_box > ul > li h3 {
  color: #fff;

  font-weight: bold;

  margin-bottom: 0.4rem;
}

.fbm_info {
  display: flex;
}

.f_logo {
  width: 2.27rem;

  margin-bottom: 0.35rem;
}

.f_logo img {
  width: 100%;

  object-fit: contain;
}

.fbm_infoul {
  display: flex;

  flex-direction: column;

  gap: 0.15rem;
}

.fbm_infoul li {
  display: flex;

  gap: 0.2rem;
}

.fbm_infoul li span {
  display: block;

  width: 0.26rem;

  flex-shrink: 0;
}

.fbm_infoul li span img {
  width: 100%;

  object-fit: contain;
}

.fbm_infoul li a {
  color: #fff;

  transition: all 0.35s ease;
}

.fbm_infoul li:hover a {
  text-decoration: underline;
}

.fbm_menuul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.fbm_menuul li a {
  color: #fff;

  transition: all 0.35s ease;

  font-size: 0.18rem;
}

.fbm_menuul li a:hover {
  text-decoration: underline;
}

.fbm_box > ul > li h4 {
  color: #fff;

  margin-bottom: 0.2rem;
}

.fbm_box > ul > li dl {
  display: flex;

  gap: 0.3rem;
}

.fbm_box > ul > li dl dt {
}

.fbm_box > ul > li dl dt a {
  width: 0.5rem;

  height: 0.5rem;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  display: flex;

  align-items: center;

  justify-content: center;
}

.fbm_box > ul > li dl dt a iconify-icon {
  font-size: 0.18rem;

  color: #fff;

  display: inline-block;

  transform-style: preserve-3d;

  transition: transform 0.35s ease;
}

.fbm_box > ul > li dl dt a:hover iconify-icon {
  transform: rotateY(180deg);
}

.footer_privacy {
  border-top: #fff 1px solid;

  padding: 0.3rem 0;

  color: #fff;
}

.footer_privacy a {
  color: #fff;
}

.footer_privacy a:hover {
  text-decoration: underline;
}

.ft_search {
  margin-bottom: 0.3rem;
}

.ft_search .footer_popup_form_btn {
  --search-h: 0.56rem;

  --search-r: 1.2rem;

  --search-fs: 0.16rem;

  --search-pl: 0.3rem;

  --search-pad: 0.04rem;

  --search-btn: calc(var(--search-h) - var(--search-pad) * 2);

  display: flex;

  align-items: center;

  height: var(--search-h);

  padding: var(--search-pad);

  padding-left: var(--search-pl);

  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.15);

  border-radius: var(--search-r);

  cursor: pointer;
}

.ft_search_ipt {
  flex: 1;

  min-width: 0;

  height: 100%;

  display: flex;

  align-items: center;

  background: transparent;

  font-size: var(--search-fs);

  color: rgba(255, 255, 255, 0.55);

  white-space: nowrap;

  overflow: hidden;
}

.ft_search_btn {
  flex-shrink: 0;

  width: var(--search-btn);

  height: var(--search-btn);

  border: none;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  padding: 0;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.ft_search_btn iconify-icon {
  font-size: calc(var(--search-fs) + 0.04rem);

  color: var(--i_color);

  display: inline-block;

  transform: rotate(-45deg);

  transition: transform 0.35s ease;
}

.ft_search_btn:hover {
  transform: scale(1.05);
}

.ft_search_btn:hover iconify-icon {
  transform: rotate(-45deg) translate(1px, -1px);
}

/* footer responsive */

@media screen and (max-width: 1440px) {
  .footer_maxBox {
    padding: 0.6rem 0 0.45rem;
  }

  .footer_topMaxBox {
    margin-bottom: 0.45rem;
  }

  .footer_topMaxBox h4 {
    margin-bottom: 0.45rem;
  }

  .footer_bottomMaxBox {
    padding-top: 0.6rem;
  }

  .fbm_box {
    padding-bottom: 0.5rem;
  }

  .f_logo {
    width: 2rem;

    margin-bottom: 0.3rem;
  }

  .fbm_box > ul > li h3 {
    margin-bottom: 0.35rem;
  }

  .ft_search .footer_popup_form_btn {
    --search-h: 0.52rem;

    --search-fs: 0.15rem;

    --search-pl: 0.28rem;
  }
}

@media screen and (max-width: 1200px) {
  .footer_maxBox {
    padding: 0.55rem 0 0.4rem;
  }

  .footer_topMaxBox {
    margin-bottom: 0.4rem;
  }

  .footer_bottomMaxBox {
    padding-top: 0.55rem;

    border-radius: 0.18rem;
  }

  .fbm_box > ul > li:not(:last-child) {
    margin-right: 2.5%;
  }

  .fbm_box > ul > li:nth-child(1) {
    margin-right: 6%;
  }

  .f_logo {
    width: 1.8rem;
  }

  .fbm_infoul {
    gap: 0.12rem;
  }

  .fbm_menuul {
    gap: 0.16rem;
  }

  .fbm_box > ul > li dl dt a {
    width: 0.46rem;

    height: 0.46rem;
  }

  .fbm_box > ul > li dl dt a iconify-icon {
    font-size: 0.16rem;
  }

  .ft_search .footer_popup_form_btn {
    --search-h: 0.48rem;

    --search-fs: 0.14rem;

    --search-pl: 0.26rem;
  }
}

@media screen and (max-width: 1024px) {
  .footer_maxBox {
    padding: 0.5rem 0 0.35rem;
  }

  .footer_topMaxBox h3 {
    margin-bottom: 0.15rem;
  }

  .footer_topMaxBox h4 {
    margin-bottom: 0.35rem;
  }

  .footer_bottomMaxBox {
    padding-top: 0.5rem;
  }

  .fbm_box {
    padding-bottom: 0.4rem;
  }

  .fbm_box > ul {
    flex-wrap: wrap;

    row-gap: 0.4rem;
  }

  .fbm_box > ul > li:not(:last-child) {
    margin-right: 0;
  }

  .fbm_box > ul > li:nth-child(1) {
    flex: 1 1 100%;

    margin-right: 0;
  }

  .fbm_box > ul > li:nth-child(2),
  .fbm_box > ul > li:nth-child(3) {
    flex: 1 1 calc(50% - 0.2rem);
  }

  .fbm_box > ul > li:nth-child(4) {
    flex: 1 1 100%;
  }

  .f_logo {
    width: 1.6rem;

    margin-bottom: 0.25rem;
  }

  .fbm_infoul li span {
    width: 0.22rem;
  }

  .footer_privacy {
    padding: 0.25rem 0;
  }

  .ft_search .footer_popup_form_btn {
    --search-h: 0.44rem;

    --search-fs: 0.13rem;

    --search-pl: 0.24rem;
  }

  .ft_top_box {
    background: #057b75;
  }

  .fbm_menuul li a {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  .footer_maxBox {
    padding: 0.45rem 0 0.3rem;
  }

  .footer_topMaxBox {
    margin-bottom: 0.35rem;
  }

  .footer_topMaxBox h4 {
    margin-bottom: 0.3rem;

    line-height: 1.6;
  }

  .footer_bottomMaxBox {
    padding-top: 0.4rem;

    border-radius: 0.15rem;
  }

  .fbm_box > ul {
    row-gap: 0.35rem;
  }

  .fbm_box > ul > li:nth-child(4) {
    flex: 1 1 100%;
  }

  .fbm_box > ul > li:nth-child(2),
  .fbm_box > ul > li:nth-child(3) {
    display: none;
  }

  .fbm_box > ul > li h3 {
    margin-bottom: 0.25rem;
  }

  .fbm_box > ul > li h4 {
    margin-bottom: 0.15rem;
  }

  .f_logo {
    width: 1.4rem;
  }

  .fbm_infoul li {
    gap: 0.15rem;
  }

  .fbm_box > ul > li dl {
    gap: 0.25rem;
  }

  .footer_privacy {
    padding: 0.2rem 0;

    text-align: center;

    line-height: 1.6;
  }

  .ft_search {
    margin-bottom: 0.25rem;
  }

  .ft_search .footer_popup_form_btn {
    --search-h: 0.4rem;

    --search-r: 1rem;

    --search-fs: 0.12rem;

    --search-pl: 0.22rem;

    --search-pad: 0.03rem;
  }

  .ft_top_box {
    height: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .footer_maxBox {
    padding: 0.4rem 0 0.25rem;
  }

  .footer_bottomMaxBox {
    padding-top: 0.35rem;
  }

  .fbm_box {
    padding-bottom: 0.3rem;
  }

  .fbm_box > ul {
    row-gap: 0.3rem;
  }

  .f_logo {
    width: 1.2rem;

    margin-bottom: 0.2rem;
  }

  .fbm_infoul {
    gap: 0.1rem;
  }

  .fbm_menuul {
    gap: 0.12rem;
  }

  .fbm_box > ul > li dl dt a {
    width: 0.42rem;

    height: 0.42rem;
  }

  .fbm_box > ul > li dl dt a iconify-icon {
    font-size: 0.14rem;
  }

  .ft_search .footer_popup_form_btn {
    --search-h: 0.36rem;

    --search-r: 0.9rem;

    --search-fs: 0.11rem;

    --search-pl: 0.2rem;
  }
}

@media screen and (max-width: 425px) {
  .footer_maxBox {
    padding: 0.35rem 0 0.2rem;
  }

  .footer_topMaxBox {
    margin-bottom: 0.3rem;
  }

  .footer_bottomMaxBox {
    padding-top: 0.3rem;

    border-radius: 0.12rem;
  }

  .fbm_box {
    padding-bottom: 0.25rem;
  }

  .f_logo {
    width: 1.05rem;
  }

  .fbm_infoul li span {
    width: 0.18rem;
  }

  .footer_privacy {
    padding: 0.15rem 0;

    font-size: 0.12rem;
  }

  .ft_search .footer_popup_form_btn {
    --search-h: 0.34rem;

    --search-r: 0.8rem;

    --search-fs: 0.1rem;

    --search-pl: 0.18rem;
  }
}

/* bg_right_top  */

.bg_right_top {
  position: absolute;

  right: 0;

  bottom: 0;

  width: 14.3229%;

  z-index: 999;

  pointer-events: none;
}

.bg_right_top img {
  width: 100%;

  object-fit: contain;

  display: block;
}

/* bg_right_bottom */

.bg_right_bottom {
  position: absolute;

  right: 0;

  top: 0;

  width: 14.3229%;

  z-index: 999;

  pointer-events: none;
}

.bg_right_bottom img {
  width: 100%;

  object-fit: contain;

  display: block;
}

/* bg_left_top */

.bg_left_top {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 14.3229%;

  z-index: 999;

  pointer-events: none;
}

.bg_left_top img {
  width: 100%;

  object-fit: contain;

  display: block;

  transform: scaleX(-1);
}

/* bg_left_bottom */

.bg_left_bottom {
  position: absolute;

  left: 0;

  top: 0;

  width: 14.3229%;

  z-index: 999;

  pointer-events: none;
}

.bg_left_bottom img {
  width: 100%;

  object-fit: contain;

  display: block;

  transform: scaleX(-1);
}

/* -----------------------------------home_banner------------------------------- */

.home_banner {
  position: relative;
}

.banner {
  width: 100%;

  overflow: hidden;

  position: relative;
}

.banner .swiper-container {
  margin: 0 auto;

  position: relative;

  overflow: hidden;

  list-style: none;

  padding: 0;
}

.banner .swiper-slide {
  /* height: 0; */

  padding-bottom: 49.15%;

  /* 设置比例 */

  position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.banner-pagination {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  position: absolute;

  left: 11%;

  bottom: 16%;

  width: auto;

  transform: none;

  z-index: 3;

  text-align: left;
}

.banner-pagination.swiper-pagination-custom {
  left: 11%;

  bottom: 16%;

  width: auto;
}

.banner-pagination .bp_frac {
  display: flex;

  align-items: baseline;

  gap: 0.1rem;

  font-size: 0.24rem;

  line-height: 1;

  letter-spacing: 0.04em;
}

.banner-pagination .bp_cur {
  color: #4cc9b0;

  font-weight: 600;
}

.banner-pagination .bp_sep,
.banner-pagination .bp_total {
  color: rgba(255, 255, 255, 0.45);

  font-weight: 400;
}

.banner-pagination .bp_bar {
  position: relative;

  width: 1.8rem;

  height: 2px;

  margin-top: 0.16rem;

  background: rgba(255, 255, 255, 0.28);

  overflow: hidden;
}

.banner-pagination .bp_bar i {
  display: block;

  height: 100%;

  background: #fff;

  transition: width 0.6s ease;
}

.banner_down {
  position: absolute;

  left: 50%;

  bottom: 6%;

  z-index: 4;

  width: 0.5rem;

  transform: translateX(-50%);

  cursor: pointer;
}

.banner_down img {
  display: block;

  width: 100%;

  height: auto;

  filter: brightness(0) invert(1);

  animation: banner-down-float 1.8s ease-in-out infinite;
}

@keyframes banner-down-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.08rem);
  }
}

.banner-button-prev,
.banner-button-next {
  display: block;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.6rem;

  height: 0.6rem;

  cursor: pointer;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  z-index: 3;
}

.banner-button-prev {
  left: -0.8rem;
}

.banner-button-next {
  right: -0.8rem;
}

.banner-button-prev iconify-icon,
.banner-button-next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  font-size: 0.4rem;

  color: #666;
}

.banner-button-prev:hover iconify-icon,
.banner-button-next:hover iconify-icon {
  color: var(--i_color);
}

.banner:hover .banner-button-prev {
  left: 0;
}

.banner:hover .banner-button-next {
  right: 0;
}

.b_text1 {
  position: absolute;

  top: 30%;

  left: 11%;

  z-index: 3;

  text-align: left;

  width: 58%;
}

.b_text1 h3 {
  color: #fff;

  padding-bottom: 0.3rem;

  margin-bottom: 0.3rem;

  position: relative;

  font-family: "Arial Black";
}

.b_text1 h3::before {
  content: "";

  display: block;

  background: #fff;

  width: 10%;

  height: 0.08rem;

  border-radius: 0.04rem;

  position: absolute;

  left: 0;

  bottom: 0;
}

.b_text1 h3 a {
  color: #0b4f6c;
}

.b_text1 h4 {
  color: #fff;

  margin-bottom: 0.5rem;
}

.bt1_btn {
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1024px) {
  .banner-button-prev,
  .banner-button-next {
    display: none;
  }

  .banner-pagination,
  .banner-pagination.swiper-pagination-custom {
    left: 6%;

    bottom: 12%;
  }

  .banner_down {
    width: 0.42rem;

    bottom: 5%;
  }

  .b_text1 {
    top: 21%;
  }
}

@media screen and (max-width: 768px) {
  .b_text1 h3 {
    padding-bottom: 0.2rem;

    margin-bottom: 0.2rem;
  }

  .b_text1 h4 {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .b_text1 {
    display: none;
  }

  .banner-pagination,
  .banner-pagination.swiper-pagination-custom {
    left: 5%;

    bottom: 10%;
  }

  .banner-pagination .bp_frac {
    font-size: 0.14rem;
  }

  .banner-pagination .bp_bar {
    width: 1.4rem;

    margin-top: 0.1rem;
  }

  .banner_down {
    width: 0.36rem;

    bottom: 4%;
  }
}

@media screen and (max-width: 320px) {
}

/* -------------------product------------------ */

.home_product {
  position: relative;

  overflow: hidden;
}

.hp_bg {
}

.hp_bg::before {
  content: "";

  display: block;

  padding-bottom: 46%;
}

.hp_bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.hp_maxbox {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
}

.hpm_info {
  position: absolute;

  left: 10.93%;

  top: 11.5%;

  z-index: 5;

  width: 21.2%;
}

.hpm_btn {
  margin-top: 0.7rem;
}

.hpm_product {
  position: absolute;

  inset: 0;

  z-index: 2;
}

.hpm_product .hp_item {
  width: 25vw;

  display: block;

  position: absolute;

  z-index: 1;

  transition: transform 0.8s cubic-bezier(0.16, 0.35, 0.15, 0.97);
}

.hpm_product .hp_blo {
  animation: hp-float 8s ease-in-out infinite;
}

.hpm_product .hp_img {
  position: relative;
}

.hpm_product .hp_orb {
  width: 100%;

  margin: 0 auto;

  position: relative;

  z-index: 2;

  overflow: hidden;

  filter: blur(0.18vw);

  transition: filter 0.5s cubic-bezier(0.435, 0.25, 0.15, 0.965);
}

.hpm_product .hp_orb::before {
  content: "";

  display: block;

  padding-top: 100%;
}

.hpm_product .hp_orb img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;
}

.hpm_product .hp_glow {
  position: absolute;

  left: 0;

  top: 78%;

  width: 100%;

  z-index: 1;

  opacity: 0;

  pointer-events: none;

  mix-blend-mode: screen;

  transition: opacity 0.5s cubic-bezier(0.435, 0.25, 0.15, 0.965);
}

/* 默认位置与大小 */

.hpm_product .hp_item:nth-child(1) {
  top: 48%;

  left: 38%;

  transform: translate(-50%, -50%) scale(0.64);
}

.hpm_product .hp_item:nth-child(2) {
  top: 46%;

  left: 64%;

  transform: translate(-50%, -50%) scale(0.72);
}

.hpm_product .hp_item:nth-child(2) .hp_blo {
  animation-delay: 1s;
}

.hpm_product .hp_item:nth-child(3) {
  top: 20%;

  left: 78%;

  transform: translate(-50%, -50%) scale(0.52);
}

.hpm_product .hp_item:nth-child(3) .hp_blo {
  animation-delay: 2s;
}

.hpm_product .hp_item:nth-child(4) {
  top: 84%;

  left: 50%;

  transform: translate(-50%, -50%) scale(0.62);
}

.hpm_product .hp_item:nth-child(4) .hp_blo {
  animation-delay: 3s;
}

.hpm_product .hp_item:nth-child(5) {
  top: 72%;

  left: 80%;

  transform: translate(-50%, -50%) scale(0.42);
}

.hpm_product .hp_item:nth-child(5) .hp_blo {
  animation-delay: 4s;
}

/* 激活：放大、去模糊、显示光晕 */

.hpm_product .hp_item.on {
  z-index: 2;
}

.hpm_product .hp_item.on:nth-child(1) {
  transform: translate(-42%, -50%) scale(0.92) !important;
}

.hpm_product .hp_item.on:nth-child(2) {
  transform: translate(-50%, -50%) scale(1) !important;
}

.hpm_product .hp_item.on:nth-child(3) {
  transform: translate(-58%, -32%) scale(0.78) !important;
}

.hpm_product .hp_item.on:nth-child(4) {
  transform: translate(-50%, -68%) scale(0.88) !important;
}

.hpm_product .hp_item.on:nth-child(5) {
  transform: translate(-62%, -58%) scale(0.72) !important;
}

.hpm_product .hp_item.on .hp_orb {
  filter: none;
}

.hpm_product .hp_item.on .hp_glow {
  opacity: 0.9;
}

/* 悬停推开相邻圆 */

.hpm_product.hover_0 .hp_item:nth-child(2) {
  transform: translate(-54%, -50%) scale(0.72);
}

.hpm_product.hover_0 .hp_item:nth-child(3) {
  transform: translate(-50%, -50%) scale(0.52);
}

.hpm_product.hover_0 .hp_item:nth-child(4) {
  transform: translate(-62%, -50%) scale(0.62);
}

.hpm_product.hover_0 .hp_item:nth-child(5) {
  transform: translate(-50%, -50%) scale(0.42);
}

.hpm_product.hover_2 .hp_item:nth-child(1) {
  transform: translate(-50%, -50%) scale(0.64);
}

.hpm_product.hover_2 .hp_item:nth-child(2) {
  transform: translate(-72%, -28%) scale(0.72);
}

.hpm_product.hover_2 .hp_item:nth-child(4) {
  transform: translate(-50%, -50%) scale(0.62);
}

.hpm_product.hover_2 .hp_item:nth-child(5) {
  transform: translate(-50%, -50%) scale(0.42);
}

.hpm_product.hover_3 .hp_item:nth-child(1) {
  transform: translate(-56%, -56%) scale(0.64);
}

.hpm_product.hover_3 .hp_item:nth-child(2) {
  transform: translate(-28%, -56%) scale(0.72);
}

.hpm_product.hover_3 .hp_item:nth-child(3) {
  transform: translate(-50%, -50%) scale(0.52);
}

.hpm_product.hover_3 .hp_item:nth-child(5) {
  transform: translate(-50%, -50%) scale(0.42);
}

.hpm_product.hover_4 .hp_item:nth-child(1) {
  transform: translate(-50%, -50%) scale(0.64);
}

.hpm_product.hover_4 .hp_item:nth-child(2) {
  transform: translate(-68%, -78%) scale(0.72);
}

.hpm_product.hover_4 .hp_item:nth-child(3) {
  transform: translate(-50%, -50%) scale(0.52);
}

.hpm_product.hover_4 .hp_item:nth-child(4) {
  transform: translate(-50%, -50%) scale(0.62);
}

@keyframes hp-float {
  0%,
  100% {
    transform: translateY(3%);
  }

  12.5% {
    transform: translate(-1.8%, 1.8%);
  }

  25% {
    transform: translate(-3%, 0);
  }

  37.5% {
    transform: translate(1.8%, -1.8%);
  }

  50% {
    transform: translateY(-3%);
  }

  62.5% {
    transform: translate(1.8%, -1.8%);
  }

  75% {
    transform: translate(3%, 0);
  }

  87.5% {
    transform: translate(1.8%, 1.8%);
  }
}

@media screen and (max-width: 1440px) {
  .hp_bg::before {
    padding-bottom: 50%;
  }

  .hpm_info {
    width: 24%;

    left: 8%;
  }

  .hpm_product .hp_item {
    width: 24vw;
  }
}

@media screen and (max-width: 1200px) {
  .hp_bg::before {
    padding-bottom: 56%;
  }

  .hpm_info {
    width: 26%;

    left: 6.5%;

    top: 10%;
  }

  .hpm_btn {
    margin-top: 0.5rem;
  }

  .hpm_product .hp_item {
    width: 26vw;
  }

  .hpm_product .hp_item:nth-child(1) {
    left: 42%;
  }

  .hpm_product .hp_item:nth-child(2) {
    left: 68%;
  }
}

@media screen and (max-width: 1024px) {
  .hp_bg::before {
    padding-bottom: 78%;
  }

  .hpm_info {
    left: 6%;

    top: 7%;

    width: 40%;
  }

  .hpm_btn {
    margin-top: 0.36rem;
  }

  .hpm_product .hp_item {
    width: 30vw;
  }

  .hpm_product .hp_glow {
    display: none;
  }

  .hpm_product .hp_orb {
    filter: none;
  }

  .hpm_product .hp_item:nth-child(1) {
    top: 52%;

    left: 28%;

    transform: translate(-50%, -50%) scale(0.7);
  }

  .hpm_product .hp_item:nth-child(2) {
    top: 50%;

    left: 58%;

    transform: translate(-50%, -50%) scale(0.78);
  }

  .hpm_product .hp_item:nth-child(3) {
    top: 24%;

    left: 74%;

    transform: translate(-50%, -50%) scale(0.55);
  }

  .hpm_product .hp_item:nth-child(4) {
    top: 78%;

    left: 42%;

    transform: translate(-50%, -50%) scale(0.66);
  }

  .hpm_product .hp_item:nth-child(5) {
    top: 72%;

    left: 74%;

    transform: translate(-50%, -50%) scale(0.48);
  }

  .hpm_product .hp_item.on:nth-child(1) {
    transform: translate(-50%, -50%) scale(0.9) !important;
  }

  .hpm_product .hp_item.on:nth-child(2) {
    transform: translate(-50%, -50%) scale(0.95) !important;
  }

  .hpm_product .hp_item.on:nth-child(3) {
    transform: translate(-50%, -40%) scale(0.78) !important;
  }

  .hpm_product .hp_item.on:nth-child(4) {
    transform: translate(-50%, -62%) scale(0.86) !important;
  }

  .hpm_product .hp_item.on:nth-child(5) {
    transform: translate(-58%, -55%) scale(0.72) !important;
  }
}

@media screen and (max-width: 768px) {
  .hp_bg::before {
    display: none;
  }

  .hp_bg {
    position: absolute;

    inset: 0;
  }

  .hp_maxbox {
    position: relative;

    height: auto;

    padding: 0.9rem 0.36rem 0.7rem;
  }

  .hpm_info {
    position: relative;

    left: auto;

    top: auto;

    width: 90%;

    z-index: 5;
  }

  .hpm_btn {
    margin-top: 0.32rem;
  }

  .hpm_product {
    position: relative;

    height: 0;

    padding-bottom: 100%;

    margin-top: 0.2rem;
  }

  .hpm_product .hp_item {
    width: 42%;
  }

  .hpm_product .hp_item:nth-child(1) {
    top: 44%;

    left: 26%;

    transform: translate(-50%, -50%) scale(0.72);
  }

  .hpm_product .hp_item:nth-child(2) {
    top: 48%;

    left: 56%;

    transform: translate(-50%, -50%) scale(0.8);
  }

  .hpm_product .hp_item:nth-child(3) {
    top: 22%;

    left: 74%;

    transform: translate(-50%, -50%) scale(0.56);
  }

  .hpm_product .hp_item:nth-child(4) {
    top: 76%;

    left: 36%;

    transform: translate(-50%, -50%) scale(0.7);
  }

  .hpm_product .hp_item:nth-child(5) {
    top: 72%;

    left: 72%;

    transform: translate(-50%, -50%) scale(0.5);
  }

  .hpm_product .hp_item.on:nth-child(3) {
    transform: translate(-50%, -38%) scale(0.76) !important;
  }

  .hpm_product .hp_item.on:nth-child(4) {
    transform: translate(-50%, -60%) scale(0.84) !important;
  }

  .hpm_product .hp_item.on:nth-child(5) {
    transform: translate(-55%, -54%) scale(0.7) !important;
  }
}

@media screen and (max-width: 560px) {
  .hp_maxbox {
    padding: 0.6rem 0.28rem 0.4rem;
  }

  .hpm_btn {
    margin-top: 0.24rem;
  }

  .hpm_product {
    padding-bottom: 108%;
  }

  .hpm_product .hp_item {
    width: 44%;
  }

  .hpm_product .hp_item:nth-child(1) {
    top: 46%;

    left: 28%;
  }

  .hpm_product .hp_item:nth-child(2) {
    top: 50%;

    left: 58%;
  }

  .hpm_product .hp_item:nth-child(3) {
    top: 22%;

    left: 72%;
  }

  .hpm_product .hp_item:nth-child(4) {
    top: 76%;

    left: 34%;
  }

  .hpm_product .hp_item:nth-child(5) {
    top: 72%;

    left: 70%;
  }
}

@media screen and (max-width: 425px) {
  .hp_maxbox {
    padding: 0.3rem 0.2rem 0.3rem;
  }

  .hpm_product {
    padding-bottom: 115%;
  }

  .hpm_product .hp_item {
    width: 46%;
  }

  .hpm_product .hp_item.on:nth-child(5) {
    transform: translate(-58%, -54%) scale(0.68) !important;
  }
}

/* ---------------------Solutions--------------------- */

.home_selection {
  position: relative;

  width: 100%;

  aspect-ratio: 1920 / 920;

  padding: 0;

  background: url(static/images/home_solutions_bg.png) no-repeat center / cover;

  overflow: hidden;
}

.hs_maxbox {
  height: 100%;

  display: flex;

  justify-content: space-between;
}

.hsm_l {
  width: 27.13%;

  padding-top: 30%;
}

.hsm_btn {
  margin-top: 0.3rem;
}

.hsm_r {
  width: 54.8667%; /* 823 / 1500 */

  height: 100%;

  overflow: hidden;
}

.home_solutions_ul {
  display: flex;

  flex-wrap: wrap;

  align-items: flex-start;

  column-gap: 5.711%; /* 47 / 823 */

  padding-top: 1.1rem;
}

.home_solutions_ul li {
  --hsu-pad-t: 0.54rem;

  --hsu-img: 2.4rem;

  --hsu-hd-gap: 0.16rem;

  --hsu-title: 0.9rem;

  --hsu-offset: 1.5rem;

  width: 41.069%; /* 338 / 823 */

  box-sizing: border-box;

  height: calc(
    var(--hsu-pad-t) + 0.4rem + var(--hsu-img) + var(--hsu-hd-gap) +
      var(--hsu-title)
  );

  margin-bottom: 5.711%; /* 47 / 823 */

  padding: 0.54rem 0.4rem 0.4rem 0.4rem;

  overflow: hidden;

  background: #fff;

  border: 1px solid transparent;

  border-radius: 0.2rem;

  box-shadow: 0 0.08rem 0.32rem rgba(15, 40, 36, 0.08);

  transition:
    padding 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.6s ease,
    box-shadow 0.6s ease;
}

.home_solutions_ul li:nth-child(2) {
  margin-top: var(--hsu-offset);
}

.home_solutions_ul li:nth-child(2n + 3) {
  margin-top: calc(var(--hsu-offset) * -1);
}

.home_solutions_ul li a {
  display: flex;

  flex-direction: column;

  height: 100%;

  min-height: 0;
}

.hsu_img {
  position: relative;

  width: 100%;

  flex: 1 1 0;

  min-height: 0;

  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hsu_img span {
  position: absolute;

  inset: 0;

  display: block;

  overflow: hidden;

  border-radius: 0.12rem;
}

.hsu_img span::before {
  content: "";

  display: block;

  height: 100%;
}

.hsu_img span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hsu_hd {
  display: flex;

  flex-direction: column;

  gap: 0.12rem;

  flex-shrink: 0;

  margin-top: 0.16rem;

  min-height: 0.9rem;

  transition:
    min-height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    gap 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.hsu_hd h3 {
  min-width: 0;

  font-weight: 700;

  color: #222;

  line-height: 1.3;

  transition: color 0.55s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.home_solutions_ul li a > p {
  flex-shrink: 0;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 7;

  overflow: hidden;

  max-height: 0;

  margin: 0;

  opacity: 0;

  color: #666;

  line-height: 1.5;

  word-break: break-word;

  transition:
    max-height 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease,
    margin-top 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.hsu_icon {
  flex-shrink: 0;

  align-self: flex-end;

  width: 0.35rem;

  height: 0.35rem;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  transition:
    height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease;
}

.hsu_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.home_solutions_ul li.on,
.home_solutions_ul li:hover {
  padding: 0.36rem 0.4rem 0.4rem 0.4rem;

  border-color: var(--i_color);

  box-shadow: 0 0.12rem 0.4rem rgba(6, 140, 127, 0.14);
}

.home_solutions_ul li.on .hsu_hd,
.home_solutions_ul li:hover .hsu_hd {
  min-height: 0;

  gap: 0;
}

.home_solutions_ul li.on .hsu_hd h3,
.home_solutions_ul li:hover .hsu_hd h3 {
  color: var(--i_color);
}

.home_solutions_ul li.on a > p,
.home_solutions_ul li:hover a > p {
  max-height: 10.5em;

  opacity: 1;

  margin-top: 0.08rem;
}

.home_solutions_ul li.on .hsu_icon,
.home_solutions_ul li:hover .hsu_icon {
  height: 0;

  opacity: 0;

  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .home_solutions_ul:hover li.on:not(:hover) {
    padding: 0.54rem 0.4rem 0.4rem 0.4rem;

    border-color: transparent;

    box-shadow: 0 0.08rem 0.32rem rgba(15, 40, 36, 0.08);
  }

  .home_solutions_ul:hover li.on:not(:hover) .hsu_hd {
    min-height: 0.9rem;

    gap: 0.12rem;
  }

  .home_solutions_ul:hover li.on:not(:hover) .hsu_hd h3 {
    color: #222;
  }

  .home_solutions_ul:hover li.on:not(:hover) a > p {
    max-height: 0;

    opacity: 0;

    margin-top: 0;
  }

  .home_solutions_ul:hover li.on:not(:hover) .hsu_icon {
    height: 0.4rem;

    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .home_selection {
    aspect-ratio: auto;

    min-height: 0;
  }

  .hs_maxbox {
    height: auto;

    flex-wrap: wrap;

    padding-top: 0.8rem;

    padding-bottom: 0.8rem;
  }

  .hsm_l {
    width: 100%;

    padding-top: 0;
  }

  .hsm_r {
    width: 100%;

    height: auto;

    overflow: visible;

    margin-top: 0.4rem;
  }

  .home_solutions_ul {
    padding-top: 0;
  }

  .home_solutions_ul li {
    width: 47%;

    --hsu-offset: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  .home_solutions_ul {
    column-gap: 0;
  }

  .home_solutions_ul li {
    width: 100%;

    --hsu-offset: 0;
  }

  .hs_maxbox {
    padding-top: 0.6rem;

    padding-bottom: 0.6rem;
  }
}

@media screen and (max-width: 560px) {
  .hs_maxbox {
    width: 96vw;

    padding-top: 0.3rem;

    padding-bottom: 0.3rem;
  }

  .home_solutions_ul li,
  .home_solutions_ul li.on,
  .home_solutions_ul li:hover {
    padding-left: 0.24rem;

    padding-right: 0.24rem;
  }

  .home_solutions_ul li {
    padding: 0.3rem 0.2rem 0.3rem 0.2rem;
  }

  .home_solutions_ul li.on,
  .home_solutions_ul li:hover {
    padding: 0.3rem 0.2rem 0.3rem 0.2rem;
  }
}

/* 占位卡片 */

.home_placeholder_card {
  width: 100%;

  display: flex;

  justify-content: center;

  overflow: hidden;
}

.hpc_maxbox {
  width: 48.2%;
}

.hpc_maxbox img {
  width: 100%;

  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .hpc_maxbox {
    width: 80%;
  }
}

@media screen and (max-width: 560px) {
  .hpc_maxbox {
    width: 100%;
  }
}

/* --------------applications------------- */

.home_applications {
  position: relative;

  width: 100%;

  overflow: hidden;
}

.ha_maxbox {
  position: relative;

  width: 100%;
}

.ha_maxbox::before {
  content: "";

  display: block;

  padding-bottom: 44.791666%; /* 860 / 1920 */
}

.ha_maxbox::after {
  content: "";

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.3);

  position: absolute;

  top: 0;

  left: 0;

  z-index: 2;
}

.ha_bgs {
  position: absolute;

  inset: 0;

  z-index: 1;
}

.ha_bgs span {
  position: absolute;

  inset: 0;

  opacity: 0;

  transition: opacity 0.6s ease;
}

.ha_bgs span.on {
  opacity: 1;

  z-index: 1;
}

.ha_bgs img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.ha_title {
  position: absolute;

  top: 12.5%;

  left: 50%;

  transform: translateX(-50%);

  z-index: 3;
}

.home_applications .public_title {
  display: flex;

  justify-content: center;
}

.home_applications .public_title h3 {
  color: #fff;

  margin-bottom: 0;
}

.ha_tabs {
  position: absolute;

  left: 6.5%;

  right: 6.5%;

  bottom: 10.5%;

  z-index: 4;

  display: flex;

  align-items: flex-end;

  gap: 0.15rem;
}

.ha_tabs li {
  position: relative;

  z-index: 1;

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  align-items: flex-end;

  cursor: pointer;

  color: #fff;

  border-bottom: 0.02rem solid #fff;
}

.ha_tabs li:last-child {
  justify-content: flex-end;
}

.ha_tabs li .hat_blo {
  max-width: 100%;

  min-width: 0;

  padding: 0 0 0.3rem;

  box-sizing: border-box;

  border-radius: 0.1rem;

  overflow: hidden;

  transform-origin: left bottom;

  transition:
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ha_tabs li h3 {
  font-weight: bold;
}

.ha_tabs li p {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  margin: 0;

  transform: translateY(0.1rem);

  transition:
    grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s 0.08s ease,
    margin 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s 0.06s cubic-bezier(0.22, 1, 0.36, 1);
}

.ha_tabs li p span {
  min-height: 0;

  overflow: hidden;
}

.ha_tabs li.on {
  border-bottom: transparent 0.02rem solid;
}

.ha_tabs li.on .hat_blo {
  padding: 0.3rem 0.15rem 0.25rem;

  box-sizing: border-box;

  border: 1px solid rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(42px);

  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);

  background: rgba(255, 255, 255, 0.22);
}

.ha_tabs li.on p {
  grid-template-rows: 1fr;

  opacity: 1;

  margin-top: 0.06rem;

  transform: translateY(0);
}

@media screen and (max-width: 1440px) {
  .ha_tabs li .hat_blo {
    max-width: 2.5rem;
  }
}

@media screen and (max-width: 1200px) {
  .ha_tabs {
    left: 4%;

    right: 4%;

    bottom: 8%;
  }

  .ha_tabs li h3 {
    white-space: normal;

    overflow-wrap: break-word;

    word-break: break-word;
  }

  .ha_tabs li .hat_blo {
    max-width: 2.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .ha_maxbox::before {
    padding-bottom: 56%;
  }

  .ha_title {
    top: 8%;
  }

  .ha_tabs {
    left: 3%;

    right: 3%;

    bottom: 6%;
  }

  .ha_tabs li .hat_blo {
    max-width: 1.9rem;
  }
}

@media screen and (max-width: 768px) {
  .ha_maxbox::before {
    padding-bottom: 88%;
  }

  .ha_title {
    top: 0.36rem;

    width: 90%;
  }

  .ha_tabs {
    left: 4%;

    right: 4%;

    bottom: 0.28rem;

    flex-wrap: wrap;

    row-gap: 0.12rem;
  }

  .ha_tabs li {
    flex: 1 1 42%;
  }

  .ha_tabs li .hat_blo {
    max-width: none;

    width: 100%;

    padding: 0.12rem 0.14rem;

    background: rgba(28, 36, 42, 0.28);
  }

  .ha_tabs li.on {
    flex: 1 1 100%;
  }

  .ha_tabs li.on .hat_blo {
    padding: 0.16rem 0.18rem;
  }
}

@media screen and (max-width: 560px) {
  .ha_maxbox::before {
    padding-bottom: 130%;
  }

  .ha_tabs li {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 375px) {
  .ha_maxbox::before {
    padding-bottom: 150%;
  }
}

/* -------------------------About Us----------------- */

.home_about_us {
  position: relative;

  background: #f0f8f8;

  overflow: hidden;
}

.hau_bg {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  overflow: hidden;

  z-index: 0;

  pointer-events: none;
}

.hau_bg_strand {
  transform-origin: 50% 50%;

  will-change: transform;

  animation: hau-helix 10s ease-in-out infinite;
}

.hau_bg_strand.is-back {
  position: absolute;

  left: 5%;

  right: -5%;

  bottom: 0;

  opacity: 0.55;

  animation-delay: -2.5s;
}

.hau_bg_strand.is-front {
  position: relative;
}

.hau_bg_track {
  display: flex;

  width: 200%;

  will-change: transform;

  animation: hau-bg-move 50s linear infinite;
}

.hau_bg_strand.is-back .hau_bg_track {
  animation-delay: -18s;
}

.hau_bg img {
  width: 50%;

  flex-shrink: 0;

  object-fit: contain;
}

@keyframes hau-bg-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hau-helix {
  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(-1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hau_bg_strand,
  .hau_bg_track {
    animation: none;
  }
}

.hau_maxbox {
  position: relative;

  z-index: 1;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.hau_l {
  width: 45.4%;
}

.hau_btn {
  margin-top: 0.5rem;
}

.hau_r {
  width: 45.8%;
}

.hau_r ul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.hau_r ul li {
  display: flex;

  justify-content: space-between;

  padding-bottom: 0.2rem;

  align-items: center;

  border-bottom: 1px solid #d8d8d8;

  cursor: pointer;
}

.hau_r ul li span {
  color: #9e9e9e;
}

.hau_r ul li .haur_i {
  display: flex;

  gap: 0.2rem;

  align-items: center;

  width: 29%;
}

.hau_r ul li .haur_i h3 {
  color: #999999;

  font-weight: bold;

  display: flex;

  font-family: "Advent Pro";

  width: 50%;

  flex-shrink: 0;
}

.hau_r ul li .haur_i h3 p {
  color: #999999;

  font-weight: bold;

  display: flex;

  font-family: "Advent Pro";
}

.hau_r ul li .haur_i h4 {
  color: #9e9e9e;
}

.hau_r ul li:hover .haur_i h3,
.hau_r ul li:hover .haur_i h3 p {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .hau_r ul li .haur_i {
    width: 34%;
  }
}

@media screen and (max-width: 1200px) {
  .hau_l {
    width: 46%;
  }

  .hau_r {
    width: 50%;
  }

  .hau_r ul li span {
    flex: 1;

    min-width: 0;

    padding-right: 0.16rem;
  }

  .hau_r ul li .haur_i {
    width: auto;

    max-width: 46%;

    flex-shrink: 0;
  }

  .hau_r ul li .haur_i h3 {
    width: auto;
  }
}

@media screen and (max-width: 1024px) {
  .hau_maxbox {
    flex-wrap: wrap;

    align-items: flex-start;
  }

  .hau_l,
  .hau_r {
    width: 100%;
  }

  .hau_btn {
    margin-top: 0.36rem;
  }

  .hau_r {
    margin-top: 0.5rem;
  }

  .hau_r ul li .haur_i {
    max-width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .hau_btn {
    margin-top: 0.28rem;
  }

  .hau_r {
    margin-top: 0.4rem;
  }

  .hau_r ul {
    gap: 0.16rem;
  }

  .hau_r ul li {
    padding-bottom: 0.16rem;

    gap: 0.12rem;
  }

  .hau_r ul li .haur_i {
    gap: 0.12rem;

    max-width: 48%;
  }
}

@media screen and (max-width: 560px) {
  .hau_r {
    margin-top: 0.3rem;
  }

  .hau_r ul {
    gap: 0.12rem;
  }

  .hau_r ul li {
    padding-bottom: 0.14rem;

    align-items: flex-end;
  }

  .hau_r ul li .haur_i {
    max-width: none;

    width: auto;
  }

  .hau_bg {
    opacity: 0.6;
  }
}

/* ----------------------我们的优势-------------- */

.home_our_advantages {
  position: relative;

  overflow: hidden;
}

.hoa_maxbox {
  position: relative;

  display: grid;

  grid-template-columns: 41% 1fr 23.8%;

  align-items: stretch;
}

.hoa_maxbox::before {
  content: "";

  grid-column: 1 / -1;

  grid-row: 1;

  padding-bottom: 52.0667%; /* 781 / 1500 */

  pointer-events: none;
}

.hoa_l {
  grid-column: 1;

  grid-row: 1;

  z-index: 2;

  display: flex;

  flex-direction: column;
}

.hoa_title {
  margin-bottom: 1rem;
}

.hoa_title h4 {
  width: 85%;
}

.hoa_tab {
  display: flex;

  flex-direction: column;

  gap: 0.28rem;

  width: 53%;

  margin-top: 1rem;

  padding-bottom: 0.2rem;
}

.hoa_tab li {
  padding-bottom: 0.18rem;

  border-bottom: 0.02rem solid #d8d8d8;

  color: #222;

  cursor: pointer;

  transition:
    color 0.35s ease,
    border-color 0.35s ease;

  position: relative;
}

.hoa_tab li::before {
  content: "";

  display: block;

  width: 0%;

  height: 0.02rem;

  background: var(--i_color);

  position: absolute;

  bottom: -0.01rem;

  left: 0;

  transition: all 0.45s ease;
}

.hoa_tab li.active {
  color: var(--i_color);

  border-color: transparent;
}

.hoa_tab li.active::before {
  width: 100%;
}

.hoa_c {
  position: absolute;

  left: 50%;

  bottom: 0;

  transform: translateX(-50%);

  width: 51.7333%; /* 776 / 1500 */

  z-index: 3;

  pointer-events: none;
}

.hoa_pic {
  position: relative;

  width: 100%;
}

.hoa_pic::before {
  content: "";

  display: block;

  padding-bottom: 86.9845%; /* 675 / 776 */
}

.hoa_pic li {
  position: absolute;

  inset: 0;

  opacity: 0;

  z-index: 0;

  transition: opacity 0.55s ease;
}

.hoa_pic li.active {
  opacity: 1;

  z-index: 1;
}

.hoa_pic li img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.hoa_r {
  grid-column: 3;

  grid-row: 1;

  z-index: 4;

  align-self: flex-end;

  width: auto;
}

.hoa_info {
  display: grid;
}

.hoa_info li {
  grid-area: 1 / 1;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.hoa_info li.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.hoa_r h3 {
  color: #cccccc;

  font-weight: bold;

  margin-bottom: 0.2rem;

  text-align: right;
}

.hoa_r h4 {
  color: #222222;

  margin-bottom: 0.25rem;
}

.hoa_r h5 {
  color: #666666;
}

@media screen and (max-width: 1200px) {
  .hoa_tab {
    width: 82%;
  }
}

@media screen and (max-width: 1024px) {
  .hoa_maxbox {
    display: flex;

    flex-wrap: wrap;

    align-items: flex-start;
  }

  .hoa_maxbox::before {
    display: none;
  }

  .hoa_l,
  .hoa_r {
    width: 100%;
  }

  .hoa_l {
    min-height: 0;
  }

  .hoa_title h4 {
    width: 100%;
  }

  .hoa_tab {
    width: 100%;

    margin-top: 0.4rem;

    padding-bottom: 0;
  }

  .hoa_c {
    position: relative;

    left: auto;

    bottom: auto;

    transform: none;

    width: 72%;

    margin: 0.5rem auto 0.3rem;

    z-index: 1;

    pointer-events: auto;
  }

  .hoa_r {
    align-self: stretch;
  }

  .hoa_r h3 {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .hoa_title {
    margin-bottom: 0.5rem;
  }

  .hoa_c {
    width: 86%;
  }

  .hoa_tab {
    gap: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .hoa_c {
    width: 100%;
  }

  .hoa_title {
    margin-bottom: 0.2rem;
  }

  .hoa_tab {
    margin-top: 0.2rem;
  }
}

/* ------------------合作伙伴----------------- */

.home_partner {
  position: relative;

  width: 100%;

  aspect-ratio: 1920 / 750;

  display: flex;

  flex-direction: column;

  background: url(static/images/hp_bg.png) no-repeat center / cover;
}

.hpt_maxbox {
  display: flex;

  flex-direction: column;

  flex: 1;

  height: 100%;

  min-height: 0;
}

.hpt_contain {
  position: relative;

  margin-top: 0.3rem;

  flex: 1;

  min-height: 0;
}

.hpt_icon {
  position: absolute;

  background: #fff;

  border-radius: 50%;

  object-fit: contain;

  --hpt-x: 0px;

  animation: hpt-float 3.2s ease-in-out infinite;
}

.hpt_icon1 {
  width: 7.8667%; /* 118 / 1500 */

  top: 74%;

  left: 3%;

  animation-duration: 3s;
}

.hpt_icon2 {
  width: 5.8%; /* 87 / 1500 */

  top: 38%;

  left: 8%;

  animation-duration: 3.6s;

  animation-delay: 0.4s;
}

.hpt_icon3 {
  width: 10.7333%; /* 161 / 1500 */

  top: 50%;

  left: 18%;

  animation-duration: 3.3s;

  animation-delay: 0.8s;
}

.hpt_icon4 {
  width: 10.8%; /* 102 / 1500 */

  top: 5%;

  left: 23%;

  background: #68b83b;

  animation-duration: 3.5s;

  animation-delay: 0.2s;
}

.hpt_icon5 {
  width: 12.8667%; /* 193 / 1500 */

  top: 7%;

  left: 50%;

  --hpt-x: -50%;

  animation-duration: 3.8s;

  animation-delay: 0.6s;
}

.hpt_icon6 {
  width: 11.3333%; /* 170 / 1500 */

  top: 42%;

  left: 66%;

  animation-duration: 3.1s;

  animation-delay: 1s;
}

.hpt_icon7 {
  width: 9%; /* 135 / 1500 */

  top: 0%;

  left: 73%;

  animation-duration: 3.4s;

  animation-delay: 0.3s;
}

.hpt_icon8 {
  width: 6.4667%; /* 97 / 1500 */

  top: 62%;

  left: 90%;

  animation-duration: 3.7s;

  animation-delay: 0.7s;
}

@keyframes hpt-float {
  0%,
  100% {
    translate: var(--hpt-x) 0;
  }

  50% {
    translate: var(--hpt-x) -0.16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hpt_icon {
    animation: none;
  }
}

@media screen and (max-width: 768px) {
  .hpt_icon5 {
    top: -6%;

    left: 50%;
  }

  .hpt_icon8 {
    width: 7%;

    top: 62%;

    left: 85%;
  }

  @keyframes hpt-float {
    0%,
    100% {
      translate: var(--hpt-x) 0;
    }

    50% {
      translate: var(--hpt-x) -0.1rem;
    }
  }
}

@media screen and (max-width: 560px) {
  .home_partner {
    aspect-ratio: 1920 / 1000;
  }

  .hpt_icon1 {
    width: 13%;

    top: 41%;

    left: 1%;
  }

  .hpt_icon2 {
    width: 10%;

    top: -13%;

    left: 8%;
  }

  .hpt_icon4 {
    width: 11%;

    top: -27%;

    left: 26%;
  }

  .hpt_icon3 {
    width: 12%;

    top: 19%;

    left: 20%;
  }

  .hpt_icon5 {
    width: 13%;

    top: -22%;

    left: 50%;
  }

  .hpt_icon6 {
    width: 12%;

    top: 37%;

    left: 66%;
  }

  .hpt_icon7 {
    width: 11%;

    top: 0%;

    left: 81%;
  }

  .hpt_icon8 {
    width: 8%;

    top: 62%;

    left: 89%;
  }

  @keyframes hpt-float {
    0%,
    100% {
      translate: var(--hpt-x) 0;
    }

    50% {
      translate: var(--hpt-x) -0.05rem;
    }
  }
}

/* ------------------新闻------------------- */

.home_news {
  position: relative;

  background: linear-gradient(180deg, #fff 42%, #f3fbf8 100%);
}

.hn_maxbox {
}

.hnm_top {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.hnm_contain {
  padding-top: 0.28rem;
}

.hnm_contain ul {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 0.35rem; /* 35 */
}

.hnm_contain li {
  position: relative;

  min-width: 0;

  box-sizing: border-box;

  padding: 0.5rem 0.25rem 0.3rem 0.25rem;

  background: #fff;

  border: 1px solid transparent;

  border-radius: 0.2rem;

  box-shadow: 0 0.08rem 0.32rem rgba(15, 40, 36, 0.08);

  transition:
    translate 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s ease,
    box-shadow 0.45s ease;
}

.hnm_contain li a {
  display: flex;

  flex-direction: column;

  height: 100%;
}

.hnm_icon {
  position: absolute;

  top: 0.5rem;

  right: 0.25rem;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.3rem;

  height: 0.3rem;

  pointer-events: none;

  transition:
    top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnm_icon::before {
  content: "";

  position: absolute;

  inset: -0.08rem;

  z-index: 0;

  background: url(static/images/home_news_right_bg.png) center / contain
    no-repeat;

  opacity: 0;

  transform: scale(0.45);

  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.hnm_icon img {
  position: relative;

  z-index: 1;

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: filter 0.35s ease;
}

.hnm_date {
  display: block;

  padding-right: 0.36rem;

  color: #999;

  line-height: 1.4;
}

.hnm_contain li h3 {
  min-height: 2.8em;

  margin-top: 0.18rem;

  font-weight: 700;

  color: #222;

  line-height: 1.4;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: color 0.4s ease;
}

.hnm_img {
  position: relative;

  width: 100%;

  margin-top: 0.18rem;

  overflow: hidden;

  border-radius: 0.12rem;
}

.hnm_img::before {
  content: "";

  display: block;

  height: 2.36rem; /* 236 */
}

.hnm_img img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnm_contain li:hover {
  z-index: 2;

  translate: 0 -0.22rem;

  border-color: var(--i_color);

  box-shadow: 0 0.12rem 0.4rem rgba(6, 140, 127, 0.14);
}

.hnm_contain li:hover .hnm_icon {
  top: -0.22rem;

  right: 0.28rem;

  width: 0.56rem;

  height: 0.56rem;

  color: #fff;

  font-size: 0.22rem;
}

.hnm_contain li:hover .hnm_icon img {
  filter: brightness(0) invert(1);

  width: 50%;

  height: 50%;
}

.hnm_contain li:hover .hnm_icon::before {
  opacity: 1;

  transform: scale(1);
}

.hnm_contain li:hover h3 {
  color: var(--i_color);
}

.hnm_contain li:hover .hnm_img img {
  transform: scale(1.08);
}

@media screen and (max-width: 1024px) {
  .hnm_contain {
    padding-top: 0.2rem;
  }

  .hnm_contain li {
    padding: 0.4rem 0.22rem 0.26rem;
  }

  .hnm_icon {
    top: 0.4rem;

    right: 0.22rem;
  }

  .hnm_img::before {
    height: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .hnm_contain ul {
    grid-template-columns: 1fr;

    gap: 0.24rem;
  }

  .hnm_contain li h3 {
    min-height: 0;
  }

  .hnm_img::before {
    height: 2.2rem;
  }
}

@media screen and (max-width: 560px) {
  .hnm_contain li {
    padding: 0.32rem 0.2rem 0.22rem;
  }

  .hnm_contain li:hover {
    translate: none;
  }

  .hnm_icon {
    top: 0.32rem;

    right: 0.2rem;
  }

  .hnm_img::before {
    height: 1.8rem;
  }

  .hnm_contain li:hover .hnm_icon {
    top: -0.12rem;

    right: 0.28rem;

    width: 0.35rem;

    height: 0.35rem;
  }

  .hnm_icon {
    width: 0.22rem;

    height: 0.22rem;
  }
}

/* ---------------------------------------public_banner --------------------------------------- */

.public_banner {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.public_banner::before {
  content: "";

  display: block;

  padding-bottom: 36.6%;
}

.public_banner .pub_bg {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transform: scale(1.2);

  animation: scaleIn 1.8s ease-out forwards;
}

@keyframes scaleIn {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

/* ----------------public_banner_info-------------------- */

.public_banner_info {
  position: absolute;

  top: 38.57%;

  left: 10.8%;

  width: 50%;
}

.pc_in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

  position: relative;
}

.pc_in_position .pip_box {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 0.1rem;
}

.pc_in_position a {
  display: block;

  font-size: 0.18rem;

  color: #fff;

  position: relative;

  line-height: 1;
}

.pc_in_position a:first-child {
  padding-left: 0.26rem;
}

.pc_in_position a:first-child::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.18rem;

  height: 0.18rem;

  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="%23fff" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;

  background-size: contain;
}

.pc_in_position a:not(:last-child):after {
  content: ">";

  margin: 0 4px;

  color: #fff;

  margin-left: 0.1rem;
}

.pc_in_position a:last-child {
  color: #4cc9b0 !important;
}

.pc_in_position a:hover {
  color: #4cc9b0;
}

.pub_info {
}

.pub_info_tit {
  position: relative;

  width: fit-content;

  margin-bottom: 0.15rem;
}

.pub_info h3 {
  font-family: "Arial Black";

  text-transform: capitalize;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #ffffff;

  mix-blend-mode: overlay;

  position: relative;

  z-index: 1;
}

.pub_info_tit img {
  position: absolute;

  left: 0;

  bottom: 4%;

  max-width: 100%;

  pointer-events: none;
}

.pub_info h4 {
  color: #fff;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
}

@media screen and (max-width: 1024px) {
  .public_banner_info {
    top: 27%;
  }
}

@media screen and (max-width: 768px) {
  .public_banner_info {
    top: 8%;

    width: 80%;
  }
}

@media screen and (max-width: 560px) {
  .public_banner_info {
    left: 5%;

    top: 55%;
  }

  .pub_info {
    display: none;
  }

  .pc_in_position a {
    font-size: 0.16rem;
  }

  .pc_in_position a:first-child::before {
    width: 0.16rem;

    height: 0.16rem;
  }

  .pc_in_position a:first-child {
    padding-left: 0.2rem;
  }

  .pc_in_position .pip_box {
    gap: 0.05rem;
  }

  .pc_in_position a:not(:last-child):after {
    margin-left: 0.05rem;
  }

  .pc_in_position {
    padding: 0.1rem 0;
  }
}

.public_banner_info .pip_box {
  animation: pubBannerLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.public_banner_info .pub_info_tit h3 {
  animation: pubBannerUp 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.public_banner_info .pub_info_tit img {
  transform-origin: left center;

  animation: pubBannerLine 0.9s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.public_banner_info .pub_info h4 {
  animation: pubBannerUp 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pubBannerLeft {
  from {
    opacity: 0;

    transform: translateX(-0.24rem);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes pubBannerUp {
  from {
    opacity: 0;

    transform: translateY(0.28rem);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes pubBannerLine {
  from {
    opacity: 0;

    transform: scaleX(0.35);
  }

  to {
    opacity: 1;

    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .public_banner_info .pip_box,
  .public_banner_info .pub_info_tit h3,
  .public_banner_info .pub_info_tit img,
  .public_banner_info .pub_info h4 {
    animation: none;
  }
}

/* ----------------news_banenr------------------ */

@media screen and (max-width: 560px) {
  .news_banenr {
    top: 35%;
  }
}

/* -------------------product.html--------------- */

.product_list {
  position: relative;

  background: #f5fcff;
}

.pl_maxbox {
  position: relative;

  z-index: 2;
}

.pl_maxbox .plm_h3 {
  color: #222222;

  font-weight: 700;
}

.pl_maxbox .plm_h3 span {
  color: var(--i_color);

  font-weight: 700;
}

.pl_maxbox .plm_h4 {
  color: #666666;

  width: 67.8%;
}

.plm_ul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.plm_ul li a {
  display: flex;

  align-items: stretch;

  box-sizing: border-box;

  padding: 0.32rem 0.4rem 0.65rem 0.15rem;

  background: #fff;

  border: 1px solid transparent;

  border-radius: 0.2rem;

  box-shadow: 0 0.08rem 0.32rem rgba(15, 40, 36, 0.08);

  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.plu_img {
  width: 22.7333%; /* 341 / 1500 */

  flex-shrink: 0;

  align-self: center;

  display: block;

  position: relative;

  overflow: hidden;
}

.plu_img::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.plu_img img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}

.plu_info {
  flex: 1;

  min-width: 0;

  display: flex;

  flex-direction: column;

  padding: 0.12rem 0.36rem 0.08rem 0.28rem;
}

.plu_info h3 {
  font-weight: 700;

  color: #222;

  transition: color 0.35s ease;
}

.plu_info h4 {
  color: var(--i_color);
}

.plu_info p {
  color: #999;
}

.plu_tags {
  display: flex;

  flex-wrap: wrap;

  gap: 0.1rem;

  margin-top: auto;

  padding-top: 0.22rem;
}

.plu_tags span {
  display: inline-flex;

  align-items: center;

  box-sizing: border-box;

  padding: 0.04rem 0.18rem;

  color: #999;

  border: 1px solid #dcdcdc;

  border-radius: 1rem;
}

.plu_icon {
  flex-shrink: 0;

  align-self: center;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.48rem;

  height: 0.48rem;

  border: 1px solid var(--i_color);

  border-radius: 50%;

  background: #fff;

  color: var(--i_color);

  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.plu_icon iconify-icon {
  color: inherit;
}

.plm_ul li a:hover {
  border-color: var(--i_color);

  background: #f3fbfa;
}

.plm_ul li a:hover .plu_info h3 {
  color: var(--i_color);
}

.plm_ul li a:hover .plu_icon {
  background: var(--i_color);

  color: #fff;
}

@media screen and (max-width: 1024px) {
  .pl_maxbox .plm_h4 {
    width: 100%;
  }

  .plm_ul li a {
    padding: 0.28rem 0.28rem 0.4rem 0.12rem;
  }

  .plu_img {
    width: 26%;
  }

  .plu_info {
    padding: 0.08rem 0.24rem 0.04rem 0.2rem;
  }

  .plu_icon {
    width: 0.4rem;

    height: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .plm_ul li a {
    padding: 0.24rem 0.24rem 0.32rem 0.12rem;
  }

  .plu_img {
    width: 32%;
  }

  .plu_info {
    padding: 0.04rem 0.2rem 0 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .plm_ul {
    gap: 0.16rem;
  }

  .plm_ul li a {
    flex-direction: column;

    align-items: stretch;

    padding: 0.24rem 0.2rem 0.28rem;

    position: relative;
  }

  .plu_img {
    width: 48%;

    margin: 0 auto;
  }

  .plu_info {
    width: 100%;

    padding: 0.08rem 0 0;
  }

  .plu_icon {
    position: absolute;

    right: 0.16rem;

    top: 0.16rem;

    width: 0.36rem;

    height: 0.36rem;
  }
}

/* ------------------productDetail.html-------------------  */

.pd_top {
  background: url(static/images/productDetail_top_bg.png) no-repeat center/cover;

  position: relative;
}

.pdt_maxbox {
  z-index: 2;
}

.pdt_t {
  position: relative;
}

.pdt_t .pdtt_box {
  display: flex;

  justify-content: space-between;

  border-bottom: 1px solid rgba(51, 51, 51, 0.2);

  padding-bottom: 0.4rem;
}

.pdti_bg {
  position: absolute;

  transform: translateY(-50%);

  top: 50%;

  right: 5.7%;

  z-index: 0;

  pointer-events: none;
}

.pdt_l {
  width: 55.6%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  position: relative;

  z-index: 1;
}

.pdt_l h1 {
  color: #222222;

  font-family: "Arial Black";

  font-weight: 900;
}

.pdt_l h3 {
  font-weight: bold;

  color: var(--i_color);
}

.pdt_l_mediabox {
}

.pdtl_btn {
  display: flex;

  gap: 0.4rem;
}

.pdtl_media {
  display: flex;

  gap: 0.1rem;

  align-items: center;
}

.pdtl_media p {
  color: #333333;
}

.pdtl_media dl {
  display: flex;

  gap: 0.25rem;
}

.pdtl_media dl a {
}

.pdtl_media dl a iconify-icon {
  color: #666666;

  font-size: 0.25rem;

  transition: all 0.35s ease;
}

.pdtl_media dl a:hover iconify-icon {
  color: var(--i_color);
}

.pdt_r {
  width: 38.73%;

  position: relative;
}

.pdt_r .pdtr_img {
  width: 100%;

  object-fit: contain;

  z-index: 2;
}

.pdt_r .pdtr_downloadbtn {
  position: absolute;

  right: 12%;

  bottom: 8%;

  width: 24.48%;

  object-fit: contain;

  z-index: 2;

  display: block;
}

.pdt_r .pdtr_downloadbtn img {
  width: 100%;

  object-fit: contain;
}

.pd_top .in_position {
  animation: pubBannerLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pd_top .pdtl_info h1 {
  animation: pubBannerUp 0.85s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pd_top .pdtl_info h3 {
  animation: pubBannerUp 0.85s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pd_top .pdtl_btn {
  animation: pubBannerUp 0.85s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pd_top .pdtl_media {
  animation: pubBannerUp 0.85s 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pd_top .pdt_r {
  animation: pdHeroImg 1s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pd_top .pdtr_img {
  animation: pdHeroFloat 4.5s 1.2s ease-in-out infinite;
}

.pd_top .pdtr_downloadbtn {
  animation: pdHeroFloat 4.5s 1.2s ease-in-out infinite;
}

@keyframes pdHeroImg {
  from {
    opacity: 0;

    transform: translateX(0.3rem) scale(0.94);
  }

  to {
    opacity: 1;

    transform: translateX(0) scale(1);
  }
}

@keyframes pdHeroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd_top .in_position,
  .pd_top .pdtl_info h1,
  .pd_top .pdtl_info h3,
  .pd_top .pdtl_btn,
  .pd_top .pdtl_media,
  .pd_top .pdt_r,
  .pd_top .pdtr_img {
    animation: none;
  }
}

.pdt_info {
}

.pdt_info h3 {
  display: flex;

  gap: 0.1rem;

  color: #222222;

  font-weight: bold;

  align-items: center;
}

.pdt_info h3 img {
  width: 0.3rem;

  object-fit: contain;
}

.pdt_info ul {
  display: flex;

  gap: 0.5rem;
}

.pdt_info ul li {
  position: relative;

  overflow: hidden;

  flex: 1;

  min-width: 0;

  box-sizing: border-box;

  padding: 0.4rem 0.36rem 0.36rem 0.42rem;

  background: #fff;

  border-radius: 0.16rem;

  box-shadow: 0 0.08rem 0.32rem rgba(15, 40, 36, 0.08);
}

.pdbi_line {
  position: relative;

  z-index: 1;

  width: 0.01rem;

  height: 0.5rem;

  margin-bottom: 0.12rem;

  background: #d8d8d8;
}

.pdbi_bg {
  position: absolute;

  top: 0;

  right: 0;

  width: 37.9259%; /* 128 / 337.5，337.5 = (1500 - 1.5rem) / 4 */

  z-index: 0;

  pointer-events: none;
}

.pdbi_bg::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.pdbi_bg img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;
}

.pdt_info ul li h4 {
  position: relative;

  z-index: 1;

  font-weight: 700;

  color: #222;
}

.pdt_info ul li p {
  position: relative;

  z-index: 1;

  color: #666;
}

@media screen and (max-width: 1024px) {
  .pdt_t .pdtt_box {
    padding-bottom: 0.3rem;
  }

  .pdt_l {
    width: 52%;
  }

  .pdt_r {
    width: 44%;
  }

  .pdti_bg {
    width: 36%;

    right: 2%;

    opacity: 0.4;
  }

  .pdtl_btn {
    gap: 0.2rem;
  }

  .pdt_info ul {
    flex-wrap: wrap;
  }

  .pdt_info ul li {
    flex: 0 0 calc((100% - 0.5rem) / 2);

    padding: 0.3rem 0.28rem 0.28rem 0.32rem;
  }
}

@media screen and (max-width: 768px) {
  .pdt_t .pdtt_box {
    flex-direction: column;

    align-items: stretch;

    row-gap: 0.3rem;

    padding-bottom: 0.24rem;
  }

  .pdt_l,
  .pdt_r {
    width: 100%;
  }

  .pdt_r {
    order: -1;

    width: 62%;

    margin: 0 auto;
  }

  .pdti_bg {
    display: none;
  }

  .pdt_l_mediabox {
    margin-top: 0.28rem;
  }

  .pdtl_btn {
    margin-bottom: 0.24rem;
  }
}

@media screen and (max-width: 560px) {
  .pdt_t .pdtt_box {
    row-gap: 0.2rem;

    padding-bottom: 0.2rem;

    border-bottom: none;
  }

  .pdt_r {
    width: 82%;
  }

  .pdtl_btn {
    flex-wrap: wrap;

    gap: 0.12rem;

    margin-bottom: 0.2rem;
  }

  .pdtl_media {
    flex-wrap: wrap;
  }

  .pdtl_media dl {
    gap: 0.16rem;
  }

  .pdtl_media dl a iconify-icon {
    font-size: 0.22rem;
  }

  .pdt_info ul {
    gap: 0.3rem;
  }

  .pdt_info ul li {
    flex: 0 0 100%;

    padding: 0.24rem 0.22rem 0.22rem 0.24rem;
  }

  .pdbi_line {
    height: 0.3rem;

    margin-bottom: 0.08rem;
  }

  .pdt_info h3 img {
    width: 0.24rem;
  }
}

/* -------------------------编辑器内容------------------- */

.pd_edit_box {
  background: #f5fcff;
}

.pdeb_maxbox {
}

.pdeb_maxbox .pdeb_title {
  padding-bottom: 0.2rem;

  border-bottom: 1px solid #999999;

  color: #222222;
}

.pdeb_maxbox .pdeb_title span {
  display: flex;

  align-items: center;

  gap: 0.1rem;

  position: relative;

  width: fit-content;

  font-weight: bold;
}

.pdeb_maxbox .pdeb_title span::before {
  content: "";

  display: block;

  width: 100%;

  height: 0.02rem;

  background: var(--i_color);

  position: absolute;

  left: 0;

  bottom: -0.21rem;
}

.pdeb_maxbox .pdeb_title span img {
  width: 0.3rem;

  object-fit: contain;
}

.pd_specifications {
}

.pd_specifications h3 {
  color: #222222;

  font-weight: bold;

  position: relative;

  padding-left: 0.2rem;
}

.pd_specifications h3::before {
  content: "";

  display: block;

  width: 0.14rem;

  height: 0.14rem;

  border-radius: 50%;

  background: var(--i_color);

  position: absolute;

  top: 50%;

  left: 0;

  transform: translateY(-50%);
}

.pds_box {
  display: flex;

  gap: 0.35rem;

  align-items: center;
}

.pds_box span {
  padding: 0.1rem 0.3rem;

  border-radius: 2.27rem;

  background: var(--i_color);

  font-weight: bold;

  color: #fff;
}

.pds_box p {
  font-weight: bold;

  color: var(--i_color);
}

.pd_application_fields {
}

.pd_application_fields h3 {
  color: #222222;

  font-weight: bold;

  position: relative;

  padding-left: 0.2rem;
}

.pd_application_fields h3::before {
  content: "";

  display: block;

  width: 0.14rem;

  height: 0.14rem;

  border-radius: 50%;

  background: var(--i_color);

  position: absolute;

  top: 50%;

  left: 0;

  transform: translateY(-50%);
}

.pd_application_fields ul li {
  display: flex;

  align-items: center;

  gap: 0.5rem;

  padding: 0.5rem 0;

  border-bottom: 1px solid #e5e5e5;

  cursor: pointer;
}

.pd_application_fields ul li:nth-child(even) {
  flex-direction: row-reverse;
}

.pdaf_img {
  width: 54.6667%; /* 820 / 1500 */

  flex-shrink: 0;

  position: relative;

  overflow: hidden;

  border-radius: 0.1rem;

  box-shadow: 0 0.08rem 0.24rem rgba(15, 40, 36, 0);

  transition: box-shadow 0.5s ease;
}

.pdaf_img::before {
  content: "";

  display: block;

  padding-bottom: 51.2195%; /* 420 / 820 */
}

.pdaf_img::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(6, 140, 127, 0) 55%,

    rgba(6, 140, 127, 0.22) 100%
  );

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.5s ease;
}

.pdaf_img img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1);

  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdaf_info {
  flex: 1;

  min-width: 0;
}

.pdaf_icon {
  display: block;

  width: 0.52rem;

  line-height: 0;

  transform: translateY(0);

  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdaf_icon img {
  display: block;

  width: 100%;

  height: auto;

  object-fit: contain;
}

.pdaf_info h4 {
  display: inline-block;

  font-weight: 700;

  color: var(--i_color);

  margin: 0.14rem 0 0.12rem;

  position: relative;
}

.pdaf_info h4::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -0.04rem;

  width: 0;

  height: 0.02rem;

  background: var(--i_color);

  transition: width 0.45s ease;
}

.pdaf_info p {
  color: #666;

  line-height: 1.6;

  transition: color 0.35s ease;
}

.pd_application_fields ul li:hover .pdaf_img {
  box-shadow: 0 0.12rem 0.36rem rgba(6, 140, 127, 0.18);
}

.pd_application_fields ul li:hover .pdaf_img img {
  transform: scale(1.08);
}

.pd_application_fields ul li:hover .pdaf_img::after {
  opacity: 1;
}

.pd_application_fields ul li:hover .pdaf_icon {
  transform: translateY(-0.06rem);
}

.pd_application_fields ul li:hover .pdaf_info h4::after {
  width: 100%;
}

.pd_application_fields ul li:hover .pdaf_info p {
  color: #444;
}

@media screen and (max-width: 1024px) {
  .pd_application_fields ul li {
    padding: 0.36rem 0;
  }

  .pdaf_icon {
    width: 0.44rem;
  }

  .pdaf_info h4 {
    margin: 0.1rem 0 0.08rem;
  }
}

@media screen and (max-width: 768px) {
  .pd_application_fields ul li,
  .pd_application_fields ul li:nth-child(even) {
    flex-direction: column;

    align-items: stretch;

    gap: 0.24rem;

    padding: 0.3rem 0;
  }

  .pdaf_img {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .pdaf_icon {
    width: 0.4rem;
  }

  .pd_application_fields ul li,
  .pd_application_fields ul li:nth-child(even) {
    padding: 0 0 0.2rem 0;
  }
}

/* -------------------横幅---------------- */

.pd_streamer_bg {
  display: flex;

  justify-content: center;

  background: #f5fcff;
}

.pd_streamer_bg img {
  width: 61.6%;

  object-fit: contain;
}

@media screen and (max-width: 560px) {
  .pd_streamer_bg img {
    width: 100%;
  }
}

/* ------------------------------------------single_two------------------------------------------ */

.single_two_bac {
  background: #e7f6f7;

  box-sizing: border-box;

  padding: 0.56rem 0;
}

.single_two {
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  flex-wrap: wrap;

  gap: 0.15rem;

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

  border-bottom: 1px solid #d8d8d8;
}

.bottom_single_tags p {
  font-size: 0.18rem;

  color: #333333;

  display: flex;

  align-items: center;
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  padding: 0.1rem 0.12rem;

  font-size: 0.16rem;

  color: #333;
}

.bottom_single_tags a:hover {
  color: var(--i_color);

  text-decoration: underline;
}

.sx {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;

  box-sizing: border-box;
}

.sx > div {
  width: 48%;
}

.sx_left {
  box-sizing: border-box;
}

.sx_left a i {
  margin-right: 0.1rem;

  box-sizing: border-box;
}

.sx_right a i {
  margin-left: 0.1rem;

  box-sizing: border-box;
}

.sx_left a i,
.sx_right a i {
  border: 1px solid var(--i_color);

  box-sizing: border-box;

  width: 0.46rem;

  height: 0.46rem;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  flex-shrink: 0;
}

.sx_left a i iconify-icon,
.sx_right a i iconify-icon {
  font-size: 0.24rem;

  color: var(--i_color);
}

.sx .sx_left:hover i iconify-icon,
.sx .sx_right:hover i iconify-icon {
  color: #fff;
}

.sx .sx_left:hover i,
.sx .sx_right:hover i {
  background: var(--i_color);
}

.sx a {
  display: block;

  width: 100%;

  display: flex;

  display: -webkit-flex;

  align-items: center;
}

.sx p {
  font-size: 0.18rem;

  color: #333333;

  text-transform: capitalize;

  margin-right: 0.1rem;
}

.sx span {
  font-size: 0.16rem;

  color: #333333;

  transition: all 0.3s ease;
}

.sx_right a {
  justify-content: flex-end;
}

.sx .sx_left:hover span {
  color: var(--i_color) !important;
}

.sx .sx_left:hover p {
  color: var(--i_color) !important;
}

.sx .sx_right:hover p {
  color: var(--i_color) !important;
}

.sx .sx_right:hover span {
  color: var(--i_color) !important;
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1200px) {
  .bottom_single_tags a {
    padding: 0.08rem 0.1rem;

    font-size: 0.14rem;
  }

  .bottom_single_tags {
    align-items: center;
  }
}

@media screen and (max-width: 1024px) {
  .sx_left a i,
  .sx_right a i {
    width: 0.35rem;

    height: 0.35rem;
  }

  .sx_left a i iconify-icon,
  .sx_right a i iconify-icon {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 960px) {
}

@media screen and (max-width: 768px) {
  .sx {
    gap: 0.2rem 0;
  }

  .sx > div {
    width: 100%;
  }

  .sx a {
    flex-wrap: wrap;
  }

  .sx_right a {
    justify-content: normal;
  }

  .sx .sx_left span,
  .sx .sx_right span {
    font-size: 0.12rem;
  }

  .sx .sx_left i,
  .sx .sx_right {
    display: none;
  }

  .sx .sx_left iconify-icon,
  .sx .sx_right iconify-icon {
    display: none;
  }

  .sx_left a i {
    margin-right: 0;
  }
}

@media screen and (max-width: 560px) {
  .bottom_single_tags {
    gap: 0;

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }

  .sx_left a i,
  .sx_right a i {
    width: 0;

    height: 0;
  }

  .single_two_bac {
    padding: 0.3rem 0;
  }
}

/* ----------------------------faq------------------------- */

/* ---------------productsDetail_faq---------------- */

.productsDetail_faq {
  background: url(static/images/productDetail_faq_bg.webp) no-repeat
    center/cover;

  position: relative;
}

.pdfaq_maxbox {
}

.pdfaq_contain {
}

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0.3rem;
}

.faq_ul li {
  position: relative;

  border-radius: 0.06rem;

  overflow: hidden;

  box-shadow: 0px 4px 16px 0px rgba(6, 140, 127, 0.11);
}

.faq_ul li.on {
  background: var(--i_color);
}

.faq_ul li span {
  position: absolute;

  right: 6%;

  bottom: 0;

  display: block;

  width: 25%;

  height: 80%;

  opacity: 0;

  pointer-events: none;

  z-index: 0;

  transition: all 0.35s ease;
}

.faq_ul li span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.faq_q {
  background: rgba(255, 255, 255, 0.6);

  box-sizing: border-box;

  padding: 0.2rem 0.3rem;

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  align-items: center;

  z-index: 1;

  position: relative;
}

.faq_ul i {
  border-radius: 0rem;

  display: block;

  color: #333333;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  font-weight: bold;

  flex-shrink: 0;
}

.faq_q h2 {
  color: #333;

  width: calc(100% - 0.72rem);

  box-sizing: border-box;
}

.faq_q i {
  width: 0.44rem;

  height: 0.44rem;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  background: var(--i_color);

  border-radius: 50%;

  margin-right: 0.1rem;

  flex-shrink: 0;
}

.faq_q i::before {
  content: "Q";
}

.faq_ul li.on .faq_q i::before {
  content: "A";
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0rem 0.3rem 0.2rem 0.8rem;

  z-index: 1;

  position: relative;
}

.faq_a p {
  width: 84%;

  color: #fff;
}

.faq_q h3 {
  width: 0.4rem;

  height: 0.4rem;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  transition: all 0.3s ease;

  position: relative;
}

.faq_q h3::after {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 2px;

  height: 0.2rem;

  background-color: #333;

  transition: all 0.3s ease;
}

.faq_q h3::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  height: 2px;

  width: 0.2rem;

  background-color: #333;
}

.faq_ul li.on .faq_q h3::after {
  height: 0 !important;

  background-color: #fff !important;
}

.faq_ul li.on .faq_q h3::before {
  background-color: #fff !important;
}

.faq_ul li.on .faq_q {
  background: transparent;
}

.faq_ul li.on .faq_q i {
  background: #fff;

  color: var(--i_color);
}

.faq_ul li.on .faq_q h2 {
  color: #fff !important;

  font-weight: bold;
}

.faq_ul li.on span {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .faq_q h2 {
    /* padding-left: 0.15rem; */
  }

  .faq_a p {
    /* padding-left: 0.15rem; */

    font-size: 0.14rem;

    line-height: 0.24rem;
  }
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1200px) {
  .faq_bac {
    padding-bottom: 0.6rem;
  }

  .faq_q {
    padding: 0.15rem 0.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .faq_q h2 {
  }
}

@media screen and (max-width: 959px) {
}

@media screen and (max-width: 768px) {
  .faq_q {
    padding: 0.2rem 0.4rem;
  }

  .faq_ul li span {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .faq_q {
    padding: 0.2rem;
  }

  .faq_a {
    padding: 0rem 0.3rem 0.1rem 0.3rem;
  }

  .faq_ul i {
    width: 0.3rem;

    height: 0.3rem;
  }

  .faq_q h2 {
    width: calc(100% - 0.3rem);
  }

  .faq_a p {
    width: calc(100% - 0.3rem);
  }

  .faq_ul {
    gap: 0.2rem;
  }

  .faq_q i {
    width: 0.3rem;

    height: 0.3rem;
  }

  .faq_q h3::after {
    height: 0.16rem;
  }

  .faq_q h3::before {
    width: 0.16rem;
  }
}

@media screen and (max-width: 425px) {
  .faq_q {
    padding: 0.1rem 0.2rem;
  }
}

/* ----------------------产品视频---------------------- */

.productDetail_product_video {
  background: #f5fcff;
}

.pdpv_maxbox {
}

.pdpv_conatin {
}

.pdpv_list {
  position: relative;

  overflow: hidden;
}

.pdpv_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.pdpv_list li {
  flex-shrink: 0;

  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.pdpv_list li .pdpv_imgbox {
  position: relative;

  display: block;

  width: 100%;

  margin-bottom: 0.15rem;
}

.pdpv_list li .pdpv_imgbox::before {
  content: "";

  display: block;

  padding-bottom: 58.5%;
}

.pdpv_list li .pdpv_imgbox .pdpv_img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.pdpv_list li .pdpv_imgbox .pdpv_icon {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  display: block;

  width: 1.4rem;

  cursor: pointer;
}

.pdpv_list li .pdpv_imgbox .pdpv_icon img {
  width: 100%;

  object-fit: contain;
}

.pdpv_list li p {
  text-align: center;

  width: 50%;
}

.pdpv_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

.pdpv_pagination .swiper-pagination-bullet {
  width: 0.08rem;

  height: 0.08rem;

  display: inline-block;

  margin: 0 6px;

  background: #ccc;

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;
}

.pdpv_pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .pdpv_list li .pdpv_imgbox .pdpv_icon {
    width: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .pdpv_list li .pdpv_imgbox .pdpv_icon {
    width: 0.8rem;
  }

  .pdpv_list li .pdpv_imgbox {
    margin-bottom: 0.05rem;
  }

  .pdpv_pagination {
    margin-top: 0.2rem;
  }
}

/* ----------------------solutions.html------------------ */

/* ------------------card------------------- */

.solution_top_card {
  position: relative;

  background: #f5fcff;

  overflow: hidden;
}

.stc_maxbox {
  position: relative;

  z-index: 2;
}

.stcm_info {
  display: flex;

  justify-content: space-between;
}

.stcmi_l {
  width: 33.53%;

  min-width: 0;
}

.stcmi_l h3 {
  font-weight: 900;

  color: #222222;
}

.stcmi_l h4 {
  font-weight: bold;

  color: #999999;
}

.stcmi_l h4 span {
  color: var(--i_color);
}

.stcmi_r {
  width: 56.26%;

  min-width: 0;

  color: #666666;
}

.stcmi_r h3 {
}

.stcm_card {
  margin-top: 1rem;

  padding: 0.5rem 0.4rem;

  background: rgba(255, 255, 255, 0.9);

  border-radius: 0.2rem;

  box-shadow: 0 0.04rem 0.16rem rgba(6, 140, 127, 0.11);
}

.stcm_card ul {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  align-items: start;
}

.stcm_card ul li {
  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  gap: 0.18rem;
}

.stcmc_icon {
  width: 0.9rem;

  display: block;

  position: relative;

  overflow: hidden;

  flex-shrink: 0;
}

.stcmc_icon::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.stcmc_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}

.stcm_card ul li h4 {
  font-weight: 700;

  color: #222222;
}

@media screen and (max-width: 1200px) {
  .stcmi_l {
    width: 38%;
  }

  .stcmi_r {
    width: 58%;
  }
}

@media screen and (max-width: 1024px) {
  .stcm_info {
    flex-direction: column;

    align-items: stretch;

    gap: 0.4rem;
  }

  .stcmi_l,
  .stcmi_r {
    width: 100%;
  }

  .solution_top_card {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .stcm_info {
    gap: 0.3rem;
  }

  .stcm_card {
    margin-top: 0.6rem;

    padding: 0.36rem 0.24rem;
  }

  .stcm_card ul {
    grid-template-columns: repeat(2, 1fr);

    row-gap: 0.4rem;
  }

  .solution_top_card {
    padding-bottom: 0.4rem;
  }
}

@media screen and (max-width: 560px) {
  .stcm_info {
    gap: 0.24rem;
  }

  .stcm_card {
    padding: 0.3rem 0.16rem;

    border-radius: 0.16rem;
  }

  .stcm_card ul {
    row-gap: 0.32rem;
  }

  .stcm_card ul li {
    gap: 0.12rem;
  }

  .solution_top_card {
    padding-bottom: 0.3rem;
  }
}

/* --------------解决方案价值--------------- */

.solution_value {
  position: relative;

  background: #eaf6fb url(static/images/sv_bg.png) no-repeat center / cover;

  overflow: hidden;

  margin-top: -1rem;
}

.sv_maxbox {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: space-between;

  align-items: stretch;
}

.sv_l {
  width: 35%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 0.15rem 0 0.2rem;
}

.sv_l > h3 {
  color: #222222;

  font-family: "Arial Black";
}

.sv_tabs {
  position: relative;

  padding-left: 0.28rem;
}

.sv_tabs::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 0.02rem;

  background: #e6e6e6;
}

.sv_tabs li {
  position: relative;

  padding: 0.16rem 0;

  cursor: pointer;

  color: #c8c8c8;

  transition: color 0.35s ease;
}

.sv_tabs li::before {
  content: "";

  position: absolute;

  left: -0.28rem;

  top: 0.18rem;

  width: 0.03rem;

  height: 0;

  background: var(--i_color);

  border-radius: 0.02rem;

  transition: height 0.4s ease;
}

.sv_tabs li h4 {
  font-weight: 700;

  transition: color 0.35s ease;
}

.svt_desc {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  color: #666666;

  transition:
    grid-template-rows 0.45s ease,
    opacity 0.35s ease,
    margin 0.45s ease;
}

.svt_desc span {
  min-height: 0;

  overflow: hidden;
}

.sv_tabs li.active {
  color: var(--i_color);
}

.sv_tabs li.active::before {
  height: calc(100% - 0.28rem);
}

.sv_tabs li.active .svt_desc {
  grid-template-rows: 1fr;

  opacity: 1;

  margin-top: 0.12rem;
}

.sv_r {
  width: 37.9333%; /* 569 / 1500 */

  position: relative;

  flex-shrink: 0;

  align-self: center;

  padding-right: 5%;
}

.svr_pic {
  width: 100%;

  display: block;

  position: relative;
}

.svr_pic::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.svr_pic ul {
  position: absolute;

  inset: 0;
}

.svr_pic ul::after {
  content: "";

  position: absolute;

  right: 2%;

  top: 12%;

  z-index: -1;

  width: 0.77rem;

  height: 0.77rem;

  border-radius: 50%;

  background: var(--i_color);

  pointer-events: none;
}

.svr_pic li {
  position: absolute;

  inset: 0;

  overflow: hidden;

  border-radius: 50%;

  opacity: 0;

  z-index: 0;

  transition: opacity 0.55s ease;
}

.svr_pic li.active {
  opacity: 1;

  z-index: 1;
}

.svr_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

@media screen and (max-width: 1200px) {
  .solution_value {
    margin-top: -0.6rem;
  }

  .sv_l > h3 {
    margin-bottom: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .sv_maxbox {
    flex-direction: column;

    align-items: stretch;

    gap: 0.5rem;
  }

  .sv_l {
    width: 100%;

    padding: 0;

    gap: 0.4rem;
  }

  .sv_r {
    width: 62%;

    margin: 0 auto;
  }

  .solution_value {
    margin-top: 0rem;
  }

  .sv_l > h3 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .sv_r {
    width: 72%;
  }

  .sv_tabs li {
    padding: 0.12rem 0;
  }
}

@media screen and (max-width: 560px) {
  .sv_r {
    width: 86%;
  }

  .svr_pic ul::after {
    width: 0.5rem;

    height: 0.5rem;
  }
}

/* -------------------核心技术优势------------------- */

.solutions_core_technology_advantages {
  background: #f5fcff;
}

.scta_maxbox {
  position: relative;

  z-index: 2;
}

.sctam_title {
}

.sctam_title h4 {
  width: 80%;
}

.sctam_contain ul {
  display: flex;

  gap: 0.3rem;

  align-items: stretch;

  padding-top: 0.12rem;
}

.sctam_contain ul li {
  flex: 1;

  min-width: 0;

  display: flex;

  box-sizing: border-box;

  overflow: visible;

  cursor: pointer;
}

.sctac_item {
  flex: 1;

  width: 100%;

  display: flex;

  flex-direction: column;

  padding: 0 0.3rem;

  border-left: 0.01rem solid #e6e6e6;

  position: relative;

  top: 0;

  transition: top 0.35s ease;
}

.sctac_icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.66rem;

  height: 0.66rem;

  margin-bottom: 0.2rem;

  border-radius: 0.1rem;

  background: #4cc9b0;

  flex-shrink: 0;
}

.sctac_icon img {
  display: block;

  width: 72.72%;

  height: 72.72%;

  object-fit: contain;

  filter: brightness(0) invert(1);
}

.sctam_contain ul li h3 {
  font-weight: 700;

  color: #222222;

  margin-bottom: 0.12rem;

  transition: color 0.35s ease;
}

.sctam_contain ul li p {
  color: #666666;

  margin-bottom: 0.3rem;
}

.sctac_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;

  margin-top: auto;

  border-radius: 0.1rem;
}

.sctac_pic::before {
  content: "";

  display: block;

  padding-bottom: 43.0769%; /* 126 / 292.5，292.5 = (1500 - 0.9rem) / 4 - 0.6rem */
}

.sctac_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.sctam_contain ul li:hover .sctac_item {
  top: -0.1rem;
}

.sctam_contain ul li:hover h3 {
  color: #4cc9b0;
}

@media screen and (max-width: 1024px) {
  .sctam_title h4 {
    width: 100%;
  }

  .sctam_contain ul {
    flex-wrap: wrap;

    row-gap: 0.4rem;
  }

  .sctam_contain ul li {
    flex: 0 0 calc((100% - 0.3rem) / 2);
  }

  .sctac_icon {
    width: 0.5rem;

    height: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sctam_contain ul li {
    padding-bottom: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .sctam_contain ul {
    flex-direction: column;

    gap: 0.36rem;
  }

  .sctam_contain ul li {
    flex: none;

    width: 100%;

    padding: 0 0.15rem;
  }

  .sctac_icon {
    width: 0.45rem;

    height: 0.45rem;
  }

  .sctam_contain ul li p {
    margin-bottom: 0.2rem;
  }
}

/* -------------------推荐产品--------------------- */

.solutions_related_products {
  position: relative;

  overflow: hidden;

  background: url(static/images/srp_bg.webp) no-repeat center/cover;
}

.srp_maxbox {
  position: relative;

  z-index: 2;
}

.srp_head {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 0.4rem;
}

.srp_intro {
  width: 42%;

  flex-shrink: 0;
}

.srp_intro h3 {
  font-family: "Arial Black";

  color: #222222;

  margin-bottom: 0.16rem;
}

.srp_intro h4 {
  color: #666666;
}

.srp_tabs {
  display: flex;

  align-items: center;

  flex-shrink: 0;

  background: rgba(6, 140, 127, 0.16);

  border-radius: 2rem;
}

.srp_tabs li {
  padding: 0.12rem 0.26rem;

  border-radius: 2rem;

  color: #222222;

  cursor: pointer;

  white-space: nowrap;

  user-select: none;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.srp_tabs li:hover:not(.active) {
  color: var(--i_color);
}

.srp_tabs li.active {
  background: var(--i_color);

  color: #fff;
}

.srp_visual {
  position: relative;

  z-index: 1;

  margin-top: 0.2rem;

  min-height: 4.8rem;
}

.solutions_related_products .hau_bg {
  top: 50%;

  bottom: auto;

  transform: translateY(-50%) scale(1.2);

  z-index: 0;
}

.srp_stage {
  position: relative;

  z-index: 2;
}

.srp_panel {
  display: none;
}

.srp_panel.active {
  display: block;
}

.srp_orbs {
  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 5.2rem;
}

.srp_orbs li {
  flex: 0 1 22%;

  width: 22%;

  min-width: 0;
}

.srp_orbs li:nth-child(odd) {
  align-self: flex-end;

  padding-bottom: 0.18rem;
}

.srp_orbs li:nth-child(even) {
  align-self: flex-start;

  padding-top: 0.12rem;
}

.srp_orbs a {
  display: block;
}

.srp_float {
  animation: srp-float 7s ease-in-out infinite;
}

.srp_orbs li:nth-child(2) .srp_float {
  animation-delay: -1.6s;
}

.srp_orbs li:nth-child(3) .srp_float {
  animation-delay: -3.2s;
}

.srp_orbs li:nth-child(4) .srp_float {
  animation-delay: -4.8s;
}

.srp_orbs li:nth-child(5) .srp_float {
  animation-delay: -2.4s;
}

.srp_orb {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;
}

.srp_orb::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.srp_orb img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.srp_orbs a:hover .srp_orb img {
  transform: scale(1.06);
}

@keyframes srp-float {
  0%,
  100% {
    transform: translateY(0.06rem);
  }

  50% {
    transform: translateY(-0.08rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .srp_float {
    animation: none;
  }
}

@media screen and (max-width: 1024px) {
  .srp_head {
    flex-direction: column;

    align-items: flex-start;

    gap: 0.28rem;
  }

  .srp_intro {
    width: 100%;
  }

  .srp_tabs {
    width: 100%;

    justify-content: flex-start;
  }

  .srp_visual,
  .srp_orbs {
    min-height: 3.8rem;
  }
}

@media screen and (max-width: 768px) {
  .srp_tabs {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-radius: 0.2rem;
  }

  .srp_tabs li {
    text-align: center;

    padding: 0.1rem 0.12rem;
  }

  .srp_orbs {
    flex-wrap: wrap;

    justify-content: center;

    gap: 0.1rem 0.2rem;

    min-height: 0;
  }

  .srp_orbs li {
    flex: 0 0 42%;

    width: 42%;
  }

  .srp_orbs li:nth-child(odd),
  .srp_orbs li:nth-child(even) {
    align-self: center;

    padding: 0;
  }

  .srp_visual {
    min-height: 0;

    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .srp_orbs li {
    flex: 0 0 46%;

    width: 46%;
  }
}

/* -------------------services.html-------------------- */

.service_oem_btn {
  position: relative;

  z-index: 99;

  width: fit-content;

  height: 0;

  margin-left: 10.8%;
}

.service_oem_btn ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.25rem;

  transform: translateY(-50%);
}

.service_oem_btn ul li {
  position: relative;

  z-index: 0;

  overflow: hidden;

  padding: 0.15rem 0.58rem;

  border-radius: 2.3rem;

  box-sizing: border-box;

  border: none;

  white-space: nowrap;

  background: rgba(255, 255, 255, 0.9);

  box-shadow:
    0 0.04rem 0.16rem rgba(6, 140, 127, 0.11),
    inset 0 0 0 0.01rem #fff;

  cursor: pointer;

  color: var(--i_color);

  font-weight: bold;

  transition:
    color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.service_oem_btn ul li a {
  color: inherit;

  font-weight: inherit;
}

.service_oem_btn ul li::before {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  background: linear-gradient(270deg, #008376 0%, #6cdd68 100%);

  opacity: 0;

  transform: scale(0.92);

  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: -1;
}

.service_oem_btn ul li::after {
  content: "";

  position: absolute;

  top: 0;

  left: -50%;

  width: 40%;

  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );

  transform: skewX(-22deg);

  opacity: 0;

  pointer-events: none;
}

.service_oem_btn ul li:hover {
  color: #fff;

  background: #008376;

  transform: translateY(-0.03rem);

  box-shadow: 0 0.08rem 0.24rem rgba(6, 140, 127, 0.28);
}

.service_oem_btn ul li:hover::before {
  opacity: 0.88;

  transform: scale(1);
}

.service_oem_btn ul li:hover::after {
  animation: sob-shine 0.7s ease;
}

.service_oem_btn ul li.active {
  color: #fff;

  background: #008376;

  box-shadow: 0 0.08rem 0.28rem rgba(6, 140, 127, 0.32);
}

.service_oem_btn ul li.active::before {
  opacity: 1;

  transform: scale(1);
}

.service_oem_btn ul li.active:hover {
  transform: translateY(-0.03rem);
}

@keyframes sob-shine {
  0% {
    opacity: 0;

    left: -50%;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service_oem_btn ul li,
  .service_oem_btn ul li::before {
    transition: none;
  }

  .service_oem_btn ul li:hover::after {
    animation: none;
  }
}

.service_maxbox,
.oem_odm_maxbox {
  display: none;
}

.service_maxbox.active,
.oem_odm_maxbox.active {
  display: block;
}

/* -----------------基本信息--------------- */

.services_info {
  position: relative;

  z-index: 2;

  overflow: visible;

  background: url(static/images/services_info_bg.webp) no-repeat center/cover;
}

.si_icon {
  position: absolute;

  left: 50%;

  bottom: -0.64rem;

  z-index: 99;

  width: 1.28rem;

  transform: translateX(-50%);
}

.si_icon::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.si_icon img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  animation: si-spin 18s linear infinite;
}

@keyframes si-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .si_icon img {
    animation: none;
  }
}

.si_maxbox {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.sim_img {
  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: 0.1rem;
}

.sim_img img {
  width: 61.6%;

  object-fit: contain;
}

.si_maxbox h3 {
  width: 80%;

  text-align: center;

  color: #666666;
}

@media screen and (max-width: 1024px) {
  .service_oem_btn {
    margin-left: 4%;
  }

  .service_oem_btn ul {
    gap: 0.16rem;
  }

  .service_oem_btn ul li {
    padding: 0.12rem 0.32rem;
  }

  .services_info {
    padding-bottom: 0.85rem;
  }

  .sim_img img {
    width: 68%;
  }

  .si_maxbox h3 {
    width: 90%;
  }

  .si_icon {
    width: 1.1rem;

    bottom: -0.55rem;
  }
}

@media screen and (max-width: 768px) {
  .service_oem_btn {
    margin-left: 4%;
  }

  .service_oem_btn ul {
    gap: 0.12rem;
  }

  .service_oem_btn ul li {
    padding: 0.1rem 0.26rem;
  }

  .services_info {
    padding-bottom: 0.75rem;
  }

  .sim_img {
    margin-bottom: 0.16rem;
  }

  .sim_img img {
    width: 82%;
  }

  .si_maxbox h3 {
    width: 100%;
  }

  .si_icon {
    width: 0.96rem;

    bottom: -0.48rem;
  }
}

@media screen and (max-width: 560px) {
  .service_oem_btn {
    margin-left: 5%;

    margin-right: 5%;
  }

  .service_oem_btn ul {
    gap: 0.1rem;
  }

  .service_oem_btn ul li {
    padding: 0.08rem 0.22rem;
  }

  .services_info {
    padding-bottom: 0.65rem;
  }

  .sim_img img {
    width: 100%;
  }

  .si_icon {
    width: 0.8rem;

    bottom: -0.4rem;
  }

  .service_oem_btn ul li {
    font-size: 0.14rem;
  }
}

/* -----------------服务优势------------------- */

.services_service_advantage {
  position: relative;

  overflow: visible;

  background: url(static/images/ssa_bg.webp) no-repeat center/cover;
}

.ssa_maxbox {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.ssa_pic {
  width: 30.7018%; /* 525 / 1710 */

  flex-shrink: 0;

  align-self: flex-end;

  display: block;

  position: relative;

  overflow: hidden;
}

.ssa_pic::before {
  content: "";

  display: block;

  padding-bottom: 119.0476%; /* 625 / 525 */
}

.ssa_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.ssa_mid {
  width: 21.2865%; /* 364 / 1710 */

  flex-shrink: 0;

  min-width: 0;

  align-self: flex-start;
}

.ssa_mid h3 {
  color: #222222;

  margin-bottom: 0.36rem;

  font-family: "Arial Black";
}

.ssa_cards {
  width: 44.7953%; /* 766 / 1710 */

  flex-shrink: 0;

  min-width: 0;
}

.ssa_cards ul {
  display: grid;

  grid-template-columns: 47.5196% 47.5196%; /* 364 / 766 */

  grid-template-rows: auto auto;

  column-gap: 4.9608%; /* 38 / 766 */

  row-gap: 0.38rem;
}

.ssa_cards ul li {
  position: relative;

  display: block;

  min-width: 0;

  cursor: pointer;
}

.ssa_cards ul li::before {
  content: "";

  display: block;

  padding-bottom: 104.9451%; /* 382 / 364 */
}

.ssa_cards ul li:nth-child(1) {
  grid-column: 1;

  grid-row: 1 / 3;

  align-self: center;
}

.ssa_cards ul li:nth-child(2) {
  grid-column: 2;

  grid-row: 1;
}

.ssa_cards ul li:nth-child(3) {
  grid-column: 2;

  grid-row: 2;
}

.ssac_item {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: column;

  box-sizing: border-box;

  padding: 0.36rem 0.32rem 0.28rem;

  background: rgba(255, 255, 255, 0.88);

  border-radius: 0.2rem;

  box-shadow: 0 0.08rem 0.32rem rgba(15, 40, 36, 0.08);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ssac_item::before {
  content: "";

  position: absolute;

  left: 12%;

  right: 12%;

  bottom: -0.08rem;

  height: 0.48rem;

  background: radial-gradient(
    ellipse at center,

    rgba(120, 210, 230, 0.42),
    transparent 72%
  );

  pointer-events: none;
}

.ssa_cards ul li h4 {
  font-weight: 700;

  color: #222222;

  margin-bottom: 0.12rem;

  transition: color 0.35s ease;
}

.ssa_cards ul li p {
  color: #666666;

  margin-bottom: 0.16rem;

  flex: 1 1 auto;

  min-height: 0;
}

.ssac_icon {
  width: 0.68rem;

  display: block;

  position: relative;

  overflow: hidden;

  margin-top: auto;

  flex-shrink: 0;
}

.ssac_icon::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.ssac_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}

.ssa_cards ul li:hover .ssac_item {
  transform: translateY(-0.06rem);

  box-shadow: 0 0.12rem 0.4rem rgba(6, 140, 127, 0.16);
}

.ssa_cards ul li:hover h4 {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .ssac_item {
    padding: 0.28rem 0.24rem 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .ssa_maxbox {
    flex-wrap: wrap;

    row-gap: 0.36rem;

    padding-left: 3%;
  }

  .ssa_pic {
    width: 38%;

    margin-left: -3%;
  }

  .ssa_mid {
    width: 54%;
  }

  .ssa_cards {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .ssa_maxbox {
    flex-direction: column;

    align-items: stretch;

    padding-left: 4%;

    padding-right: 4%;

    row-gap: 0.32rem;
  }

  .ssa_pic {
    width: 72%;

    margin-left: -4%;

    align-self: flex-start;
  }

  .ssa_mid,
  .ssa_cards {
    width: 100%;
  }

  .ssa_mid h3 {
    margin-bottom: 0.24rem;
  }

  .ssa_cards ul li::before {
    display: none;
  }

  .ssac_item {
    position: relative;

    height: auto;
  }
}

@media screen and (max-width: 560px) {
  .ssa_maxbox {
    padding-left: 5%;

    padding-right: 5%;
  }

  .ssa_pic {
    width: 100%;

    margin-left: 0;
  }

  .ssa_cards ul {
    grid-template-columns: 1fr;

    grid-template-rows: none;

    gap: 0.14rem;
  }

  .ssa_cards ul li:nth-child(1),
  .ssa_cards ul li:nth-child(2),
  .ssa_cards ul li:nth-child(3) {
    grid-column: auto;

    grid-row: auto;

    align-self: stretch;
  }
}

/* -----------------服务流程--------------- */

.services_service_process {
  background: #f5fcff;
}

.ssp_maxbox {
  max-width: 1320px;
}

.ssp_contain ul {
  display: flex;

  flex-direction: column;

  gap: 0.72rem;
}

.ssp_contain ul li {
  display: flex;

  align-items: center;

  gap: 1rem;

  justify-content: flex-end;
}

.ssp_contain ul li:nth-child(even) {
  flex-direction: row-reverse;
}

.sspc_txt {
  width: 42.7273%; /* 564 / 1320 */

  flex-shrink: 0;

  position: relative;

  min-width: 0;
}

.sspc_icon {
  width: 26.0638%; /* 147 / 564 */

  max-width: 1.47rem;

  position: absolute;

  left: -5%;

  top: -46%;

  z-index: 0;

  line-height: 0;

  pointer-events: none;
}

.sspc_icon img {
  display: block;

  width: 100%;

  height: auto;

  object-fit: contain;
}

.sspc_info {
  position: relative;

  z-index: 1;

  padding-left: 16.3121%; /* 92 / 564，字母右侧与文字轻微重叠 */

  min-width: 0;
}

.sspc_info h4 {
  font-weight: 700;

  color: #222222;

  line-height: 1.35;

  margin-bottom: 0.14rem;

  transition: color 0.35s ease;
}

.sspc_info p {
  color: #666666;

  line-height: 1.7;
}

.sspc_media {
  width: 40%; /* 528 / 1320 */

  flex-shrink: 0;

  position: relative;
}

.sspc_pic {
  width: 100%;

  position: relative;

  overflow: hidden;

  border-radius: 50%;

  display: block;

  box-shadow: 0 0.12rem 0.4rem rgba(15, 40, 36, 0.1);
}

.sspc_pic::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.sspc_pic img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1);

  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sspc_num {
  position: absolute;

  z-index: 2;

  left: 0;

  bottom: 0.12rem;

  width: 1.38rem;

  height: 1.38rem;

  border-radius: 50%;

  background: #4cc9b0;

  color: #fff;

  font-size: 0.48rem;

  font-weight: bold;

  line-height: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 0.06rem 0.18rem rgba(6, 140, 127, 0.28);

  pointer-events: none;

  font-family: "Advent Pro";
}

.ssp_contain ul li:nth-child(even) .sspc_num {
  left: auto;

  right: 0rem;
}

.ssp_contain ul li:hover .sspc_info h4 {
  color: var(--i_color);
}

.ssp_contain ul li:hover .sspc_pic img {
  transform: scale(1.06);
}

@media screen and (max-width: 1024px) {
  .ssp_contain ul {
    gap: 0.48rem;
  }

  .ssp_contain ul li {
    gap: 0.5rem;
  }

  .sspc_icon {
    max-width: 1.08rem;

    top: -38%;
  }

  .sspc_info h4 {
    margin-bottom: 0.1rem;
  }

  .sspc_num {
    width: 1rem;

    height: 1rem;

    font-size: 0.34rem;

    bottom: 0.08rem;
  }
}

@media screen and (max-width: 768px) {
  .ssp_contain ul {
    gap: 0.48rem;
  }

  .ssp_contain ul li,
  .ssp_contain ul li:nth-child(even) {
    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    gap: 0.28rem;
  }

  .sspc_txt {
    width: 100%;

    order: 2;

    padding-top: 0.5rem;
  }

  .sspc_icon {
    max-width: 0.9rem;

    left: 0;

    top: 0;
  }

  .sspc_info {
    padding-left: 0.58rem;
  }

  .sspc_media {
    width: 68%;

    order: 1;
  }

  .sspc_num {
    width: 0.88rem;

    height: 0.88rem;

    font-size: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .ssp_contain ul {
    gap: 0.36rem;
  }

  .ssp_contain ul li,
  .ssp_contain ul li:nth-child(even) {
    gap: 0.2rem;
  }

  .sspc_txt {
    padding-top: 0.38rem;
  }

  .sspc_icon {
    max-width: 0.72rem;
  }

  .sspc_info {
    padding-left: 0.48rem;
  }

  .sspc_media {
    width: 82%;
  }

  .sspc_num {
    width: 0.72rem;

    height: 0.72rem;

    font-size: 0.26rem;
  }
}

/* ----------------oem/odm 基本信息------------------ */

.oem_odm_info {
  position: relative;

  overflow: hidden;

  background: #f5fcff;
}

.ooi_maxbox {
  max-width: 1500px;

  display: flex;

  align-items: center;

  gap: 8%; /* 120 / 1500 */
}

.ooi_pic {
  width: 37.8667%; /* 568 / 1500 */

  flex-shrink: 0;

  position: relative;
}

.ooi_pic::before {
  content: "";

  display: block;

  padding-bottom: 98.5915%; /* 560 / 568 */
}

.ooi_pic > img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;
}

.ooi_icon {
  position: absolute;

  z-index: 2;

  width: 22.5352%; /* 128 / 568 */

  left: 20.73%;

  bottom: 8.57%;
}

.ooi_icon::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.ooi_icon img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  animation: si-spin 18s linear infinite;
}

.ooi_info {
  flex: 1;

  min-width: 0;
}

.ooi_info h3 {
  font-weight: 700;

  color: #222222;

  line-height: 1.3;

  margin-bottom: 0.24rem;
}

.ooi_desc p {
  color: #666666;

  line-height: 1.7;

  margin-bottom: 0.14rem;
}

.ooi_list {
  margin-top: 0.28rem;
}

.ooi_list li {
  display: flex;

  align-items: flex-start;

  gap: 0.1rem;

  color: #222;

  margin-bottom: 0.12rem;
}

.ooi_list li:last-child {
  margin-bottom: 0;
}

.ooi_check {
  flex-shrink: 0;

  width: 0.22rem;

  height: 0.22rem;

  margin-top: 0.03rem;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--i_color);
}

.ooi_check iconify-icon {
  font-size: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .ooi_maxbox {
    gap: 6%;
  }

  .ooi_info h3 {
    margin-bottom: 0.18rem;
  }

  .ooi_list {
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .ooi_maxbox {
    flex-direction: column;

    align-items: stretch;

    gap: 0.32rem;
  }

  .ooi_pic {
    width: 78%;
  }

  .ooi_info h3 {
    margin-bottom: 0.16rem;
  }

  .ooi_list {
    margin-top: 0.18rem;
  }

  .ooi_list li {
    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .ooi_pic {
    width: 100%;
  }

  .ooi_icon {
    width: 20%;

    left: 21%;
  }

  .ooi_check {
    width: 0.18rem;

    height: 0.18rem;
  }

  .ooi_check iconify-icon {
    font-size: 0.16rem;
  }
}

/* ------------------oem/odm优势--------------- */

.oem_odm_advantages {
  background: url(static/images/ooa_bg.webp) no-repeat center/cover;

  overflow: visible;
}

.ooa_maxbox {
  max-width: 1500px;
}

.ooa_title h4 {
  color: #999999;
}

.ooa_contain {
  display: flex;

  justify-content: center;
}

.ooa_stage {
  width: 41.9333%; /* 629 / 1500 */

  position: relative;
}

.ooa_pic {
  width: 100%;

  position: relative;

  overflow: hidden;

  border-radius: 50%;
}

.ooa_pic::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.ooa_slides {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;
}

.ooa_slides li {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.45s ease;
}

.ooa_slides li.active {
  opacity: 1;

  pointer-events: auto;
}

.ooa_slides li img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.ooa_copy {
  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  z-index: 2;

  color: #fff;

  width: 65%;
}

.ooa_copy h4 {
  font-weight: 700;

  line-height: 1.35;

  margin-bottom: 0.12rem;
}

.ooa_copy p {
  line-height: 1.65;

  opacity: 0.92;
}

.ooa_tabs {
  width: 15.2623%; /* 96 / 629 */

  position: absolute;

  left: -2%;

  top: 50%;

  transform: translate(-50%, -50%);

  z-index: 3;

  display: flex;

  flex-direction: column;

  gap: 0.3rem;
}

.ooa_tabs li {
  width: 100%;

  position: relative;

  border-radius: 50%;

  background: #fff;

  color: #222222;

  cursor: pointer;

  user-select: none;

  box-shadow: 0 0.06rem 0.18rem rgba(15, 40, 36, 0.12);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ooa_tabs li::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.ooa_tabs li span {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: "Advent Pro";

  font-size: 0.28rem;

  font-weight: 700;

  line-height: 1;
}

.ooa_tabs li:hover,
.ooa_tabs li.active {
  background: var(--i_color);

  color: #fff;

  box-shadow: 0 0.08rem 0.2rem rgba(6, 140, 127, 0.28);
}

.ooa_tabs li:nth-child(1),
.ooa_tabs li:nth-child(3) {
  left: 0.35rem;
}

.ooa_tabs li:hover {
  transform: scale(1.06);
}

@media screen and (max-width: 1024px) {
  .ooa_copy {
    width: 70%;
  }

  .ooa_copy h4 {
    margin-bottom: 0.1rem;
  }

  .ooa_tabs {
    gap: 0.2rem;
  }

  .ooa_tabs li:nth-child(1),
  .ooa_tabs li:nth-child(3) {
    left: 0.22rem;
  }

  .ooa_tabs li span {
    font-size: 0.22rem;
  }
}

@media screen and (max-width: 768px) {
  .ooa_stage {
    width: 78%;
  }

  .ooa_tabs {
    width: 16%;

    left: -1%;

    gap: 0.22rem;
  }

  .ooa_tabs li:nth-child(1),
  .ooa_tabs li:nth-child(3) {
    left: 0.26rem;
  }

  .ooa_copy {
    width: 72%;
  }
}

@media screen and (max-width: 560px) {
  .ooa_stage {
    width: 88%;
  }

  .ooa_tabs {
    width: 17%;

    left: 0;

    gap: 0.16rem;
  }

  .ooa_tabs li:nth-child(1),
  .ooa_tabs li:nth-child(3) {
    left: 0.18rem;
  }

  .ooa_tabs li span {
    font-size: 0.18rem;
  }

  .ooa_copy {
    width: 60%;
  }

  .ooa_copy h4 {
    margin-bottom: 0.08rem;
  }
}

/* ------------------定制化流程---------------- */

.oem_odm_customization_process {
  background: #f5fcff;

  overflow-x: hidden;
}

.ooc_maxbox {
}

.ooc_contain,
.ooc_contain ul,
.ooc_contain ul li,
.oocp_item,
.oocp_card {
  box-sizing: border-box;
}

.ooc_contain ul {
  display: flex;

  justify-content: space-between;

  position: relative;
}

.ooc_contain ul::before {
  content: "";

  position: absolute;

  left: calc(50% - 50vw);

  right: 0.12rem;

  bottom: 0.38rem;

  height: 0.02rem;

  background: #7fd4c8;

  pointer-events: none;
}

.ooc_contain ul::after {
  content: "";

  position: absolute;

  right: 0;

  bottom: 0.33rem;

  border-top: 0.06rem solid transparent;

  border-bottom: 0.06rem solid transparent;

  border-left: 0.12rem solid #7fd4c8;

  pointer-events: none;
}

.ooc_contain ul li {
  width: 23.7333%; /* 356 / 1500 */
}

.oocp_item {
  position: relative;

  transition: transform 0.35s ease;
}

.oocp_icon {
  width: 0.84rem;

  height: 0.84rem;

  position: absolute;

  left: -10%;

  top: 0.28rem;

  z-index: 2;

  border-radius: 50%;

  background: #068c7f;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 0.06rem 0.16rem rgba(6, 140, 127, 0.18);

  transition: background 0.35s ease;
}

.oocp_icon img {
  width: 75%; /* 0.63 / 0.84 */

  height: 75%;

  object-fit: contain;

  display: block;

  transition: filter 0.35s ease;
}

.oocp_card {
  width: 100%;

  position: relative;

  background: #fff;

  border-radius: 0.12rem 1.45rem 0.12rem 0.12rem;

  box-shadow: 0 0.08rem 0.28rem rgba(15, 40, 36, 0.06);

  overflow: hidden;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.oocp_card::before {
  content: "";

  display: block;

  padding-bottom: 101.1236%; /* 360 / 356 */
}

.oocp_txt {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  box-sizing: border-box;

  padding: 0.62rem 0.45rem 0.55rem 0.8rem;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.oocp_txt h4 {
  font-weight: 700;

  color: #222222;

  transition: color 0.35s ease;
}

.oocp_txt p {
  color: #666666;

  line-height: 1.65;

  transition: color 0.35s ease;
}

.oocp_axis {
  margin-top: 0.36rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  position: relative;

  z-index: 1;
}

.oocp_axis i {
  width: 0.14rem;

  height: 0.14rem;

  border-radius: 50%;

  background: #fff;

  border: 0.03rem solid #7fd4c8;

  box-sizing: border-box;

  display: block;
}

.oocp_axis span {
  margin-top: 0.08rem;

  font-family: "Advent Pro";

  font-size: 0.24rem;

  font-weight: 700;

  color: #222222;

  line-height: 1;
}

.ooc_contain ul li:hover .oocp_card {
  background: #068c7f;

  box-shadow: 0 0.12rem 0.36rem rgba(6, 140, 127, 0.22);

  transform: translateY(-0.06rem);
}

.ooc_contain ul li:hover .oocp_txt h4,
.ooc_contain ul li:hover .oocp_txt p {
  color: #fff;
}

.ooc_contain ul li:hover .oocp_icon {
  background: #fff;
}

.ooc_contain ul li:hover .oocp_icon img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(54%) saturate(747%)
    hue-rotate(131deg) brightness(94%) contrast(98%);
}

@media screen and (max-width: 1200px) {
  .ooc_contain ul li {
    width: 28%;
  }

  .oocp_icon {
    width: 0.72rem;

    height: 0.72rem;

    top: 0.24rem;
  }

  .oocp_txt {
    padding: 0.48rem 0.32rem 0.4rem 0.7rem;
  }

  .oocp_card {
    border-radius: 0.1rem 1.2rem 0.1rem 0.1rem;
  }
}

@media screen and (max-width: 1024px) {
  .ooc_contain {
    width: 100%;

    padding-left: 0.28rem;
  }

  .ooc_contain ul li {
    width: 31%;

    display: flex;

    flex-direction: column;

    min-width: 0;

    box-sizing: border-box;
  }

  .oocp_item {
    flex: 1;

    display: flex;

    flex-direction: column;

    min-width: 0;
  }

  .oocp_icon {
    width: 0.56rem;

    height: 0.56rem;

    left: -0.28rem;

    top: 0.2rem;
  }

  .oocp_card {
    flex: 1;

    border-radius: 0.1rem 0.55rem 0.1rem 0.1rem;
  }

  .oocp_card::before {
    display: none;
  }

  .oocp_txt {
    position: relative;

    height: auto;

    padding: 0.32rem 0.22rem 0.28rem 0.48rem;
  }

  .oocp_txt h4 {
    margin-bottom: 0.1rem;

    overflow-wrap: break-word;
  }
}

@media screen and (max-width: 768px) {
  .ooc_contain {
    padding-left: 0;

    padding-right: 0;
  }

  .ooc_contain ul {
    display: block;
  }

  .ooc_contain ul::before,
  .ooc_contain ul::after {
    display: none;
  }

  .ooc_contain ul li {
    width: 100%;

    max-width: 5.2rem;

    margin: 0 auto 0.28rem;

    display: block;
  }

  .ooc_contain ul li:last-child {
    margin-bottom: 0;
  }

  .oocp_item {
    display: block;

    padding-left: 0.32rem;
  }

  .oocp_icon {
    width: 0.64rem;

    height: 0.64rem;

    left: 0;

    top: 0.24rem;
  }

  .oocp_card {
    border-radius: 0.1rem 0.7rem 0.1rem 0.1rem;
  }

  .oocp_txt {
    padding: 0.36rem 0.28rem 0.32rem 0.52rem;
  }

  .oocp_axis {
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .ooc_contain ul li {
    max-width: none;
  }

  .oocp_item {
    padding-left: 0.26rem;
  }

  .oocp_icon {
    width: 0.52rem;

    height: 0.52rem;

    left: 0;

    top: 0.2rem;
  }

  .oocp_txt {
    padding: 0.3rem 0.22rem 0.26rem 0.44rem;
  }

  .oocp_card {
    border-radius: 0.1rem 0.42rem 0.1rem 0.1rem;
  }

  .oocp_axis span {
    font-size: 0.2rem;
  }
}

/* --------------------about.html-------------------- */

.aboutUs_about_company {
  background: url(static/images/aac_bg.webp) no-repeat center/cover;

  position: relative;

  overflow: hidden;
}

.aac_r_pic {
  position: absolute;

  right: 0;

  top: 50%;

  width: 8.4rem; /* 840 */

  transform: translateY(-50%);

  z-index: 1;

  pointer-events: none;
}

.aac_r_pic img {
  width: 100%;

  height: auto;

  display: block;

  object-fit: contain;
}

@keyframes aac-pic-in {
  0% {
    opacity: 0;

    transform: translate(42%, -42%);
  }

  100% {
    opacity: 1;

    transform: translate(0, 0);
  }
}

.aacFadeInTR {
  animation-name: aac-pic-in;
}

.aac_maxbox {
  display: flex;

  align-items: center;

  position: relative;

  z-index: 2;
}

.aac_l {
  width: 39.4%; /* 591 / 1500 */
}

.aacl_icon {
  width: 0.66rem; /* 66 */

  margin-bottom: 0.5rem;
}

.aacl_icon img {
  width: 100%;

  height: auto;

  display: block;
}

.aac_l h3 {
  font-weight: 700;

  color: #222222;

  margin-bottom: 0.4rem;
}

.aac_l p {
  color: #666666;
}

.aacl_btn {
  margin-top: 0.8rem;
}

.aac_r {
  width: 38.6667%; /* 580 / 1500 */

  margin-left: 13.6%; /* 204 / 1500 */

  position: relative;
}

.aac_r ul {
  position: relative;

  height: 5.8rem;
}

.aac_r ul li {
  position: absolute;

  width: 38.7%; /* 246 / 580 */
}

.aac_r ul li:nth-child(1) {
  left: 0;

  top: 6%;
}

.aac_r ul li:nth-child(2) {
  right: 0;

  top: 32%;
}

.aac_r ul li:nth-child(3) {
  left: 26%;

  bottom: -15%;
}

.aacr_ball {
  width: 100%;

  position: relative;

  border-radius: 50%;

  box-shadow: 0 0.1rem 0.32rem rgba(15, 40, 36, 0.08);
}

.aacr_ball::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.aac_r ul li:nth-child(1) .aacr_ball {
  background: rgba(76, 201, 176, 0.2);
}

.aac_r ul li:nth-child(1) {
  width: 35%;
}

.aac_r ul li:nth-child(2) {
  width: 31.5%;
}

.aac_r ul li:nth-child(2) .aacr_ball {
  background: linear-gradient(180deg, #f1f1f1 0%, #f1f1f100 100%);
}

.aac_r ul li:nth-child(3) .aacr_ball {
  background: #f3f3db;
}

.aacr_txt {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  box-sizing: border-box;

  padding: 0.16rem;
}

.aacr_txt h3 {
  display: flex;

  align-items: baseline;

  justify-content: center;

  font-family: "Advent Pro";

  font-weight: 700;

  color: #222222;

  margin-bottom: 0.08rem;
}

.aacr_txt h3 p {
  font-family: "Advent Pro";

  font-weight: 700;

  color: #222222;
}

.aacr_txt h4 {
  color: #666666;

  line-height: 1.35;

  font-weight: 400;
}

.aacr_float {
  animation: aac-ball-float 4.8s ease-in-out infinite;

  will-change: transform;
}

.aac_r ul li:nth-child(2) .aacr_float {
  animation-name: aac-ball-float-2;

  animation-duration: 5.4s;

  animation-delay: -1.5s;
}

.aac_r ul li:nth-child(3) .aacr_float {
  animation-name: aac-ball-float-3;

  animation-duration: 5s;

  animation-delay: -2.8s;
}

@keyframes aac-ball-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.04rem, -0.12rem, 0);
  }
}

@keyframes aac-ball-float-2 {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-0.05rem, -0.1rem, 0);
  }
}

@keyframes aac-ball-float-3 {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.05rem, -0.08rem, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aacr_float,
  .aacFadeInTR {
    animation: none;
  }
}

@media screen and (max-width: 1440px) {
  .aacl_icon {
    margin-bottom: 0.42rem;
  }

  .aac_l h3 {
    margin-bottom: 0.34rem;
  }

  .aacl_btn {
    margin-top: 0.68rem;
  }

  .aac_r ul {
    height: 5.5rem;
  }
}

@media screen and (max-width: 1200px) {
  .aac_r_pic {
    width: 7.2rem;
  }

  .aac_r ul {
    height: 5.2rem;
  }

  .aacl_icon {
    width: 0.58rem;

    margin-bottom: 0.36rem;
  }

  .aac_l h3 {
    margin-bottom: 0.28rem;
  }

  .aacl_btn {
    margin-top: 0.56rem;
  }
}

@media screen and (max-width: 1024px) {
  .aac_maxbox {
    flex-direction: column;

    align-items: flex-start;
  }

  .aac_l,
  .aac_r {
    width: 100%;

    margin-left: 0;
  }

  .aac_r {
    max-width: 5.8rem;

    margin: 0.48rem auto 0;

    padding-bottom: 1.1rem;
  }

  .aac_r ul {
    height: 5.4rem;
  }

  .aac_r_pic {
    width: 5.6rem;

    top: auto;

    bottom: 0;

    transform: none;
  }

  .aacl_icon {
    margin-bottom: 0.32rem;
  }

  .aac_l h3 {
    margin-bottom: 0.24rem;
  }

  .aacl_btn {
    margin-top: 0.48rem;
  }
}

@media screen and (max-width: 768px) {
  .aac_r {
    max-width: 4.8rem;

    padding-bottom: 0.9rem;
  }

  .aac_r ul {
    height: 4.6rem;
  }

  .aac_r_pic {
    width: 4.2rem;
  }

  .aacl_icon {
    width: 0.48rem;

    margin-bottom: 0.28rem;
  }

  .aac_l h3 {
    margin-bottom: 0.2rem;
  }

  .aacl_btn {
    margin-top: 0.4rem;
  }

  .aacr_txt {
    padding: 0.12rem;
  }
}

@media screen and (max-width: 560px) {
  .aac_r {
    max-width: none;

    padding-bottom: 0.85rem;
  }

  .aac_r ul {
    height: 4.4rem;
  }

  .aac_r_pic {
    width: 3.4rem;

    opacity: 0.85;
  }

  .aacl_icon {
    width: 0.4rem;

    margin-bottom: 0.22rem;
  }

  .aac_l h3 {
    margin-bottom: 0.16rem;
  }

  .aacl_btn {
    margin-top: 0.32rem;
  }

  .aacr_txt {
    padding: 0.08rem;
  }

  .aacr_txt h3 {
    margin-bottom: 0.04rem;
  }
}

.abCard {
  position: relative;

  background: #f5fcff;
}

.abCard_list {
}

.abCard_list li {
  width: 100%;

  height: 100vh;

  position: relative;
}

.abCard_list .p1,
.abCard_list .p2 {
  position: absolute;

  width: 33.33%;

  height: 44%;

  border-radius: 0.1rem;

  overflow: hidden;
}

.abCard_list .p1 {
  left: 0;

  top: 10%;
}

.abCard_list .p2 {
  right: 0;

  bottom: 10%;
}

.abCard_list li .t {
  display: none;

  position: relative;
}

.abCard_list img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.abCard_t {
  position: absolute;

  left: 50%;

  transform: translate(-50%, 0);

  top: 0;

  width: 26vw;

  height: 100vh;
}

.abCard_t dt {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100vh;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  transition: all 0.5s ease;
}

.abCard_t .t {
  padding-top: 0.4rem;

  text-align: center;

  transform: translate(0, 30px);

  transition: all 0.7s ease;
}

.abCard_t .t .i_tit {
  position: relative;
}

.abc_info_bg {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;

  height: 100%;

  pointer-events: none;
}

.abc_info_bg img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.abCard_t h3 {
  margin: 0.1rem auto 0.3rem;

  font-size: 0.4rem;

  line-height: 1.2;

  color: #333333;

  font-weight: 900;

  font-family: "Arial Black";
}

.abCard_t h6 {
  font-size: 0.18rem;

  line-height: 1.8;

  color: #666666;
}

.abCard_t.fixed {
  position: fixed;
}

.abCard_t.end {
  height: auto;
}

.abCard_t.end dt {
  position: initial;
}

.abCard_t dt {
  opacity: 0;

  visibility: hidden;
}

.abCard_t dt.active {
  opacity: 1;

  visibility: visible;

  z-index: 3;
}

.abCard_t dt.active .t {
  transform: translate(0, 0);
}

@media screen and (max-width: 1440px) {
  .abCard_t {
    width: 30vw;
  }
}

@media screen and (max-width: 1366px) {
  .abCard_t h3 {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1200px) {
  .abCard_t h3 {
    font-size: 0.44rem;
  }
}

@media screen and (max-width: 1024px) {
  .abCard_list {
    padding: 0 3%;
  }

  .abCard_list li {
    margin-top: 50px;

    height: auto;

    display: flex;

    flex-wrap: wrap;

    gap: 30px 4%;
  }

  .abCard_list li:first-child {
    margin-top: 20px;
  }

  .abCard_list .p1,
  .abCard_list .p2 {
    position: initial;

    width: 48%;

    aspect-ratio: 41 / 53;
  }

  .abCard_list li .t {
    display: block;

    width: 100%;

    text-align: center;
  }

  .abCard_list .t i {
    font-size: 15px;

    color: var(--i_color);
  }

  .abCard_list .t h3 {
    margin: 10px auto 20px;

    font-size: 26px;

    line-height: 1.2;

    font-weight: 600;
  }

  .abCard_list .t h6 {
    font-size: 14px;

    color: #666;

    line-height: 1.8;
  }

  .abCard_t {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .abCard_list li {
    margin-top: 36px;

    gap: 20px 4%;
  }

  .abCard_list li:first-child {
    margin-top: 0;
  }

  .abCard_list .t i {
    font-size: 14px;
  }

  .abCard_list .t h3 {
    margin-bottom: 14px;

    font-size: 18px;
  }
}

/* -------------------市场规模----------------- */

.aboutUs_market_size {
  background: #f5fcff;
}

.aums_maxbox {
}

.aums_contain {
  position: relative;
}

.aums_contain::before {
  content: "";

  display: block;

  padding-bottom: 25%;
}

.aums_bg {
  width: 100%;

  height: 100%;

  position: absolute;

  left: 0;

  top: 0;

  z-index: 0;

  pointer-events: none;
}

.aums_bg img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;
}

.aums_list {
  position: absolute;

  left: 0;

  top: 0;

  right: 0;

  height: 100%;

  z-index: 1;

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  box-sizing: border-box;

  padding-top: 0.12rem;
}

.aums_list li {
  flex: 1;

  min-width: 0;

  text-align: center;

  cursor: pointer;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.aums_list li h3 {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width: fit-content;

  font-family: "Advent Pro";

  font-weight: 700;

  font-size: 0.6rem;

  line-height: 1;

  color: var(--i_color);

  padding-bottom: 0.12rem;
}

.aums_list li h3::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 0.04rem;

  border-radius: 10px;

  background: radial-gradient(50% 50% at 50% 50%, #068c7f 0%, #068c7f00 100%);

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.35s ease;
}

.aums_list li:hover h3::after {
  opacity: 1;
}

.aums_list li h3 p,
.aums_list li h3 i {
  font-family: "Advent Pro";

  font-weight: 700;

  font-size: inherit;

  line-height: inherit;

  color: inherit;

  font-style: normal;
}

.aums_list li h3 i:first-child img {
  width: 0.45rem;
}

.aums_list li h4 {
  margin-top: 0.1rem;

  font-size: 0.18rem;

  line-height: 1.4;

  color: #888888;

  font-weight: 400;
}

@media screen and (max-width: 1440px) {
  .aums_list li h3 {
    font-size: 0.62rem;
  }

  .aums_list li h3 i iconify-icon {
    font-size: 0.5rem;
  }

  .aums_list li h4 {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 1200px) {
  .aums_contain::before {
    padding-bottom: 28%;
  }

  .aums_list li h3 {
    font-size: 0.52rem;
  }

  .aums_list li h3 i iconify-icon {
    font-size: 0.42rem;
  }

  .aums_list li h4 {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 1024px) {
  .aums_contain::before {
    padding-bottom: 36%;
  }

  .aums_list {
    padding-top: 0.2rem;
  }

  .aums_list li h3 {
    font-size: 42px;
  }

  .aums_list li h3 i iconify-icon {
    font-size: 34px;
  }

  .aums_list li h4 {
    font-size: 15px;

    margin-top: 8px;
  }

  .aums_list li h3 i:first-child img {
    width: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .aums_contain::before {
    display: none;
  }

  .aums_contain {
    min-height: 480px;
  }

  .aums_list {
    position: relative;

    left: 0;

    top: 0;

    height: auto;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    gap: 28px;

    padding: 24px 0 88px;
  }

  .aums_list li {
    flex: none;

    width: 100%;
  }

  .aums_list li h3 {
    font-size: 40px;
  }

  .aums_list li h3 i iconify-icon {
    font-size: 32px;
  }

  .aums_list li h4 {
    font-size: 14px;
  }

  .aums_title {
    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .aums_contain {
    min-height: 420px;
  }

  .aums_list {
    gap: 22px;

    padding: 16px 0 72px;
  }

  .aums_list li h3 {
    font-size: 32px;
  }

  .aums_list li h3 i iconify-icon {
    font-size: 26px;
  }

  .aums_list li h4 {
    font-size: 13px;

    margin-top: 6px;
  }

  .aums_list li h3 i:first-child img {
    width: 0.35rem;
  }

  .aums_title {
    margin-bottom: 0;
  }
}

/* ---------------------研发团队与专业能力------------------ */

.aboutUs_team_expertise {
  background: url(static/images/ate_bg.webp) no-repeat center/cover;

  overflow: hidden;
}

.aute_maxbox {
  position: relative;
}

.aute_contain {
  display: flex;

  align-items: flex-start;

  gap: 3%;

  padding-left: 29.25%;

  box-sizing: border-box;

  margin-top: 0.5rem;
}

.aute_left {
  width: 4.8rem;

  height: 4.8rem;

  flex-shrink: 0;

  position: relative;

  overflow: visible;
}

.aute_stage {
  width: 100%;

  height: 100%;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: visible;
}

.aute_stage_bg {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  pointer-events: none;

  z-index: 0;
}

.aute_stage_bg svg {
  width: 100%;

  height: 100%;

  display: block;

  overflow: visible;
}

.aute_orbit {
  transform-origin: 0 0;

  will-change: transform;
}

.aute_orbit_in {
  animation: auteOrbitSpin 22s linear infinite;
}

.aute_orbit_out {
  animation: auteOrbitSpin 34s linear infinite reverse;
}

@keyframes auteOrbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aute_orbit_in,
  .aute_orbit_out {
    animation: none;
  }
}

.aute_stage_pic {
  position: relative;

  z-index: 1;

  width: 73.54%;

  height: 73.54%;

  border-radius: 50%;

  overflow: hidden;

  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(90, 214, 206, 0.22);
}

.aute_stage_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 50%;

  display: block;

  transition: opacity 0.28s ease;
}

.aute_stage_pic img.is-switching {
  opacity: 0;
}

.aute_nav {
  position: absolute;

  left: 0;

  bottom: 0.22rem;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.2rem;

  width: 1.27rem;

  height: 1.27rem;

  background: #fff;

  border-radius: 50%;

  box-shadow:
    0 0.04rem 0.16rem rgba(30, 50, 60, 0.12),
    0 0.01rem 0.04rem rgba(30, 50, 60, 0.06);
}

.aute_nav button {
  width: 0.28rem;

  height: 0.28rem;

  display: flex;

  align-items: center;

  justify-content: center;

  background: none;

  border: 0;

  padding: 0;

  cursor: pointer;

  color: #222;

  transition: color 0.25s ease;
}

.aute_nav button iconify-icon {
  font-size: 0.3rem;

  display: block;
}

.aute_nav button:hover {
  color: var(--i_color);
}

.aute_right {
  flex: 1;

  min-width: 0;

  height: 4.8rem;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  overflow: hidden;

  padding: 0.64rem 0 0.36rem;

  box-sizing: border-box;
}

.aute_info {
  flex: 1;

  min-height: 0;

  max-width: 6.8rem;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  transition: opacity 0.28s ease;
}

.aute_info.is-switching {
  opacity: 0;
}

.aute_name {
  color: #222222;

  font-weight: 700;

  flex-shrink: 0;
}

.aute_role {
  color: #222222;

  font-weight: bold;

  flex-shrink: 0;
}

.aute_desc {
  color: #999;

  margin-top: 0.16rem;

  line-height: 1.5;

  overflow: hidden;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 4;

  word-break: break-word;
}

.aute_desc span {
  color: #999;
}

.aute_thumbs {
  position: relative;

  flex-shrink: 0;

  overflow: hidden;

  width: 100%;

  padding: 0.04rem 0.05rem;

  box-sizing: border-box;
}

.aute_thumbs .swiper-wrapper {
  display: flex;

  align-items: center;
}

.aute_thumbs .swiper-wrapper .swiper-slide {
  width: 1.15rem;

  height: 1.15rem;

  flex-shrink: 0;

  cursor: pointer;
}

.aute_thumb {
  width: 100%;

  height: 100%;

  border-radius: 50%;

  overflow: hidden;

  box-sizing: border-box;

  box-shadow: 0 0 0 2px transparent;

  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.aute_thumbs .swiper-slide.is-active .aute_thumb {
  box-shadow: 0 0 0 2px var(--i_color);
}

.aute_thumb img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

@media screen and (max-width: 1440px) {
  .aute_contain {
    padding-left: 22%;
  }
}

@media screen and (max-width: 1200px) {
  .aute_contain {
    padding-left: 8%;
  }

  .aute_left,
  .aute_right {
    height: 4.2rem;
  }

  .aute_left {
    width: 4.2rem;
  }

  .aute_right {
    padding: 0.56rem 0 0.28rem;
  }

  .aute_desc {
    -webkit-line-clamp: 3;
  }

  .aute_nav {
    width: 1.11rem;

    height: 1.11rem;

    bottom: 0.19rem;

    gap: 0.17rem;
  }

  .aute_nav button {
    width: 0.26rem;

    height: 0.26rem;
  }

  .aute_nav button iconify-icon {
    font-size: 0.26rem;
  }
}

@media screen and (max-width: 1024px) {
  .aute_contain {
    flex-direction: column;

    align-items: center;

    padding: 0 3%;

    gap: 0.4rem;

    margin-top: 0.36rem;
  }

  .aute_left {
    width: 4.4rem;

    height: 4.4rem;

    max-width: 86vw;
  }

  .aute_right {
    width: 100%;

    height: auto;

    gap: 0.32rem;

    overflow: visible;

    padding: 0;
  }

  .aute_info {
    max-width: 100%;

    text-align: center;

    overflow: visible;
  }

  .aute_name {
    font-size: 32px;

    line-height: 1.3;
  }

  .aute_role {
    font-size: 18px;
  }

  .aute_desc {
    margin-top: 0.12rem;

    display: block;

    -webkit-line-clamp: unset;

    overflow: visible;
  }

  .aute_nav {
    width: 1.16rem;

    height: 1.16rem;

    bottom: 0.2rem;

    left: 0;

    gap: 0.18rem;
  }

  .aute_nav button {
    width: 0.28rem;

    height: 0.28rem;
  }

  .aute_nav button iconify-icon {
    font-size: 0.28rem;
  }

  .aute_thumbs {
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .aute_left {
    width: 3.6rem;

    height: 3.6rem;
  }

  .aute_nav {
    width: 0.95rem;

    height: 0.95rem;

    bottom: 0.16rem;

    left: 0;

    gap: 0.14rem;
  }

  .aute_nav button {
    width: 0.24rem;

    height: 0.24rem;
  }

  .aute_nav button iconify-icon {
    font-size: 0.22rem;
  }

  .aute_name {
    font-size: 28px;
  }

  .aute_role {
    font-size: 16px;
  }

  .aute_desc {
    margin-top: 0.1rem;
  }

  .aute_thumbs .swiper-wrapper .swiper-slide {
    width: 1rem;

    height: 1rem;
  }
}

@media screen and (max-width: 560px) {
  .aute_left {
    width: 3.2rem;

    height: 3.2rem;

    max-width: 92vw;
  }

  .aute_nav {
    width: 0.85rem;

    height: 0.85rem;

    bottom: 0.14rem;

    gap: 0.12rem;
  }

  .aute_nav button {
    width: 0.22rem;

    height: 0.22rem;
  }

  .aute_nav button iconify-icon {
    font-size: 0.2rem;
  }

  .aute_name {
    font-size: 26px;
  }

  .aute_role {
    font-size: 15px;
  }

  .aute_desc {
    margin-top: 0.08rem;
  }

  .aute_thumbs .swiper-wrapper .swiper-slide {
    width: 0.86rem;

    height: 0.86rem;
  }
}

/* -------------------研发与创新环境----------------- */

.aboutUs_innovation_environment {
  background: #f5fcff;

  overflow: hidden;
}

.auie_maxbox {
  position: relative;
}

.auie_contain {
  position: relative;

  width: 100%;
}

.auie_list {
  --auie-w: 7.14rem;

  --auie-h: 3.8rem;

  --auie-lift: 0.28rem;

  --auie-rise: 0.22rem;

  --auie-arc-x: 1;

  --auie-arc-y: 1;

  --auie-arc-peek: 0.82rem;

  position: relative;

  overflow: hidden;

  padding-top: var(--auie-rise);

  padding-bottom: calc(var(--auie-arc-peek) + 0.18rem);
}

.auie_list .swiper-wrapper {
  display: flex;

  align-items: flex-start;

  position: relative;

  z-index: 2;

  width: 100%;

  margin: 0;

  padding: 0;

  list-style: none;
}

.auie_list .swiper-slide {
  width: var(--auie-w);

  height: calc(var(--auie-h) + var(--auie-lift));

  flex-shrink: 0;

  position: relative;

  z-index: 2;

  overflow: visible;
}

.auie_list .swiper-slide::after {
  content: "";

  position: absolute;

  left: 50%;

  top: calc(
    var(--auie-h) - var(--auie-rise) - var(--auie-w) * var(--auie-arc-y) +
      var(--auie-arc-peek)
  );

  z-index: 0;

  width: calc(var(--auie-w) * var(--auie-arc-x));

  height: calc(var(--auie-w) * var(--auie-arc-y));

  border: 2px solid #068c7f;

  border-radius: 50%;

  box-sizing: border-box;

  transform: translateX(-50%);

  pointer-events: none;

  opacity: 0;
}

.auie_list .swiper-slide-active {
  z-index: 3;
}

.auie_list .swiper-slide-active::after,
.auie_list .swiper-slide-duplicate-active::after {
  opacity: 1;
}

.auie_pic {
  position: relative;

  z-index: 1;

  width: var(--auie-w);

  height: var(--auie-h);

  border-radius: 0.12rem;

  overflow: hidden;

  background: #fff;

  transform: translateY(var(--auie-lift));

  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease;

  box-shadow: 0 0.08rem 0.24rem rgba(20, 50, 60, 0.1);
}

.auie_list .swiper-slide-active .auie_pic {
  transform: translateY(calc(var(--auie-rise) * -1));

  box-shadow: 0 0.14rem 0.36rem rgba(20, 50, 60, 0.16);
}

.auie_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.auie_ctrl {
  position: absolute;

  left: 50%;

  bottom: 0.04rem;

  z-index: 5;

  width: calc(var(--auie-w) * var(--auie-arc-x));

  height: auto;

  transform: translate(-50%, -0.2rem);

  pointer-events: none;
}

.auie_list .auie_pagination.swiper-pagination-horizontal {
  position: absolute;

  left: 50%;

  right: auto;

  bottom: 0.8rem;

  width: auto;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.08rem;

  pointer-events: auto;

  line-height: 0;

  z-index: 5;
}

.auie_pagination .swiper-pagination-bullet {
  width: 0.16rem;

  height: 0.08rem;

  margin: 0;

  background: #d5dadd;

  border-radius: 0.08rem;

  opacity: 1;

  outline: none;

  cursor: pointer;

  vertical-align: middle;

  flex-shrink: 0;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.auie_pagination .swiper-pagination-bullet-active {
  width: 0.4rem;

  background: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .auie_list {
    --auie-w: 6.4rem;

    --auie-h: 3.4rem;

    --auie-arc-peek: 0.74rem;
  }

  .auie_list .auie_pagination.swiper-pagination-horizontal {
    bottom: 0.72rem;
  }
}

@media screen and (max-width: 1200px) {
  .auie_list {
    --auie-w: 5.6rem;

    --auie-h: 2.98rem;

    --auie-lift: 0.24rem;

    --auie-rise: 0.18rem;

    --auie-arc-peek: 0.64rem;
  }

  .auie_pic {
    border-radius: 0.1rem;
  }

  .auie_list .swiper-slide::after {
    border-width: 2px;
  }

  .auie_ctrl {
    transform: translate(-50%, -0.16rem);
  }

  .auie_list .auie_pagination.swiper-pagination-horizontal {
    bottom: 0.62rem;
  }
}

@media screen and (max-width: 1024px) {
  .auie_list {
    --auie-w: 5.2rem;

    --auie-h: 2.76rem;

    --auie-lift: 0.22rem;

    --auie-rise: 0.16rem;

    --auie-arc-peek: 0.6rem;
  }

  .auie_list .swiper-slide::after {
    border-width: 1.5px;
  }

  .auie_ctrl {
    transform: translate(-50%, -0.14rem);
  }

  .auie_list .auie_pagination.swiper-pagination-horizontal {
    bottom: 0.56rem;

    gap: 0.07rem;
  }

  .auie_pagination .swiper-pagination-bullet {
    width: 0.14rem;

    height: 0.07rem;
  }

  .auie_pagination .swiper-pagination-bullet-active {
    width: 0.32rem;
  }
}

@media screen and (max-width: 768px) {
  .auie_list {
    --auie-w: 4.4rem;

    --auie-h: 2.34rem;

    --auie-lift: 0.18rem;

    --auie-rise: 0.14rem;

    --auie-arc-peek: 0.5rem;
  }

  .auie_pic {
    border-radius: 0.08rem;
  }

  .auie_list .swiper-slide::after {
    border-width: 1.5px;
  }

  .auie_ctrl {
    transform: translate(-50%, -0.12rem);
  }

  .auie_list .auie_pagination.swiper-pagination-horizontal {
    bottom: 0.48rem;
  }
}

@media screen and (max-width: 560px) {
  .auie_list {
    --auie-w: 2.86rem;

    --auie-h: 1.52rem;

    --auie-lift: 0.14rem;

    --auie-rise: 0.1rem;

    --auie-arc-peek: 0.42rem;

    padding-bottom: calc(var(--auie-arc-peek) + 0.28rem);
  }

  .auie_list .swiper-slide::after {
    border-width: 1px;
  }

  .auie_ctrl {
    transform: translate(-50%, -0.12rem);
  }

  .auie_list .auie_pagination.swiper-pagination-horizontal {
    bottom: 0.54rem;

    gap: 0.06rem;
  }

  .auie_pagination .swiper-pagination-bullet {
    width: 0.12rem;

    height: 0.06rem;
  }

  .auie_pagination .swiper-pagination-bullet-active {
    width: 0.28rem;
  }
}

/* --------------------荣誉与证书---------------- */

.aboutUs_corporate_honors {
  position: relative;

  width: 100%;

  aspect-ratio: 1920 / 928;

  padding: 0;

  overflow: visible;

  background: #f5fcff url(static/images/ach_bg.webp) no-repeat center / 100%
    100%;
}

.ach_maxbox {
  position: relative;

  z-index: 3;

  height: auto;

  padding-top: 0.86rem;

  pointer-events: none;
}

.ach_title {
  max-width: 7.2rem;

  pointer-events: auto;
}

.ach_title h4 {
  max-width: 100%;

  line-height: 1.6;
}

.ach_certs {
  position: absolute;

  inset: 0;

  z-index: 2;
}

.ach_list,
.ach_list .swiper-wrapper {
  position: relative;

  width: 100%;

  margin: 0;

  padding: 0;

  list-style: none;
}

@media screen and (min-width: 769px) {
  .ach_list,
  .ach_list .swiper-wrapper {
    height: 100%;
  }

  .ach_list .swiper-wrapper {
    display: block;

    transform: none !important;
  }

  .ach_list .swiper-slide.ach_item {
    position: absolute;

    width: 15.1042%; /* 290 / 1920 */

    height: auto;

    margin: 0;

    list-style: none;

    z-index: 1;
  }

  .ach_item:nth-child(1) {
    left: 10.9375%; /* 210 / 1920，贴 wrap 左缘 */

    bottom: 14.23%; /* 下台面 */
  }

  .ach_item:nth-child(2) {
    left: 29.1667%; /* 560 / 1920 */

    bottom: 14.23%;
  }

  .ach_item:nth-child(3) {
    left: 47.0833%; /* 904 / 1920 */

    bottom: 14.23%;
  }

  .ach_item:nth-child(4) {
    left: 73.0729%; /* 1403 / 1920 */

    bottom: 29.22%; /* 上台面 */
  }
}

.ach_pic {
  position: relative;

  width: 100%;

  cursor: pointer;

  transform-origin: center bottom;

  box-shadow: 0 0.08rem 0.22rem rgba(20, 46, 70, 0.12);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.ach_pic::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(6, 140, 127, 0) 42%,

    rgba(6, 140, 127, 0.22) 100%
  );

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.35s ease;
}

.ach_pic::after {
  content: "";

  display: block;

  padding-top: 141.7241%; /* 411 / 290 */
}

.ach_pic img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;

  z-index: 1;

  transition: filter 0.35s ease;
}

.ach_zoom {
  position: absolute;

  left: 50%;

  top: 50%;

  z-index: 3;

  width: 0.48rem;

  height: 0.48rem;

  border-radius: 50%;

  background: rgba(6, 140, 127, 0.94);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.24rem;

  box-shadow: 0 0.06rem 0.16rem rgba(6, 140, 127, 0.28);

  opacity: 0;

  pointer-events: none;

  transform: translate(-50%, -50%) scale(0.72);

  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .ach_item:hover {
    z-index: 6;
  }

  .ach_item:hover .ach_pic {
    transform: translateY(-0.14rem) scale(1.06);

    box-shadow:
      0 0.22rem 0.46rem rgba(6, 140, 127, 0.22),
      0 0.08rem 0.18rem rgba(20, 46, 70, 0.14);
  }

  .ach_item:hover .ach_pic::before {
    opacity: 1;
  }

  .ach_item:hover .ach_pic img {
    filter: brightness(1.04) saturate(1.05);
  }

  .ach_item:hover .ach_zoom {
    opacity: 1;

    transform: translate(-50%, -50%) scale(1);
  }
}

.ach_ctrl {
  display: none;
}

@media screen and (max-width: 1366px) {
  .ach_maxbox {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .ach_maxbox {
    padding-top: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .aboutUs_corporate_honors {
    aspect-ratio: auto;

    min-height: 0;

    overflow: visible;

    padding: 0.8rem 0 0.7rem;

    background: #f5fcff;
  }

  .ach_maxbox {
    height: auto;

    padding-top: 0;
  }

  .ach_title {
    max-width: none;

    margin-bottom: 0.36rem;
  }

  .ach_certs {
    position: relative;

    inset: auto;

    width: 100%;
  }

  .ach_list {
    overflow: hidden;

    height: auto;

    padding-bottom: 0.16rem;
  }

  .ach_list .swiper-wrapper {
    display: flex;

    height: auto;
  }

  .ach_list .swiper-slide.ach_item {
    position: relative;

    left: auto;

    bottom: auto;

    top: auto;

    width: 2.28rem;

    height: auto;

    flex-shrink: 0;

    box-sizing: content-box;

    padding: 0 0.1rem;
  }

  .ach_zoom {
    opacity: 1;

    top: auto;

    left: auto;

    right: 0.1rem;

    bottom: 0.1rem;

    width: 0.36rem;

    height: 0.36rem;

    font-size: 0.18rem;

    transform: none;
  }

  .ach_ctrl {
    display: flex;

    justify-content: center;

    margin-top: 0.28rem;
  }

  .ach_pagination {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.08rem;

    line-height: 0;
  }

  .ach_pagination .swiper-pagination-bullet {
    width: 0.16rem;

    height: 0.08rem;

    margin: 0;

    background: #d5dadd;

    border-radius: 0.08rem;

    opacity: 1;

    outline: none;

    cursor: pointer;

    flex-shrink: 0;

    transition:
      width 0.3s ease,
      background 0.3s ease;
  }

  .ach_pagination .swiper-pagination-bullet-active {
    width: 0.4rem;

    background: var(--i_color);
  }
}

@media screen and (max-width: 560px) {
  .aboutUs_corporate_honors {
    padding: 0.6rem 0 0.5rem;
  }

  .ach_title {
    margin-bottom: 0.28rem;
  }

  .ach_list .swiper-slide.ach_item {
    width: 2.04rem;

    padding: 0 0.05rem;
  }

  .ach_pagination .swiper-pagination-bullet {
    width: 0.12rem;

    height: 0.06rem;
  }

  .ach_pagination .swiper-pagination-bullet-active {
    width: 0.28rem;
  }
}

.ach_pop {
  display: none;

  position: fixed;

  inset: 0;

  z-index: 99999;

  align-items: center;

  justify-content: center;

  padding: 0.4rem;
}

.ach_pop.on {
  display: flex;
}

.ach_pop_mask {
  position: absolute;

  inset: 0;

  background: rgba(8, 22, 28, 0.72);

  cursor: pointer;
}

.ach_pop_box {
  position: relative;

  z-index: 1;

  max-width: min(7.2rem, 86vw);

  max-height: 88vh;
}

.ach_pop_img {
  display: block;

  max-width: 100%;

  max-height: 88vh;

  width: auto;

  height: auto;

  object-fit: contain;

  box-shadow: 0 0.24rem 0.64rem rgba(0, 0, 0, 0.28);
}

.ach_pop_close,
.ach_pop_prev,
.ach_pop_next {
  position: absolute;

  border: 0;

  padding: 0;

  cursor: pointer;

  background: var(--i_color);

  color: #fff;
}

.ach_pop_close {
  top: -0.18rem;

  right: -0.18rem;

  width: 0.4rem;

  height: 0.4rem;

  border-radius: 50%;
}

.ach_pop_close::before {
  content: "+";

  position: absolute;

  top: 50%;

  left: 50%;

  font-size: 0.4rem;

  line-height: 1;

  transform: translate(-50%, -50%) rotate(45deg);
}

.ach_pop_prev,
.ach_pop_next {
  top: 50%;

  width: 0.44rem;

  height: 0.44rem;

  border-radius: 50%;

  transform: translateY(-50%);
}

.ach_pop_prev {
  left: -0.58rem;
}

.ach_pop_next {
  right: -0.58rem;
}

.ach_pop_prev::before,
.ach_pop_next::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  width: 0.12rem;

  height: 0.12rem;

  border-top: 2px solid #fff;

  border-right: 2px solid #fff;
}

.ach_pop_prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.ach_pop_next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

body.ach_pop_lock {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .ach_maxbox {
    pointer-events: auto;
  }

  .ach_pop_prev {
    left: 0.08rem;
  }

  .ach_pop_next {
    right: 0.08rem;
  }

  .ach_pop_close {
    top: 0.08rem;

    right: 0.08rem;
  }
}

/* ----------------------------------合作伙伴---------------------- */

.aboutUs_partners {
  overflow: hidden;

  background: #f5fcff url(static/images/aup_bg.webp) no-repeat center / cover;
}

.aup_contain {
  overflow: hidden;

  width: 100%;

  padding: 0.2rem 0;
}

.aup_track {
  display: flex;

  width: max-content;

  will-change: transform;

  animation: aup-marquee 32s linear infinite;
}

.aup_list {
  display: flex;

  align-items: center;

  margin: 0;

  padding: 0;

  list-style: none;
}

.aup_list li {
  flex-shrink: 0;

  margin-right: 0.3rem;
}

.aup_pic {
  width: 2.63rem; /* 263 */

  height: 2.1rem; /* 210 */

  padding: 0rem 0.265rem;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #fff;

  border-radius: 0.16rem;

  box-shadow:
    0 0.06rem 0.18rem rgba(80, 160, 180, 0.12),
    0 0.02rem 0.06rem rgba(20, 50, 70, 0.04);
}

.aup_pic img {
  width: auto;

  height: auto;

  max-width: 100%;

  max-height: 100%;

  object-fit: contain;

  display: block;
}

.aup_contain:hover .aup_track {
  animation-play-state: paused;
}

@keyframes aup-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aup_track {
    animation: none;
  }
}

@media screen and (max-width: 768px) {
  .aup_contain {
    padding: 0.14rem 0;
  }

  .aup_list li {
    margin-right: 0.2rem;
  }

  .aup_pic {
    width: 2.1rem;

    height: 1.68rem;

    padding: 0 0.21rem;

    border-radius: 0.12rem;
  }
}

@media screen and (max-width: 560px) {
  .aup_contain {
    padding: 0.1rem 0;
  }

  .aup_list li {
    margin-right: 0.16rem;
  }

  .aup_pic {
    width: 1.72rem;

    height: 1.37rem;

    padding: 0 0.17rem;

    border-radius: 0.1rem;
  }
}

/* ----------------------news.html--------------------------- */

.news_maxbox {
  position: relative;

  overflow: hidden;

  background: #f5fcff;
}

.nm_box {
  position: relative;

  z-index: 2;
}

.nmb_ul {
  display: flex;

  flex-wrap: wrap;

  margin: -0.3rem;
}

.nmb_ul li {
  width: calc(33.333% - 0.6rem);

  margin: 0.3rem;

  padding: 0.3rem;

  box-sizing: border-box;

  background: #fff;

  border: 1px solid transparent;

  border-radius: 0.2rem;

  box-shadow: 0 0.08rem 0.32rem rgba(15, 40, 36, 0.08);

  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.nmb_ul li a {
  display: flex;

  flex-direction: column;

  height: 100%;

  color: inherit;
}

.nmb_date {
  display: flex;

  align-items: baseline;

  gap: 0.04rem;

  margin-bottom: 0.08rem;
}

.nmb_date strong {
  font-size: 0.32rem;

  line-height: 1;

  font-weight: bold;

  color: #999;
}

.nmb_date span {
  font-size: 0.14rem;

  line-height: 1;

  color: #666;
}

.nmb_ul li h3 {
  min-height: 2.8em;

  margin-bottom: 0.3rem;

  font-weight: 700;

  color: #333;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: color 0.35s ease;
}

.nmb_more {
  display: inline-flex;

  align-items: center;

  gap: 0.04rem;

  margin-bottom: 0.2rem;

  color: var(--i_color);

  transition: opacity 0.35s ease;
}

.nmb_more iconify-icon {
  font-size: 0.18rem;
}

.nmb_pic {
  position: relative;

  margin-top: auto;
}

.nmb_icon {
  position: absolute;

  left: 50%;

  top: 0;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.64rem;

  height: 0.64rem;

  border-radius: 50%;

  background: var(--i_color);

  color: #fff;

  font-size: 0.26rem;

  opacity: 0;

  pointer-events: none;

  transform: translate(-50%, -50%) scale(0.72);

  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nmb_img {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 0.12rem;
}

.nmb_img::before {
  content: "";

  display: block;

  padding-bottom: 2.36rem; /* 236 */
}

.nmb_img img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nmb_ul li:hover {
  background: #f3fbfa;

  border-color: var(--i_color);

  box-shadow: 0 0.1rem 0.36rem rgba(6, 140, 127, 0.14);
}

.nmb_ul li:hover h3 {
  color: var(--i_color);
}

.nmb_ul li:hover .nmb_more {
  opacity: 0;
}

.nmb_ul li:hover .nmb_icon {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

.nmb_ul li:hover .nmb_img img {
  transform: scale(1.06);
}

@media screen and (max-width: 1024px) {
  .nmb_ul li {
    width: calc(50% - 0.6rem);
  }

  .nmb_date strong {
    font-size: 0.4rem;
  }

  .nmb_icon {
    width: 0.56rem;

    height: 0.56rem;

    font-size: 0.22rem;
  }
}

@media screen and (max-width: 768px) {
  .nmb_ul li {
    width: calc(100% - 0.6rem);
  }

  .nmb_ul li h3 {
    min-height: 0;
  }
}

@media screen and (max-width: 560px) {
  .nmb_ul {
    margin: -0.2rem;
  }

  .nmb_ul li {
    width: calc(100% - 0.4rem);

    margin: 0.1rem 0.2rem;

    padding: 0.24rem;
  }

  .nmb_date strong {
    font-size: 0.36rem;
  }

  .nmb_icon {
    width: 0.48rem;

    height: 0.48rem;

    font-size: 0.2rem;
  }

  .news_maxbox {
    padding: 0.5rem 0 0.3rem 0;
  }
}

@media screen and (max-width: 375px) {
  .news_maxbox {
    padding: 0.7rem 0 0.2rem 0;
  }
}

/* -------------------contact.html----------------- */

.contact_form {
  background: #f5fcff;

  position: relative;
}

.cf_maxbox {
}

.cfm_title h4 {
  width: 45%;
}

.cfm_contain {
}

@media screen and (max-width: 560px) {
  .cfm_title h4 {
    width: 90%;
  }
}

/* --------------------联系我们-------------------- */

.contact_get_in_touch {
}

.cgit_maxbox {
}

.cgit_contain {
}

.cgit_ul {
  display: flex;

  gap: 0.5rem;

  flex-wrap: wrap;

  box-sizing: border-box;
}

.cgit_ul li {
  width: calc((100% - 3 * 0.5rem) / 4);
}

.cgit_img {
  padding-bottom: 0.4rem;

  border-bottom: 0.02rem solid rgba(51, 51, 51, 0.2);

  position: relative;

  margin-bottom: 0.1rem;
}

.cgit_img::before {
  content: "";

  display: block;

  width: 70%;

  height: 0.02rem;

  position: absolute;

  bottom: -0.01rem;

  left: 0;

  background: var(--i_color);

  transition: all 0.35s ease;
}

.cgit_ul li:hover .cgit_img::before {
  width: 100%;
}

.cgit_img span {
  width: 0.55rem;

  height: 0.55rem;

  display: block;
}

.cgit_img span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.cgit_ul li a {
  color: #333333;

  display: block;

  transition: all 0.3s ease;
}

.cgit_ul li p {
  color: #666666;

  margin-top: 0.05rem;
}

.cgit_ul li a:hover {
  color: var(--i_color);

  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .cgit_img span {
    width: 0.4rem;

    height: 0.4rem;
  }

  .cgit_img {
    padding-bottom: 0.2rem;
  }

  .cgit_ul {
    gap: 0.3rem;
  }

  .cgit_ul li {
    width: calc((100% - 3 * 0.3rem) / 4);
  }
}

@media screen and (max-width: 768px) {
  .cgit_ul {
    gap: 0.3rem;
  }

  .cgit_ul li {
    width: calc((100% - 0.3rem) / 2);
  }
}

@media screen and (max-width: 560px) {
  .cgit_ul {
    gap: 0.2rem;
  }

  .cgit_ul li {
    width: 100%;
  }

  .cgit_img span {
    width: 0.3rem;

    height: 0.3rem;
  }
}

/* ---------------------------------contact_map------------------------------- */

.contact_map_bac {
  box-sizing: border-box;
}

.contact_map {
  height: 5.8rem;
}

.contact_map #simpleMap,
.contact_map .fluid-width-video-wrapper,
.contact_map iframe {
  width: 100%;

  height: 100% !important;
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1200px) {
  .contact_map {
    height: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .contact_map {
    height: 4.5rem;
  }
}

@media screen and (max-width: 960px) {
}

@media screen and (max-width: 768px) {
  .contact_map {
    height: 4rem;
  }
}

@media screen and (max-width: 560px) {
}

@media screen and (max-width: 425px) {
}

/* contactus表单 */

.hide {
  display: none !important;
}

#wpforms-166 {
  --wpforms_input_height: 65px;

  --wpforms_textarea_height: 161px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  margin: 0;

  padding: 0;
}

#wpforms-form-166 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;

  clear: both;
}

/* 字段样式 */

#wpforms-166 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-166 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-166 .wpforms-field-container .wpforms-field > input,
#wpforms-166 .wpforms-field-container textarea,
#wpforms-166 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border: 1px solid 1px solid rgba(51, 51, 51, 0.2);

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;

  border-radius: 0.1rem;
}

#wpforms-166 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;
}

#wpforms-166 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;
}

#wpforms-166 .wpforms-field-container select {
  border: #d6d6d6 1px solid;

  height: var(--wpforms_select_height);

  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 12px center;

  background-size: 0.3rem;
}

#wpforms-166 input::placeholder,
#wpforms-166 textarea::placeholder,
#wpforms-166 select::placeholder {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-166 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-166 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-166 .wpforms-field-container textarea:hover,
#wpforms-166 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-166 .wpforms-field-container textarea:focus {
  border: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

/* 错误提示 */

#wpforms-166 label.wpforms-error,
#wpforms-166 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏Label */

#wpforms-166 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0;
}

#wpforms-166 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 布局 */

#wpforms-166 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-166-field_1-container,
#wpforms-166-field_2-container,
#wpforms-166-field_4-container {
  width: 32% !important;
}

#wpforms-166-field_5-container,
#wpforms-166-field_6-container {
  width: 49% !important;
}

#wpforms-166-field_3-container {
  width: 100% !important;
}

/* 提交按钮 */

#wpforms-166 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-166 .wpforms-submit-container button {
  width: 20%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

  border: var(--i_color) 1px solid;

  font-family: Arial;

  border-radius: 0.08rem;

  box-sizing: border-box;
}

#wpforms-166 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  #wpforms-166 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-166-field_1-container,
  #wpforms-166-field_2-container,
  #wpforms-166-field_3-container,
  #wpforms-166-field_4-container,
  #wpforms-166-field_5-container,
  #wpforms-166-field_6-container {
    width: 100% !important;
  }

  #wpforms-166 .wpforms-submit-container button {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-166 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-166 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}
