@charset "utf-8";

:root {
  --i_color: #1665a6;

  /* 全局颜色 */

  --i_color2: #609937;

  --i_color3: #0e1926;

  /* 副颜色 */

  --top_h: 0.85rem;

  --header_info_h: 0.4rem;

  /* 顶部信息 */

  /* 导航 */

  --header_height: 1.25rem;

  /* 导航总高度 */
}

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

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

    --header_height: 0.9rem;
  }
}

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

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

.wrap {
  width: 94vw;

  max-width: 1500px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  margin-left: 10.7%;
}

.wrap_r {
  display: block;

  box-sizing: border-box;

  margin-right: 10.7%;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

.wrap_h {
  width: 1640px;

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

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

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

.hide {
  display: none;
}

#globalAgent {
  scroll-margin-top: var(--header_height);
}

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

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

@media screen and (max-width: 768px) {
  .header_heightbox {
    height: var(--header_height);
  }
}

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

.public_btn {
}

.public_btn a {
  display: flex;

  align-items: center;

  color: var(--i_color3);

  border-radius: 2.3rem;

  padding: 0.12rem 0.12rem 0.12rem 0.24rem;

  box-sizing: border-box;

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

  position: relative;

  z-index: 2;

  transition: all 0.35s ease;

  overflow: hidden;
}

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

  display: block;

  width: 0%;

  height: 100%;

  z-index: -1;

  position: absolute;

  top: 0;

  left: 0;

  background-color: var(--i_color2);

  border-radius: 2.3rem;

  transition: all 0.35s ease;
}

.public_btn a p {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-left: 0.15rem;

  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: var(--i_color2);

  transition: all 0.4s ease;
}

.public_btn a p iconify-icon {
  font-size: 0.15rem;

  color: #fff;

  transition: all 0.4s ease;
}

.public_btn a:hover {
  color: #fff;

  border: 1px solid var(--i_color2);
}

.public_btn a:hover::before {
  width: 100%;

  left: 0;
}

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

.public_btn a:hover p iconify-icon {
  color: var(--i_color2);
}

@media screen and (max-width: 1024px) {
  .public_btn a {
    padding: 0.1rem 0.1rem 0.1rem 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .public_btn a {
    padding: 0.08rem 0.08rem 0.08rem 0.15rem;
  }

  .public_btn a p {
    margin-left: 0.1rem;

    width: 0.2rem;

    height: 0.2rem;
  }

  .public_btn a p iconify-icon {
    font-size: 0.12rem;
  }
}

/* ---------------------------public_white_btn---------------------------- */

.public_white_btn {
}

.public_white_btn a {
  display: flex;

  align-items: center;

  color: var(--i_color3);

  border-radius: 2.3rem;

  padding: 0.12rem 0.12rem 0.12rem 0.24rem;

  box-sizing: border-box;

  position: relative;

  z-index: 2;

  transition: all 0.35s ease;

  overflow: hidden;

  background: #fff;

  background-clip: padding-box;
}

.public_white_btn a::before {
  content: "";

  display: block;

  width: 0%;

  height: 100%;

  z-index: -1;

  position: absolute;

  top: 0;

  left: 0;

  background-color: var(--i_color2);

  border-radius: 2.3rem;

  transition: all 0.35s ease;
}

.public_white_btn a p {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-left: 0.15rem;

  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: var(--i_color2);

  transition: all 0.4s ease;
}

.public_white_btn a p iconify-icon {
  font-size: 0.15rem;

  color: #fff;

  transition: all 0.4s ease;
}

.public_white_btn a:hover {
  color: #fff;

  background: transparent;
}

.public_white_btn a:hover::before {
  width: 100%;

  left: 0;
}

.public_white_btn a:hover p {
  background: #fff;
}

.public_white_btn a:hover p iconify-icon {
  color: var(--i_color2);
}

@media screen and (max-width: 1024px) {
  .public_white_btn a {
    padding: 0.1rem 0.1rem 0.1rem 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .public_white_btn a {
    padding: 0.08rem 0.08rem 0.08rem 0.15rem;
  }

  .public_white_btn a p {
    margin-left: 0.1rem;

    width: 0.2rem;

    height: 0.2rem;
  }

  .public_white_btn a p iconify-icon {
    font-size: 0.12rem;
  }
}

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

.public_title {
}

.public_title h3 {
  color: var(--i_color2);
}

.public_title h4 {
  color: var(--i_color3);

  font-weight: bold;

  margin-bottom: 0.2rem;
}

.public_title h5 {
  color: #34414f;
}

/* ------------------------------public_center--------------------------- */

.public_center {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.1rem;
}

.public_center h3,
.public_center h4,
.public_center h5 {
  text-align: center;
}

/* 视频播放窗口 */

.vd_full {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgb(255 255 255 / 80%);

  z-index: 999999999;
}

.vd_box {
  position: absolute;

  top: 52%;

  left: 50%;

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

  width: 60%;

  z-index: 2;
}

.vd_box::before {
  content: "";

  display: block;

  padding-bottom: 56.25%;
}

.close_v {
  position: absolute;

  top: -0.2rem;

  right: -0.2rem;

  width: 0.4rem;

  height: 0.4rem;

  background: var(--i_color);

  z-index: 2;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  cursor: pointer;
}

.close_v::before {
  content: "+";

  position: absolute;

  top: 50%;

  left: 50%;

  font-size: 0.44rem;

  color: #fff;

  -webkit-transform: translate(-50%, -50%) rotate(45deg);

  transform: translate(-50%, -50%) rotate(45deg);
}

.vd_box iframe {
  position: absolute;

  top: 0;

  right: 0;

  width: 100%;

  height: 100%;

  background: #000;

  object-fit: contain;
}

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

  .close_v::before {
    font-size: 0.4rem;
  }
}

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

  .close_v {
    top: -0.15rem;

    right: -0.15rem;

    width: 0.3rem;

    height: 0.3rem;
  }

  .close_v::before {
    font-size: 0.3rem;
  }
}

/* ---------------------------------------Breadcrumb--------------------------------------- */

.in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

  background: #f2f2f2;

  position: relative;
}

.in_position .wrap {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

.in_position a {
  display: block;

  font-size: 0.18rem;

  color: #333333;

  position: relative;

  line-height: 0.2rem;
}

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

.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="currentColor" 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;
}

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

  margin: 0 4px;

  color: #555;
}

.in_position a:last-child {
  color: var(--i_color) !important;
}

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

@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }

  .in_position a {
    font-size: 14px;
  }
}

@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }

  .in_position a {
    font-size: 13px;
  }
}

/* ------------------------Paging -------------------------*/

.in_paging {
  --size: 30px;

  --border_radius: 5px;

  --curr_color: var(--i_color);

  box-sizing: border-box;
}

.in_paging ul {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  text-align: center;

  width: 100%;
}

.in_paging li {
  min-width: var(--size);

  margin: 0 4px;
}

.in_paging a,
.in_paging span {
  display: block;

  padding: 0 10px;

  height: var(--size);

  line-height: calc(var(--size) - 2px);

  font-size: 14px;

  color: #666;

  background: #fff;

  box-sizing: border-box;

  border: 1px solid #ccc;

  -webkit-border-radius: var(--border_radius);

  border-radius: var(--border_radius);

  overflow: hidden;
}

.in_paging ul li:not(:first-child):not(:last-of-type) a,
.in_paging ul li:not(:first-child):not(:last-of-type) span {
  border-radius: 50%;
}

.in_paging i {
  margin-top: 14px;

  width: 100%;

  font-size: 13px;

  color: #888;
}

.in_paging a:hover,
.in_paging .curr_page a,
.in_paging .curr_page span {
  border-color: var(--curr_color) !important;

  background: var(--curr_color);

  color: #fff !important;
}

/* ---------------------------------搜索框----------------------------- */

.page_form {
  --search_height: 0.57rem;
}

.page_formbox {
  display: flex;

  justify-content: flex-end;

  margin-bottom: 0.3rem;
}

.page_form {
  width: 38%;

  background: #f7f7f7;

  box-sizing: border-box;

  border: 1px solid #e5e5e5;

  border-radius: 2.4rem;

  height: var(--search_height);

  display: flex;
}

.pageSearch {
  width: calc(100% - var(--search_height));

  height: 100%;

  box-sizing: border-box;

  background: none;

  font-size: 0.18rem;

  color: rgba(14, 25, 38, 0.4);
}

.pageSubmit {
  font-size: 0;

  width: var(--search_height);

  height: var(--search_height);

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23333333' fill-opacity='0.5' d='M456.69%20421.39L362.6%20327.3a173.81%20173.81%200%200%200%2034.84-104.58C397.44%20126.38%20319.06%2048%20222.72%2048S48%20126.38%2048%20222.72s78.38%20174.72%20174.72%20174.72A173.81%20173.81%200%200%200%20327.3%20362.6l94.09%2094.09a25%2025%200%200%200%2035.3-35.3ZM97.92%20222.72a124.8%20124.8%200%201%201%20124.8%20124.8a124.95%20124.95%200%200%201-124.8-124.8Z'/%3E%3C/svg%3E")
    no-repeat center;

  background-size: 0.2rem;

  cursor: pointer;
}

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

  .page_form {
    width: 60%;
  }

  .page_formbox {
    display: flex;

    justify-content: flex-end;

    margin-bottom: 0.2rem;
  }
}

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

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

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--header_height);

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

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

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

	.top_cont{background: #373737;}

} */

/* logo */

.logo {
  display: -webkit-flex;

  height: 36.9%;
}

.logo a {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;

  position: relative;
}

.logo img {
  max-height: 0.31rem;
}

@media screen and (max-width: 1440px) {
  .logo img {
    max-height: 0.35rem;
  }
}

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

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

/* 导航 */

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

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.48rem;

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

  .i_nav > li > a {
    display: block;

    font-size: 0.18rem;

    color: #333;

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

    line-height: 0.32rem;

    white-space: nowrap;

    box-sizing: border-box;
  }

  .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 {
    /* background-color: var(--i_color); */

    color: var(--i_color);
  }

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

    position: absolute;

    left: 0;

    min-width: 1.6rem;

    background: #fff;

    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 > li > a {
    font-size: 16px;
  }
  .i_nav {
    margin-left: 0.5rem;

    gap: 0 0.3rem;
  }
}

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

  .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;

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

  .i_nav.active {
    opacity: 1;

    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: var(--i_color);

  border-radius: 0.1rem;

  transition: 0.5s;
}

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

  width: 100%;

  height: 3px;

  background: var(--i_color);

  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.2rem;
  }
}
@media screen and (max-width: 560px) {
  .nav_menu {
    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;

  height: 100%;
}

.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;
  }
}
@media screen and (max-width: 320px) {
  .top_r {
    gap: 0.05rem;
  }
}
.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: var(--size);

  color: #333;

  cursor: pointer;

}



.top_search_ico iconify-icon:hover,

.top_search_ico.on iconify-icon,

.top_language_btn.on iconify-icon {

  color: var(--i_color);

} */

.segmentation {
  width: 0.02rem;

  height: 30%;

  background: rgba(14, 25, 38, 0.11);
}

.top_search_ico {
  display: flex;

  align-items: center;
}

.top_search_ico img,
.top_language img {
  width: 0.24rem;

  height: 0.24rem;

  object-fit: contain;
}

.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 #333;

  -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 img,
  .top_language img {
    width: 0.2rem;

    height: 0.2rem;
  }
}

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

@media screen and (max-width: 560px) {
  .top_search_ico img,
  .top_language img {
    width: 0.16rem;

    height: 0.16rem;
  }
}

/* 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 forUtility forBusiness */

.nav_dropdown,
.nav_solutions,
.nav_forBusiness,
.nav_forUtility {
  display: none;

  position: fixed;

  top: var(--header_height);

  left: 0;

  width: 100%;

  background: #fff;

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

  z-index: 2026;
}

.nav_p {
  padding: 0.4rem 0 0.46rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

.nav_p_cat {
  width: 28%;

  align-self: flex-start;
}

.nav_p_cat a {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  box-sizing: border-box;

  padding: 0.24rem 0.8rem 0.24rem 0.3rem;

  position: relative;
}

.nav_p_cat a::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 2px;

  height: 0;

  background: var(--i_color);

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.nav_p_cat .curr a::before {
  height: 100%;
}

.nav_p_cat img {
  width: 20%;
}

.nav_p_cat p {
  width: 80%;

  box-sizing: border-box;

  padding-left: 0.2rem;

  font-size: 0.2rem;

  color: var(--i_color3);

  font-weight: 450;

  font-size: 0.16rem;
}

.nav_p_cat a:hover p,
.nav_p_cat .curr p {
  color: var(--i_color);
}

.nav_forBusiness .nav_p_list,
.nav_forUtility .nav_p_list,
.nav_solutions .nav_p_list {
  width: 100%;
}

.nav_p_list {
  width: 72%;

  margin-left: auto;

  box-sizing: border-box;

  padding: 0 0 0 0.5rem;
}

.nav_p_list ul {
  display: none;
}

.nav_p_list ul.curr {
  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 .img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

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

.nav_p_list .txt {
  text-align: center;

  margin-top: 0.1rem;
}

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

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;
}

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

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

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

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

/* partners下拉 */

.nav_partners {
  display: none;

  position: fixed;

  top: var(--header_height);

  left: 0;

  width: 100%;

  background: #fff;

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

  z-index: 2026;
}

.nav_p_l {
  width: 80%;

  position: relative;
}

.nav_p_l::before {
  content: "";

  display: block;

  padding-bottom: 50%;
}

.nav_p_l img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}

.nav_p_r {
  width: 20%;

  align-self: flex-start;
}

.nav_p_r h3 {
  color: var(--i_color);

  padding-bottom: 0.2rem;

  border-bottom: 1px solid #e5e5e5;

  margin-bottom: 0.2rem;
}

.nav_p_r ul {
  display: flex;

  flex-direction: column;

  gap: 0.15rem;
}

.nav_p_r ul li {
}

.nav_p_r ul li a {
  color: var(--i_color3);

  transition: all 0.35s ease;
}

.nav_p_r ul li a:hover {
  text-decoration: underline;

  color: var(--i_color);
}

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

/* -----------------------------------------顶部信息-------------------------- */

.top_info {
  height: var(--header_info_h);

  display: flex;

  align-items: center;

  border-bottom: 1px solid #fff;

  box-sizing: border-box;
}

.ti_info {
}

.ti_maxbox {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.ti_info ul {
  display: flex;

  gap: 0.38rem;
}

.ti_info ul li {
  height: 80%;

  display: flex;

  align-items: center;

  color: var(--i_color3);
}

.ti_info ul li a {
  display: block;

  height: 100%;

  font-weight: normal;

  color: var(--i_color3);

  display: flex;

  align-items: center;
}

.ti_info ul li a:hover {
  text-decoration: underline;

  color: var(--i_color);
}

.ti_right_menu {
}

.ti_right_menu ul {
  display: flex;
}

.ti_right_menu ul li {
}

.ti_right_menu ul li:last-child a {
  border-right: none;
}

.ti_right_menu ul li a {
  color: var(--i_color3);

  padding: 0 0.2rem;

  box-sizing: border-box;

  border-right: 1px solid rgba(14, 25, 38, 0.11);
}

.ti_right_menu ul li a:hover {
  text-decoration: underline;

  color: var(--i_color);
}

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

@media screen and (max-width: 560px) {
  .ti_right_menu ul li a {
    padding: 0 0.13rem;
  }
}

@media screen and (max-width: 375px) {
  .ti_right_menu ul li a {
    padding: 0 0.1rem;
  }
}

@media screen and (max-width: 320px) {
  .ti_right_menu ul li a {
    padding: 0 0.06rem;
  }
}

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

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

/* 滚动滚动超过banner后导航颜色变白 */

header.fixedHeader {
  background: #fff;

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

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

footer {
  background: #000000;
}

.footer_maxBox {
}

.footer_topMaxBox {
  color: #fff;
}

.ft_menu_box {
  border-bottom: #666666 1px solid;
}

.ft_menu_box > ul {
  display: flex;

  width: 100%;
}

.ft_menu_box > ul > li {
  flex: 1;

  flex-shrink: 0;
}

.ft_menu_ul {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;
}

.ft_menu_ul h3 {
  color: #ffffff;

  font-weight: bold;

  margin-bottom: 0.1rem;
}

.ft_menu_ul li {
}

.ft_menu_ul li a {
  color: #fff;

  transform: translateX(-0.2rem);

  transition: all 0.45s ease;

  word-break: break-all;

  display: flex;

  align-items: center;
}

.ft_menu_ul li a iconify-icon {
  opacity: 0;

  font-size: 0.18rem;

  margin-right: 0.05rem;
}

.ft_menu_ul li a:hover {
  text-decoration: underline;

  transform: translateX(0);
}

.ft_menu_ul li a:hover iconify-icon {
  opacity: 1;
}

.ft_info_box {
  display: flex;

  gap: 6%;

  justify-content: space-between;
}

.fti_l {
}

.fti_l span {
  width: 100%;

  display: block;

  margin-bottom: 0.3rem;
}

.fti_l span img {
  width: 100%;

  object-fit: contain;
}

.fti_l h3 {
  font-weight: bold;

  color: #ffffff;

  margin-bottom: 0.2rem;
}

.ftil_media {
  display: flex;

  gap: 0.3rem;
}

.ftil_media a {
  width: 0.44rem;

  height: 0.44rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

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

  transition: all 0.35s ease;
}

.ftil_media a iconify-icon {
  font-size: 0.16rem;

  transition: transform 0.6s ease;

  transform-style: preserve-3d;
}

.ftil_media a:hover iconify-icon {
  transform: rotateY(360deg);

  color: #fff !important;
}

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

.fti_center {
}

.fti_center h3 {
  font-weight: bold;

  color: #ffffff;

  margin-bottom: 0.3rem;
}

.fti_center h4 {
  display: flex;

  align-items: center;

  margin-bottom: 0.3rem;
}

.fti_center h4 img {
  width: 0.22rem;

  height: 0.22rem;

  object-fit: contain;

  margin-right: 0.05rem;
}

.fti_center h4 a {
  color: #fff;

  transition: all 0.35s ease;
}

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

.ftic_ul {
  display: flex;
  gap: 0.1rem;
  justify-content: space-between;
}

.ftic_ul li {
  display: flex;

  align-items: center;
}

.ftic_ul li img {
  width: 0.22rem;

  height: 0.22rem;

  object-fit: contain;

  margin-right: 0.05rem;
}

.ftic_ul li a {
  color: #ffffff;

  transition: all 0.35s ease;
}

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

.fti_right {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.fti_right span {
  display: block;

  width: 1.4rem;

  margin-bottom: 0.05rem;
}

.fti_right span img {
  width: 100%;

  object-fit: contain;
}

.fti_right h3 {
  color: #ffffff;

  text-align: center;
}

.footer_bottomMaxBox {
  padding: 0.32rem 0;

  background: #333;

  color: #fff;

  display: flex;

  align-items: center;

  font-size: 0.16rem;
}

.footer_bottomMaxBox .wrap a {
  color: #fff;

  cursor: pointer;
}

.footer_bottomMaxBox .wrap a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1440px) {
  .footer_bottomMaxBox {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 1200px) {
  .footer_bottomMaxBox {
    padding: 0.28rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .ft_menu_box > ul > li:nth-child(2) {
    display: none;
  }

  .ftil_media {
    gap: 0.1rem;
  }

  .ftil_media a {
    width: 0.4rem;

    height: 0.4rem;
  }

  .ft_info_box {
    gap: 4%;

    flex-wrap: wrap;
  }

  .fti_right span {
    width: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .ft_menu_box > ul > li:nth-child(3) {
    display: none;
  }

  .ft_info_box {
    flex-direction: column;

    gap: 0.2rem;
  }

  .fti_l span {
    margin-bottom: 0;

    width: 30%;

    flex-shrink: 0;
  }

  .fti_l span img {
  }

  .fti_l {
    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  .fti_l h3 {
    display: none;
  }

  .fti_center h3 {
    margin-bottom: 0.2rem;
  }

  .fti_center h4 {
    margin-bottom: 0.2rem;
  }

  .fti_right {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
  }
}

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

  .footer_bottomMaxBox {
    font-size: 0.1rem;

    padding: 0.1rem 0;
  }

  .ft_info_box {
    padding-top: 0 !important;

    gap: 0.15rem;
  }

  .fti_l span {
    margin-bottom: 0;

    width: 40%;
  }

  .fti_center h3 {
    margin-bottom: 0.1rem;
  }

  .ftic_ul {
    flex-direction: column;

    gap: 0.1rem;
  }

  .ftic_ul li img {
    width: 0.18rem;

    height: 0.18rem;
  }

  .fti_center h4 img {
    width: 0.18rem;

    height: 0.18rem;
  }

  .ftil_media a {
    width: 0.35rem;

    height: 0.35rem;
  }
}

@media screen and (max-width: 375px) {
  .fti_right span {
    width: 0.8rem;
  }
}

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

.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%;

  /* 设置比例 */

  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: block;

  text-align: center;

  bottom: 0.3rem !important;

  position: absolute;

  left: 50% !important;

  transform: translate(-50%, 0);

  z-index: 3;
}

.banner-pagination .swiper-pagination-bullet {
  width: 0.14rem;

  height: 0.14rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: #ccc;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  outline: none;

  cursor: pointer;
}

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

.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: 39%;

  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  text-align: center;

  width: 70%;
}

.b_text1 h3 {
  font-weight: bold;

  color: #fff;

  margin-bottom: 0.3rem;
}

.b_btn1 {
  display: flex;

  justify-content: center;
}
.b_text2 {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 90%;
}
.b_text2 h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.b_btn2 {
  display: flex;
  justify-content: center;
}
.b_text3 {
  position: absolute;
  left: 0;
  top: 15.95%;
  display: flex;
  align-items: center;
  gap: 4%;
  width: 100%;
  z-index: 3;
  box-sizing: border-box;
}
.bt3_img {
  width: 43.125%;
  flex-shrink: 0;
}
.bt3_img img {
  width: 100%;
  object-fit: contain;
}
.bt3_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.bt3t_top {
  margin-bottom: 0.3rem;
}
.bt3t_top h3 {
  font-family: "Poppins";
  font-weight: bold;
  color: #0e1926;
  line-height: 1.2;
}
.bt3t_top h4 {
  font-family: "Poppins";
  font-weight: bold;
  font-variation-settings: "opsz" auto;
  background: linear-gradient(180deg, #218b7d 0%, #20a55d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
}
.bt3t_bottom {
  display: flex;
  gap: 0.5rem;
}
.bt3t_bottom span {
  background: linear-gradient(270deg, #44b2ca00 0%, #44b2ca 49%, #a1c840 100%);
  align-items: center;
  display: flex;
  color: #fff;
  padding: 0 0.1rem;
}
.bt3t_bottom span a {
  color: inherit;
  transition: opacity 0.3s ease;
}
.bt3t_bottom span a:hover {
  opacity: 0.82;
}
.bt3t_bottom ul {
  display: flex;
  gap: 0.24rem;
}
.bt3t_bottom ul li {
  width: 0.4rem;
  height: 0.4rem;
}
.bt3t_bottom ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.bt3t_bottom ul li a iconify-icon {
  color: #0e1926;
  font-size: 0.16rem;
  transition:
    color 0.35s ease,
    transform 0.55s ease;
  transform-style: preserve-3d;
}
.bt3t_bottom ul li a:hover {
  z-index: 2;
  transform: translateY(-0.04rem) scale(1.12);
  background: var(--i_color2);
  box-shadow: 0 0.08rem 0.18rem rgba(96, 153, 55, 0.35);
}
.bt3t_bottom ul li a:hover iconify-icon {
  color: #fff;
  transform: rotateY(360deg);
}
.bt3t_bottom ul li:nth-child(1) a:hover {
  background: #1877f2;
  box-shadow: 0 0.08rem 0.18rem rgba(24, 119, 242, 0.4);
}
.bt3t_bottom ul li:nth-child(2) a:hover {
  background: #0a66c2;
  box-shadow: 0 0.08rem 0.18rem rgba(10, 102, 194, 0.4);
}
.bt3t_bottom ul li:nth-child(3) a:hover {
  background: #0e1926;
  box-shadow: 0 0.08rem 0.18rem rgba(14, 25, 38, 0.35);
}
.bt3t_bottom ul li:nth-child(4) a:hover {
  background: #e11d48;
  box-shadow: 0 0.08rem 0.18rem rgba(225, 29, 72, 0.4);
}
@media screen and (max-width: 1440px) {
  .b_text3 {
    top: 21%;
    gap: 3.2%;
  }
  .bt3_img {
    width: 42%;
  }
  .bt3t_top {
    margin-bottom: 0.24rem;
  }
}

@media screen and (max-width: 1366px) {
  .b_text2 h3 {
    margin-bottom: 0.2rem;
  }
  .b_text3 {
    gap: 3%;
  }
  .bt3_img {
    width: 40%;
  }
  .bt3t_top {
    margin-bottom: 0.2rem;
  }
  .bt3t_bottom {
    gap: 0.32rem;
  }
}

@media screen and (max-width: 1200px) {
  .b_text3 {
    padding: 0 0.2rem;
    gap: 0.24rem;
  }
  .bt3_img {
    width: 40%;
  }
  .bt3t_bottom {
    gap: 0.2rem;
    flex-wrap: wrap;
  }
  .bt3t_bottom ul {
    gap: 0.16rem;
  }
  .bt3t_bottom ul li {
    width: 0.36rem;
    height: 0.36rem;
  }
}

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

  .banner-pagination {
    bottom: 0.1rem !important;
  }
  .b_text2 {
    top: 28%;
  }
  .b_btn2 {
    display: none;
  }
  .b_text3 {
    top: 25%;

    padding: 0 0.3rem;
    gap: 0.2rem;
  }
  .bt3_img {
    width: 44%;
  }
  .bt3t_top {
    margin-bottom: 0.12rem;
  }
  .bt3t_bottom {
    gap: 0.14rem;
  }
  .bt3t_bottom ul li {
    width: 0.32rem;
    height: 0.32rem;
  }
  .bt3t_bottom ul li a iconify-icon {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 768px) {
  .banner-pagination .swiper-pagination-bullet {
    width: 0.1rem;

    height: 0.1rem;

    display: inline-block;

    margin: 0 0.06rem;

    background: #ccc;

    -webkit-border-radius: 50%;

    border-radius: 50%;

    outline: none;

    cursor: pointer;
  }
  .b_text3 {
    padding: 0 0.2rem;
    gap: 0.14rem;
  }
  .bt3_img {
    width: 46%;
  }
  .bt3t_top {
    margin-bottom: 0.08rem;
  }
  .bt3t_bottom {
    gap: 0.1rem;
  }
  .bt3t_bottom ul {
    gap: 0.1rem;
  }
  .bt3t_bottom ul li {
    width: 0.28rem;
    height: 0.28rem;
  }
  .bt3t_bottom ul li a iconify-icon {
    font-size: 0.12rem;
  }
}

@media screen and (max-width: 560px) {
  .banner .swiper-slide {
    padding-bottom: 75%;
  }

  .b_text1 {
    width: 90%;
  }

  .b_btn1 {
    display: none;
  }
  .b_text1 {
    display: none;
  }
  .b_text2 {
    display: none;
  }
  .b_text3 {
    top: 26%;
    padding: 0.16rem 0.16rem 0.4rem;
    gap: 0.12rem;
  }
  .bt3_img {
    width: 50%;
  }
  .bt3_text {
    align-items: center;
    width: 100%;
  }
  .bt3t_top h3 {
    font-size: 0.16rem;
  }
  .b_text3 h4 {
    font-size: 0.3rem;
  }
  .bt3t_top {
    margin-bottom: 0.08rem;
  }
  .bt3t_bottom {
    justify-content: center;
  }
  .bt3_text .bt3t_bottom {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .b_text3 {
    top: 30%;
  }
}
@media screen and (max-width: 375px) {
  .b_text3 {
    padding: 0.1rem 0.12rem 0.36rem;
    gap: 0.08rem;
    top: 32%;
  }
  .bt3t_top h3 {
    font-size: 0.14rem;
  }
  .b_text3 h4 {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 320px) {
  .banner-pagination .swiper-pagination-bullet {
    width: 0.08rem;

    height: 0.08rem;

    display: inline-block;

    margin: 0 0.03rem;

    background: #ccc;

    -webkit-border-radius: 50%;

    border-radius: 50%;

    outline: none;

    cursor: pointer;
  }
  .bt3t_top h3 {
    font-size: 0.12rem;
  }
  .b_text3 {
    top: 35%;
  }
}

/* ------------------产品中心------------- */

.home_product_center {
}

.hpc_maxbox {
}

.hpc_btn {
  margin-top: 0.2rem;
}

.hpc_list {
  position: relative;

  overflow: hidden;
}

.hpc_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.hpc_list li {
  flex-shrink: 0;

  position: relative;
}
.hpc_list li a {
  display: flex;
  flex-direction: column;
}
.hpc_list li span {
  display: block;

  position: relative;

  border-radius: 0.18rem;

  overflow: hidden;
}

.hpc_list li span::before {
  content: "";

  display: block;

  padding-bottom: 87.5%;
}

.hpc_list li span img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hpc_list li span:hover img {
  transform: scale(1.1);
}
.hpc_list li span:hover .hpcl_info h3 {
  color: var(--i_color);
}
.hpc_list li a:hover .hpcl_btn {
  color: #fff;
  border: 1px solid var(--i_color);
}
.hpc_list li a:hover .hpcl_btn::before {
  width: 100%;
}

.hpcl_info {
  position: absolute;

  bottom: 0.15rem;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  width: 80%;
}

.hpcl_info h3 {
  color: var(--i_color3);
  margin-bottom: 0.05rem;
  font-weight: bold;

  text-align: center;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hpcl_btn {
  display: flex;

  justify-content: center;

  padding: 0.06rem 0.28rem;

  box-sizing: border-box;

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

  width: fit-content;

  color: var(--i_color);

  border-radius: 0.2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  align-self: center;
}
.hpcl_btn::before {
  content: "";
  display: block;
  width: 00%;
  height: 100%;
  background: var(--i_color);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.2rem;
  transition: all 0.35s ease;
  z-index: -1;
}
.hpc_prev,
.hpc_next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.42rem;

  height: 0.42rem;

  background: rgb(0 0 0 / 60%);

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  border-radius: 50%;
}

.hpc_prev {
  left: 8%;
}

.hpc_next {
  right: 8%;
}

.hpc_prev iconify-icon,
.hpc_next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.26rem;

  color: #fff;
}

.hpc_list .swiper-button-disabled {
  cursor: not-allowed;
}

.hpc_prev:hover,
.hpc_next:hover {
  background: var(--i_color2);
}

.hpc_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

.hpc_pagination .swiper-pagination-bullet {
  width: 0.12rem;

  height: 0.12rem;

  display: inline-block;

  margin: 0 6px;

  background: rgba(22, 101, 166, 0.5);

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;

  box-sizing: border-box;

  border: 2px solid transparent;
}

.hpc_pagination .swiper-pagination-bullet-active {
  background: transparent;

  border: 2px solid var(--i_color);
}

@media screen and (max-width: 1024px) {
  .hpc_prev,
  .hpc_next {
    width: 0.35rem;

    height: 0.35rem;
  }

  .hpc_prev iconify-icon,
  .hpc_next iconify-icon {
    font-size: 0.2rem;
  }
}

/* -------------------解决方案----------------------- */

.home_solution {
}

.hs_maxbox {
}

.hs_contain {
  overflow: hidden;
}

.homeTab {
  position: relative;

  overflow: hidden;
}

.homeTabTop {
  position: absolute;

  left: 0;

  top: 6%;

  width: 100%;

  z-index: 4;
}

.homeTabTop ul {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap: 0.5rem 0.8rem;
}

.homeTabTop a {
  display: inline-flex;

  align-items: center;

  gap: 0.08rem;

  color: #fff;

  transition: opacity 0.3s ease;
}

.homeTabTop a:hover {
  text-decoration: underline;

  color: var(--i_color2);
}

.homeTabTop a img {
  width: 0.2rem;

  object-fit: contain;

  flex-shrink: 0;
  transition: all 0.35s ease;
}

.homeTabTop a:hover {
  opacity: 0.85;
}
.homeTabTop a:hover img {
  transform: rotate(360deg);
}

.homeTabCont {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: 4;

  display: flex;

  align-items: center;

  pointer-events: none;
}

.homeTabCont .wrap {
  pointer-events: auto;
  margin-top: -10%;
}

.homeTabCont_inner {
  width: 46%;

  max-width: 7rem;
}

.homeTabBtn {
  margin-top: 0.4rem;

  display: flex;
}

.homeTabPic {
  width: 100%;

  aspect-ratio: 1920 / 850;

  position: relative;
}

.homeTabPic::after {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: rgb(0 0 0 / 30%);

  z-index: 3;
}

.homeTabPic dt {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;
}

.homeTabPic dt img {
  opacity: 0;

  visibility: hidden;

  width: 100vw;

  height: 100%;

  object-fit: cover;
}

.homeTabPic dt.active {
  z-index: 2;
}

.homeTabPic dt.active img {
  opacity: 1;

  visibility: visible;

  transition: all 0.5s ease;
}

.homeTabTit {
  position: relative;
}

.homeTabTit h3 {
  display: inline-flex;

  align-items: center;

  gap: 0.12rem;

  color: #fff;

  font-weight: bold;
}

.homeTabTit h3 img {
  width: 0.25rem;

  height: auto;

  flex-shrink: 0;
}

.homeTabTxt {
  position: relative;

  margin-top: 0.24rem;
}

.homeTabTxt h4 {
  width: 100%;

  color: #fff;
}

.homeTabNav {
  position: absolute;

  left: 0;

  bottom: 10%;

  width: 100%;

  z-index: 4;
}

.homeTabNav ul {
  display: flex;

  flex-wrap: nowrap;

  position: relative;

  overflow: hidden;

  border-radius: 0.12rem;
}

.homeTabNav ul::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgb(255 255 255 / 40%);

  -webkit-backdrop-filter: blur(30px);

  backdrop-filter: blur(30px);
}

.homeTabNav li {
  padding: 0.38rem 0.3rem;

  width: 100%;

  position: relative;

  cursor: pointer;

  position: relative;
}

.homeTabNav li::before {
  display: none;
}

.homeTabNav li:not(:last-child)::before {
  content: "|";

  display: block;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: -2px;

  width: auto;

  height: auto;

  background: none;

  font-size: 0.18rem;

  color: rgb(0 0 0 / 40%);

  line-height: 1;
}

.homeTabNav .tit {
  height: 100%;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;
}

.homeTabNav .tit p {
  text-align: center;

  font-weight: bold;

  color: var(--i_color3);
}

.homeTabNav .txt {
  display: none;

  visibility: hidden;
}

.homeTabNav li.active {
  background: #fff;

  z-index: 2;

  border-radius: 0.12rem;
}

.homeTabNav li.active::before {
  opacity: 0;
}

@media screen and (max-width: 1366px) {
  .homeTabCont_inner {
    width: 50%;
  }

  .homeTabNav {
    bottom: 6%;
  }

  .homeTabNav li {
    padding: 0.32rem 0.2rem;
  }
}

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

  .homeTabNav li {
    padding: 0.26rem 0.14rem;
  }
}

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

  .homeTabCont {
    align-items: flex-start;

    padding-top: 12%;
  }

  .homeTabCont_inner {
    width: 80%;

    max-width: none;
  }

  .homeTabTxt {
    margin-top: 0.12rem;
  }

  .homeTabBtn {
    margin-top: 0.2rem;
  }

  .homeTabNav {
    margin-top: 0.2rem;

    position: relative;

    bottom: initial;
  }

  .homeTabNav ul {
    flex-wrap: wrap;

    gap: 20px 3%;
  }

  .homeTabNav ul::before {
    display: none;
  }

  .homeTabNav li:not(:last-child)::before {
    display: none;
  }

  .homeTabNav li {
    width: 31.33%;

    box-sizing: border-box;

    padding: 10px 14px;

    border: 1px solid #ddd;
  }

  .homeTabNav li::before {
    display: none;
  }

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

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

  .homeTabNav li.active .tit p {
    color: #fff;
  }
  .homeTabCont .wrap {
    margin-top: 0%;
  }
}

@media screen and (max-width: 768px) {
  .homeTabTop ul {
    gap: 8px 16px;
  }

  .homeTabTop a {
    font-size: 13px;
  }
}

@media screen and (max-width: 560px) {
  .homeTabCont {
    padding-top: 33%;
  }

  .homeTabCont_inner {
    width: 100%;
  }

  .homeTabTop a {
    font-size: 12px;
  }

  .homeTabNav ul {
    gap: 10px 0;
  }

  .homeTabNav li {
    width: 100%;
  }

  .homeTabTxt,
  .homeTabBtn {
    display: none;
  }
}

/* --------------------------我们是谁-------------------- */

.home_who_we_are {
}

.hwwa_maxbox {
}

.hwwa_title h4 {
  font-weight: normal;
}

.hwwa_btnbox {
  display: flex;

  justify-content: center;

  margin-top: 0.3rem;
}

.hwwa_btn a {
  background: rgba(22, 101, 166, 0.2);

  color: var(--i_color);
}

.hwwa_contain {
  margin-top: 0.5rem;
}

.hwwa_main {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 0.4rem;

  margin-top: -1rem;
}

.hwwa_col {
  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 1rem;

  min-width: 0;
}

.hwwa_col_l {
  align-items: center;
}

.hwwa_col_r {
  align-items: center;
}

.hwwa_item h3 {
  display: flex;

  align-items: baseline;

  gap: 0.04rem;

  font-weight: bold;

  color: var(--i_color3);

  line-height: 1.2;
}

.hwwa_col_l .hwwa_item h3 {
  justify-content: center;
}

.hwwa_col_r .hwwa_item h3 {
  justify-content: center;
}

.hwwa_item h3 i {
  font-family: "DINPro";
}

.hwwa_item h3 sup {
  line-height: 1;

  font-weight: bold;

  color: var(--i_color3);
}

.hwwa_item_info {
  display: inline-flex;

  align-items: center;

  gap: 0.1rem;

  margin-top: 0.16rem;

  width: 100%;
}

.hwwa_col_l .hwwa_item_info {
  justify-content: center;
}

.hwwa_col_r .hwwa_item_info {
  justify-content: center;
}

.hwwa_item_info img {
  width: 0.28rem;

  height: 0.28rem;

  object-fit: contain;

  flex-shrink: 0;
}

.hwwa_item_info h4 {
  color: var(--i_color3);

  line-height: 1.4;

  white-space: nowrap;
}

.hwwa_earth {
  flex-shrink: 0;

  width: 52.6%;

  aspect-ratio: 1 / 1;
}

.hwwa_earth img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;
}

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

    gap: 30px;

    margin-top: 0;
  }

  .hwwa_earth {
    order: -1;

    width: 60%;

    max-width: 320px;
  }

  .hwwa_col {
    flex-direction: row;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.3rem 20%;

    width: 100%;
  }

  .hwwa_col_l,
  .hwwa_col_r {
    align-items: flex-start;
  }

  .hwwa_col_l .hwwa_item h3,
  .hwwa_col_r .hwwa_item h3 {
    justify-content: flex-start;
  }

  .hwwa_col_l .hwwa_item_info,
  .hwwa_col_r .hwwa_item_info {
    justify-content: flex-start;
  }

  .hwwa_item_info h4 {
    white-space: normal;
  }

  .hwwa_item {
    width: calc((100% - 20%) / 2);
  }
}

@media screen and (max-width: 560px) {
  .hwwa_earth {
    width: 72%;

    max-width: 260px;
  }

  .hwwa_col {
    gap: 0.2rem 10%;

    width: 100%;
  }

  .hwwa_item {
    width: calc((100% - 10%) / 2);
  }

  .hwwa_item_info img {
    width: 22px;

    height: 22px;
  }
}

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

  .hwwa_col_l .hwwa_item h3,
  .hwwa_col_r .hwwa_item h3 {
    justify-content: center;
  }

  .hwwa_col_l .hwwa_item_info,
  .hwwa_col_r .hwwa_item_info {
    justify-content: center;
  }

  .hwwa_item_info {
    margin-top: 0.1rem;
  }
}

/* --------------------------项目案例研究-------------------- */

.home_project_case {
  padding-left: 0;

  padding-right: 0;
}

.hpjc_maxbox {
  width: 100%;
}

.hpjc_hero {
  position: relative;

  width: 100%;

  aspect-ratio: 1920 / 960;

  overflow: hidden;
}

.hpjc_bg {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;
}

.hpjc_bg::after {
  content: "";

  position: absolute;

  inset: 0;

  background: rgb(0 0 0 / 45%);

  z-index: 2;
}

.hpjc_bg dt {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;
}

.hpjc_bg dt img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0;

  visibility: hidden;
}

.hpjc_bg dt.active {
  z-index: 1;
}

.hpjc_bg dt.active img {
  opacity: 1;

  visibility: visible;

  transition: opacity 0.5s ease;
}

.hpjc_contain {
  position: absolute;

  inset: 0;

  z-index: 3;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 0.6rem 0 0.5rem;

  box-sizing: border-box;
}

.hpjc_head {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.12rem;

  text-align: center;

  margin-bottom: 1.5rem;
}

.hpjc_head h4 {
  color: #fff;
}

.hpjc_head h5 {
  color: #fff;
}

.hpjc_body {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 0.4rem;

  flex: 1;

  padding-bottom: 0.1rem;
}

.hpjc_info {
  width: 42%;

  max-width: 6.8rem;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  height: 100%;

  justify-content: space-between;
}

.hpjc_info_tit {
  color: #fff;
}

.hpjc_info_txt {
  color: #fff;

  margin-top: 0.2rem;
}

.hpjc_btn {
  margin-top: 0.7rem;

  display: flex;
}

.hpjc_num {
  margin-top: 0.5rem;

  display: flex;

  align-items: baseline;

  color: #fff;

  line-height: 1;
}

.hpjc_num_curr {
}

.hpjc_num_total {
  opacity: 0.7;
}

.hpjc_swiper {
  width: 52%;

  max-width: 8rem;

  overflow: hidden;

  flex-shrink: 0;
}

.hpjc_swiper .swiper-slide {
  width: 36%;

  flex-shrink: 0;

  cursor: pointer;

  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .hpjc_head {
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .hpjc_hero {
    aspect-ratio: unset;

    height: auto;

    min-height: 6.5rem;

    overflow: hidden;
  }

  .hpjc_contain {
    position: relative;

    inset: auto;

    height: auto;

    padding: 40px 0 30px;
  }

  .hpjc_body {
    flex-direction: column;

    align-items: stretch;

    gap: 24px;

    flex: none;
  }

  .hpjc_info {
    width: 100%;

    max-width: none;

    height: auto;
  }

  .hpjc_swiper {
    width: 100%;

    max-width: none;
  }

  .hpjc_head h4 {
    max-width: none;
  }

  .hpjc_swiper .swiper-slide {
    width: 47%;
  }
}

@media screen and (max-width: 560px) {
  .hpjc_contain {
    padding: 24px 0 20px;
  }

  .hpjc_hero {
    min-height: auto;
  }

  .hpjc_num {
    margin-top: 24px;
  }

  .hpjc_swiper .swiper-slide {
    width: 78%;
  }
}

.hpjc_thumb {
  width: 100%;

  aspect-ratio: 422 / 211;

  border-radius: 0.1rem;

  overflow: hidden;

  position: relative;
}

.hpjc_thumb::before {
  content: "";

  display: block;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

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

  z-index: 1;

  transition: all 0.35s ease;
}

.hpjc_thumb img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.45s ease;
}

.hpjc_swiper .swiper-slide.swiper-slide-active .hpjc_thumb::before {
  top: 0;

  height: 0%;
}

.hpjc_swiper .swiper-slide:hover .hpjc_thumb img {
  transform: scale(1.05);
}

.hpjc_thumb_tit {
  color: #fff;

  line-height: 1.4;

  margin-top: 0.12rem;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

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

  .hpjc_num {
    margin-top: 0.3rem;
  }

  .hpjc_head {
    margin-bottom: 0.5rem;
  }
}

/* --------------------------新闻活动-------------------- */

.home_news_events {
}

.hne_maxbox {
}

.hne_main {
  display: flex;

  gap: 4%;

  align-items: stretch;
}

.hne_left {
  width: 45.3%;

  flex-shrink: 0;

  display: flex;
}

.hne_left a {
  display: flex;

  flex-direction: column;

  width: 100%;

  height: 100%;
}

.hne_right {
  flex: 1;

  min-width: 0;

  display: flex;

  flex-direction: column;
}

.hne_right li {
  flex: 1;

  display: flex;

  border-bottom: 1px solid #e5e5e5;
}

.hne_right li a {
  display: flex;

  width: 100%;

  flex: 1;
}

.hne_right li:first-child {
  border-top: 1px solid #e5e5e5;
}

.hne_date {
  color: #8a96a3;

  line-height: 1.4;
}

.hne_left .hne_date {
  margin-bottom: 0.16rem;
}

.hpp_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;

  border-radius: 0.1rem;
}

.hpp_pic::before {
  content: "";

  display: block;

  padding-bottom: 51.17%;
}

.hpp_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hne_left a:hover .hpp_pic img {
  transform: scale(1.05);
}

.hne_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  margin-top: 0.2rem;

  transition: color 0.35s ease;
}

.hne_desc {
  color: #8a96a3;

  line-height: 1.6;

  margin-top: 0.12rem;
}

.hne_left a:hover .hne_tit {
  color: var(--i_color);
}

.hne_item {
  display: grid;

  grid-template-columns: auto 1fr;

  column-gap: 0.3rem;

  row-gap: 0.08rem;

  flex: 1;

  width: 100%;

  align-content: center;

  padding: 0.2rem 0;

  box-sizing: border-box;
}

.hne_item .hne_date {
  flex-shrink: 0;

  grid-column: 1;

  grid-row: 1;

  white-space: nowrap;
}

.hne_item_txt {
  display: contents;
}

.hne_item_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  transition: color 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  grid-column: 2;

  grid-row: 1;
}

.hne_item_desc {
  color: #8a96a3;

  line-height: 1.6;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  grid-column: 2;

  grid-row: 2;

  margin-top: 0;
}

.hne_right a:hover .hne_item_tit {
  color: var(--i_color);
}

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

    gap: 0.3rem;
  }

  .hne_left {
    width: 100%;

    display: block;
  }

  .hne_left a {
    height: auto;
  }

  .hne_right {
    display: block;
  }

  .hne_right li {
    flex: none;

    display: block;
  }

  .hne_right li a {
    display: block;
  }

  .hne_item {
    flex: none;

    padding: 0.3rem 0;
  }
}

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

    flex-direction: column;

    gap: 8px;

    padding: 20px 0;
  }

  .hne_item_txt {
    display: block;
  }

  .hne_item_tit,
  .hne_item_desc {
    grid-column: auto;

    grid-row: auto;
  }

  .hne_item_desc {
    margin-top: 0.08rem;
  }

  .hne_item .hne_date {
    width: auto;
  }
}

/* --------------------------Partners & Support-------------------- */

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

.ps_maxbox {
  width: 100%;
}

.ps_cards {
  display: flex;

  gap: 20px;
}

.ps_card {
  width: calc((100% - 20px) / 2);

  flex-shrink: 0;
}

.ps_card a {
  display: block;

  position: relative;

  border-radius: 0.2rem;

  overflow: hidden;
}

.ps_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;
}

.ps_pic::before {
  content: "";

  display: block;

  padding-bottom: 63.78%;
}

.ps_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.ps_card a:hover .ps_pic img {
  transform: scale(1.05);
}

.ps_card_cont {
  position: absolute;

  inset: 0;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-end;

  gap: 0.24rem;

  padding: 0 0 0.5rem 0;

  box-sizing: border-box;
}

.ps_card_cont h3 {
  color: #fff;

  font-weight: bold;

  line-height: 1.2;
}

.ps_go_btn span {
  display: inline-flex;

  align-items: center;

  color: var(--i_color3);

  border-radius: 2.3rem;

  padding: 0.1rem 0.1rem 0.1rem 0.2rem;

  box-sizing: border-box;

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

  transition: all 0.35s ease;
}

.ps_go_btn span p {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-left: 0.12rem;

  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: var(--i_color2);
}

.ps_go_btn span p iconify-icon {
  font-size: 0.14rem;

  color: #fff;
}

.ps_card a:hover .ps_go_btn span {
  background: var(--i_color2);

  color: #fff;
}

.ps_card a:hover .ps_go_btn span p {
  background: #fff;
}

.ps_card a:hover .ps_go_btn span p iconify-icon {
  color: var(--i_color2);
}

.ps_cta {
  margin-top: 0.5rem;

  padding: 0.8rem 0;
}

.ps_cta_cont {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.3rem;

  text-align: center;
}

.ps_cta_cont h4 {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.3;
}

.ps_contact_btn {
  width: 100%;

  max-width: 7.2rem;

  margin-top: 0.1rem;
}

.ps_contact_btn a {
  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  width: 100%;

  padding: 0.22rem 0.7rem;

  box-sizing: border-box;

  background: #fff;

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

  border-radius: 2.3rem;

  color: #34414f;

  font-weight: 500;

  letter-spacing: 0.06em;

  transition: all 0.35s ease;
}

.ps_contact_txt {
  text-align: center;
}

.ps_contact_arrow {
  position: absolute;

  right: 0.32rem;

  top: 50%;

  transform: translateY(-50%);

  font-size: 0.28rem;

  color: var(--i_color3);

  transition: color 0.35s ease;
}

.ps_contact_btn a:hover {
  background: var(--i_color3);

  color: #fff;
}

.ps_contact_btn a:hover .ps_contact_arrow {
  color: #fff;
}

.ps_social {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap: 0.16rem;

  margin-top: 0.1rem;
}

.ps_social a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.44rem;

  height: 0.44rem;

  border-radius: 50%;

  border: 1px solid rgba(14, 25, 38, 0.24);

  color: var(--i_color3);

  font-size: 0.22rem;

  transition: all 0.35s ease;
}

.ps_social a iconify-icon {
  font-size: 0.16rem;
}

.ps_social a:hover {
  border-color: var(--i_color);
}

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

.ps_card_learnCenter {
  width: 100%;
}

.ps_card_learnCenter a {
  display: block;

  position: relative;

  border-radius: 0.2rem;

  overflow: hidden;
}

.ps_card_learnCenter .ps_pic::before {
  padding-bottom: 31.47%;
}

.ps_card_learnCenter .ps_card_cont {
  justify-content: center;

  padding: 0.4rem;

  gap: 0.2rem;
}

.ps_card_learnCenter .ps_card_cont p {
  color: #fff;

  max-width: 9rem;

  text-align: center;
}

.ps_card_learnCenter .ps_go_btn {
  margin-top: 0.1rem;
}

.ps_card_learnCenter .ps_go_btn span {
  background: rgba(255, 255, 255, 0.5);

  color: var(--i_color3);
}

.ps_card_learnCenter a:hover .ps_go_btn span {
  background: var(--i_color2);

  color: #fff;
}

.ps_card_learnCenter a:hover .ps_go_btn span p {
  background: #fff;
}

.ps_card_learnCenter a:hover .ps_go_btn span p iconify-icon {
  color: var(--i_color2);
}

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

    gap: 20px;
  }

  .ps_card {
    width: 100%;
  }

  .ps_cta {
    margin-top: 30px;

    padding: 50px 0;
  }

  .ps_contact_btn {
    max-width: 100%;
  }

  .ps_contact_btn a {
    padding: 0.18rem 0.6rem;
  }
}

@media screen and (max-width: 560px) {
  .ps_card a {
    border-radius: 12px;
  }

  .ps_cta {
    padding: 40px 0;
  }

  .ps_social a {
    width: 36px;

    height: 36px;

    font-size: 18px;
  }

  .ps_card_cont p {
    display: none;
  }

  .ps_go_btn span {
    padding: 0.05rem 0.05rem 0.05rem 0.1rem;
  }

  .ps_card_learnCenter .ps_pic::before {
    padding-bottom: 56%;
  }
}

/* -----------------------------------forBusiness.html------------------------------- */

.for_business_banner {
  width: 100%;

  overflow: hidden;

  position: relative;
}

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

  position: relative;

  overflow: hidden;

  list-style: none;

  padding: 0;
}

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

  padding-bottom: 49%;

  /* 设置比例 */

  position: relative;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.fbb_text {
  position: absolute;

  top: 40%;

  left: 10.9%;

  z-index: 3;

  width: 46%;
}

.fbb_text h3 {
  color: #fff;

  margin-bottom: 0.3rem;
}

.fbb_text h4 {
  color: #fff;

  margin-bottom: 0.3rem;
}

.fbb_btn {
  display: flex;

  justify-content: flex-start;
}

@media screen and (max-width: 1440px) {
  .fbb_text {
    top: 30%;

    width: 50%;
  }
}

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

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

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

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

@media screen and (max-width: 560px) {
  .fbb_maxbox .swiper-slide {
    padding-bottom: 75%;
  }

  .fbb_text {
    width: 90%;

    top: 40%;

    left: 50%;

    transform: translateX(-50%);
  }

  .fbb_text .fbb_btn {
    display: none;
  }

  .fbb_text h3 {
    text-align: center;
  }
}

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

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

/* ----------------------客户痛点与解决方案价值---------------------------- */

.forBusiness_custom_pain {
}

.fbcp_maxbox {
}

.fbcp_contain {
  display: flex;

  gap: 0.3rem;

  width: 100%;
}

.fbcp_item {
  width: calc((100% - 2 * 0.3rem) / 3);

  flex-shrink: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: #f5f5f5;

  border-radius: 0.18rem;

  box-sizing: border-box;

  padding: 0.8rem 0.4rem 0.4rem 0.4rem;

  cursor: pointer;
}

.fbcp_item_pic {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 0.4rem;
}

.fbcp_item_pic img {
  width: auto;

  height: 1rem;

  object-fit: contain;

  transition: all 0.45s ease;

  transform-style: preserve-3d;
}

.fbcp_item h3 {
  color: var(--i_color3);
}

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

.fbcp_item:hover .fbcp_item_pic img {
  transform: rotateY(180deg);
}

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

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

    justify-content: center;
  }

  .fbcp_item_pic img {
    height: 0.6rem;
  }

  .fbcp_item {
    padding: 0.6rem 0.3rem 0.3rem 0.3rem;
  }
}

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

  .fbcp_item {
    width: calc((100% - 2 * 0.2rem) / 3);
  }
}

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

  .fbcp_item {
    padding: 0.4rem 0.2rem 0.2rem 0.2rem;
  }

  .fbcp_item_pic img {
    height: 0.5rem;
  }

  .fbcp_item_pic {
    margin-bottom: 0.2rem;
  }
}

/* ----------------------核心技术能力---------------------------- */

.forBusiness_core_technical {
  background: #f5f5f5;
}

.fct_maxbox {
  overflow: visible;
}

.fct_contain {
  position: relative;
}

.fct_wrap {
  overflow: hidden;

  width: 100%;
}

.fct_ul {
  display: flex;

  width: 100%;

  will-change: transform;

  align-items: stretch;
}

.fct_item {
  flex: 0 0 100%;

  width: 100%;
}

.fct_item_box {
  position: relative;

  padding-top: 2rem;
}

.fct_line {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  z-index: 1;

  pointer-events: none;
}

.fct_line img {
  width: 100%;

  height: auto;

  display: block;
}

.fct_line_fill {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: fill;
}

.fct_item_body {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 0.8rem;
  overflow: hidden;
}

.fct_left {
  width: 36.5%;

  flex-shrink: 0;
}

.fct_num {
  color: #70ac3a;

  font-weight: bold;

  margin-bottom: 0.16rem;
}

.fct_num span {
  display: inline-block;

  padding: 0 0.08rem;

  background: #70ac3a;

  color: #fff;

  margin-right: 0.08rem;
}

.fct_num em {
  font-style: normal;
}

.fct_left h5 {
  color: var(--i_color3);

  margin-bottom: 0.16rem;

  font-weight: bold;
}

.fct_left p {
  color: #666666;
}

.fct_right {
  width: 47%;

  border-radius: 0.12rem;

  overflow: hidden;

  flex-shrink: 0;
  position: relative;
}
.fct_right::before {
  display: block;
  padding-bottom: 56%;
  content: "";
}
.fct_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1440px) {
  .fct_line {
    width: 80%;
  }
  .fct_item_box {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  /* .fct_item_body {

    gap: 0.4rem;

  }

  .fct_left {

    width: 45%;

  }

  .fct_right {

    width: 5.4rem;

    height: 3.6rem;

  }

  .fct_left h5 {

    font-size: 0.3rem !important;

  } */
}

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

  .fct_item {
    margin-bottom: 0.4rem;
  }

  .fct_item_body {
    flex-direction: column;

    gap: 0.2rem;
  }

  .fct_left {
    width: 100%;
  }

  .fct_right {
    width: 100%;

    height: auto;

    aspect-ratio: 720 / 480;
  }

  .fct_left h5 {
    font-size: 0.26rem !important;
  }

  .fct_line {
    display: none;
  }

  .fct_item_box {
    padding-top: 0;
  }
}

/* --------------------------卡片图片--------------------------- */

.forBusiness_card {
}
.forBusiness_card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fbc_maxbox {
  position: relative;
  width: 100%;
}
.fbc_maxbox::before {
  content: "";
  display: block;
  padding-bottom: 40%;
}
.fbc_maxbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 560px) {
  .forBusiness_card ul {
    gap: 0.3rem;
  }
}

/* ------------相关产品---------- */

.forBusiness_related_products {
  background: #f7f7f7;
}

.fbrp_maxbox {
}

.fbrp_contain {
  position: relative;

  margin-bottom: 0.3rem;
}

.fbrp_list {
  position: relative;

  overflow: hidden;
}

.fbrp_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  align-items: stretch;
}

.fbrp_list li {
  flex-shrink: 0;

  position: relative;

  padding: 0.25rem 0.3rem 0.5rem 0.3rem;

  box-sizing: border-box;

  background: #ffffff;

  border-radius: 0.2rem;

  cursor: pointer;

  height: auto;
}

.fbrp_list li h3 {
  color: var(--i_color);

  margin-bottom: 0.25rem;
}

.fbrp_list li span {
  display: block;

  width: 100%;

  position: relative;

  margin-bottom: 0.3rem;

  overflow: hidden;
}

.fbrp_list li span::before {
  content: "";

  display: block;

  padding-bottom: 95%;
}

.fbrp_list li span img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.fbrp_list li h4 a {
  color: var(--i_color3);

  font-weight: bold;

  margin-bottom: 0.3rem;

  display: block;
}

.fbrp_btn {
  display: flex;

  gap: 3%;
}

.fbrp_btn a {
  width: calc((100% - 3%) / 2);

  padding: 0.1rem 0;

  box-sizing: border-box;

  border-radius: 2.3rem;

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

  display: flex;

  justify-content: center;

  align-items: center;

  transition: all 0.35s ease;
}

.fbrp_btn a:hover {
  color: #fff;

  background: var(--i_color);

  border: 1px solid transparent;
}

.fbrp_list li:hover span img {
  transform: scale(1.1);
}

.fbrp_list li:hover h4 a {
  color: var(--i_color);
}

.fbrp_prev,
.fbrp_next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.5rem;

  height: 0.5rem;

  background: transparent;

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

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  border-radius: 50%;
}

.fbrp_prev {
  left: -0.7rem;
}

.fbrp_next {
  right: -0.7rem;
}

.fbrp_prev iconify-icon,
.fbrp_next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.3rem;

  color: var(--i_color);
}

.abc_list .swiper-button-disabled {
  cursor: not-allowed;
}

.fbrp_prev:hover,
.fbrp_next:hover {
  background: var(--i_color);
}

.fbrp_prev:hover iconify-icon,
.fbrp_next:hover iconify-icon {
  color: #fff;
}

.fbrp_pagination {
  display: none;

  margin-top: 0.3rem;

  text-align: center;
}

.fbrp_pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  display: inline-block;

  margin: 0 6px;

  background: #ccc;

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;
}

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

.fbrp_btnbox {
  display: flex;

  justify-content: center;
}

@media screen and (max-width: 1440px) {
  .fbrp_box {
    padding: 0 0.4rem;
  }

  .fbrp_prev {
    left: -0.3rem;
  }

  .fbrp_next {
    right: -0.3rem;
  }
}

@media screen and (max-width: 1024px) {
  .fbrp_prev,
  .fbrp_next {
    width: 0.35rem;

    height: 0.35rem;
  }

  .fbrp_prev iconify-icon,
  .fbrp_next iconify-icon {
    font-size: 0.2rem;
  }

  .fbrp_prev {
    left: -0.1rem;
  }

  .fbrp_next {
    right: -0.1rem;
  }

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

  .fbrp_list li h4 a {
    margin-bottom: 0.2rem;
  }

  .fbrp_btn a {
    padding: 0.05rem 0;
  }

  .fbrp_list li h3 {
    margin-bottom: 0.2rem;
  }
}

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

  .fbrp_box {
    padding: 0;
  }

  .fbrp_pagination {
    display: block;

    margin-top: 0.2rem;
  }

  .fbrp_contain {
    margin-bottom: 0.2rem;
  }
}

/* ---------------------------智能能源管理------------------------------- */

.forBusiness_smart_energy_management {
}

.fsem_maxbox {
  position: relative;

  display: block;
}

.fsem_maxbox::before {
  content: "";

  display: block;

  padding-bottom: 44.5%;
}

.fsemm_imgbox {
  position: absolute;

  left: 0;

  top: 0;

  display: block;

  width: 100%;
}

.fsemm_imgbox img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.fsemm_info {
  position: absolute;

  left: 45%;

  top: 50%;

  transform: translateY(-50%);

  width: 45%;
}

.fsemm_info h3 {
  color: var(--i_color3);

  display: flex;

  align-items: center;

  margin-bottom: 0.2rem;
}

.fsemm_info h3 img {
  width: 0.08rem;

  object-fit: contain;

  margin-right: 0.05rem;
}

.fsemm_info h4 {
  color: var(--i_color3);

  font-weight: bold;

  margin-bottom: 0.25rem;
}

.fsemm_info h5 {
  color: var(--i_color);

  margin-bottom: 0.2rem;
}

.fsemm_info h6 {
  color: #34414f;

  margin-bottom: 0.8rem;
}

.fsemm_btn {
  display: flex;
}

@media screen and (max-width: 1200px) {
  .fsemm_info h3 {
    margin-bottom: 0.1rem;
  }

  .fsemm_info h4 {
    margin-bottom: 0.15rem;
  }

  .fsemm_info h5 {
    margin-bottom: 0.1rem;
  }

  .fsemm_info h6 {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .fsemm_info h3 {
    margin-bottom: 0.05rem;
  }

  .fsemm_info h4 {
    margin-bottom: 0.1rem;
  }

  .fsemm_info h5 {
    margin-bottom: 0.05rem;
  }

  .fsemm_info h6 {
    margin-bottom: 0.15rem;
  }
}

@media screen and (max-width: 560px) {
  .fsemm_info h5,
  .fsemm_info h6 {
    display: none;
  }

  .fsemm_info {
    width: 50%;
  }
}

@media screen and (max-width: 375px) {
  .fsemm_info h4 {
    display: none;
  }

  .fsemm_info h3 {
    margin-bottom: 0.1rem;
  }
}
.jump_btn {
  background: var(--i_color);
  border-radius: 0.3rem;
  overflow: hidden;
  border: 1px solid var(--i_color);
  box-sizing: border-box;
  transition: all 0.35s ease;
}
.jump_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  color: #ffffff;
  padding: 0.08rem 0.2rem;
  transition: all 0.35s ease;
}
.jump_btn:hover {
  background: transparent;
}
.jump_btn:hover a {
  color: var(--i_color);
}
@media screen and (max-width: 1200px) {
  .jump_btn a {
    padding: 0.06rem 0.2rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .jump_btn a {
    padding: 0.03rem 0.08rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 420px) {
  .jump_btn a {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 375px) {
  .jump_btn a {
    padding: 0.03rem 0.05rem;
    font-size: 0.1rem;
  }
}

/* ------------------应用------------------- */

.forBusiness_application_scenarios {
}

.fbas_maxbox {
}

.fbas_contain {
}

.fbas_list {
  position: relative;

  overflow: hidden;
}

.fbas_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.fbas_list li {
  flex-shrink: 0;

  position: relative;
}

.fbas_list li span {
  position: relative;

  display: block;

  margin-bottom: 0.2rem;
}

.fbas_list li span::before {
  content: "";

  display: block;

  padding-bottom: 66.5%;
}

.fbas_list li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  border-radius: 0.1rem;
}

.fbas_list li p {
  text-align: center;

  color: #34414f;
}

.fbas_prev,
.fbas_next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.4rem;

  height: 0.4rem;

  background: rgb(255 255 255 / 40%);

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  border-radius: 50%;
}

.fbas_prev {
  left: 25%;
}

.fbas_next {
  right: 25%;
}

.fbas_prev iconify-icon,
.fbas_next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.3rem;

  color: #fff;
}

.abc_list .swiper-button-disabled {
  cursor: not-allowed;
}

.fbas_prev:hover,
.fbas_next:hover {
  background: var(--i_color);
}

.fbas_pagination {
  display: none;

  margin-top: 0.2rem;

  text-align: center;
}

.fbas_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;
}

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

@media screen and (max-width: 1024px) {
  .fbas_prev,
  .fbas_next {
    width: 0.3rem;

    height: 0.3rem;
  }

  .fbas_prev iconify-icon,
  .fbas_next iconify-icon {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 560px) {
  .fbas_prev {
    left: 1%;
  }

  .fbas_next {
    right: 1%;
  }

  .fbas_pagination {
    display: block;
  }
}

/* ----------------------forBusiness表单------------------------ */

.forBusiness_form {
}

.fb_maxbox {
  display: flex;

  justify-content: space-between;
}

.fbm_l {
  width: 45.8%;
}

.fbm_l h3 {
  font-weight: bold;

  color: var(--i_color2);

  margin-bottom: 0.15rem;
}

.fbm_l h4 {
  color: var(--i_color3);

  font-weight: bold;

  margin-bottom: 0.15rem;
}

.fbm_l h5 {
  color: #34414f;

  padding-bottom: 0.3rem;

  border-bottom: 1px dashed #e5e5e5;

  margin-bottom: 0.5rem;
}

.fbm_l h6 {
  color: #fff;

  background: var(--i_color);

  padding: 0.14rem 0.24rem;

  box-sizing: border-box;

  width: fit-content;

  display: flex;

  align-items: center;

  margin-bottom: 0.5rem;
}

.fbm_l h6 img {
  width: 0.36rem;

  object-fit: contain;

  margin-right: 0.1rem;
}

.fbm_ul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.fbm_ul li {
}

.fbm_ul li a {
  color: #1e2d3e;
}

.fbm_ul li a:hover {
  text-decoration: underline;

  color: var(--i_color);
}

.fbm_r {
  width: 45.3%;
}

.fbm_r h3 {
  color: var(--i_color3);

  margin-bottom: 0.3rem;

  font-weight: bold;
}

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

  .fbm_l {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .fbm_l h3,
  .fbm_l h4 {
    margin-bottom: 0.1rem;
  }

  .fbm_l h5 {
    padding-bottom: 0.2rem;

    margin-bottom: 0.3rem;
  }

  .fbm_l h6 {
    margin-bottom: 0.3rem;
  }

  .fbm_ul {
    gap: 0.1rem;
  }

  .fbm_r {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .fbm_l h6 img {
    width: 0.3rem;
  }

  .fbm_l h6 {
    padding: 0.1rem 0.2rem;

    margin-bottom: 0.2rem;
  }

  .fbm_l h5 {
    padding-bottom: 0.15rem;

    margin-bottom: 0.2rem;
  }

  .fbm_ul {
    gap: 0.05rem;
  }

  .fbm_r h3 {
    margin-bottom: 0.2rem;
  }
}

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

.product_banner {
  width: 100%;

  overflow: hidden;

  position: relative;
}

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

  position: relative;

  overflow: hidden;

  list-style: none;

  padding: 0;
}

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

  padding-bottom: 33.5%;

  /* 设置比例 */

  position: relative;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.pb_text {
  position: absolute;
  bottom: 5%;
  left: 10.9%;
  z-index: 3;
  width: 80%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pb_text h3 {
  color: #fff;
}

.pc_ul {
  display: flex;

  gap: 1%;
}

.pc_ul li {
}

.pc_ul li a {
  border-radius: 2.3rem;

  overflow: hidden;

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

  padding: 0.15rem 0.3rem;

  position: relative;

  z-index: 1;

  cursor: pointer;

  color: #fff;

  font-weight: bold;

  display: block;
}

.pc_ul li a::before {
  content: "";

  display: block;

  width: 0%;

  height: 100%;

  background: var(--i_color);

  position: absolute;

  left: 0;

  top: 0;

  border-radius: 2.3rem;

  z-index: -1;

  transition: all 0.35s ease;
}

.pc_ul li a:hover {
  background: transparent;
}

.pc_ul li a:hover::before {
  width: 100%;
}

.pc_ul li.active a {
  background: transparent;
}

.pc_ul li.active a::before {
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .pb_text h3 {
    margin-bottom: 0.6rem;
  }
}

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

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

@media screen and (max-width: 1024px) {
  .pb_text {
    left: 5%;
  }

  .pc_ul li a {
    padding: 0.15rem;
  }
}

@media screen and (max-width: 768px) {
  .pb_maxbox .swiper-slide {
    padding-bottom: 50%;
  }

  .pb_text {
    width: 90%;
  }

  .pc_ul {
    gap: 2%;
  }

  .pc_ul li a {
    padding: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .pb_maxbox .swiper-slide {
    padding-bottom: 75%;
  }

  .pc_ul {
    flex-wrap: wrap;

    gap: 0.1rem;
  }

  .pb_text h3 {
    display: none;
  }

  .pc_ul li a {
    padding: 0.08rem;
  }

  .pc_ul li a {
    font-size: 0.14rem;
  }
}

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

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

/* -----------------------产品tab------------------- */

.product_tab {
  display: flex;

  gap: 0.4rem 5%;

  border-bottom: #e7e7e7 1px solid;

  flex-wrap: wrap;
}

.product_tab li {
}

.product_tab li a {
  color: var(--i_color3);

  transition: all 0.35s ease;

  position: relative;

  font-weight: bold;
}

.product_tab li a::before {
  content: "";

  display: block;

  width: 0%;

  height: 0.02rem;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  bottom: -0.31rem;

  transition: all 0.35s ease;

  background: var(--i_color);
}

.product_tab li a:hover {
  color: var(--i_color);
}

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

.product_tab li a:hover::before {
  width: 100%;
}

.product_tab li.active a::before {
  width: 100%;
}

@media screen and (max-width: 560px) {
  .product_tab {
    border-bottom: none;

    gap: 0.3rem 5%;
  }

  .product_tab li {
    width: calc((100% - 5%) / 2);
  }

  .product_tab li a {
    padding-bottom: 0.1rem;
  }

  .product_tab li a::before {
    bottom: 0;
  }
}

/* -----------------------产品列表------------------- */

.pl_list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem 2%;
}

.pl_list li {
  width: calc((100% - 2 * 2%) / 3);
}

.pl_list li a {
  display: block;

  padding: 0.3rem 0.4rem;

  border-radius: 0.12rem;

  transition: all 0.35s ease;

  box-sizing: border-box;

  height: 100%;
}

.pl_list li a:hover {
  background: #fff;

  box-shadow: 0 0.04rem 0.3rem rgb(14 25 38 / 8%);
}

.pl_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;

  margin-bottom: 0.2rem;
}

.pl_pic::before {
  content: "";

  display: block;

  padding-bottom: 95.24%;
}

.pl_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.pl_tit {
  color: var(--i_color3);

  font-weight: bold;

  margin-bottom: 0.1rem;

  transition: color 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.pl_desc {
  color: #8a96a3;

  margin-bottom: 0.25rem;
}

.pl_more {
  display: flex;

  align-items: center;

  color: var(--i_color3);

  transition: color 0.35s ease;
}

.pl_more span {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.24rem;

  height: 0.24rem;

  margin-left: 0.08rem;

  border-radius: 50%;

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

  background: transparent;

  transition: all 0.35s ease;
}

.pl_more span iconify-icon {
  font-size: 0.14rem;

  color: var(--i_color3);

  transition: all 0.35s ease;
}

.pl_list li a:hover .pl_tit,
.pl_list li a:hover .pl_more {
  color: var(--i_color);
}

.pl_list li a:hover .pl_more span {
  background: var(--i_color);

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

.pl_list li a:hover .pl_more span iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .pl_list li {
    width: calc((100% - 2%) / 2);
  }
}

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

  .pl_list li a {
    padding: 0.2rem 0.3rem;
  }

  .pl_pic {
    margin-bottom: 0.15rem;
  }

  .pl_desc {
    margin-bottom: 0.2rem;
  }
}

/* -------------------------learnCenter.html--------------- */

.service_banner {
  width: 100%;

  overflow: hidden;

  position: relative;
}

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

  position: relative;

  overflow: hidden;

  list-style: none;

  padding: 0;
}

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

  padding-bottom: 33.5%;

  /* 设置比例 */

  position: relative;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.sb_text {
  position: absolute;

  top: 50%;

  left: 10.9%;

  z-index: 3;

  width: 50%;
}

.sb_text h3 {
  color: #fff;

  margin-bottom: 1rem;
}

.sb_ul {
  display: flex;

  gap: 3%;

  width: 100%;
}

.sb_ul li {
  width: calc((100% - 3 * 0.3%) / 4);
}

.sb_ul li a {
  border-radius: 2.3rem;

  overflow: hidden;

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

  padding: 0.2rem 0.24rem;

  position: relative;

  z-index: 1;

  cursor: pointer;

  color: #fff;

  font-weight: bold;

  display: block;

  text-align: center;
}

.sb_ul li a::before {
  content: "";

  display: block;

  width: 0%;

  height: 100%;

  background: var(--i_color);

  position: absolute;

  left: 0;

  top: 0;

  border-radius: 2.3rem;

  z-index: -1;

  transition: all 0.35s ease;
}

.sb_ul li a:hover {
  background: transparent;
}

.sb_ul li a:hover::before {
  width: 100%;
}

.sb_ul li.active a {
  background: transparent;
}

.sb_ul li.active a::before {
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .sb_text {
    top: 40%;

    width: 60%;
  }

  .sb_text h3 {
    margin-bottom: 0.6rem;
  }
}

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

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

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

    width: 70%;
  }

  .sb_ul li a {
    padding: 0.15rem;
  }
}

@media screen and (max-width: 768px) {
  .sb_maxbox .swiper-slide {
    padding-bottom: 50%;
  }

  .sb_text {
    width: 90%;
  }

  .sb_ul {
    gap: 2%;
  }

  .sb_ul li a {
    padding: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .sb_maxbox .swiper-slide {
    padding-bottom: 60%;
  }

  .sb_ul {
    flex-wrap: wrap;

    gap: 0.1rem;
  }

  .sb_text h3 {
    margin-bottom: 0.1rem;
  }

  .sb_text {
    top: 40%;

    width: 96%;

    left: 2%;
  }

  .sb_ul li {
    width: calc((100% - 2 * 0.1rem) / 3);
  }

  .sb_ul li a {
    padding: 0.08rem;
  }

  .sb_ul li a {
    font-size: 0.12rem;
  }
}

@media screen and (max-width: 375px) {
  .sb_text h3 {
    display: none;
  }

  .sb_maxbox .swiper-slide {
    padding-bottom: 70%;
  }

  .sb_text {
    top: 45%;
  }
}

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

/* ----------------学习中心内容------------- */

.service_maxbox {
}

.sm_maxbox {
}

.sm_faq {
  display: flex;
}

.sm_download {
  display: flex;
}

.sm_faq_r,
.sm_download_r {
  flex: 1;

  padding-left: 6%;

  border-left: #e5e5e5 1px solid;

  box-sizing: border-box;
}

.sm_public_l {
  width: 27%;

  justify-content: space-between;
}

.sm_public_l h3 {
  color: var(--i_color3);

  font-weight: bold;
}

.sm_public_l ul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.sm_public_l ul li {
}

.sm_public_l ul li a {
  color: var(--i_color3);

  transition: all 0.35s ease;
}

.sm_public_l ul li a:hover {
  color: var(--i_color);
}

.sm_public_l ul li.active a {
  color: var(--i_color);
}

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

    margin-bottom: 0.3rem;
  }

  .sm_faq,
  .sm_download {
    flex-direction: column;
  }

  .sm_faq_r,
  .sm_download_r {
    padding-left: 0%;

    border-left: none;

    box-sizing: border-box;
  }
}

/* faq */

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;
}

.faq_ul li {
  position: relative;

  border-radius: 0.06rem;

  overflow: hidden;

  border-bottom: #e5e5e5 1px solid;
}

.faq_q {
  box-sizing: border-box;

  padding: 0.2rem 0;

  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;

  font-weight: bold;
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0rem 0.2rem 0.2rem 0rem;

  z-index: 1;

  position: relative;
}

.faq_a p {
  width: 84%;

  color: #34414f;
  white-space: pre-line;
  line-height: 1.5;
  margin-bottom: 0.15rem;
}
.faq_a ul li {
  margin-bottom: 0.1rem;
}

.faq_q h3 {
  width: 0.24rem;

  height: 0.24rem;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  transition: all 0.3s ease;

  position: relative;

  border-radius: 50%;

  border: 1px solid var(--i_color3);
}

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

  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 2px;

  height: 50%;

  background-color: var(--i_color3);

  transition: all 0.3s ease;
}

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

  position: absolute;

  top: 50%;

  left: 50%;

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

  height: 2px;

  width: 50%;

  background-color: var(--i_color3);
}

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

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

.faq_ul li.on .faq_q h3 {
  border-color: var(--i_color);
}

.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 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 0rem;
  }
}

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

  .faq_ul li span {
    display: none;
  }
}

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

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

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

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

  .faq_q h3 {
    width: 0.2rem;

    height: 0.2rem;
  }
}

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

/* download */

/* 目录列表 */

.downloads_right_ul {
  display: flex;

  gap: 0.24rem;

  flex-wrap: wrap;
}

.downloads_right_ul li {
  width: 100%;
}

.downloads_right_ul li a {
  display: block;

  width: 100%;

  display: flex;

  flex-wrap: wrap;

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

  align-items: center;

  box-sizing: border-box;

  transition: all 0.3s ease;
}

.downloads_right_ul li a h4 {
  width: calc(100% - 1.3rem);

  font-size: 0.16rem;

  color: #333;

  box-sizing: border-box;

  padding: 0.2rem 2%;

  transition: all 0.3s ease;

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;

  box-sizing: border-box;
}

.downlaod_i {
  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  width: 1.3rem;

  background-color: #f0f0f0;

  box-sizing: border-box;

  padding: 0.15rem 0.1rem;

  transition: all 0.3s ease;
}

.downlaod_i iconify-icon {
  color: #666;

  font-size: 0.3rem;

  transition: all 0.3s ease;
}

.downlaod_i p {
  font-size: 0.16rem;

  color: #333;

  margin-top: 0.05rem;

  transition: all 0.3s ease;
}

.downloads_right_ul li a:hover {
  border: 1px solid #fff;

  background-color: #f4f4f4;
}

.downloads_right_ul li a:hover h4 {
  color: var(--i_color);
}

.downloads_right_ul li a:hover i {
  background-color: var(--i_color);

  border-radius: 0px 4px 4px 0px;
}

.downloads_right_ul li a:hover i iconify-icon {
  color: #fff;
}

.downloads_right_ul li a:hover i p {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .downloads_right_ul li a h4 {
    font-size: 0.16rem;
  }

  .downlaod_i p {
    font-size: 0.14rem;
  }
}

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

  .downloads_right {
    width: 100%;

    padding-left: 0%;

    margin-top: 0.4rem;
  }

  .downloads_right_ul {
    gap: 0.2rem;
  }
}

@media screen and (max-width: 767px) {
  .downlaod_i iconify-icon {
    font-size: 0.25rem;
  }

  .downloads_right_ul {
    gap: 0.2rem;
  }

  .downlaod_i {
    width: 1rem;

    padding: 0.1rem 0.05rem;
  }

  .downloads_right_ul li a h4 {
    width: calc(100% - 1rem);

    font-size: 0.14rem;
  }
}

/* -------------------------------learnCenter.html----------------------------- */

.learnCenter_maxbox {
}

.lc_box {
  display: flex;

  justify-content: space-between;
}

.lcb_l {
  width: 27%;
}

.lcb_r {
  flex: 1;
}

.lcr_box {
  margin-top: 1.4rem;
}

.lcr_box article {
  border-left: #e5e5e5 1px solid;

  padding-left: 5%;
}

.cat_nav_tit {
  margin-bottom: 0.6rem;
}

.products_left_h2 {
  font-weight: bold;

  color: var(--i_color3);
}

.products_left_h2 iconify-icon {
  color: #fff;

  font-size: 0.34rem;

  margin-left: 0.1rem;

  font-weight: bold;

  margin-bottom: 2px;

  display: none;
}

.list {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  /* border: 1px solid rgba(51, 51, 51, 0.2); */

  gap: 0.15rem;

  overflow: hidden;
}

.list li {
  position: relative;
}

.list li::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translate(-50%, 0);

  width: 80%;

  height: 1px;

  background-color: #eeeeee;

  display: none;
}

.list_a {
  box-sizing: border-box;

  padding: 0.1rem 0.2rem;

  position: relative;

  z-index: 2;

  overflow: hidden;

  background-color: transparent;

  display: flex;

  align-items: center;
}

.list_a img {
  width: 0.3rem;

  object-fit: contain;

  margin-right: 0.1rem;
}

/* .list_a::after {



  content: "";



  position: absolute;



  top: 0;



  right: 0;



  background-color: var(--i_color);



  width: 0;



  height: 100%;



  transition: all 0.5s ease-in-out;



  z-index: -1;



} */

.list .list_a a {
  font-size: 0.2rem;

  color: var(--i_color3);

  box-sizing: border-box;

  line-height: 150%;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  font-weight: bold;
}

.list .list_a i {
  width: 0.5rem;

  height: 0.55rem;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 0;

  cursor: pointer;
}

.list .list_a i iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.24rem;

  color: #666;

  transition: all 0.3s ease;
}

.list_dl {
  padding: 0.1rem 0.15rem 0 0.15rem;

  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;
}

.list_dl dt {
  box-sizing: border-box;

  padding: 0 0 0.1rem 0;

  border-radius: 0.06rem;
}

.list_dl dt a {
  font-size: 0.18rem;

  line-height: 0.24rem;

  color: #666666;

  display: block;

  transition: all 0.3s ease;

  position: relative;

  box-sizing: border-box;

  padding: 0rem 0.45rem;

  transition: all 0.35s ease;
}

.list_dl dt a::after {
  content: "";

  position: absolute;

  left: 0rem;

  top: 50%;

  transform: translateY(-50%);

  width: 0.06rem;

  height: 0.06rem;

  background-color: #666666;

  border-radius: 50%;

  transition: all 0.3s ease;

  display: none;
}

.list_dl dt a:hover::after,
.list_dl dt a:hover::before {
  opacity: 1;
}

.list_dl dt a:hover {
  text-decoration: underline;
}

.list_dl .list_dl_active a {
  text-decoration: underline;
}

.list_active {
}

.list_active .list_a {
}

.list_active .list_a img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(91%) saturate(1462%)
    hue-rotate(176deg) brightness(93%) contrast(90%);
}

.list_active .list_a::after {
  width: 100%;

  left: 0;

  right: auto;
}

.list_active .list_a i iconify-icon {
  color: #fff;

  transform: translate(-50%, -50%) rotate(180deg);
}

.list_active .list_a a {
  color: var(--i_color);
}

.list_dl_active a::after,
.list_dl_active a::before {
  background: var(--i_color) !important;

  opacity: 1 !important;
}

.list_dl dt a:hover::after {
  background: var(--i_color);
}

.list_dl dt a:hover {
  color: var(--i_color);
}

.list_dl_active {
  /* background: #f4f4f4; */
}

.list_dl_active a {
  color: var(--i_color) !important;
}

.list_active .list_dl {
}

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

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

    margin-bottom: 0.3rem;
  }

  .products_left_h2 iconify-icon {
    display: block;
  }

  .products_left_h2 {
    display: flex;

    display: -webkit-flex;

    align-items: center;

    justify-content: center;
  }

  .products_left_h2 {
    margin-bottom: 0rem;
  }

  .products_left_h2 {
    color: #fff;

    background-color: var(--i_color);

    box-sizing: border-box;

    padding: 0.15rem 0;
  }

  .cat_nav_tit {
    margin-bottom: 0.3rem;
  }

  .lc_box {
    flex-direction: column;
  }

  .lcr_box article {
    border-left: none;
  }

  .lcr_box {
    margin-top: 0.5rem;
  }
}

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

@media screen and (max-width: 768px) {
  .products_left_h2 iconify-icon {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .products_left_h2 iconify-icon {
    font-size: 0.25rem;
  }

  .list .list_a a {
    font-size: 0.2rem;
  }

  .cat_nav_tit {
    margin-bottom: 0.1rem;
  }

  .list_a {
    padding: 0.1rem;
  }

  .list_dl dt a {
    padding: 0rem 0.35rem;
  }

  .list {
    gap: 0.05rem;
  }

  .list_a img {
    width: 0.24rem;
  }

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

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

/* ------------------------ourcase.html--------------------- */

.ourcase_maxbox {
}

.ocm_box {
}

.ocm_tab {
}

.ocm_tab ul {
  display: flex;

  flex-wrap: wrap;

  padding-bottom: 0.3rem;

  border-bottom: 1px solid #e5e5e5;
}

.ocm_tab ul li {
  width: calc(100% / 5);
}

.ocm_tab ul li a {
  border-right: 1px solid #e5e5e5;

  width: 100%;

  display: flex;

  justify-content: center;

  position: relative;
}

.ocm_tab ul li a::before {
  content: "";

  display: block;

  width: 0%;

  height: 0.02rem;

  position: absolute;

  bottom: -0.3rem;

  left: 50%;

  transform: translateX(-50%);

  background: var(--i_color);

  transition: all 0.35s ease;
}

.ocm_tab ul li:nth-child(5n) a {
  border-right: none;
}

.ocm_tab ul li a:hover {
  color: var(--i_color);
}

.ocm_tab ul li a:hover::before {
  width: 100%;
}

.ocm_tab ul li.active a {
  color: var(--i_color);
}

.ocm_tab ul li.active a::before {
  width: 100%;
}

@media screen and (max-width: 1366px) {
  .ocm_tab ul li {
    width: calc(100% / 4);
  }

  .ocm_tab ul {
    padding-bottom: 0;

    border-bottom: none;

    gap: 0.3rem 0;
  }

  .ocm_tab ul li a::before {
    bottom: -0.2rem;
  }

  .ocm_tab ul li:nth-child(4n) a {
    border-right: none;
  }

  .ocm_tab ul li:nth-child(5n) a {
    border-right: 1px solid #e5e5e5;
  }
}

@media screen and (max-width: 1024px) {
  .ocm_tab ul li {
    width: calc(100% / 3);
  }

  .ocm_tab ul li:nth-child(3n) a {
    border-right: none;
  }

  .ocm_tab ul li:nth-child(4n) a {
    border-right: 1px solid #e5e5e5;
  }
}

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

  .ocm_tab ul li a {
    border-right: none;
  }

  .ocm_tab ul li:nth-child(4n) a {
    border-right: none;
  }

  .ocm_tab ul li:nth-child(5n) a {
    border-right: none;
  }

  .ocm_tab ul li a::before {
    bottom: -0.1rem;
  }
}

.ocm_contain {
  margin-top: 0.4rem;
}

.ocm_list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.28rem;
}

.ocm_list li {
  width: calc((100% - 0.28rem) / 2);
}

.ocm_list li a {
  display: block;
}

.ocm_list .hpp_pic {
  margin-bottom: 0.2rem;
}

.ocm_list .hpp_pic::before {
  padding-bottom: 49.46%;
}

.ocm_list li a:hover .hpp_pic img {
  transform: scale(1.05);
}

.ocm_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  transition: color 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.ocm_line {
  width: 100%;

  height: 1px;

  margin: 0.16rem 0 0.12rem;

  background: #e5e5e5;
}

.ocm_desc {
  color: #8a96a3;

  line-height: 1.6;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.ocm_meta {
  display: flex;

  flex-wrap: wrap;

  gap: 0.2rem 0.3rem;

  margin-top: 0.16rem;
}

.ocm_loc,
.ocm_cap {
  display: flex;

  align-items: center;

  color: #8a96a3;

  line-height: 1.4;
}

.ocm_loc img,
.ocm_cap img {
  width: 0.16rem;

  height: 0.16rem;

  margin-right: 0.06rem;

  flex-shrink: 0;

  object-fit: contain;
}

.ocm_more {
  display: flex;

  align-items: center;

  margin-top: 0.2rem;

  color: var(--i_color3);

  transition: color 0.35s ease;
}

.ocm_more span {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.24rem;

  height: 0.24rem;

  margin-left: 0.08rem;

  border-radius: 50%;

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

  background: transparent;

  transition: all 0.35s ease;
}

.ocm_more span iconify-icon {
  font-size: 0.14rem;

  color: var(--i_color3);

  transition: all 0.35s ease;
}

.ocm_list li a:hover .ocm_tit,
.ocm_list li a:hover .ocm_more {
  color: var(--i_color);
}

.ocm_list li a:hover .ocm_more span {
  background: var(--i_color);

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

.ocm_list li a:hover .ocm_more span iconify-icon {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .ocm_list li {
    width: 100%;
  }
}

/* ----------------------------news.html------------------------- */

.news_maxbox {
}

.nm_box {
}

.nmb_list li {
  border-bottom: 1px solid #e5e5e5;
}

.nmb_list li:first-child {
  border-top: 1px solid #e5e5e5;
}

.nmb_list li a {
  display: flex;

  align-items: center;

  gap: 0.28rem;

  padding: 0.3rem 0;

  box-sizing: border-box;
}

.nmb_date {
  flex-shrink: 0;

  width: 8%;

  color: #8a96a3;

  line-height: 1.4;

  align-self: flex-start;
}

.nmb_pic {
  flex-shrink: 0;

  width: 34.93%;

  display: block;

  position: relative;

  overflow: hidden;

  border-radius: 0.1rem;
}

.nmb_pic::before {
  content: "";

  display: block;

  padding-bottom: 47.33%;
}

.nmb_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.nmb_info {
  flex: 1;

  min-width: 0;
}

.nmb_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  transition: color 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.nmb_desc {
  color: #8a96a3;

  line-height: 1.6;

  margin-top: 0.12rem;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.nmb_more {
  display: inline-flex;

  align-items: center;

  margin-top: 0.2rem;

  color: var(--i_color);

  background: rgb(22 101 166 / 10%);

  border-radius: 2.3rem;

  padding: 0.1rem 0.1rem 0.1rem 0.2rem;

  transition: all 0.35s ease;
}

.nmb_more span {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.24rem;

  height: 0.24rem;

  margin-left: 0.12rem;

  border-radius: 50%;

  background: var(--i_color2);

  transition: all 0.35s ease;
}

.nmb_more span iconify-icon {
  font-size: 0.14rem;

  color: #fff;

  transition: all 0.35s ease;
}

.nmb_list li a:hover .nmb_pic img {
  transform: scale(1.05);
}

.nmb_list li a:hover .nmb_tit {
  color: var(--i_color);
}

.nmb_list li a:hover .nmb_more {
  background: var(--i_color);

  color: #fff;
}

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

    gap: 0.2rem;
  }

  .nmb_date {
    width: 100%;
  }

  .nmb_pic {
    width: 100%;
  }
}

/* ------------------------------------contact.html------------------ */

.contactUs_company_info {
}

.cci_maxbox {
}

.cci_contain {
}

.contact_we_list {
  width: 100%;

  margin-left: auto;

  margin-right: auto;

  display: flex;

  justify-content: center;

  gap: 0 3%;
}

.contact_we_list .ct_item {
  width: 22.5%;

  position: relative;

  box-sizing: border-box;

  border-radius: 0.12rem;

  border: 1px solid #e7e7e7;

  cursor: pointer;

  background: #fff url(static/images/ct_item.webp) no-repeat;

  background-size: cover;

  background-position: right 1.2rem;
}

.contact_we_list .ct_item a {
  display: block;

  width: 100%;

  height: 60%;
}

.contact_we_list .ct_item .ct_icon {
  width: 1rem;

  height: 1rem;

  position: absolute;

  top: -15%;

  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  background: #fff;

  transition: all 0.4s;
}

.contact_we_list .ct_item .ct_icon iconify-icon {
  font-size: 0.38rem;

  color: var(--i_color);

  transition: all 0.4s;
}

.contact_we_list .ct_item p {
  text-align: center;

  font-weight: 450;

  font-size: 0.2rem;

  margin-top: 1rem;
}

.contact_we_list .ct_item span {
  text-align: center;

  font-size: 0.2rem;

  color: #666;

  display: block;

  margin: 0.2rem 0 1.4rem 0;

  word-wrap: break-word;

  overflow-wrap: break-word;

  position: relative;

  overflow: hidden;
}

/* 第三个span */

.contact_we_list .ct_item:nth-child(3) span {
  width: 80%;

  margin-left: auto;

  margin-right: auto;

  line-height: 1.6;
}

.contact_we_list .ct_item i {
  display: block;

  font-size: 0.16rem;

  font-weight: bold;

  color: #666666;

  text-align: center;

  margin-top: 0.2rem;
}

.contact_we_list .ct_item text {
  display: block;

  margin-top: 0.14rem;

  margin-left: auto;

  margin-right: auto;

  text-align: center;

  width: 80%;

  font-size: 0.2rem;

  color: #666;

  line-height: 1.5;
}

.contact_we_list .ct_item i:not(:nth-of-type(1)) {
  margin-top: 0.05rem;
}

.contact_we_list .ct_item:hover .ct_icon {
  background: var(--i_color);
}

.contact_we_list .ct_item:hover .ct_icon iconify-icon {
  color: #fff;

  transform: scale(1.1);
}

.ct_t_code {
  width: 36%;

  position: absolute;

  bottom: 0.1rem;

  left: 50%;

  transform: translateX(-50%);
}

.ct_t_code img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

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

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

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

  .contact_we_list {
    width: 100%;

    flex-wrap: wrap;

    justify-content: normal;

    gap: 0.8rem 3%;
  }

  .contact_we_list .ct_item {
    width: 48.48%;
  }

  .ct_t_code {
    display: none;
  }

  .contact_we_list .ct_item span {
    margin: 0.2rem 0 1rem 0;
  }

  .contact_we_list .ct_item:nth-child(3) span {
    width: 100%;
  }
}

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

@media screen and (max-width: 768px) {
  .ct_title {
    font-size: 0.3rem;
  }

  .contact_we_list {
    gap: 0.6rem 3%;
  }

  .contact_we_list .ct_item {
    width: 100%;
  }

  .contact_we_list .ct_item span {
    margin: 0.2rem 0 0.3rem 0;
  }

  .contact_we_list .ct_item:last-child {
    padding-bottom: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .contact_we_list .ct_item {
    background-position: top;
  }

  .contact_we_list .ct_item .ct_icon {
    width: 0.6rem;

    height: 0.6rem;
  }

  .ct_title {
    font-size: 0.24rem;
  }

  .contact_we_list .ct_item span,
  .contact_we_list .ct_item text {
    font-size: 0.16rem;
  }

  .contact_we_list .ct_item .ct_icon iconify-icon {
    font-size: 0.24rem;
  }

  .contact_we_list .ct_item p {
    margin-top: 0.6rem;

    font-size: 0.16rem;
  }
}

/* flex左右布局居中 */

.flc_zy {
  display: flex;

  justify-content: center;

  align-items: center;
}

/* --------------------让我们谈谈您的需求---------------- */

.contactUs_userInfo {
  position: relative;
}

.cu_mapbg {
  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 70%;

  pointer-events: none;

  z-index: -1;
}

.cu_mapbg img {
  width: 100%;

  object-fit: contain;
}

.cu_maxbox {
}

.cu_contain {
  position: relative;
}

.cu_box {
  overflow: hidden;
}

.cu_list {
  overflow: hidden;
}

.cu_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.cu_list li {
  flex-shrink: 0;

  height: auto;

  box-sizing: border-box;
}

.cu_card {
  background: rgb(22 101 166 / 8%);

  border-radius: 0.12rem;

  padding: 0.3rem;

  box-sizing: border-box;

  height: 100%;
}

.cu_card_head {
  display: flex;

  align-items: center;

  gap: 0.12rem;
}

.cu_card_head img {
  width: 0.4rem;

  height: 0.4rem;

  object-fit: contain;

  flex-shrink: 0;
}

.cu_card_head h3 {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;
}

.cu_line {
  width: 100%;

  height: 1px;

  margin: 0.2rem 0;

  background: #e5e5e5;
}

.cu_name {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  margin-bottom: 0.16rem;
}

.cu_info li {
  display: flex;

  align-items: flex-start;

  gap: 0.1rem;

  margin-bottom: 0.12rem;
}

.cu_info li:last-child {
  margin-bottom: 0;
}

.cu_info li img {
  width: 0.2rem;

  height: 0.2rem;

  flex-shrink: 0;

  margin-top: 0.04rem;

  object-fit: contain;
}

.cu_info li a,
.cu_info li span {
  color: #34414f;

  line-height: 1.5;

  flex: 1;

  min-width: 0;
}

.cu_prev,
.cu_next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.5rem;

  height: 0.5rem;

  border-radius: 50%;

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  transition: all 0.35s ease;

  background: rgb(22 101 166 / 15%);

  border: 1px solid rgb(22 101 166 / 20%);
}

.cu_prev {
  left: -0.7rem;
}

.cu_next {
  right: -0.7rem;
}

.cu_prev iconify-icon,
.cu_next iconify-icon {
  font-size: 0.22rem;

  color: var(--i_color);

  transition: all 0.35s ease;
}

.cu_prev:hover,
.cu_next:hover {
  background: var(--i_color);

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

.cu_prev:hover iconify-icon,
.cu_next:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1640px) {
  .cu_prev {
    left: 0;
  }

  .cu_next {
    right: 0;
  }

  .cu_box {
    padding: 0 0.6rem;

    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .cu_prev,
  .cu_next {
    width: 0.4rem;

    height: 0.4rem;
  }

  .cu_prev iconify-icon,
  .cu_next iconify-icon {
    font-size: 0.18rem;
  }

  .cu_box {
    padding: 0 0.5rem;
  }

  .cu_card {
    padding: 0.24rem;
  }
}

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

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

  .cu_box {
    padding: 0;
  }
}

/* ----------------------contact表单--------------------- */

.contactUs_form {
  background: #fff;
}

.cuf_maxbox {
}

.cuf_media {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap: 0.16rem;

  margin-bottom: 0.5rem;
}

.cuf_media a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.44rem;

  height: 0.44rem;

  border-radius: 50%;

  border: 1px solid #d0d5db;

  background: #fff;

  transition: all 0.35s ease;
}

.cuf_media a iconify-icon {
  font-size: 0.18rem;

  color: #8a96a3;

  transition: all 0.35s ease;
}

.cuf_media a:hover {
  border-color: var(--i_color);
}

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

.cuf_contain {
  display: flex;

  align-items: flex-start;

  gap: 0.28rem;
}

.cuf_form {
  flex: 1;

  min-width: 0;
}

.cuf_pic {
  flex-shrink: 0;

  width: 49.33%;

  display: block;

  position: relative;

  overflow: hidden;

  border-radius: 0.1rem;
}

.cuf_pic::before {
  content: "";

  display: block;

  padding-bottom: 93.92%;
}

.cuf_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

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

  .cuf_pic {
    width: 100%;
  }
  .cuf_media a {
    width: 0.35rem;

    height: 0.35rem;
  }
  .cuf_media a iconify-icon {
    font-size: 0.16rem;
  }
}

/* ---------------------------------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) {
}

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

.single_grid_bac {
  box-sizing: border-box;

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

.single_grid {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  position: relative;

  gap: 5%;
}

.single_grid_left {
  width: 38.67%;
}

/* 轮播图宽度 */

.in_grid_cont {
  --sm_pic_width: 17%;
}

.in_grid_cont {
  position: relative;

  overflow: hidden;
}

.in_grid_cont:before {
  content: "";

  display: block;

  padding-bottom: 80.4%;
}

/* 底部缩略图 */

.in_grid_list_box {
  position: absolute;

  top: 0;

  left: 0;

  width: var(--sm_pic_width);

  height: 100%;

  box-sizing: border-box;

  padding: 40px 0;
}

.in_grid_list {
  height: 100%;

  overflow: hidden;
}

.in_grid_list .swiper-slide {
  cursor: pointer;
}

.in_grid_list .img {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  border: 1px solid #d8d8d8;

  position: relative;

  overflow: hidden;
}

.in_grid_list .img::after {
  content: "";

  display: block;

  inset: 0;

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

  position: absolute;

  top: 0;

  left: 0;
}

.in_grid_list .img img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.in_grid_list .swiper-slide-thumb-active .img {
  /* border: 2px solid #d62b1e; */
}

.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);

  -webkit-filter: brightness(100%);
}

.in_grid_list .swiper-slide-thumb-active .img::after {
  background: rgba(255, 255, 255, 0);
}

.ingrid-button-prev.swiper-button-disabled,
.ingrid-button-next.swiper-button-disabled {
  cursor: not-allowed;

  opacity: 0.1;
}

/* 轮播图 */

.in_grid_show_box {
  position: absolute;

  top: 0;

  right: 0;

  width: calc(100% - var(--sm_pic_width) - 20px);

  height: 100%;

  box-sizing: border-box;

  padding: 0 0;

  margin: 0 auto;
}

.in_grid_show {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.in_grid_show .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  height: 100%;

  z-index: 1;
}

.in_grid_show .swiper-slide {
  height: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_show .img {
  width: 100%;

  height: 100%;

  position: relative;

  overflow: hidden;
}

.in_grid_show .img img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.ingrid-pagination {
  position: absolute;

  top: 0.2rem;

  right: 0.2rem;

  width: 0.5rem;

  height: 0.5rem;

  background-color: rgba(1, 167, 255, 0.15);

  border-radius: 50%;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  font-size: 0.18rem;

  color: var(--i_color);

  display: none;
}

.ingrid-pagination .swiper-pagination-bullet {
  width: 8px;

  height: 8px;

  display: inline-block;

  margin: 0 4px;

  background: #e5e5e5;

  -webkit-border-radius: 50%;

  -moz-border-radius: 50%;

  -o-border-radius: 50%;

  border-radius: 50%;

  outline: none;
}

.ingrid-pagination .swiper-pagination-bullet-active {
  position: relative;

  background: var(--i_color);
}

.in_grid_cont:before {
  display: none;
}

.in_grid_show_box {
  position: initial;

  width: 100%;

  border-radius: 0.04rem;

  overflow: hidden;

  background: #fff;
}

.in_grid_show .img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 94%;
}

.in_grid_show .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

.in_grid_list_box {
  margin-top: 0.16rem;

  padding: 0 0;

  position: relative;

  width: 100%;

  height: initial;
}

.in_grid_list {
  width: calc(100% - 1.46rem);

  margin: 0 auto;
}

.in_grid_list_box .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  z-index: 1;
}

.in_grid_list_box .swiper-slide {
  height: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_list .img {
  height: auto;

  border-radius: 0.04rem;
}

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

  display: block;

  padding-bottom: 96%;
}

.in_grid_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  object-fit: cover;
}

.swiper-slide-thumb-active .img {
}

/* 左右箭头 */

.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.48rem;

  height: 0.48rem;

  z-index: 999;

  cursor: pointer;

  outline: none;

  transition: all 0.3s ease;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  background: transparent;

  border-radius: 50%;
}

.ingrid-button-prev iconify-icon,
.ingrid-button-next iconify-icon {
  font-size: 0.26rem;

  color: #666;

  transition: all 0.3s ease;
}

.ingrid-button-prev {
  left: 0%;
}

.ingrid-button-next {
  right: 0%;
}

.ingrid-button-prev:hover,
.ingrid-button-next:hover {
}

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

.single_grid_right {
  flex: 1;
}

.sgr_top {
}

.sgr_top p {
  color: var(--i_color);

  margin-bottom: 0.2rem;
}

.sgr_top h1 {
  color: var(--i_color3);

  margin-bottom: 0.1rem;
}

.sgrt_division {
  width: 100%;

  height: 0.01rem;

  background: #e5e5e5;
}

.sgr_bottom_box {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  align-items: center;
}

.sgr_btnbox {
  display: flex;

  gap: 0.2rem;
}

.sgr_media_box ul {
  display: flex;

  gap: 0.15rem;

  align-items: center;
}

.sgr_media_box ul li {
  color: #666666;
}

.sgr_media_box ul li a {
  display: flex;

  align-items: center;
}

.sgr_media_box ul li a iconify-icon {
  font-size: 0.2rem;
}

.sgr_media_box ul li a:hover iconify-icon {
  color: var(--i_color) !important;
}

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

  .single_grid_left {
    width: 100%;

    margin-bottom: 0.3rem;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .in_grid_cont {
    position: relative;

    overflow: hidden;

    width: 60%;
  }
}

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

  .sgr_bottom_box {
    gap: 0.2rem;
  }

  .sgr_btnbox {
    flex-wrap: wrap;
  }
}

/* ---------------------内容------------------------ */

.productDetail_edit_contain {
}

.pdec_maxbox {
}

.pdec_h3box {
  color: var(--i_color);

  padding-bottom: 0.2rem;

  border-bottom: 1px solid #e5e5e5;

  position: relative;
}

.pdec_h3box h3 {
  position: relative;

  width: fit-content;
}

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

  display: block;

  width: 100%;

  height: 0.02rem;

  position: absolute;

  bottom: -0.2rem;

  left: 0;

  background: var(--i_color);
}

@media screen and (max-width: 560px) {
  .pdec_h3box {
    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem !important;
  }

  .pdec_h3box h3::before {
    bottom: -0.1rem;
  }
}

/* --------------faqs------------------- */

.productDetail_faq {
}

.pd_faqmaxbox {
}

.pd_faqmaxbox h3 {
  color: var(--i_color3);

  font-weight: bold;
}

.pd_faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0.3rem;
}

.pd_faq_ul li {
  position: relative;

  border-radius: 0.06rem;

  overflow: hidden;

  border-bottom: #e8e8e8 1px solid;
}

.pd_faq_ul li span {
  position: absolute;

  right: 0;

  top: 0;

  display: block;

  width: 21%;

  opacity: 0;

  pointer-events: none;
}

.pd_faq_ul li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.pd_faq_q {
  background-color: #fff;

  box-sizing: border-box;

  padding: 0.2rem 0rem;

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  align-items: center;
}

.pd_faq_q .pd_faq_Q {
  font-weight: normal;

  color: #ffffff;

  background: var(--i_color);

  width: 0.3rem;

  height: 0.36rem;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 0.15rem;

  flex-shrink: 0;
}

.pd_faq_ul i {
  border-radius: 0rem;

  display: block;

  color: #333333;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  font-size: 0.2rem;

  font-weight: bold;
}

.pd_faq_q h2 {
  width: calc(100% - 0.72rem);

  box-sizing: border-box;

  font-size: 0.24rem;

  font-weight: bold;

  color: #333333;
}

.pd_faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0rem 0.3rem 0.2rem 0rem;
}

.pd_faq_a .pd_faq_A {
  font-weight: normal;

  color: var(--i_color);

  background: #fff;

  width: 0.3rem;

  height: 0.36rem;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 0.15rem;

  flex-shrink: 0;
}

.pd_faq_a p {
  width: 84%;

  font-size: 0.18rem;

  color: #666;

  line-height: 0.28rem;

  font-weight: normal;
}

.pd_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;
}

.pd_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;
}

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

  position: absolute;

  top: 50%;

  left: 50%;

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

  height: 2px;

  width: 0.2rem;

  background-color: #333;
}

.pd_faq_ul li.on .pd_faq_q h3::after {
  height: 0 !important;

  background-color: #333 !important;
}

.pd_faq_ul li.on .pd_faq_q h3::before {
  background-color: #333 !important;
}

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

.pd_faq_ul li.on .pd_faq_q .pd_faq_Q {
  background: #fff !important;

  color: var(--i_color) !important;
}

@media screen and (max-width: 1440px) {
  .pd_faq_q h2 {
    font-size: 0.2rem;

    /* padding-left: 0.15rem; */
  }

  .pd_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) {
  .pd_faq_bac {
    padding-bottom: 0.6rem;
  }

  .pd_faq_q {
    padding: 0.15rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .pd_faq_q h2 {
    font-size: 0.18rem;
  }
}

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

@media screen and (max-width: 768px) {
  .pd_faq_q h2 {
    font-size: 0.16rem;

    /* padding-left: 0.1rem; */
  }

  .pd_faq_a p {
    /* padding-left: 0.1rem; */
  }

  .pd_faq_q {
    padding: 0.2rem 0;
  }

  .pdcd_faq {
    padding: 0.3rem 0;
  }
}

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

  .pd_faq_a {
    padding: 0.1rem 0.3rem 0.2rem 0rem;
  }

  .pd_faq_ul i {
    width: 0.3rem;

    height: 0.3rem;
  }

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

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

  .pd_faq_ul {
    gap: 0.2rem;
  }

  .pd_faq_q .pd_faq_Q,
  .pd_faq_a .pd_faq_A {
    width: 0.25rem;

    height: 0.25rem;
  }

  .pd_faqs {
    padding: 0.3rem 0;
  }

  .pdf_maxbox h2 {
    margin-bottom: 0.1rem;
  }

  .pd_faq_q h3::after {
    width: 2px;

    height: 0.12rem;
  }

  .pd_faq_q h3::before {
    height: 2px;

    width: 0.12rem;
  }
}

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

  .pd_faqmaxbox h3 {
    margin-bottom: 0.1rem !important;
  }
}

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

.single_two_bac {
  background: #f7f7f7;

  box-sizing: border-box;

  padding: 0.3rem 0;
}

.single_two {
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.15rem;

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

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

.bottom_single_tags p {
  font-size: 0.18rem;

  font-weight: 600;

  color: var(--i_color3);
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  font-size: 0.16rem;

  font-weight: normal;

  color: var(--i_color);

  padding: 0.1rem 0.14rem;

  background: #fff;

  border-radius: 2.5rem;
}

.bottom_single_tags a:hover {
  color: #fff;

  background: var(--i_color);
}

.sx {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;
}

.sx > div {
  width: 48%;
}

.sx_left {
}

.sx a {
  display: block;

  width: 100%;

  display: flex;

  display: -webkit-flex;

  align-items: center;
}

.sx iconify-icon {
  font-size: 0.22rem;

  transition: all 0.3s ease;
}

.sx .sx_left iconify-icon {
  margin-right: 0.1rem;
}

.sx .sx_right iconify-icon {
  margin-left: 0.1rem;
}

.sx p {
  font-size: 0.18rem;

  color: var(--i_color3);

  text-transform: capitalize;

  margin-right: 0.1rem;

  font-weight: bold;
}

.sx span {
  font-size: 0.16rem;

  color: var(--i_color3);

  transition: all 0.3s ease;

  font-weight: 600;
}

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

.sx .sx_left:hover iconify-icon,
.sx .sx_right:hover iconify-icon,
.sx .sx_left:hover p,
.sx .sx_left:hover span,
.sx .sx_right:hover span,
.sx .sx_right:hover p {
  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;

    margin-bottom: 0.1rem;
  }

  .bottom_single_tags {
    align-items: center;
  }
}

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

@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 iconify-icon,
  .sx .sx_right iconify-icon {
    display: none;
  }
}

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

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

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }
}

/* -----------------------productsDetail related products---------------------- */

.productDetail_related_product {
}

.pdrp_contain {
  margin-top: 0.2rem;
}

.pdrp_list {
  overflow: hidden;
}

.pdrp_list .swiper-wrapper {
  display: flex;
}

.pdrp_list .swiper-slide {
  flex-shrink: 0;
}

.pdrp_list .swiper-slide a {
  display: block;

  padding: 0.36rem 0.32rem 0.3rem;

  border-radius: 0.12rem;

  transition: all 0.35s ease;
}

.pdrp_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;

  margin-bottom: 0.24rem;
}

.pdrp_pic::before {
  content: "";

  display: block;

  padding-bottom: 72.5%;
}

.pdrp_pic img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.pdrp_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  margin-bottom: 0.12rem;

  transition: color 0.35s ease;
}

.pdrp_desc {
  color: #8a96a3;

  line-height: 1.5;

  margin-bottom: 0.18rem;
}

.pdrp_more {
  display: inline-flex;

  align-items: center;

  color: var(--i_color3);

  transition: color 0.35s ease;
}

.pdrp_more span {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.24rem;

  height: 0.24rem;

  margin-left: 0.08rem;

  border: 1px solid #8a96a3;

  border-radius: 50%;

  transition: all 0.35s ease;
}

.pdrp_more span iconify-icon {
  font-size: 0.16rem;

  color: var(--i_color);

  transition: all 0.35s ease;
}

.pdrp_list .swiper-slide a:hover {
  background: #fff;

  box-shadow: 0 0.12rem 0.4rem rgb(14 25 38 / 8%);
}

.pdrp_list .swiper-slide a:hover .pdrp_pic img {
  transform: scale(1.03);
}

.pdrp_list .swiper-slide a:hover .pdrp_tit,
.pdrp_list .swiper-slide a:hover .pdrp_more {
  color: var(--i_color);
}

.pdrp_list .swiper-slide a:hover .pdrp_more span {
  border-color: var(--i_color);

  background: var(--i_color);
}

.pdrp_list .swiper-slide a:hover .pdrp_more span iconify-icon {
  color: #fff;
}

.pdrp_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

.pdrp_pagination .swiper-pagination-bullet {
  width: 0.12rem;

  height: 0.12rem;

  display: inline-block;

  margin: 0 6px;

  background: rgba(22, 101, 166, 0.5);

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;

  box-sizing: border-box;

  border: 2px solid transparent;
}

.pdrp_pagination .swiper-pagination-bullet-active {
  background: transparent;

  border: 2px solid var(--i_color);
}

/* --------------------------------solution.html----------------------------------------------- */

.solution_banner_text {
  position: absolute;

  top: 34%;

  left: 10.93%;
}

.solution_banner_text h3 {
  color: #fff;

  margin-bottom: 0.2rem;
}

.solution_banner_text h4 {
  color: #fff;
}

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

@media screen and (max-width: 320px) {
  .solution_banner_text h3,
  .solution_banner_text h4 {
    display: none;
  }
}

.solution_product_introduction {
  background: #f7f7f7;
}

.spi_contain {
  margin-top: 0.2rem;
}

.spi_list {
  overflow: hidden;
}

.spi_list .swiper-wrapper {
  display: flex;
}

.spi_item {
  display: flex;

  align-items: center;

  gap: 0.6rem;
}

.spi_pic {
  width: 42%;

  display: block;

  position: relative;

  overflow: hidden;

  border-radius: 0.12rem;

  flex-shrink: 0;
}

.spi_pic::before {
  content: "";

  display: block;

  padding-bottom: 87.3%;
}

.spi_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.spi_info {
  flex: 1;

  min-width: 0;
}

.spi_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.3;

  margin-bottom: 0.2rem;
}

.spi_desc {
  color: #34414f;

  line-height: 1.6;

  margin-bottom: 0.22rem;
}

.spi_para li {
  color: #34414f;

  line-height: 1.6;

  margin-bottom: 0.06rem;
}

.spi_para li span {
  color: #616c77;
}

.spi_tags {
  display: flex;

  flex-wrap: wrap;

  gap: 0.1rem;

  margin-top: 0.18rem;

  padding-bottom: 0.24rem;

  margin-bottom: 0.24rem;

  border-bottom: 1px solid #e5e5e5;
}

.spi_tags span {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0.07rem 0.18rem;

  border-radius: 2rem;

  background: transparent;

  color: var(--i_color);

  line-height: 1.2;

  border: 1px solid #e7e7e7;

  cursor: pointer;
}

.spi_tags span:hover {
  background: var(--i_color);

  color: #fff;
}

.spi_btns {
  display: flex;

  flex-wrap: wrap;

  gap: 0.24rem;
}

.spi_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

.spi_pagination .swiper-pagination-bullet {
  width: 0.12rem;

  height: 0.12rem;

  display: inline-block;

  margin: 0 6px;

  background: rgba(22, 101, 166, 0.5);

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;

  box-sizing: border-box;

  border: 2px solid transparent;
}

.spi_pagination .swiper-pagination-bullet-active {
  background: transparent;

  border: 2px solid var(--i_color);
}

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

  .spi_pic {
    width: 48%;
  }
}

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

    align-items: stretch;
  }

  .spi_pic {
    width: 100%;
  }

  .spi_btns {
    gap: 0.12rem;
  }
}

/* solution advantages card */

.solution_advantages_card.p60 {
  padding: 0;
}

.solution_advantages_card .sac_maxbox {
  width: 100%;

  max-width: none;

  padding: 0;

  overflow: hidden;
}

.sac_list {
  overflow: hidden;
}

.sac_list .swiper-wrapper {
  display: flex;
}

.sac_pagination {
  display: none;
}

.sac_pagination .swiper-pagination-bullet {
  width: 0.12rem;

  height: 0.12rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: rgba(22, 101, 166, 0.5);

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;

  box-sizing: border-box;

  border: 0.02rem solid transparent;
}

.sac_pagination .swiper-pagination-bullet-active {
  background: transparent;

  border: 0.02rem solid var(--i_color);
}

.sac_scroll_track {
  display: flex;

  width: max-content;
}

.sac_slide_item {
  position: relative;

  width: 100vw;

  height: 100vh;

  flex: 0 0 100vw;

  overflow: hidden;
}

.sac_pic {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.sac_bg_img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.sac_info_card {
  position: absolute;

  left: 10.93%;

  bottom: 18%;

  width: min(4.9rem, 90%);

  padding: 0.26rem 0.3rem;

  border-radius: 0.14rem;

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

  backdrop-filter: blur(6px);

  z-index: 1;
}

.sac_info_head {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 0.16rem;
}

.sac_tag {
  display: flex;

  align-items: center;

  gap: 0.08rem;

  color: #6a7281;

  font-size: 0.16rem;

  line-height: 1.2;
}

.sac_tag img {
  width: 0.14rem;

  height: 0.14rem;

  object-fit: contain;
}

.sac_index {
  color: var(--i_color);

  font-size: 0.24rem;

  line-height: 1;

  letter-spacing: 0.02em;
}

.sac_total {
  color: rgba(14, 25, 38, 0.4);
}

.sac_title {
  margin: 0 0 0.14rem;

  color: #101828;

  font-size: 0.42rem;

  line-height: 1.18;

  font-weight: 700;
}

.sac_desc {
  margin: 0 0 0.06rem;

  color: #34414f;

  font-size: 0.18rem;

  line-height: 1.5;
}

.sac_desc:last-child {
  margin-bottom: 0;
}

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

    bottom: 12%;

    width: min(6rem, 90%);
  }

  .sac_title {
    font-size: 0.34rem;
  }
}

@media screen and (max-width: 768px) {
  .sac_slide_item {
    height: 78vh;

    min-height: 5.4rem;
  }

  .sac_info_card {
    left: 4%;

    right: 4%;

    width: auto;

    bottom: 8%;

    padding: 0.2rem 0.2rem;
  }

  .sac_title {
    font-size: 0.28rem;
  }

  .sac_desc {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .solution_advantages_card.p60 {
    padding: 0.3rem 0 0.4rem;

    background: #fff;
  }

  .sac_scroll_track {
    width: 100%;

    will-change: auto;
  }

  .sac_slide_item {
    display: flex;

    flex-direction: column;

    width: 100%;

    height: auto;

    min-height: auto;

    flex: none;

    overflow: visible;
  }

  .sac_pic {
    position: relative;

    inset: auto;

    width: 100%;

    flex-shrink: 0;

    overflow: hidden;
  }

  .sac_pic::before {
    content: "";

    display: block;

    padding-bottom: 56.8%;
  }

  .sac_pic .sac_bg_img {
    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;
  }

  .sac_info_card {
    position: static;

    left: auto;

    right: auto;

    bottom: auto;

    width: 100%;

    padding: 0.24rem 0.2rem 0.28rem;

    border-radius: 0;

    background: #fff;

    backdrop-filter: none;

    box-sizing: border-box;
  }

  .sac_info_head {
    margin-bottom: 0.14rem;
  }

  .sac_tag {
    color: #6a7281;
  }

  .sac_index {
    color: #9aa3af;

    font-weight: 400;
  }

  .sac_current {
    color: #34414f;

    font-weight: 600;
  }

  .sac_title {
    margin-bottom: 0.12rem;

    color: #101828;

    font-size: inherit;

    line-height: 1.3;
  }

  .sac_desc {
    margin-bottom: 0.08rem;

    color: #616c77;

    font-size: inherit;

    line-height: 1.6;
  }

  .sac_desc:last-of-type {
    margin-bottom: 0;
  }

  .sac_pagination {
    display: block;

    margin-top: 0.24rem;

    text-align: center;

    line-height: 1;
  }
}

/* solution system architecture */

.ssa_card {
  position: relative;
}

.ssa_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;

  border-radius: 0.12rem;
}

.ssa_pic::before {
  content: "";

  display: block;

  padding-bottom: 51.8%;
}

.ssa_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  visibility: hidden;

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

.ssa_pic img.active {
  opacity: 1;

  visibility: visible;

  z-index: 1;
}

.ssa_btns {
  position: absolute;

  left: 0.24rem;

  bottom: 0.2rem;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 0.12rem;
}

.ssa_btns li a {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0.1rem 0.22rem;

  border-radius: 0.08rem;

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

  color: #6a7281;

  text-decoration: none;

  transition: all 0.3s ease;

  white-space: nowrap;
}

.ssa_btns li.active a {
  background: #fff;

  color: var(--i_color);

  box-shadow: 0 0.04rem 0.12rem rgba(16, 24, 40, 0.08);
}

@media screen and (max-width: 768px) {
  .ssa_btns {
    left: 0.16rem;

    bottom: 0.14rem;

    gap: 0.08rem;
  }

  .ssa_btns li a {
    padding: 0.08rem 0.14rem;
  }
}

@media screen and (max-width: 560px) {
  .ssa_btns {
    position: static;

    margin-top: 0.2rem;

    justify-content: flex-start;

    flex-wrap: wrap;
  }

  .ssa_btns li a {
    background: #f5f5f5;

    border: 1px solid transparent;
  }

  .ssa_btns li.active a {
    background: #fff;

    box-shadow: none;

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

/* solution success stories */

.sss_head {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 0.3rem;

  align-items: center;
}

.sss_head_l {
  flex: 1;

  min-width: 0;
}

.sss_head_l .public_title h5 {
  margin-top: 0.12rem;

  max-width: 9.6rem;
}

.sss_title h5 {
  color: var(--i_color3);
}

.sss_head_r {
  flex-shrink: 0;

  padding-top: 0.04rem;
}

.sss_contain {
  overflow: hidden;
}

.sss_list {
  overflow: hidden;
}

.sss_list .swiper-wrapper {
  display: flex;
}

.sss_list .swiper-slide {
  width: 4.8rem;

  flex-shrink: 0;

  height: auto;
}

.sss_list .swiper-slide a {
  display: block;

  border-radius: 0.12rem;

  background: #fff;

  overflow: hidden;

  transition: all 0.35s ease;
}

.sss_pic {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;
}

.sss_info {
  padding: 0.2rem 0.24rem 0.28rem;
}

.sss_pic::before {
  content: "";

  display: block;

  padding-bottom: 80%;
}

.sss_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.sss_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  margin-bottom: 0.1rem;

  transition: color 0.35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sss_desc {
  color: #8a96a3;

  line-height: 1.5;

  margin-bottom: 0.18rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sss_more {
  display: inline-flex;

  align-items: center;

  color: var(--i_color3);

  transition: color 0.35s ease;
}

.sss_more span {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.24rem;

  height: 0.24rem;

  margin-left: 0.08rem;

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

  border-radius: 50%;

  transition: all 0.35s ease;
}

.sss_more span iconify-icon {
  font-size: 0.16rem;

  color: var(--i_color);

  transition: all 0.35s ease;
}

.sss_list .swiper-slide a:hover {
  box-shadow: 0 0.12rem 0.4rem rgb(14 25 38 / 8%);
}

.sss_list .swiper-slide a:hover .sss_pic img {
  transform: scale(1.03);
}

.sss_list .swiper-slide a:hover .sss_tit,
.sss_list .swiper-slide a:hover .sss_more {
  color: var(--i_color);
}

.sss_list .swiper-slide a:hover .sss_more span {
  border-color: var(--i_color);

  background: var(--i_color);
}

.sss_list .swiper-slide a:hover .sss_more span iconify-icon {
  color: #fff;
}

.sss_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

.sss_pagination .swiper-pagination-bullet {
  width: 0.12rem;

  height: 0.12rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: rgba(22, 101, 166, 0.5);

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;

  box-sizing: border-box;

  border: 0.02rem solid transparent;
}

.sss_pagination .swiper-pagination-bullet-active {
  background: transparent;

  border: 0.02rem solid var(--i_color);
}

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

    align-items: flex-start;
  }

  .sss_head_r {
    padding-top: 0;
  }

  .sss_head_l .public_title h5 {
    max-width: none;
  }
}

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

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

/* ------------------------partnerWithUs.html------------------------- */

.pwuss_card {
  display: flex;

  align-items: stretch;

  border-radius: 0.12rem;

  overflow: hidden;

  background: #fff;
}

.pwuss_pic {
  width: 42.47%;

  flex-shrink: 0;

  display: block;

  position: relative;

  overflow: hidden;
}

.pwuss_pic::before {
  content: "";

  display: block;

  padding-bottom: 82.26%;
}

.pwuss_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.pwuss_info {
  flex: 1;

  min-width: 0;

  padding: 0.5rem 0.6rem;

  background: #f7f7f7;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.pwuss_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.3;

  margin-bottom: 0.2rem;
}

.pwuss_desc {
  color: #34414f;

  line-height: 1.6;

  margin-bottom: 0.3rem;
}

.pwuss_btn {
  margin-top: 0.1rem;

  display: flex;
}

@media screen and (max-width: 1024px) {
  .pwuss_info {
    padding: 0.36rem 0.4rem;
  }
}

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

    gap: 0;
  }

  .pwuss_pic {
    width: 100%;
  }

  .pwuss_info {
    padding: 0.3rem 0.24rem 0.36rem;
  }
}

.pwusssc_list {
  display: grid;

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

  gap: 0.3rem;
}

.pwusssc_list li a {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  height: 100%;

  min-height: 2.8rem;

  padding: 0.4rem 0.36rem 0.36rem;

  border-radius: 0.12rem;

  background: #f7f7f7;

  box-sizing: border-box;

  transition: all 0.35s ease;
}

.pwusssc_icon {
  display: block;

  line-height: 0;
}

.pwusssc_icon img {
  width: 0.48rem;

  height: 0.48rem;

  object-fit: contain;

  transition: filter 0.35s ease;
}

.pwusssc_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.3;

  margin: 0.24rem 0 0.12rem;

  transition: color 0.35s ease;
}

.pwusssc_desc {
  color: #616c77;

  line-height: 1.6;

  flex: 1;

  transition: color 0.35s ease;
}

.pwusssc_arrow {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.32rem;

  height: 0.32rem;

  margin-top: 0.24rem;

  border-radius: 50%;

  border: 1px solid #616c77;

  background: #fff;

  flex-shrink: 0;

  transition: all 0.35s ease;
}

.pwusssc_arrow iconify-icon {
  font-size: 0.2rem;

  color: var(--i_color);

  transition: color 0.35s ease;
}

.pwusssc_list li a:hover {
  background: var(--i_color);
}

.pwusssc_list li a:hover .pwusssc_icon img {
  filter: brightness(0) invert(1);
}

.pwusssc_list li a:hover .pwusssc_tit,
.pwusssc_list li a:hover .pwusssc_desc {
  color: #fff;
}

.pwusssc_list li a:hover .pwusssc_arrow {
  border-color: #fff;

  background: #fff;
}

@media screen and (max-width: 1024px) {
  .pwusssc_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .pwusssc_list {
    grid-template-columns: 1fr;

    gap: 0.2rem;
  }

  .pwusssc_list li a {
    min-height: auto;

    padding: 0.3rem 0.24rem 0.28rem;
  }

  .pwusssc_icon img {
    width: 0.4rem;

    height: 0.4rem;
  }
}

.pwue_list li {
  border-bottom: 1px solid #e5e5e5;
}

.pwue_list li:first-child {
  border-top: 1px solid #e5e5e5;
}

.pwue_item {
  display: flex;

  align-items: flex-start;

  gap: 0.8rem;

  width: 100%;

  padding: 0.4rem 0;

  box-sizing: border-box;
}

.pwue_date {
  width: 1.1rem;

  flex-shrink: 0;

  color: #8a96a3;

  line-height: 1.4;

  white-space: nowrap;
}

.pwue_body {
  flex: 1;

  min-width: 0;

  display: flex;

  align-items: center;

  gap: 0.5rem;
}

.pwue_pic {
  width: 5.24rem;

  flex-shrink: 0;

  display: block;

  position: relative;

  overflow: hidden;

  border-radius: 0.12rem;
}

.pwue_pic::before {
  content: "";

  display: block;

  padding-bottom: 54.2%;
}

.pwue_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.pwue_info {
  flex: 1;

  min-width: 0;

  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.pwue_tit {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.4;

  margin-bottom: 0.12rem;

  transition: color 0.35s ease;
}

.pwue_desc {
  color: #8a96a3;

  line-height: 1.6;

  margin-bottom: 0.3rem;
}

.pwue_learn {
  display: inline-flex;

  align-items: center;

  margin-top: auto;

  padding: 0.12rem 0.12rem 0.12rem 0.24rem;

  border-radius: 2.3rem;

  background: #e8f0f7;

  color: var(--i_color);

  box-sizing: border-box;

  transition: all 0.35s ease;
}

.pwue_learn > span {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-left: 0.15rem;

  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: var(--i_color2);

  transition: all 0.35s ease;
}

.pwue_learn > span iconify-icon {
  font-size: 0.15rem;

  color: #fff;

  transition: all 0.35s ease;
}

.pwue_item:hover .pwue_pic img {
  transform: scale(1.03);
}

.pwue_item:hover .pwue_tit {
  color: var(--i_color);
}

.pwue_item:hover .pwue_learn {
  color: #fff;

  background: var(--i_color2);
}

.pwue_item:hover .pwue_learn > span {
  background: #fff;
}

.pwue_item:hover .pwue_learn > span iconify-icon {
  color: var(--i_color2);
}

.pwue_more {
  display: flex;

  justify-content: center;

  margin-top: 0.4rem;
}

.pwue_more a {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 2.4rem;

  padding: 0.12rem 0.48rem;

  border-radius: 2.3rem;

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

  color: var(--i_color);

  background: #fff;

  box-sizing: border-box;

  transition: all 0.35s ease;
}

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

  color: #fff;
}

@media screen and (max-width: 1024px) {
  .pwue_pic {
    width: 40%;
  }
}

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

    gap: 0.16rem;

    padding: 0.3rem 0;
  }

  .pwue_date {
    width: auto;
  }

  .pwue_body {
    flex-direction: column;

    width: 100%;

    gap: 0.16rem;
  }

  .pwue_pic {
    width: 100%;
  }
}

/* ---------------------------全球代理--------------------*/

.PartnerWIthUs_global_agent {
  background: linear-gradient(180deg, #fafafa 0%, #fafafa 100%);
}

.pwug_maxbox {
}

.pwug_map {
  width: 100%;

  position: relative;
}

.pwug_map::before {
  content: "";

  display: block;

  padding-bottom: 39%;
}

.pwug_map img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}
.market_dian {
  position: absolute;
}
.market_dian.d1 {
  top: 41.5%;
  left: 18.5%;
}
.market_dian.d2 {
  top: 51.5%;
  left: 15.8%;
}
.market_dian.d3 {
  top: 58.5%;
  left: 20.7%;
}
.market_dian.d4 {
  top: 48.6%;
  right: 40.7%;
}
.market_dian.d5 {
  top: 46.8%;
  right: 36%;
}
.market_dian.d6 {
  bottom: 47.5%;
  right: 21.8%;
}
.market_dian.d7 {
  bottom: 21.5%;
  right: 11.8%;
}
.market_dian .round {
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 auto;
  background: var(--i_color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.market_dian .round::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -130% 0 0 -130%;
  width: 260%;
  height: 260%;
  background: rgb(0 65 131 / 50%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: warn 1.2s ease-out;
  animation: warn 1.2s ease-out;
  animation-iteration-count: infinite;
}
@keyframes warn {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  25% {
    transform: scale(0.15);
    opacity: 0.7;
  }
  50% {
    transform: scale(0.33);
    opacity: 0.8;
  }
  75% {
    transform: scale(0.66);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.pwug_list {
  margin-top: 0.3rem;
}

.pwug_list > ul > li {
  border-bottom: 1px solid #e5e5e5;
}

.pwug_list > ul > li:first-child {
  border-top: 1px solid #e5e5e5;
}

.pwug_tit {
  display: flex;

  align-items: center;

  gap: 0.12rem;

  padding: 0.2rem 0;

  cursor: pointer;

  user-select: none;
}

.pwug_arrow {
  width: 0;

  height: 0;

  flex-shrink: 0;

  border-top: 0.06rem solid transparent;

  border-bottom: 0.06rem solid transparent;

  border-left: 0.08rem solid var(--i_color3);

  transition: transform 0.3s ease;
}

.pwug_list li.active .pwug_arrow {
  transform: rotate(90deg);
}

.pwug_tit h3 {
  color: var(--i_color3);

  font-weight: bold;

  line-height: 1.3;
}

.pwug_cont {
  padding: 0 0 0.24rem 0.2rem;
}

.pwug_country {
  display: grid;

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

  gap: 0.16rem 0.3rem;
}

.pwug_country li {
  display: flex;

  align-items: center;

  gap: 0.1rem;
}

.pwug_flag {
  width: 0.32rem;

  height: 0.32rem;

  flex-shrink: 0;

  border-radius: 50%;

  overflow: hidden;
}

.pwug_flag img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.pwug_country li > span:last-child {
  color: #34414f;

  line-height: 1.4;
}
@media screen and (min-width: 1921px) {
  .market_dian.d1 {
    top: 41.5%;
    left: 18.5%;
  }
  .market_dian.d2 {
    top: 51.5%;
    left: 15.8%;
  }
  .market_dian.d3 {
    top: 58.5%;
    left: 20.7%;
  }
  .market_dian.d4 {
    top: 48.6%;
    right: 40.7%;
  }
  .market_dian.d5 {
    top: 46.8%;
    right: 36%;
  }
  .market_dian.d6 {
    bottom: 47.5%;
    right: 21.8%;
  }
  .market_dian.d7 {
    bottom: 21.5%;
    right: 11.8%;
  }
}
@media screen and (max-width: 1440px) {
  .market_dian.d1 {
    top: 41.5%;
    left: 20.5%;
  }
  .market_dian.d2 {
    top: 52.5%;
    left: 16.8%;
  }
}
@media screen and (max-width: 1024px) {
  .market_dian.d5 {
    top: 44.8%;
    right: 36%;
  }
}
@media screen and (max-width: 768px) {
  .pwug_country {
    grid-template-columns: repeat(2, 1fr);
  }
  .market_dian.d7 {
    bottom: 19.5%;
    right: 11.8%;
  }
}

@media screen and (max-width: 560px) {
  .pwug_country {
    grid-template-columns: 1fr;
  }
  .market_dian .round {
    width: 0.05rem;
    height: 0.05rem;
  }
}

/* --------------------------关于我们-公司介绍-------------------- */

.ac_data {
  margin-top: 0.5rem;
}

.ac_data_list {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 0.2rem;
}

.ac_item {
  flex: 1;

  text-align: center;

  min-width: 0;
}

.ac_item h3 {
  display: flex;

  align-items: baseline;

  justify-content: center;

  gap: 0.04rem;

  font-weight: bold;

  color: var(--i_color3);

  cursor: pointer;

  transition: all 0.35s ease;
}

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

.ac_item h3 i {
  font-family: "DINPro";
}

.ac_item h3 sup {
  line-height: 1;

  font-weight: bold;

  color: var(--i_color3);
}

.ac_item_info {
  display: inline-flex;

  align-items: center;

  gap: 0.1rem;

  margin-top: 0.16rem;
}

.ac_item_info img {
  width: 0.28rem;

  height: 0.28rem;

  object-fit: contain;

  flex-shrink: 0;
}

.ac_item_info h4 {
  color: var(--i_color3);

  line-height: 1.4;

  white-space: nowrap;
}

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

    gap: 0.4rem 0.2rem;
  }

  .ac_item {
    flex: 0 0 calc(50% - 0.1rem);
  }

  .ac_item_info h4 {
    white-space: normal;
  }
}

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

  .ac_data_list {
    gap: 0.2rem;
  }

  .ac_item_info {
    margin-top: 0.1rem;
  }
}

.about_video {
  width: 100%;

  position: relative;

  border-radius: 8px;

  overflow: hidden;
}

.about_video::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 41.3%;
}

.about_video img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.4s ease;
}

.video_btn {
  width: 1.86rem;

  height: 1.86rem;

  position: absolute;

  left: 50%;

  top: 50%;

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

  cursor: pointer;
}

.video_btn::before {
  content: "";

  display: block;

  width: 100%;

  height: 100%;

  background: url(static/images/video_btn.webp) no-repeat center;

  background-size: contain;

  position: absolute;

  left: 50%;

  top: 50%;

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

  animation: rotate360 15s linear infinite;
}

.video_btn iconify-icon {
  font-size: 0.5rem;

  color: var(--i_color);
}

@keyframes rotate360 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media screen and (max-width: 1024px) {
  .video_btn {
    width: 1.4rem;

    height: 1.4rem;
  }

  .video_btn iconify-icon {
    font-size: 0.35rem;
  }
}

@media screen and (max-width: 560px) {
  .video_btn {
    width: 1rem;

    height: 1rem;
  }

  .video_btn iconify-icon {
    font-size: 0.25rem;
  }
}

/* --------------------------关于我们-技术-------------------- */

.aboutUs_technical {
  overflow: hidden;
}

.aboutUs_technical.p60 {
  padding-top: 0;
}

.aut_data {
  position: relative;

  width: 100%;

  background: url(static/images/aboutus_technical_bg.webp) no-repeat center;

  background-size: cover;
}

.aut_data::before {
  content: "";

  display: block;

  padding-bottom: 25.729%;
}

.aut_data_list {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: space-around;

  gap: 0.3rem;

  padding: 0 3vw 1.2rem;

  box-sizing: border-box;
}

.aut_data_item {
  text-align: center;

  color: #fff;

  flex: 1;

  min-width: 0;
}

.aut_data_item h3 {
  display: flex;

  align-items: baseline;

  justify-content: center;

  gap: 0.06rem;

  font-weight: bold;

  line-height: 1.2;

  margin-bottom: 0.12rem;
}

.aut_data_item h3 i {
  font-style: normal;
}

.aut_data_item p {
  color: rgba(255, 255, 255, 0.85);

  line-height: 1.5;
}

.aut_cont {
  display: flex;

  align-items: flex-start;

  gap: 0.3rem;

  margin-top: -1.9rem;

  position: relative;

  z-index: 2;

  border-radius: 0.16rem 0.16rem 0 0;

  padding-bottom: 0.1rem;
}

.aut_tabbox {
  width: 33.4%;

  flex-shrink: 0;
}

.aut_tit {
  background: var(--i_color);

  color: #fff;

  padding: 0.5rem 0.36rem;

  border-radius: 0.16rem 0.16rem 0 0;

  position: relative;

  margin-bottom: 0.2rem;

  width: 100%;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  justify-content: center;
}

.aut_tit::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -0.24rem;

  width: 0.28rem;

  height: 0.3rem;

  background: var(--i_color);

  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.aut_tit h3 {
  color: #fff;
}

.aut_tab_list {
  padding-top: 0.06rem;
}

.aut_tab_item {
  display: flex;

  align-items: center;

  gap: 0.14rem;

  padding: 0.2rem 0;

  border-bottom: 1px solid #e8edf2;

  cursor: pointer;

  position: relative;

  transition: color 0.3s ease;
}

.aut_tab_num {
  width: 0.42rem;

  height: 0.42rem;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  color: var(--i_color3);

  line-height: 1;

  transition: all 0.3s ease;
}

.aut_tab_txt {
  color: var(--i_color3);

  transition: color 0.3s ease;
}

.aut_tab_item.active .aut_tab_num {
  background: rgba(22, 101, 166, 0.1);

  border-radius: 50%;

  color: var(--i_color);
}

.aut_tab_item.active::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -1px;

  width: 100%;

  height: 0.02rem;

  background: var(--i_color);
}

.aut_main {
  flex: 1;

  min-width: 0;

  padding: 0.9rem 0 0 8%;

  background: #fff;

  position: relative;

  border-radius: 0.1rem;
}

.aut_main::before {
  content: "";

  display: block;

  width: 200%;

  height: 100%;

  background: #fff;

  position: absolute;

  top: 0;

  left: 0;

  border-radius: 0.1rem;
}

.aut_descbox {
  position: relative;

  margin-bottom: 0.4rem;
}

.aut_desc {
  color: #34414f;

  display: none;
}

.aut_desc.active {
  display: block;
}

.aut_picbox {
  width: 100%;

  position: relative;

  overflow: hidden;

  border-radius: 0.12rem;
}

.aut_picbox::before {
  content: "";

  display: block;

  padding-bottom: 57.399%;
}

.aut_pic_list {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;
}

.aut_pic_list dt {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  opacity: 0;

  transition: opacity 0.4s ease;
}

.aut_pic_list dt.active {
  opacity: 1;

  z-index: 1;
}

.aut_pic_list dt img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

@media screen and (min-width: 1921px) {
  .aut_cont {
    margin-top: -1.68rem;
  }
}

@media screen and (max-width: 1600px) {
  .aut_tit {
    padding: 0.4rem 0.36rem;
  }

  .aut_cont {
    margin-top: -1.8rem;
  }
}

@media screen and (max-width: 1440px) {
  .aut_cont {
    margin-top: -1.63rem;
  }
}

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

@media screen and (max-width: 1024px) {
  .aut_tabbox {
    width: 4rem;
  }

  .aut_cont {
    margin-top: -1.1rem;
  }

  .aut_tit {
    padding: 0.3rem 0.36rem;
  }
}

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

  .aut_data {
    min-height: 4rem;
  }

  .aut_data_list {
    position: relative;

    height: auto;

    min-height: 4rem;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 0.4rem;

    padding: 0.6rem 3vw;
  }

  .aut_cont {
    flex-direction: column;

    margin-top: 0;

    border-radius: 0.12rem;

    padding: 0.2rem;
  }

  .aut_tabbox {
    width: 100%;
  }

  .aut_tit {
    margin-top: 0;

    width: 100%;

    border-radius: 0.12rem;

    margin-bottom: 0.2rem;
  }

  .aut_main {
    padding: 0;
  }

  .aut_tit::after {
    display: none;
  }

  .aut_main::before {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .aut_data_item h3 {
    flex-wrap: wrap;
  }

  .aut_tit {
    padding: 0.1rem;
  }

  .aut_cont {
    padding: 0.2rem 0;
  }
}

/* -------------公司愿景--------------------- */

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

.acv_card {
  display: flex;

  align-items: stretch;

  background: #fff;

  position: relative;

  clip-path: polygon(
    0 0,

    100% 0,

    100% calc(100% - 0.8rem),
    calc(100% - 0.8rem) 100%,

    0 100%
  );
}

.acv_card:hover .acv_pic img {
  transform: scale(1.1);
}

.acv_card:hover .acv_info_inner h3 {
  color: var(--i_color);
}

.acv_pic {
  width: 50%;

  position: relative;

  overflow: hidden;

  flex-shrink: 0;
}

.acv_pic::before {
  content: "";

  display: block;

  padding-bottom: 74.667%;
}

.acv_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.acv_info {
  width: 50%;

  position: relative;

  background: #fff;
}

.acv_watermark {
  position: absolute;

  right: 0.5rem;

  top: 0.2rem;

  width: 56%;

  display: block;
}

.acv_watermark img {
  width: 100%;

  object-fit: contain;
}

.acv_info_inner {
  position: relative;

  z-index: 1;

  height: 100%;

  box-sizing: border-box;

  padding: 0.6rem 0.7rem 0.6rem 0.5rem;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.acv_icon {
  width: 0.48rem;

  height: 0.48rem;

  margin-bottom: 0.24rem;
}

.acv_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;
}

.acv_info_inner h3 {
  color: var(--i_color3);

  margin-bottom: 0.2rem;

  transition: all 0.35s ease;
}

.acv_line {
  width: 100%;

  height: 1px;

  background: #e8edf2;

  margin-bottom: 0.24rem;
}

.acv_info_inner p {
  color: #34414f;
}

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

    clip-path: none;
  }

  .acv_pic,
  .acv_info {
    width: 100%;
  }

  .acv_watermark {
    display: none;
  }

  .acv_info_inner {
    padding: 0.4rem 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .acv_icon {
    width: 0.35rem;

    height: 0.35rem;

    margin-bottom: 0.2rem;
  }

  .acv_info_inner {
    padding: 0.3rem 0.25rem;
  }

  .acv_line {
    margin-bottom: 0.2rem;
  }
}

/* --------------------------公司优势--------------------- */

.aboutUs_advantage {
}

.aua_maxbox {
}

.aua_title h4 {
  margin-bottom: 1.2rem;

  position: relative;
}

.aua_title h4::before {
  content: "";

  display: block;

  width: 0.01rem;

  height: 1rem;

  background: var(--i_color);

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  bottom: -1.1rem;
}

@media screen and (max-width: 1024px) {
  .aua_title h4 {
    margin-bottom: 0.8rem;
  }

  .aua_title h4::before {
    bottom: -0.8rem;

    height: 0.8rem;
  }
}

@media screen and (max-width: 560px) {
  .aua_title h4 {
    margin-bottom: 0.5rem;
  }

  .aua_title h4::before {
    bottom: -0.5rem;

    height: 0.4rem;
  }
}

.aua_contain {
  margin-top: 0.1rem;
}

.aua_accordion {
  display: flex;

  gap: 0.15rem;
}

.aua_item {
  flex: 1;

  position: relative;

  border-radius: 0.16rem;

  overflow: hidden;

  cursor: pointer;

  transition: flex 0.5s ease;

  min-height: 5.8rem;
}

.aua_item.active {
  flex: 3.2;
}

.aua_pic {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;
}

.aua_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.aua_mask {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.7) 0%,

    rgba(0, 0, 0, 0.2) 45%,

    rgba(0, 0, 0, 0.05) 100%
  );

  z-index: 1;
}

.aua_exp {
  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 2;

  width: 100%;

  box-sizing: border-box;

  padding: 0.4rem;

  opacity: 0;

  visibility: hidden;

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

.aua_item.active .aua_exp {
  opacity: 1;

  visibility: visible;
}

.aua_exp h3 {
  color: #fff;

  margin-bottom: 0.16rem;
}

.aua_exp p {
  color: rgba(255, 255, 255, 0.85);

  max-width: 90%;
}

.aua_col {
  position: absolute;

  left: 50%;

  bottom: 0.4rem;

  transform: translateX(-50%);

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.12rem;

  opacity: 1;

  visibility: visible;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;

  width: 100%;

  box-sizing: border-box;

  padding: 0 0.1rem;
}

.aua_item.active .aua_col {
  opacity: 0;

  visibility: hidden;
}

.aua_icon {
  width: 0.6rem;

  height: 0.6rem;
}

.aua_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;
}

.aua_col h4 {
  color: #fff;

  font-weight: bold;

  line-height: 1.2;

  text-align: center;

  white-space: nowrap;
}

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

    gap: 0.2rem;
  }

  .aua_item,
  .aua_item.active {
    flex: none;

    width: 100%;

    min-height: 4.8rem;

    cursor: default;
  }

  .aua_exp {
    opacity: 1;

    visibility: visible;
  }

  .aua_col {
    display: none;
  }

  .aua_exp p {
    max-width: 100%;
  }
}

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

  .aua_item,
  .aua_item.active {
    min-height: 3rem;
  }

  .aua_exp {
    padding: 0.1rem 0.2rem;
  }
}

/* 应用表单 */

#wpforms-247 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 100px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 60px;

  margin: 0;

  padding: 0;
}

#wpforms-form-247 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;

  clear: both;
}

#wpforms-262-field_2-container .wpforms-field-label,
#wpforms-262-field_4-container .wpforms-field-label {
  margin: 0 0 15px 20px;
}

/* 字段样式 */

#wpforms-247 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-247 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-247 .wpforms-field-container .wpforms-field > input,
#wpforms-247 .wpforms-field-container textarea,
#wpforms-247 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border-bottom: 1px solid #e5e5e5;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;
}

#wpforms-247 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-247 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-247 .wpforms-field-container select {
  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;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-247 input::placeholder,
#wpforms-247 textarea::placeholder,
#wpforms-247 select::placeholder {
  color: #616c77 !important;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-247 select:invalid {
  color: #616c77;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-247 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-247 .wpforms-field-container textarea:hover,
#wpforms-247 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-247 .wpforms-field-container textarea:focus {
  border-bottom: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

/* 错误提示 */

#wpforms-247 label.wpforms-error,
#wpforms-247 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏Label */

#wpforms-247 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0;
}

#wpforms-247 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 布局 */

#wpforms-247 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-247-field_1::placeholder,
#wpforms-247-field_2::placeholder,
#wpforms-247-field_3::placeholder,
#wpforms-247-field_4::placeholder,
#wpforms-247-field_5::placeholder,
#wpforms-247-field_6::placeholder,
#wpforms-247-field_7::placeholder,
#wpforms-247-field_8::placeholder {
  color: #616c77;

  opacity: 1;
}

#wpforms-247-field_1-container,
#wpforms-247-field_2-container,
#wpforms-247-field_4-container,
#wpforms-247-field_5-container,
#wpforms-247-field_6-container,
#wpforms-247-field_7-container {
  width: 49% !important;
}

#wpforms-247-field_8-container {
  width: 100% !important;
}

/* 提交按钮 */

#wpforms-247 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-247 .wpforms-submit-container button {
  width: 100%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

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

  font-family: Arial;

  border-radius: 2rem;

  box-sizing: border-box;
}

#wpforms-247 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  #wpforms-247 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-247-field_1-container,
  #wpforms-247-field_2-container,
  #wpforms-247-field_3-container,
  #wpforms-247-field_4-container,
  #wpforms-247-field_5-container,
  #wpforms-247-field_6-container {
    width: 100% !important;
  }

  #wpforms-247 .wpforms-submit-container button {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-247 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-247 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}

/* 解决方案表单 */

#wpforms-253 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 100px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 60px;

  margin: 0;

  padding: 0;
}

#wpforms-253-field_1::placeholder,
#wpforms-253-field_2::placeholder,
#wpforms-253-field_3::placeholder,
#wpforms-253-field_4::placeholder,
#wpforms-253-field_5::placeholder,
#wpforms-253-field_6::placeholder,
#wpforms-253-field_7::placeholder,
#wpforms-253-field_8::placeholder {
  color: #616c77;

  opacity: 1;
}

#wpforms-form-253 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;

  clear: both;
}

/* 字段样式 */

#wpforms-253 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-253 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-253 .wpforms-field-container .wpforms-field > input,
#wpforms-253 .wpforms-field-container textarea,
#wpforms-253 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border-bottom: 1px solid #e5e5e5;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;
}

#wpforms-253 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-253 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-253 .wpforms-field-container select {
  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;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-253 input::placeholder,
#wpforms-253 textarea::placeholder,
#wpforms-253 select::placeholder {
  color: #616c77;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-253 select:invalid {
  color: #616c77;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-253 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-253 .wpforms-field-container textarea:hover,
#wpforms-253 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-253 .wpforms-field-container textarea:focus {
  border-bottom: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

/* 错误提示 */

#wpforms-253 label.wpforms-error,
#wpforms-253 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏Label */

#wpforms-253 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0;
}

#wpforms-253 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 布局 */

#wpforms-253 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-253-field_1-container,
#wpforms-253-field_2-container,
#wpforms-253-field_4-container,
#wpforms-253-field_5-container,
#wpforms-253-field_6-container,
#wpforms-253-field_7-container {
  width: 49% !important;
}

#wpforms-253-field_8-container {
  width: 100% !important;
}

/* 提交按钮 */

#wpforms-253 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-253 .wpforms-submit-container button {
  width: 100%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

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

  font-family: Arial;

  border-radius: 2rem;

  box-sizing: border-box;
}

#wpforms-253 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  #wpforms-253 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-253-field_1-container,
  #wpforms-253-field_2-container,
  #wpforms-253-field_3-container,
  #wpforms-253-field_4-container,
  #wpforms-253-field_5-container,
  #wpforms-253-field_6-container {
    width: 100% !important;
  }

  #wpforms-253 .wpforms-submit-container button {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-253 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-253 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}

/* partner width us表单 */

#wpforms-256 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 100px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 60px;

  margin: 0;

  padding: 0;
}

#wpforms-256-field_1::placeholder,
#wpforms-256-field_2::placeholder,
#wpforms-256-field_3::placeholder,
#wpforms-256-field_4::placeholder,
#wpforms-256-field_5::placeholder,
#wpforms-256-field_6::placeholder,
#wpforms-256-field_7::placeholder,
#wpforms-256-field_8::placeholder {
  color: #616c77;

  opacity: 1;
}

#wpforms-form-256 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;

  clear: both;
}

/* 字段样式 */

#wpforms-256 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-256 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-256 .wpforms-field-container .wpforms-field > input,
#wpforms-256 .wpforms-field-container textarea,
#wpforms-256 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border-bottom: 1px solid #e5e5e5;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;
}

#wpforms-256 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-256 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-256 .wpforms-field-container select {
  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;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-256 input::placeholder,
#wpforms-256 textarea::placeholder,
#wpforms-256 select::placeholder {
  color: #616c77;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-256 select:invalid {
  color: #616c77;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-256 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-256 .wpforms-field-container textarea:hover,
#wpforms-256 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-256 .wpforms-field-container textarea:focus {
  border-bottom: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

/* 错误提示 */

#wpforms-256 label.wpforms-error,
#wpforms-256 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏Label */

#wpforms-256 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0;
}

#wpforms-256 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 布局 */

#wpforms-256 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-256-field_1-container,
#wpforms-256-field_2-container,
#wpforms-256-field_4-container,
#wpforms-256-field_5-container,
#wpforms-256-field_6-container,
#wpforms-256-field_7-container {
  width: 49% !important;
}

#wpforms-256-field_8-container {
  width: 100% !important;
}

/* 提交按钮 */

#wpforms-256 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-256 .wpforms-submit-container button {
  width: 100%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

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

  font-family: Arial;

  border-radius: 2rem;

  box-sizing: border-box;
}

#wpforms-256 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  #wpforms-256 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-256-field_1-container,
  #wpforms-256-field_2-container,
  #wpforms-256-field_3-container,
  #wpforms-256-field_4-container,
  #wpforms-256-field_5-container,
  #wpforms-256-field_6-container {
    width: 100% !important;
  }

  #wpforms-256 .wpforms-submit-container button {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-256 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-256 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}

/* contactus表单 */

#wpforms-262 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 202px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 60px;

  margin: 0;

  padding: 0;
}

#wpforms-form-262 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;

  clear: both;
}

/* 字段样式 */

#wpforms-262 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-262 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-262 .wpforms-field-container .wpforms-field > input,
#wpforms-262 .wpforms-field-container textarea,
#wpforms-262 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border: 1px solid #e5e5e5;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;
}

#wpforms-262 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;
}

#wpforms-262 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;
}

#wpforms-262 .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-262 input::placeholder,
#wpforms-262 textarea::placeholder,
#wpforms-262 select::placeholder {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-262 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-262 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-262 .wpforms-field-container textarea:hover,
#wpforms-262 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-262 .wpforms-field-container textarea:focus {
  border: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

/* 错误提示 */

#wpforms-262 label.wpforms-error,
#wpforms-262 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏Label */

/* #wpforms-262 .wpforms-field-container .wpforms-field-label {

  height: 0;

  font-size: 0;

  margin: 0;

} */

#wpforms-262 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 0px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 布局 */

#wpforms-262 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-262-field_1-container,
#wpforms-262-field_2-container,
#wpforms-262-field_3-container,
#wpforms-262-field_4-container {
  width: 100% !important;
}

/* 提交按钮 */

#wpforms-262 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-262 .wpforms-submit-container button {
  width: 100%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

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

  font-family: Arial;

  border-radius: 2rem;

  box-sizing: border-box;
}

#wpforms-262 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  #wpforms-262 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-262-field_1-container,
  #wpforms-262-field_2-container,
  #wpforms-262-field_3-container,
  #wpforms-262-field_4-container,
  #wpforms-262-field_5-container,
  #wpforms-262-field_6-container {
    width: 100% !important;
  }

  #wpforms-262 .wpforms-submit-container button {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-262 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-262 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}

/* contactus表单 */

#wpforms-368 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 100px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 60px;

  margin: 0;

  padding: 0;
}

#wpforms-368-field_1::placeholder,
#wpforms-368-field_2::placeholder,
#wpforms-368-field_3::placeholder,
#wpforms-368-field_4::placeholder,
#wpforms-368-field_5::placeholder,
#wpforms-368-field_6::placeholder,
#wpforms-368-field_7::placeholder,
#wpforms-368-field_8::placeholder {
  color: #616c77;

  opacity: 1;
}

#wpforms-form-253 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;

  clear: both;
}

/* 字段样式 */

#wpforms-368 .wpforms-field-container > .wpforms-field {
  width: 100%;

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
}

#wpforms-368 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-368 .wpforms-field-container .wpforms-field > input,
#wpforms-368 .wpforms-field-container textarea,
#wpforms-368 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0;

  border-bottom: 1px solid #e5e5e5;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #333;

  font-family: Arial;
}

#wpforms-368 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-368 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  background: #fff;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-368 .wpforms-field-container select {
  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;

  border: none;

  border-bottom: 1px solid #e5e5e5;
}

#wpforms-368 input::placeholder,
#wpforms-368 textarea::placeholder,
#wpforms-368 select::placeholder {
  color: #616c77;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-368 select:invalid {
  color: #616c77;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-368 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-368 .wpforms-field-container textarea:hover,
#wpforms-368 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-368 .wpforms-field-container textarea:focus {
  border-bottom: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

/* 错误提示 */

#wpforms-368 label.wpforms-error,
#wpforms-368 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -18px;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏Label */

#wpforms-368 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0;
}

#wpforms-368 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 布局 */

#wpforms-368 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-368-field_1-container,
#wpforms-368-field_2-container,
#wpforms-368-field_4-container,
#wpforms-368-field_5-container,
#wpforms-368-field_6-container,
#wpforms-368-field_7-container {
  width: 100% !important;
}

#wpforms-368-field_8-container {
  width: 100% !important;
}

/* 提交按钮 */

#wpforms-368 .wpforms-submit-container {
  width: 100%;

  padding: 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-368 .wpforms-submit-container button {
  width: 100%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  background: var(--i_color);

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

  font-family: Arial;

  border-radius: 2rem;

  box-sizing: border-box;
}

#wpforms-368 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  #wpforms-368 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;
  }

  #wpforms-368-field_1-container,
  #wpforms-368-field_2-container,
  #wpforms-368-field_3-container,
  #wpforms-368-field_4-container,
  #wpforms-368-field_5-container,
  #wpforms-368-field_6-container {
    width: 100% !important;
  }

  #wpforms-368 .wpforms-submit-container button {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-368 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-368 .wpforms-submit-container button {
    width: 100%;

    height: 0.4rem;

    font-size: 0.16rem;
  }
}

.wp-block-column.has-background.is-layout-flow.wp-block-column-is-layout-flow {
  padding: 0 3%;
}

.is-type-video > div {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.is-type-video iframe {
  width: 100%;
  height: 100%;
}
