@charset "utf-8";

:root {
  --i_color: #4874cb;

  /* 全局颜色 */

  --i_color2: #fff;

  /* 副颜色 */

  --top_h: 1.14rem;

  --header_info_h: 0.44rem;

  /* 顶部信息 */

  /* 导航 */

  --header_height: 1.58rem;

  /* 导航总高度 */
}

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

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

    --top_h: 0.5rem;

    --header_height: 0.8rem;
  }
}

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

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

#service_service_content,
#service_service_process,
#service_service_advantage,
#service_service_targets {
  scroll-margin-top: var(--header_height); /* 改成你导航的实际高度 */
}

.wrap {
  width: 94vw;

  max-width: 1300px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_h {
  width: 94vw;

  max-width: 1700px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 8.35%;
}

.wrap_r {
  display: block;

  box-sizing: border-box;

  padding-right: 15%;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

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

    max-width: none;
  }

  .wrap_h {
    width: 85vw;

    max-width: none;
  }
}

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

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

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

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

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

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

/* -------------------public_top------------------- */

.public_top {
  margin-bottom: 0.3rem;
}

@media screen and (max-width: 560px) {
  .public_top {
    margin-bottom: 0.15rem;
  }
}

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

.public_title {
}

.public_title h3 {
  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.public_title h4 {
  color: #666666;
}

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

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

.public_center {
  display: flex;

  justify-content: center;

  flex-direction: column;

  align-items: center;
}

.public_center h4 {
  text-align: center;
}

/* -------------------public_right--------------- */

.public_right {
  display: flex;

  justify-content: center;

  flex-direction: column;

  align-items: flex-end;
}

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

.public_btn {
}

.public_btn a {
  padding: 0.16rem 0.45rem;

  box-sizing: border-box;

  background: var(--i_color);

  font-size: 0.18rem;

  color: #fff;

  display: block;

  position: relative;

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

  transition: all 0.45s ease;

  z-index: 1;
}

.public_btn a::before {
  background: #fff;

  content: "";

  width: 0;

  height: 100%;

  position: absolute;

  left: 0;

  top: 0;

  z-index: -1;

  transition: all 0.45s ease;
}

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

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

  left: 0;
}

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

    font-size: 0.16rem;
  }
}

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

    font-size: 0.14rem;
  }
}

/* -----------------------public_whitebg_btn----------------- */

.public_whitebg_btn {
}

.public_whitebg_btn a {
  padding: 0.16rem 0.45rem;

  box-sizing: border-box;

  background: #fff;

  font-size: 0.18rem;

  color: #666666;

  display: block;

  position: relative;

  border: #aaaaaa 1px solid;

  transition: all 0.45s ease;

  z-index: 1;
}

.public_whitebg_btn a::before {
  background: var(--i_color);

  content: "";

  width: 0;

  height: 100%;

  position: absolute;

  left: 0;

  top: 0;

  z-index: -1;

  transition: all 0.45s ease;
}

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

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

  left: 0;
}

.public_whitebg_btn a.active {
  color: #fff;
}

.public_whitebg_btn a.active::before {
  width: 100%;

  left: 0;
}

@media screen and (max-width: 1024px) {
  .public_whitebg_btn a {
    padding: 0.1rem 0.25rem;

    font-size: 0.16rem;
  }
}

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

    font-size: 0.14rem;
  }
}

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

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--header_height);
}

.top_cont {
  background: #fff;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  position: relative;

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

.top_header_email {
  height: 100%;

  width: 11%;

  background: var(--i_color);

  position: absolute;

  right: 0;

  top: 0;

  display: flex;

  align-items: center;

  padding: 0 0 0 0.12rem;

  box-sizing: border-box;

  flex-direction: column;

  justify-content: center;
}

.top_header_email img {
  width: 0.5rem;

  height: 0.5rem;
}

.top_header_email a {
  color: #ffffff;
}

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

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

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

	.top_cont{background: #373737;}

} */

/* logo */

.logo {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;
}

.logo a {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;

  position: relative;
}

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

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

  .top_header_email {
    width: 17.54%;
  }
}

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

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

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

/* 导航 */

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

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }

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

    position: absolute;

    left: 50%;

    bottom: 0rem;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

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

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%) rotate(15deg);

    height: 30%;

    width: 1px;

    background-color: #d3d3d3;

    display: none;
  }

  .i_nav > li:last-child::after {
    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: 70%;
  }

  .i_nav > li > a {
    display: block;

    font-size: 18px;

    color: #333;

    line-height: var(--top_h);

    white-space: nowrap;

    box-sizing: border-box;

    padding: 0 0.4rem;
  }

  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > .active > a {
    color: var(--i_color);
  }

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

    position: absolute;

    left: 0;

    min-width: 1.6rem;

    background: var(--i_color2);

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

    font-size: 0;
  }

  .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: #3389c6;

    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: #66a6d4;
  }
}

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

    padding: 0 0.3rem;
  }

  .i_nav {
  }
}

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

@media screen and (max-width: 1200px) {
  /* .i_nav {

    gap: 0 0.38rem;

  } */

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

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

    position: fixed;

    top: var(--header_height);

    left: 0;

    width: 100%;

    width: 100vw;

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

    background: #fff;

    overflow-y: auto;

    z-index: 2;

    margin-left: 0;
  }

  /*滚动条*/

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

    height: 8px;
  }

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

    background: #555;
  }

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

    border-radius: 0;

    background: #f1f1f1;
  }

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

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

    position: relative;
  }

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

    position: absolute;

    top: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

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

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

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

    background-size: 0.24rem;
  }

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

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

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

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

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

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

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

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

	} */

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

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

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

    background-size: 0.16rem;
  }

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

    background-size: 0.16rem;
  }

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

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

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

/* 移动端导航按钮 */

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

/* 导航下拉 */

.nav_dropdown {
  position: fixed;

  top: var(--top_h);

  left: 0;

  width: 100%;

  background: #fff;

  z-index: 2013;
}

.nav_dropdown_item {
  display: none;

  padding: 0.4rem 0;
}

.nav_dropdown_list {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  justify-content: center;

  gap: 0 3%;
}

.nav_dropdown_list dt {
  width: 100%;

  max-width: 3.8rem;
}

.nav_p_cat_name a {
  font-size: 0.2rem;

  color: var(--i_color);

  font-weight: 900;
}

.nav_dropdown_list ul {
  margin-top: 0.2rem;
}

.nav_dropdown_list li {
  position: relative;

  padding-left: 0.24rem;
}

.nav_dropdown_list li::before {
  opacity: 0.5;

  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.2rem;

  height: 0.2rem;

  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 24 24"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M24 0v24H0V0h24ZM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018Zm.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022Zm-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01l-.184-.092Z"%2F%3E%3Cpath fill="currentColor" d="M15.707 11.293a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 1 1-1.414-1.414l4.95-4.95l-4.95-4.95a1 1 0 0 1 1.414-1.414l5.657 5.657Z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
    no-repeat center;

  background-size: contain;
}

.nav_dropdown_list li a {
  display: block;

  padding: 0.06rem 0;

  font-size: 0.15rem;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.nav_dropdown_list li:hover a {
  margin-left: 8px;

  color: var(--i_color);
}

.top_r {
  --size: 0.22rem;
}

.top_r {
  margin-left: 1.8rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}
@media screen and (max-width: 1600px) {
  .top_r {
    margin-left: 0.8rem;
  }
}
@media screen and (max-width: 1440px) {
  .top_r {
    margin-left: 0.6rem;
  }
}

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

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

    margin-right: 0.3rem;
  }

  .top_language_btn > p {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .top_r {
    margin-right: 0.3rem;
    --size: 0.2rem;
    gap: 0 0.1rem;
  }
}

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

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  text-align: center;

  position: relative;
}

.segmentation {
  width: 2px;

  height: 20px;

  background: #333;

  margin: 0 0.17rem;
}

@media screen and (max-width: 425px) {
  .segmentation {
    margin: 0 0.05rem;
  }
}

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

.top_language {
  position: relative;
}
.top_search_ico {
  display: flex;
  align-items: center;
}
.top_language_btn {
  /* padding: 0.1rem 0.18rem 0.1rem 0; */

  gap: 0 8%;

  position: relative;

  cursor: pointer;
  display: flex;
  align-items: center;
}

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

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  display: none;
}

.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(--top_h));

  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: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

/* 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: #f5f6f7;

  -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 {
  display: none;

  height: var(--header_height);
}

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

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

.top_info {
  background: #021936;

  height: var(--header_info_h);

  display: flex;

  align-items: center;
}

.ti_info {
}

.ti_maxbox {
  display: flex;

  justify-content: space-between;
}

.ti_info ul {
  display: flex;

  gap: 0.38rem;
}

.ti_info ul li {
  height: 80%;

  display: flex;

  color: #ffffff;

  align-items: center;
}

.ti_info ul li a {
  display: block;

  height: 100%;

  font-weight: normal;

  color: #ffffff;

  display: flex;

  align-items: center;
}

.ti_info ul li img {
  width: 0.2rem;

  height: 0.2rem;

  object-fit: contain;

  margin-right: 0.05rem;
}

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

.ti_media {
  display: flex;
}

.ti_media ul {
  display: flex;

  gap: 0.3rem;
}

.ti_media ul li {
  display: flex;

  align-items: center;
}

.ti_media ul li a {
  display: flex;

  align-items: center;
}

.ti_media ul li a iconify-icon {
  font-size: 0.18rem;

  display: inline-block;

  transition: transform 0.5s ease;

  transform-style: preserve-3d;
}

.ti_media ul li a:hover iconify-icon {
  transform: rotateY(180deg);
}

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

  .ti_media {
    width: 100%;
  }

  .ti_media ul li a iconify-icon {
    font-size: 0.16rem;
  }

  .ti_media ul {
    margin-left: auto;
  }
}

@media screen and (max-width: 375px) {
  .ti_media ul {
    gap: 0.15rem;
  }
}

.jump_btn {
  background: var(--i_color);

  border-radius: 0.3rem;

  overflow: hidden;
}

.jump_btn a {
  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: normal;

  color: #ffffff;

  padding: 0.08rem 0.31rem;
}

@media screen and (max-width: 1024px) {
  .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.1rem;

    font-size: 0.14rem;
  }
}

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

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

.footer_maxBox {
  height: 100%;
}

.footer_topMaxBox {
  color: #fff;

  padding: 0.6rem 0 0.4rem 0;

  box-sizing: border-box;

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

.footer_topMaxBox ul {
  display: flex;

  height: 100%;

  gap: 0.6rem;

  flex-wrap: wrap;
}

.footer_topMaxBox ul li {
  flex: 1;
}

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

.footer_topMaxBox ul li span {
  width: 0.6rem;

  height: 0.6rem;

  border-radius: 0.08rem;

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

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 0.15rem;

  transition: all 0.35s ease;
}

.footer_topMaxBox ul li span img {
  width: 53%;

  height: 53%;

  object-fit: contain;

  transition: all 0.35s ease;

  display: inline-block;

  transform-style: preserve-3d;
}

.footer_topMaxBox ul li h3 {
  color: rgba(255, 255, 255, 0.6);

  margin-bottom: 0.05rem;
}

.footer_topMaxBox ul li a {
  color: rgba(255, 255, 255, 0.6);

  display: block;

  transition: all 0.35s ease;
}

.footer_topMaxBox ul li a:hover {
  color: #fff;

  text-decoration: underline;
}

.footer_topMaxBox ul li:hover span {
  border: 1px solid #fff;
}

.footer_topMaxBox ul li:hover span img {
  filter: brightness(0) invert(1);

  transform: rotateY(180deg);
}

.footer_centerMaxBox {
  padding: 0.6rem 0;

  box-sizing: border-box;
}

.fcmb_ul {
  display: flex;

  gap: 1rem;
}

.fcmb_ul > li {
  flex: 1;
}

.fcmb_ul > li:nth-child(1) {
  flex: 2;
}

.fcmb_info_li span {
  width: 2.1rem;

  display: block;

  margin-bottom: 0.2rem;
}

.fcmb_info_li span img {
  width: 100%;

  object-fit: contain;
}

.fcmb_info_li h3 {
  font-weight: bold;

  color: #ffffff;

  margin-bottom: 0.1rem;
}

.fcmb_info_li h4 {
  color: rgba(255, 255, 255, 0.8);

  margin-bottom: 1rem;
}

.fcmb_info_li dl {
  display: flex;

  gap: 0.25rem;
}

.fcmb_info_li dl dt {
}

.fcmb_info_li dl dt a {
  width: 0.54rem;

  height: 0.54rem;

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

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 0.06rem;

  transition: all 0.35s ease;
}

.fcmb_info_li dl dt a iconify-icon {
  font-size: 0.22rem;

  transition: all 0.35s ease;

  display: inline-block;

  transform-style: preserve-3d;
}

.fcmb_info_li dl dt a:hover {
  background: var(--i_color);
}

.fcmb_info_li dl dt a:hover iconify-icon {
  transform: rotateY(180deg);
}

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

  margin-bottom: 0.2rem;
}

.fml_ul {
  display: flex;

  flex-direction: column;

  gap: 0.15rem;
}

.fml_ul li {
}

.fml_ul li a {
  color: #fff;
}

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

.footer_bottomMaxBox {
  padding: 0.32rem 0;

  color: #fff;

  display: flex;

  align-items: center;

  font-size: 0.16rem;

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

.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) {
  .footer_topMaxBox {
    padding: 0.4rem 0 0.2rem 0;
  }

  .footer_topMaxBox ul li span {
    width: 0.4rem;

    height: 0.4rem;

    margin-bottom: 0.05rem;
  }

  .footer_topMaxBox ul {
    gap: 0.3rem;
  }

  .fcmb_info_li h4 {
    margin-bottom: 0.6rem;
  }

  .fcmb_ul > li:nth-child(3) {
    display: none;
  }

  .footer_centerMaxBox {
    padding: 0.3rem 0;
  }

  .fcmb_ul {
    gap: 0.5rem;
  }

  .fcmb_info_li span {
    width: 1.5rem;
  }
}

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

  .footer_topMaxBox ul li {
    flex: 0 0 calc(50% - 0.2rem);
  }

  .fcmb_ul > li:nth-child(2) {
    display: none;
  }

  .fcmb_info_li span {
    width: 1.2rem;
  }
}

@media screen and (max-width: 560px) {
  .footer_bottomMaxBox {
    font-size: 0.1rem;

    padding: 0.1rem 0;
  }

  .footer_topMaxBox {
    padding: 0.2rem 0;
  }

  .footer_topMaxBox ul li span {
    width: 0.3rem;

    height: 0.3rem;

    margin-bottom: 0.05rem;
  }

  .fcmb_ul > li:nth-child(4) {
    display: none;
  }

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

  .fcmb_info_li dl dt a {
    width: 0.45rem;

    height: 0.45rem;
  }

  .fcmb_info_li span {
    width: 1rem;

    margin-bottom: 0.1rem;
  }
}

/* -----------------------------------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: 41.8%;

  /* 设置比例 */

  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;

  bottom: 0.3rem !important;

  position: absolute;

  z-index: 3;

  left: 16.14% !important;
}

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

  height: 0.06rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: #fff;

  border-radius: 0;

  outline: none;

  cursor: pointer;

  opacity: 1;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: #22c0ff;
}

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

  left: 16.14%;

  z-index: 3;

  width: 47%;
}

.b_text1 h3 {
  font-weight: bold;

  color: #ffffff;
}

.b_text1 h4 {
  color: #ffffff;

  margin-bottom: 0.2rem;
}

.b1_btn {
  display: flex;
}
.b_text2 {
  position: absolute;
  top: 25%;
  left: 15.625%;
  width: 44.6%;
}
.b_text2 h3 {
  color: #fff;
  font-weight: bold;
}
.b_text2 h4 {
  color: #fff;
  margin: 0.3rem 0 0.7rem 0;
}
.bt2_dl {
  display: flex;
  gap: 0.3rem;
}
.bt2_dl dt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bt2_dl dt span {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: rgba(0, 46, 137, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.12rem;
}
.bt2_dl dt span img {
  width: 59%;
  object-fit: contain;
}
.bt2_dl dt p {
  color: #fff;
  width: 80%;
  text-align: center;
}
.b_text3 {
  position: absolute;
  top: 25%;
  left: 15.625%;
  width: 36%;
}
.b_text3 h3 {
  color: #333333;
  font-weight: bold;
}
.hb3_h3 {
  position: relative;
  margin-bottom: 0.8rem;
}
.hb3_h3::before {
  background: linear-gradient(270deg, #4887cb00 0%, #4887cb 100%);
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  content: "";
  width: 100%;
  height: 0.02rem;
}
.b_text3 h4 {
  color: #444444;
  margin-bottom: 0.5rem;
}
.b3_btn {
  display: flex;
}
@media screen and (max-width: 1440px) {
  .b_text1 {
    top: 50%;

    transform: translateY(-50%);

    width: 53%;
  }
  .b_text2 {
    top: 20%;
    left: 12%;
  }
  .b_text3 {
    top: 15%;
    left: 12%;
    width: 45%;
  }
  .hb3_h3 {
    margin-bottom: 0.5rem;
  }
}

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

@media screen and (max-width: 1200px) {
  .b_text2 h4 {
    margin: 0.3rem 0;
  }
}

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

  .banner-pagination {
    bottom: 0.1rem !important;

    left: 50% !important;

    transform: translateX(-50%);

    text-align: center;
  }

  .b_text1 {
    top: 10%;

    transform: translateX(-50%);

    left: 50%;
  }

  .b_text1 h3 {
    text-align: center;
  }

  .b_text1 h4 {
    text-align: center;
  }

  .b1_btn {
    justify-content: center;
  }
  .bt2_dl {
    display: none;
  }
  .b_text3 h4 {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .b_text1 {
    width: 75%;
  }
  .b_text2 {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    top: 8%;
  }
  .b_text2 h4 {
    margin: 0.1rem 0;
  }
  .b3_btn {
    display: none;
  }
  .hb3_h3 {
    margin-bottom: 0.3rem;
  }
  .hb3_h3::before {
    bottom: -0.2rem;
  }
}

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

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

  .b_text1 h4 {
    display: none;
  }

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

    height: 0.02rem;
  }
  .b_text2 h4 {
    display: NONE;
  }
  .b_text3 {
    top: 10%;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    text-align: center;
  }
  .b_text3 h4 {
    display: none;
  }
}

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

@media screen and (max-width: 320px) {
  .b1_btn {
    display: none;
  }
  .b_text3 {
    display: none;
  }
}

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

.home_recommended_products {
}

.hrp_maxbox {
}

.hrpm_top {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;
}

.hrpm_left {
  width: 38.5%;
}

.hrpm_right {
  width: 60%;
}

.hrpm_right ul {
  display: flex;

  gap: 0.2rem;

  flex-wrap: wrap;

  width: 100%;

  justify-content: flex-end;
}

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

.hrpm_contain {
  position: relative;

  padding-bottom: 0.72rem;
}

.hrpm_list {
  position: relative;

  overflow: hidden;

  display: none;
}

.hrpm_list.active {
  display: block;
}

.hrpm_list .swiper-wrapper {
  display: flex;

  align-items: flex-end;

  position: relative;

  width: 100%;
}

.hrpm_list li {
  flex-shrink: 0;

  position: relative;

  height: auto;

  display: flex;

  align-items: flex-end;
}

.hrpm_list li:hover h5 {
  color: var(--i_color);
}

/* 产品卡片：高度一致，整卡可点击 */

a.hrpm_card {
  display: flex;

  flex-direction: column;

  text-decoration: none;

  color: inherit;

  cursor: pointer;
}

.hrpm_card {
  background: #f5f5f5;

  padding: 0.32rem 0.4rem 0.4rem;

  box-sizing: border-box;

  width: 100%;

  min-height: 3.6rem;

  border-radius: 0.04rem;

  transition: transform 0.45s ease;
}

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

  border-color: var(--i_color);

  color: #fff;
}

/* 桌面一页 3 个：等高，仅垂直错位（左低 → 右高） */

@media screen and (min-width: 1025px) {
  .hrpm_list {
    padding-top: 1.1rem;
  }

  .hrpm_list .swiper-wrapper {
    min-height: 4.6rem;
  }

  .hrpm_card {
  }

  .hrpm_card--step1 {
    transform: translateY(0);
  }

  .hrpm_card--step2 {
    transform: translateY(-0.55rem);
  }

  .hrpm_card--step3 {
    transform: translateY(-1.1rem);
  }
}

.hrpm_card_title {
  color: #888888;

  font-weight: normal;

  line-height: 1.35;

  margin-bottom: 0.24rem;

  transition: color 0.35s ease;
}

.hrpm_card_pic {
  position: relative;

  flex: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  /* overflow: hidden; */
}

.hrpm_card_pic::before {
  content: "";

  display: block;

  padding-bottom: 117%;

  width: 100%;
}

.hrpm_card_pic img {
  display: block;

  object-fit: cover;

  transition: all 0.35s ease;

  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.hrpm_card_btn {
  position: absolute;

  right: -0.2rem;

  bottom: -0.2rem;

  width: 0.44rem;

  height: 0.44rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #ffffff;

  border: 1px solid #d0d0d0;

  color: var(--i_color);

  transition: all 0.35s ease;

  pointer-events: none;
}

.hrpm_card_btn iconify-icon {
  font-size: 0.22rem;
}

/* 左侧首张：蓝标题 + 蓝按钮；其余灰标题 + 白底蓝箭头按钮 */

.hrpm_card--step1 .hrpm_card_title {
  color: var(--i_color);
}

.hrpm_card--step1 .hrpm_card_btn {
  background: var(--i_color);

  border-color: var(--i_color);

  color: #fff;
}

.hrpm_card--step2 .hrpm_card_title,
.hrpm_card--step3 .hrpm_card_title {
  color: #888888;
}

/* 轮播导航 */

.hrpm_nav {
  position: absolute;

  right: 0;

  bottom: 0;

  display: flex;

  align-items: center;

  gap: 0.12rem;

  z-index: 3;
}

.hrpm_prev,
.hrpm_next {
  position: relative;

  top: auto;

  left: auto;

  right: auto;

  transform: none;

  width: 0.48rem;

  height: 0.48rem;

  border-radius: 50%;

  background: #ffffff;

  border: 1px solid #d8d8d8;

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  transition: all 0.35s ease;
}

.hrpm_next {
  background: var(--i_color);

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

.hrpm_prev iconify-icon,
.hrpm_next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.24rem;

  color: #999999;
}

.hrpm_next iconify-icon {
  color: #ffffff;
}

.hrpm_list .swiper-button-disabled {
  cursor: not-allowed;

  opacity: 0.45;
}

.hrpm_prev:not(.swiper-button-disabled):hover {
  border-color: var(--i_color);
}

.hrpm_prev:not(.swiper-button-disabled):hover iconify-icon {
  color: var(--i_color);
}

.hrpm_next:not(.swiper-button-disabled):hover {
  filter: brightness(1.08);
}

.hrpm_pagination {
  display: none;

  margin-top: 0.3rem;

  text-align: center;
}

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

  height: 0.12rem;

  display: inline-block;

  margin: 0 6px;

  background: #ccc;

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;
}

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

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

  .hrpm_pagination {
    display: block;
  }

  .hrpm_contain {
    padding-bottom: 0rem;
  }
}

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

  .hrpm_left {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .hrpm_right {
    width: 100%;
  }

  .hrpm_right ul {
    justify-content: center;
  }

  .hrpm_card {
    height: auto;

    padding: 0.24rem 0.2rem 0.28rem;
  }

  .hrpm_card--step1,
  .hrpm_card--step2,
  .hrpm_card--step3 {
    transform: none;
  }
}

@media screen and (max-width: 560px) {
  .hrpm_nav {
    right: 50%;

    transform: translateX(50%);
  }

  .hrpm_right ul li {
    width: 100%;
  }

  .hrpm_right ul {
    gap: 0.1rem;
  }

  .hrpm_card_btn {
    right: -0.15rem;

    bottom: -0.15rem;
  }
}

/* ------------------------关于我们----------------------- */

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

  position: relative;

  z-index: 1;
}

.hac_logo {
  position: absolute;

  top: 11%;

  left: 4%;

  width: 10rem;

  pointer-events: none;

  z-index: -1;
}

.hac_logo::before {
  content: "";

  width: 100%;

  height: 100%;

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

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1;
}

.hac_logo img {
  width: 100%;

  height: auto;

  object-fit: contain;

  position: relative;
}

.hac_maxbox {
}

.hacm_title {
  width: 55%;

  margin: 0.7rem 0 1.7rem 0;
}

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

.hacm_btn {
  display: flex;
}

/* 数据统计 */

.hacm_contain {
  width: 55%;

  margin-bottom: 0.6rem;
}

.hacm_contain ul {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 0.24rem 0.5rem;
}

.hacm_contain li {
  flex: 1;

  min-width: 0;
}

.hacm_contain li span {
  display: block;

  color: #666666;

  margin-bottom: 0.14rem;
}

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

  font-weight: bold;

  white-space: nowrap;
}

.hacm_contain li h3 i {
  font-style: normal;

  font-weight: bold;
}

@media screen and (max-width: 1440px) {
  .hacm_title {
    width: 55%;

    margin: 0.3rem 0 1rem 0;
  }

  .hac_logo {
    left: 0%;

    width: 9rem;
  }
}

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

    margin-top: 0.2rem;
  }

  .hacm_contain ul {
    gap: 0.2rem 0.35rem;
  }

  .hacm_contain {
    margin-bottom: 0;
  }

  .hacm_title {
    margin: 0.3rem 0;
  }

  .hac_logo {
    display: none;
  }
}

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

    gap: 0.15rem;

    flex-wrap: wrap;
  }

  .hacm_contain li {
    flex: none;

    width: 48%;
  }

  .hacm_contain li h3 {
    white-space: normal;
  }

  .hacm_title {
    width: 100%;
  }

  .hacm_title {
    margin: 0;
  }

  .hacm_contain li span {
    margin-bottom: 0.1rem;
  }

  .home_aboutus_company {
    background: none;
  }

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

/* ----------------------应用领域-------------------------- */

.home_application_fields {
}

.haf_maxbox {
}

.hafm_contain {
}

/* 版心 1300：左 590×441，右 670×201×2，左右间距 40，右上下间距 39 */

.hafm_list {
  display: grid;

  width: 100%;

  margin: 0 auto;

  grid-template-columns: 590fr 670fr;

  grid-template-rows: auto auto;

  column-gap: 40px;

  row-gap: 39px;
}

.hafm_list > .hafm_item_main,
.hafm_list > .hafm_item:nth-child(1) {
  grid-column: 1;

  grid-row: 1 / 3;
}

.hafm_list > .hafm_item_sub:nth-child(2),
.hafm_list > .hafm_item:nth-child(2) {
  grid-column: 2;

  grid-row: 1;
}

.hafm_list > .hafm_item_sub:nth-child(3),
.hafm_list > .hafm_item:nth-child(3) {
  grid-column: 2;

  grid-row: 2;
}

.hafm_item {
  min-height: 0;

  min-width: 0;
}

a.hafm_card {
  display: block;

  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

  text-decoration: none;

  color: #fff;
}

/* 图片：HTML 写路径，伪类撑比例，img cover 防变形 */

.hafm_card_pic {
  display: block;

  width: 100%;
}

.hafm_card_pic > span {
  position: relative;

  display: block;
}

.hafm_item_main .hafm_card_pic > span::before {
  content: "";

  display: block;

  padding-bottom: 74.75%;
}

.hafm_item_sub .hafm_card_pic > span::before {
  content: "";

  display: block;

  padding-bottom: 30%;
}

.hafm_card_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: transform 0.5s ease;
}

a.hafm_card:hover .hafm_card_pic img {
  transform: scale(1.06);
}

a.hafm_card::after {
  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  height: 50%;

  background: linear-gradient(to top, rgb(0 0 0 / 45%), transparent);

  z-index: 1;

  pointer-events: none;

  transition: opacity 0.4s ease;
}

a.hafm_card:hover::after {
  opacity: 0;
}

.hafm_card_mask {
  position: absolute;

  inset: 0;

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

  opacity: 0;

  transition: opacity 0.4s ease;

  z-index: 2;
}

a.hafm_card:hover .hafm_card_mask {
  opacity: 1;
}

.hafm_card_body {
  position: absolute;

  left: 0.32rem;

  bottom: 0;

  z-index: 3;

  transition:
    left 0.4s ease,
    bottom 0.4s ease,
    transform 0.4s ease;
}

.hafm_card_title {
  display: block;

  color: #ffffff;

  font-weight: normal;

  line-height: 1.3;

  text-shadow: 0 0.02rem 0.12rem rgb(0 0 0 / 35%);

  transition: font-weight 0.35s ease;
}

.hafm_card_btn {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.48rem;

  height: 0.48rem;

  margin: 0.2rem auto 0;

  border-radius: 50%;

  background: var(--i_color);

  color: #fff;

  opacity: 0;

  visibility: hidden;

  transform: translateY(0.12rem);

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

  pointer-events: none;
}

.hafm_card_btn iconify-icon {
  font-size: 0.24rem;
}

a.hafm_card:hover .hafm_card_body {
  left: 50%;

  bottom: 50%;

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

  text-align: center;
}

a.hafm_card:hover .hafm_card_title {
  font-weight: bold;
}

a.hafm_card:hover .hafm_card_btn {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

@media screen and (max-width: 1024px) {
  .hafm_list {
    column-gap: 3.0769vw;

    row-gap: 3vw;
  }

  .hafm_card_btn {
    width: 0.35rem;

    height: 0.35rem;

    margin: 0.15rem auto 0;
  }

  .hafm_card_btn iconify-icon {
    font-size: 0.18rem;
  }
}

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

    grid-template-rows: auto;

    column-gap: 0;

    row-gap: 0.2rem;

    max-width: none;
  }

  .hafm_list > .hafm_item_main,
  .hafm_list > .hafm_item:nth-child(1),
  .hafm_list > .hafm_item_sub:nth-child(2),
  .hafm_list > .hafm_item:nth-child(2),
  .hafm_list > .hafm_item_sub:nth-child(3),
  .hafm_list > .hafm_item:nth-child(3) {
    grid-column: auto;

    grid-row: auto;
  }
}

@media screen and (max-width: 560px) {
  .hafm_card_body {
    left: 0.2rem;

    bottom: 0.2rem;
  }

  a.hafm_card:hover .hafm_card_body {
    left: 50%;

    bottom: 50%;

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

  .hafm_card_btn {
    width: 0.3rem;

    height: 0.3rem;

    margin: 0.1rem auto 0;
  }

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

/* ----------------------生产与研发-------------------------- */

.home_production_rd {
}

.hprd_maxbox {
  position: relative;

  overflow: visible;
}

/* 左上蓝色标题：固定不随 tab 切换 */

.hprd_head {
  position: absolute;

  top: -0.45rem;

  left: 50%;

  transform: translateX(-50%);

  width: 94vw;

  max-width: 1300px;

  z-index: 5;

  pointer-events: none;
}

.hprd_title {
  display: inline-block;

  max-width: 5.6rem;

  padding: 0.5rem 0.6rem;

  box-sizing: border-box;

  background: var(--i_color);

  color: #ffffff;

  pointer-events: auto;
}

.hprd_title h3 {
  font-weight: bold;

  line-height: 1.2;

  margin-bottom: 0.12rem;
}

.hprd_title h4 {
  color: rgb(255 255 255 / 90%);

  line-height: 1.5;

  font-weight: normal;
}

.hprd_contain {
  position: relative;
}

/* 大图面板切换 */

.hprdc_picbox {
  position: relative;

  overflow: hidden;
}

.hprdc_picbox dl {
  position: relative;
}

.hprdc_picbox dl dt {
  opacity: 0;

  visibility: hidden;

  height: 0;

  overflow: hidden;
}

.hprdc_picbox dl dt.active {
  opacity: 1;

  visibility: visible;

  height: auto;

  transition: opacity 0.45s ease;
}

.hprdc_pic {
  display: block;

  width: 100%;
}

.hprdc_pic span {
  position: relative;

  display: block;
}

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

  display: block;

  padding-bottom: 37%;
}

.hprdc_pic span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

/* tab */

.hprdc_tab {
  position: relative;

  z-index: 2;

  background: linear-gradient(0deg, #f2f2f2, #f2f2f2), #e7ebee;

  box-sizing: border-box;

  overflow: visible;
}

.hprdc_tab ul {
  display: flex;

  align-items: flex-start;

  overflow: visible;

  gap: 0.5rem;
}

.hprdc_tab ul li {
  flex: 1;

  position: relative;

  padding: 0.28rem 0;

  box-sizing: border-box;

  text-align: left;

  cursor: pointer;

  overflow: visible;
}

/* 底部线条：默认宽度 0，选中 100%，居中展开 */

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

  position: absolute;

  left: 50%;

  bottom: 0;

  width: 0;

  height: 2px;

  background: #333333;

  transform: translateX(-50%);

  transition: width 0.35s ease;
}

.hprdc_tab ul li.active::after {
  width: 100%;
}

.hprdc_tab ul li h3 {
  color: #666666;

  font-weight: normal;

  line-height: 1.3;

  transition: color 0.35s ease;
}

.hprdc_tab ul li.active h3 {
  color: var(--i_color);
}

.hprdc_desc {
  display: none;

  margin-top: 0.16rem;

  color: #999;

  text-align: left;
}

.hprdc_tab ul li.active .hprdc_desc {
  display: block;
}

/* 选中 tab 顶部小三角（指向大图） */

.hprdc_tab ul li.active::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0%;

  width: 0;

  height: 0;

  transform: translate(0%, -100%);

  border-left: 0.1rem solid transparent;

  border-right: 0.1rem solid transparent;

  border-bottom: 0.12rem solid #ffffff;

  z-index: 4;

  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .hprd_title {
    padding: 0.5rem 0.4rem 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .hprd_head {
    top: -0.24rem;
  }

  .hprd_title {
    max-width: 4.8rem;

    padding: 0.2rem 0.24rem;
  }

  .hprdc_tab ul li {
    padding: 0.12rem 0.1rem 0.2rem;
  }

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

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

  .hprdc_tab ul {
    flex-direction: column;

    gap: 0.08rem;
  }

  .hprdc_tab ul li {
    text-align: left;
  }

  .hprdc_desc {
    text-align: left;
  }

  .hprdc_tab ul li.active::before {
    display: none;
  }
}

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

    width: 100%;

    top: 0;
  }

  .hprd_title {
    max-width: 100%;
  }
}

/* -----------------------证书------------------ */

.home_corporate_honors {
}

.hch_maxbox {
  position: relative;
}

.hch_maxbox span {
  display: block;

  width: 100%;
}

.hch_maxbox span img {
  width: 100%;

  object-fit: contain;
}

.hch_title {
  position: absolute;

  top: 20%;

  left: 16%;

  width: 23%;
}

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

.hch_title .public_btn {
  display: flex;
}

@media screen and (max-width: 1440px) {
  .hch_title {
    left: 8%;
  }
}

@media screen and (max-width: 1200px) {
  .hch_title {
    top: 50%;

    transform: translateY(-50%);
  }
}

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

@media screen and (max-width: 768px) {
  .hch_title {
    width: 45%;

    left: 5%;
  }
}

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

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

.home_news {
}

.hn_maxbox {
}

/* 版心 1300：左 660×495，间距 15，右 625 */

.hnm_contain {
  display: grid;

  grid-template-columns: 660fr 625fr;

  column-gap: 15px;

  align-items: stretch;

  width: 100%;
}

.hnm_left {
  min-width: 0;
}

.hnm_left:hover a .hnm_feat_info .hnm_feat_more {
  color: var(--i_color);
}

.hnm_right {
  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

/* 左侧主推 */

a.hnm_feat {
  display: block;

  position: relative;

  overflow: hidden;

  text-decoration: none;

  color: #ffffff;
}

.hnm_feat_pic {
  display: block;

  width: 100%;
}

.hnm_feat_pic span {
  position: relative;

  display: block;
}

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

  display: block;

  padding-bottom: 75%;
}

.hnm_feat_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: transform 0.5s ease;
}

a.hnm_feat:hover .hnm_feat_pic img {
  transform: scale(1.05);
}

.hnm_feat_info {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  padding: 0.36rem 0.32rem 0.32rem;

  box-sizing: border-box;

  background: linear-gradient(to top, rgb(0 0 0 / 72%), transparent);
}

.hnm_feat_info h3 {
  font-weight: normal;

  line-height: 1.45;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

.hnm_feat_line {
  display: block;

  width: 100%;

  height: 1px;

  margin: 0.16rem 0 0.12rem;

  background: rgb(255 255 255 / 55%);
}

.hnm_feat_more {
  display: inline-flex;

  align-items: center;

  gap: 0.06rem;

  line-height: 1;
}

.hnm_feat_more iconify-icon {
  font-size: 0.18rem;
}

/* 右侧列表 */

.hnm_list {
  height: 80%;
}

.hnm_list li {
  border-bottom: 1px solid #eeeeee;
}

.hnm_list li:last-child {
  border-bottom: none;
}

.hnm_list li a {
  display: flex;

  align-items: center;

  gap: 0.2rem;

  padding: 0.15rem 0.2rem;

  box-sizing: border-box;

  text-decoration: none;

  transition: background 0.35s ease;
}

.hnm_list li a:hover {
  background: #f2f2f2;
}

.hnm_date {
  flex-shrink: 0;

  width: 0.72rem;
}

.hnm_date strong {
  display: block;

  color: #666;

  font-weight: bold;
}

.hnm_date span {
  display: block;

  color: #ccc;
}

.hnm_list li h3 {
  flex: 1;

  min-width: 0;

  color: #666;

  font-weight: normal;

  transition: color 0.35s ease;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

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

.hnm_more {
  display: flex;

  justify-content: flex-end;

  margin-top: 0.24rem;
}

@media screen and (max-width: 1024px) {
  .hnm_contain {
    column-gap: 1.1538vw;
  }
}

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

    column-gap: 0;

    row-gap: 0.24rem;
  }

  .hnm_feat_pic span::before {
    padding-bottom: 75%;
  }
}

/* ---------------------------------------products_banner --------------------------------------- */

.products_banner {
  width: 100%;

  position: relative;

  overflow: hidden;
}

.products_banner::before {
  content: "";

  display: block;

  padding-bottom: 36.6%;
}

.products_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transform: scale(1.2);

  animation: scaleIn 1.8s ease-out forwards;
}

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

  to {
    transform: scale(1);
  }
}

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

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

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

.in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

  background: #f2f5f9;

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

/* ------------------------------products.html-------------------------- */

.products_maxbox {
  /* padding: 0.6rem 0; */

  overflow: hidden;
}

.pm_box {
  display: flex;

  gap: 0.3rem;

  justify-content: space-between;
}

.products_left {
  width: 25.23%;

  box-sizing: border-box;

  flex-shrink: 0;

  box-sizing: border-box;

  background: #fff;
}

.products_left_all {
  box-sizing: border-box;

  margin-bottom: 0.46rem;
}

.products_left_h2 {
  font-size: 0.3rem;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.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); */

  border-radius: 0.06rem;

  gap: 0.1rem;
}

.list li {
  position: relative;

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

/* .list li::after{



	content: '';



	position: absolute;



	bottom: 0;



	left: 50%;



	transform: translate(-50%,0);



	width: 100%;



	height: 1px;



	background-color: rgba(51, 51, 51, 0.2);



} */

.list_a {
  box-sizing: border-box;

  padding: 0.1rem 0.2rem 0.1rem 0.2rem;

  position: relative;

  z-index: 2;

  overflow: hidden;

  background-color: transparent;

  background: #fff;
}

/* .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.22rem;

  font-weight: bold;

  color: #333;

  box-sizing: border-box;

  line-height: 150%;

  transition: all 0.3s ease;

  display: block;
}

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

  transition: all 0.3s ease;
}

.list_dl {
  padding: 0.1rem 0rem;

  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  background: #fff;
}

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

  border-radius: 0.06rem;
}

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

  line-height: 0.24rem;

  color: #666666;

  display: block;

  transition: all 0.3s ease;

  position: relative;

  box-sizing: border-box;

  padding: 0rem 0.1rem;

  transition: all 0.35s ease;

  padding: 0.15rem;
}

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

.list_dl dt a:hover {
  background: linear-gradient(0deg, #f2f2f2, #f2f2f2), #e7ebee;
}

.list_dl .list_dl_active a {
  background: linear-gradient(0deg, #f2f2f2, #f2f2f2), #e7ebee;
}

.list_active {
}

.list_active .list_a {
  background: rgba(72, 116, 203, 0.1);
}

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

  left: 0;

  right: auto;
}

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

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

.list_active .list_a a {
  color: #333;

  display: block;
}

.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: 1440px) {
}

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

@media screen and (max-width: 1200px) {
  .products_left_h2 {
    font-size: 0.26rem;
  }
}

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

  .products_left_all {
    margin-bottom: 0rem;
  }

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

  .products_left_all {
    padding: 0.2rem;
  }

  .products {
    flex-direction: column;
  }

  .pm_box {
    display: flex;

    flex-direction: column;
  }
}

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

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

  .products_left_h2 iconify-icon {
    font-size: 0.3rem;
  }
}

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

  .products_left_h2 iconify-icon {
    font-size: 0.25rem;
  }

  .products_left_all {
    padding: 0rem;

    margin-bottom: 0.2rem;
  }

  .products_maxbox {
    padding: 0.3rem 0;
  }

  .pm_box {
    gap: 0.2rem;
  }
}

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

.products_right {
  flex: 1;

  position: relative;
}

.pd_info {
  margin-bottom: 0.3rem;
}

.pd_info h2 {
  color: var(--i_color);

  font-weight: bold;

  margin-bottom: 0.1rem;
}

.pd_info h3 {
  color: #666666;
}

.pd_list {
  display: flex;

  gap: 0.23rem;

  flex-wrap: wrap;
}

.pd_list li {
  width: calc((100% - 2 * 0.23rem) / 3);

  background: linear-gradient(0deg, #f2f2f2, #f2f2f2), #e7ebee;

  padding: 0.2rem;

  box-sizing: border-box;

  position: relative;
}

.pd_list li a {
  width: 100%;

  height: 100%;

  display: block;
}

.pd_list li a .pd_hover_bg {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 90%;

  object-fit: contain;

  opacity: 0;

  transition: all 0.35s ease;
}

.pd_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;

  margin-bottom: 0.2rem;
}

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

  display: block;

  padding-bottom: 119%;
}

.pd_list li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.pd_list li h3 {
  text-align: center;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.1rem;

  transition: all 0.35s ease;
}

.pd_list li h4 {
  color: #999999;

  text-align: center;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

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

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

.pd_list li:hover a .pd_hover_bg {
  opacity: 1;
}

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

  .pd_list li {
    width: calc((100% - 0.15rem) / 2);

    padding: 0.15rem;
  }

  .pd_list li span {
    margin-bottom: 0.1rem;
  }
}

/* ------------------------ProductDetail.html------------------- */

.productDetail_maxbox {
  padding: 0.6rem 0;
}

.p_data {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  box-sizing: border-box;

  align-items: stretch;
}

.p_data_box {
  width: 42.3%;

  height: 100%;
}

/* atlas */

.p_atlas {
  width: 100%;

  height: 100%;

  position: relative;

  flex-shrink: 0;

  overflow: hidden;

  margin-bottom: 0.3rem;
}

.p_atlas::before {
  content: "";

  display: block;

  padding-bottom: 100%;
}

/* thumbnail */

.p_thumbnail {
  position: absolute;

  top: 0;

  left: 0;

  width: 17%;

  height: 100%;
}

.p_thumbnail_list {
  position: relative;

  top: 50%;

  transform: translate(0, -50%);

  width: 100%;

  height: calc(100% - 1rem);

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.p_thumbnail_list .swiper-wrapper {
  flex-direction: column;

  position: relative;

  width: 100%;
}

.p_thumbnail_list .swiper-slide {
  flex-shrink: 0;

  position: relative;

  box-sizing: border-box;

  overflow: hidden;

  cursor: pointer;

  background: #fff;

  border: #dde0e0 1px solid;
}

.p_thumbnail_list .swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* 默认的遮罩层 */

.p_thumbnail_list .swiper-slide::after {
  content: "";

  position: absolute;

  inset: 0;

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

  border-radius: 4px;

  transition: opacity 0.3s;

  pointer-events: none;

  opacity: 1;
}

/* Swiper 选中缩略图会自动加这个类 */

.p_thumbnail_list .swiper-slide-thumb-active::after {
  opacity: 0;
}

.p_v_btn {
  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 0.32rem;

  height: 0.26rem;

  background: var(--i_color);

  -webkit-border-radius: 0.1rem;

  border-radius: 0.1rem;

  font-size: 0.12rem;

  color: #fff;
}

.p_v_btn::before {
  position: absolute;

  top: 50%;

  left: 52%;

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

.p_thumbnail_list .swiper-slide-thumb-active {
  border-color: var(--i_color);
}

.thumbnail-prev,
.thumbnail-next {
  position: absolute;

  width: 100%;

  height: 0.4rem;

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;
}

.thumbnail-prev {
  top: 0;
}

.thumbnail-next {
  bottom: 0;
}

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

  top: 50%;

  left: 50%;

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

  font-size: 0.3rem;

  color: #767676;

  transition: all 0.35s ease;
}

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

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

.p_atlas_list {
  position: absolute;

  top: 0;

  right: 0;

  width: calc(100% - 19.5%);

  height: 100%;

  box-sizing: border-box;

  overflow: hidden;

  padding-right: 0.1rem;
}

.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;

  display: flex;

  position: relative;

  height: 100%;
}

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

  flex-shrink: 0;

  position: relative;

  overflow: hidden;

  cursor: pointer;

  background: #fff;

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

  box-sizing: border-box;
}

.p_atlas_list .swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.p_atlas_list .swiper-slide iframe,
.p_atlas_list .swiper-slide video {
  width: 100%;

  height: 100%;

  background: #000;

  object-fit: contain;
}

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

  .p_atlas {
    width: 100%;

    margin: 0 auto 0.2rem auto;

    max-width: 5rem;

    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    margin-bottom: 0.3rem;
  }

  .p_atlas::before {
    display: none;
  }

  .p_thumbnail {
    margin-top: 0.2rem;

    position: relative;

    width: 100%;
  }

  .p_thumbnail_list {
    position: initial;

    top: initial;

    transform: none;

    height: 1.3rem;
  }

  .p_thumbnail_list .swiper-wrapper {
    display: -webkit-flex;

    display: flex;

    flex-direction: initial;
  }

  .p_thumbnail_list .swiper-slide {
    border-width: 1px;
  }

  .p_atlas_list {
    order: -1;

    position: relative;

    width: 100%;
  }

  .p_atlas_list .swiper-slide {
    height: 0;

    padding-bottom: 100%;
  }

  .p_atlas_list .swiper-slide iframe,
  .p_atlas_list .swiper-slide video,
  .p_atlas_list .swiper-slide img {
    position: absolute;

    top: 0;

    left: 0;
  }

  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
}

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

  .p_data {
    flex-direction: column;

    align-items: center;
  }

  .p_data_box {
    width: 80%;
  }
}

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

.p_media_box {
  display: flex;

  align-items: center;
}

.p_media_box ul {
  display: flex;

  gap: 0.2rem;

  align-items: center;
}

.p_media_box ul li {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  display: flex;

  align-items: center;
}

.p_media_box ul li a {
}

.p_media_box ul li a iconify-icon {
  font-size: 0.24rem;
}

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

.p_dataInfo {
  width: 55%;
}

.p_dataInfo h1 {
  font-weight: bold;

  color: var(--i_color);

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  padding-bottom: 0.1rem;

  border-bottom: 0.01rem solid rgba(51, 51, 51, 0.2);

  margin-bottom: 0.2rem;

  position: relative;
}

.p_dataInfo h1::before {
  content: "";

  display: block;

  width: 50%;

  height: 0.02rem;

  position: absolute;

  left: 0;

  bottom: 0;

  background: var(--i_color);
}

.pd_article {
  margin-bottom: 0.3rem;
}

.pd_bottom_box {
  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

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

  padding: 0.2rem 0;
}

.pd_btnbox {
  display: flex;

  gap: 0.2rem;
}

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

  .p_media_box {
    display: flex;

    justify-content: flex-end;
  }
}

@media screen and (max-width: 560px) {
  .p_media_box ul li a iconify-icon {
    font-size: 0.2rem;
  }

  .pd_btnbox {
    gap: 0.1rem;
  }

  .p_media_box ul {
    gap: 0.1rem;
  }

  .pd_bottom_box {
    gap: 0.1rem 0;
  }
}

/* --------------------------产品介绍------------------ */

.productDetail_introduction {
}

.pdi_maxbox {
}

.pdim_title {
  width: 100%;

  background: #f7f7f7;
}

.pdim_title h3 {
}

.pdim_title h3 p {
  padding: 0.3rem 0;

  box-sizing: border-box;

  color: var(--i_color);

  position: relative;

  width: fit-content;

  display: block;
}

.pdim_title h3 p::before {
  content: "";

  display: block;

  width: 100%;

  background: var(--i_color);

  height: 0.02rem;

  position: absolute;

  bottom: 0;

  left: 0;
}

.pdim_contain {
  padding: 0.3rem 0;
}

@media screen and (max-width: 560px) {
  .pdim_title h3 p {
    padding: 0.15rem 0;
  }

  .pdim_contain {
    padding: 0.15rem 0;
  }
}

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

.single_two_bac {
  background: #f7f7f7;

  box-sizing: border-box;

  padding: 0.56rem 0;

  margin-bottom: var(--box-bottom);
}

.single_two {
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  flex-wrap: wrap;

  gap: 0.15rem;

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

  border-bottom: 1px solid #d8d8d8;
}

.bottom_single_tags p {
  font-size: 0.18rem;

  color: #333333;

  display: flex;

  align-items: center;
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  padding: 0.1rem 0.12rem;

  font-size: 0.16rem;

  color: #333;
}

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

.sx {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;

  box-sizing: border-box;
}

.sx > div {
  width: 48%;
}

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

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

  box-sizing: border-box;
}

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

  box-sizing: border-box;
}

.sx_left a i,
.sx_right a i {
}

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

  color: #333;
}

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

.sx a {
  display: block;

  width: 100%;

  display: flex;

  display: -webkit-flex;

  align-items: center;
}

.sx p {
  font-size: 0.18rem;

  color: #333333;

  text-transform: capitalize;

  margin-right: 0.1rem;
}

.sx span {
  font-size: 0.16rem;

  color: #333333;

  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

    font-size: 0.14rem;
  }

  .bottom_single_tags {
    align-items: center;
  }
}

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

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

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

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

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }

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

    height: 0;
  }

  .single_two_bac {
    padding: 0.3rem 0;
  }
}

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

/* ------------------下载----------------- */

.productDetail_download {
}

.pd_maxbox {
}

.pdm_title {
  margin-bottom: 0.2rem;
}

.pdm_contain {
}

.pdm_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem 0.5rem;
}

.pdm_contain ul li {
  width: calc((100% - 0.5rem) / 2);
}

.pdm_contain ul li a {
  border: 1px solid #c6def0;

  padding: 0.34rem;

  box-sizing: border-box;

  display: flex;

  justify-content: space-between;

  gap: 0.3rem;

  align-items: center;

  transition: all 0.45s ease;

  position: relative;
}

.pdm_contain ul li a span {
  color: #333333;

  transition: all 0.45s ease;

  display: block;

  z-index: 2;

  display: block;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.pdm_contain ul li a iconify-icon {
  font-size: 0.24rem;

  color: var(--i_color);

  transition: all 0.45s ease;

  z-index: 2;
}

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

  display: block;

  width: 0;

  height: 100%;

  background: var(--i_color);

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.45s ease;

  z-index: 1;
}

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

.pdm_contain ul li a:hover span {
  color: #fff;
}

.pdm_contain ul li a:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .pdm_contain ul li a {
    padding: 0.2rem;
  }
}

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

  .pdm_contain ul li {
    width: var(100% - 0.3rem);
  }
}

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

  .pdm_contain ul li {
    width: var(100% - 0.2rem);
  }

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

  .pdm_contain ul li a {
    padding: 0.1rem;
  }
}

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

  .pdm_contain ul {
    gap: 0.15rem;
  }

  .pdm_title {
    margin-bottom: 0.1rem;
  }
}

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

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

.pdf_maxbox {
}

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0.3rem;
}

.faq_ul li {
  border-bottom: 1px solid #bcccdc;
}

.faq_q {
  box-sizing: border-box;

  padding: 0.2rem 0;

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  align-items: center;
}

.faq_ul i {
  border-radius: 0rem;

  display: block;

  color: #333333;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  font-size: 0.18rem;

  font-weight: bold;

  margin-right: 0.1rem;
}

.faq_q h2 {
  font-size: 0.18rem;

  color: #333;

  width: calc(100% - 0.72rem);

  box-sizing: border-box;
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0.1rem 0 0.2rem 0;
}

.faq_a i {
  color: #333333;

  font-size: 0.18rem;

  line-height: 1.5;
}

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

  font-size: 0.16rem;

  color: #333;

  line-height: 1.5;
}

.faq_ul li.on .faq_q i {
  color: var(--i_color) !important;
}

.faq_ul li.on .faq_q h2 {
  color: var(--i_color) !important;
}

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

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

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

  .faq_ul {
    gap: 0.2rem;
  }
}

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

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

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

  .faq_q {
    padding: 0.1rem 0;
  }
}

@media screen and (max-width: 560px) {
  .faq_q h2 {
    width: calc(100% - 0.3rem);
  }

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

  .faq_ul i {
    font-size: 0.16rem;
  }

  .faq_ul {
    gap: 0.1rem;
  }

  .faq_q {
    padding: 0.1rem 0;
  }
}

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

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

.productDetail_related_products {
  background: linear-gradient(180deg, #0e367a00 0%, #0e367a1a 100%);
}

.pdrp_maxbox {
}

.pdrp_contain {
}

.pdrp_list {
  position: relative;

  overflow: hidden;
}

.pdrp_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.pdrp_list li {
  flex-shrink: 0;

  position: relative;
}

.pdrp_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

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

  height: 0.1rem;

  display: inline-block;

  margin: 0 6px;

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

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;
}

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

  width: 0.19rem;

  border-radius: 0.2rem;
}

.pdrp_list li {
  background: #fff;

  padding: 0.2rem;

  box-sizing: border-box;

  position: relative;
}

.pdrp_list li a {
  width: 100%;

  height: 100%;

  display: block;
}

.pdrp_list li a .pd_hover_bg {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 90%;

  object-fit: contain;

  opacity: 0;

  transition: all 0.35s ease;
}

.pdrp_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;

  margin-bottom: 0.2rem;
}

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

  display: block;

  padding-bottom: 119%;
}

.pdrp_list li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.pdrp_list li h3 {
  text-align: center;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.1rem;

  transition: all 0.35s ease;
}

.pdrp_list li h4 {
  color: #999999;

  text-align: center;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

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

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

.pdrp_list li:hover a .pd_hover_bg {
  opacity: 1;
}

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

  .pdrp_list li {
    padding: 0.15rem;
  }

  .pdrp_list li span {
    margin-bottom: 0.1rem;
  }

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

/* --------------------------aboutus.html--------------------------- */

.aboutus_about_comapny {
}

.aac_maxbox {
}

.aacm_top {
  display: flex;

  justify-content: space-between;
}

.aacm_top .aacm_title {
  display: flex;

  flex-direction: column;

  width: 35.38%;
}

.aacm_top .aacm_title span {
  font-weight: bold;

  color: var(--i_color);
}

.aacmt_sec_span {
  margin-left: 1rem;
}

.aacm_top .aacm_des {
  width: 55.3%;

  color: #666;
}

.aacm_pic {
  width: 100%;

  margin-bottom: 0.9rem;
}

.aacm_pic span {
  width: 100%;

  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 38.4%;
}

.aacm_pic span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.aacm_info {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.aacmi_left {
  width: 47%;
}

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

  width: 70%;

  font-weight: bold;

  margin-bottom: 0.3rem;
}

.aacmi_left p {
  color: #666666;

  margin-bottom: 0.1rem;
}

.aacmi_right {
  width: 44%;
}

.aacmi_right ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.6rem;
}

.aacmi_right ul li {
  width: calc((100% - 0.6rem) / 2);

  display: flex;

  justify-content: center;

  align-items: center;

  border: 0.01rem solid rgba(0, 84, 250, 0.4);

  border-radius: 0px 0.92rem 0px 0.92rem;

  padding: 0.3rem 0;

  font-weight: bold;

  color: var(--i_color);

  position: relative;

  box-sizing: border-box;
}

.aacmi_right ul li p {
  color: #999999;

  position: absolute;

  top: -0.28rem;

  left: 0.2rem;

  width: 68%;

  background: #fff;

  padding-left: 0.1rem;

  box-sizing: border-box;

  font-weight: normal;
}

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

@media screen and (max-width: 1024px) {
  .aacmt_sec_span {
    margin-left: 0.4rem;
  }

  .aacm_pic {
    margin-bottom: 0.6rem;
  }

  .aacmi_right ul {
    gap: 0.6rem 0.3rem;
  }

  .aacmi_right ul li {
    width: calc((100% - 0.3rem) / 2);

    padding: 0.2rem 0;
  }
}

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

  .aacm_top .aacm_title {
    display: flex;

    flex-direction: row;

    width: 100%;

    justify-content: center;

    margin-bottom: 0.2rem;
  }

  .aacm_top .aacm_title span {
    display: flex;
  }

  .aacmt_sec_span {
    margin-left: 0.1rem;
  }

  .aacm_top .aacm_des {
    width: 100%;

    color: #666;
  }

  .aacm_info {
    flex-direction: column;
  }

  .aacmi_left {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .aacmi_right {
    width: 100%;
  }

  .aacm_pic {
    margin-bottom: 0.3rem;
  }

  .aacmi_left h3 {
    width: 100%;

    margin-bottom: 0.1rem;
  }

  .aacmi_left p {
    margin-bottom: 0.1rem;
  }

  .aacmi_right ul {
    gap: 0.4rem 0.3rem;
  }
}

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

  .aacmi_right ul li p {
    top: -0.15rem;

    width: 85%;
  }

  .aacmi_right ul {
    gap: 0.3rem;
  }
}

/* ------------------------企业环境----------------- */

.aboutus_corporate_environment {
  background: linear-gradient(225deg, #dae9f4 10%, #ffffff00 63%);
}

.ace_maxbox {
}

.acem_contain {
  width: 100%;
}

.acem_list {
  display: flex;

  align-items: stretch;

  gap: 0.2rem;

  height: 4.41rem;

  overflow: hidden;
}

.acem_item {
  flex: 1;

  min-width: 0;

  overflow: hidden;

  cursor: pointer;

  transition: flex 0.55s ease;
}

.acem_item.active {
  flex: 4.2;
}

.acem_pic {
  display: block;

  width: 100%;

  height: 100%;
}

.acem_pic span {
  position: relative;

  display: block;

  width: 100%;

  height: 100%;
}

.acem_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.55s ease;
}

.acem_item.active .acem_pic img {
  transform: scale(1.04);
}

@media screen and (max-width: 1024px) {
  .acem_list {
    height: 3.6rem;

    gap: 8px;
  }

  .acem_item.active {
    flex: 3.5;
  }
}

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

    height: auto;
  }

  .acem_item,
  .acem_item.active {
    flex: none;

    width: 100%;
  }

  .acem_pic {
    height: 2.4rem;
  }

  .acem_item.active .acem_pic {
    height: 3.2rem;
  }
}

/* --------------------工业布局---------------- */

.aboutus_industrial_layout {
}

.ail_maxbox {
}

.ail_contain {
  width: 100%;

  position: relative;
}

.ail_contain span {
  width: 100%;

  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 47%;
}

.ail_contain span img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}

.market_dian {
  position: absolute;
}

.market_dian.d1 {
  top: 29.5%;

  left: 20.5%;
}

.market_dian.d2 {
  top: 56.5%;

  left: 14.8%;
}

.market_dian.d3 {
  top: 42.5%;

  left: 38.7%;
}

.market_dian.d4 {
  top: 69.6%;

  right: 58.7%;
}

.market_dian.d5 {
  top: 81.8%;

  right: 47%;
}

.market_dian.d6 {
  bottom: 61.5%;

  right: 26.7%;
}

.market_dian .round {
  width: 0.12rem;

  height: 0.12rem;

  margin: 0 auto;

  border: var(--i_color) 0.06rem solid;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  position: relative;

  z-index: 2;

  background: #ffffff;

  box-sizing: content-box;
}

/* 中心点扩散波纹 */

.market_dian.d6 .round {
  z-index: 3;
}

/* 线条粗细：由 border 控制（勿用 scale，scale 会把边框一起放大） */

.market_dian.d6 .market_ripple {
  position: absolute;

  top: 50%;

  left: 50%;

  width: 0.16rem;

  height: 0.16rem;

  margin: -0.08rem 0 0 -0.08rem;

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

  border-radius: 50%;

  background: transparent;

  box-sizing: border-box;

  pointer-events: none;

  animation: market_diffuse 4.5s ease-out infinite;
}

.market_dian.d6 .market_ripple:nth-child(1) {
  animation-delay: 0s;
}

.market_dian.d6 .market_ripple:nth-child(2) {
  animation-delay: 1.8s;
}

.market_dian.d6 .market_ripple:nth-child(3) {
  animation-delay: 2.8s;
}

@keyframes market_diffuse {
  0% {
    width: 0.16rem;

    height: 0.16rem;

    margin: -0.08rem 0 0 -0.08rem;

    opacity: 0.8;
  }

  100% {
    width: 2.8rem;

    height: 2.8rem;

    margin: -1.4rem 0 0 -1.4rem;

    opacity: 0;
  }
}

.market_dian p {
  position: absolute;

  left: 50%;

  transform: translate(-50%, 0);

  margin-top: 0.1rem;

  font-size: 0.2rem;

  white-space: nowrap;

  overflow: hidden;

  color: #333;
}

@media screen and (min-width: 1921px) {
  .market_dian.d6 {
    bottom: 61.9%;

    right: 26.85%;
  }
}

@media screen and (max-width: 1440px) {
  .market_dian.d6 {
    bottom: 61.7%;

    right: 26.7%;
  }
}

@media screen and (max-width: 1200px) {
  .market_dian.d6 {
    bottom: 61.4%;

    right: 26.7%;
  }
}

@media screen and (max-width: 1024px) {
  .market_dian.d6 {
    bottom: 60.6%;

    right: 26.2%;
  }
}

@media screen and (max-width: 768px) {
  .market_dian .round {
    width: 0.08rem;

    height: 0.08rem;

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

  .market_dian p {
    margin-top: 0.05rem;

    font-size: 0.16rem;
  }

  @keyframes market_diffuse {
    0% {
      width: 0.14rem;

      height: 0.14rem;

      margin: -0.07rem 0 0 -0.07rem;

      opacity: 0.8;
    }

    100% {
      width: 1.8rem;

      height: 1.8rem;

      margin: -0.9rem 0 0 -0.9rem;

      opacity: 0;
    }
  }

  .market_dian.d6 {
    bottom: 61%;

    right: 26.6%;
  }
}

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

  .market_dian.d6 .market_ripple {
    width: 0.14rem;

    height: 0.14rem;

    margin: -0.07rem 0 0 -0.07rem;

    animation: market_diffuse 3.8s ease-out infinite;
  }

  .market_dian.d6 .market_ripple:nth-child(1) {
    animation-delay: 0s;
  }

  .market_dian.d6 .market_ripple:nth-child(2) {
    animation-delay: 1.8s;
  }

  .market_dian.d6 .market_ripple:nth-child(3) {
    animation-delay: 2.8s;
  }

  @keyframes market_diffuse {
    0% {
      width: 0.1rem;

      height: 0.1rem;

      margin: -0.05rem 0 0 -0.05rem;

      opacity: 0.8;
    }

    100% {
      width: 1rem;

      height: 1rem;

      margin: -0.5rem 0 0 -0.5rem;

      opacity: 0;
    }
  }

  .market_dian .round {
    width: 0.06rem;

    height: 0.06rem;

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

  .market_dian.d6 {
    bottom: 60%;

    right: 26%;
  }
}

/* ------------------------------权威认证------------------------ */

.aboutus_authoritative_certification {
}

.aic_maxbox {
}

.aic_contain {
  display: flex;

  overflow: hidden;

  width: 100%;
}

.aicc_left {
  width: 20.38%;

  position: relative;
}

.aicc_left::before {
  content: "";

  display: block;

  padding-bottom: 112%;
}

.aicc_left img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;
}

.aic_right {
  width: 78%;

  padding: 0 0.9rem;

  box-sizing: border-box;

  position: relative;
}

.aic_list {
  position: relative;

  overflow: hidden;
}

.aic_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.aic_list li {
  flex-shrink: 0;

  position: relative;
}

.aic_list li span {
  width: 100%;

  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 144%;
}

.aic_list li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.aic_prev,
.aic_next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.46rem;

  height: 0.46rem;

  border: 1px solid #aaaaaa;

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  border-radius: 50%;
}

.aic_prev {
  left: 0.2rem;
}

.aic_next {
  right: 0.2rem;
}

.aic_prev iconify-icon,
.aic_next iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.3rem;

  color: #999;
}

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

.aic_prev:hover iconify-icon,
.aic_next:hover iconify-icon {
  color: #fff;
}

.aic_prev:hover,
.aic_next:hover {
  background: var(--i_color);
}

.aic_pagination {
  display: block;

  margin-top: 0.2rem;

  text-align: center;

  display: none;
}

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

  height: 0.08rem;

  display: inline-block;

  margin: 0 6px;

  background: #ccc;

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  opacity: 1;
}

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

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

    height: 0.35rem;
  }

  .aic_prev iconify-icon,
  .aic_next iconify-icon {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 768px) {
  .aic_right {
    padding: 0 0.5rem;
  }

  .aic_prev {
    left: 0.05rem;
  }

  .aic_next {
    right: 0.05rem;
  }
}

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

    align-items: center;
  }

  .aicc_left {
    width: 60%;

    margin-bottom: 0.2rem;
  }

  .aic_right {
    width: 100%;

    padding: 0;

    box-sizing: border-box;

    position: relative;
  }

  .aic_prev,
  .aic_next {
    display: none;
  }

  .aic_pagination {
    display: block;
  }
}

/* ------------------------------service.html-------------------- */

/* 服务内容 */

.service_service_content {
}

.ssc_maxbox {
}

.ssc_contain {
  width: 100%;

  margin-top: 0.6rem;
}

.ssc_layout {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 0.6rem;
}

.ssc_col {
  flex: 1;

  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 0.5rem;
}

.ssc_item {
  display: flex;

  align-items: center;

  min-height: 0.9rem;

  position: relative;

  cursor: pointer;
}

.ssc_col .ssc_item::before {
  width: 0.75rem;

  height: 0.02rem;

  background: var(--i_color);

  position: absolute;

  content: "";
}

.ssc_col.ssc_col_left li:nth-child(1)::before {
  right: -18.5%;

  top: 60%;
}

.ssc_col.ssc_col_left li:nth-child(2)::before {
  right: -20%;

  top: 35%;

  width: 0.8rem;
}

.ssc_col.ssc_col_right li:nth-child(1)::before {
  left: -18.5%;

  top: 60%;
}

.ssc_col.ssc_col_right li:nth-child(2)::before {
  left: -20%;

  top: 35%;

  width: 0.8rem;
}

.ssc_item_right {
  flex-direction: row;
}

.ssc_icon {
  position: relative;

  z-index: 2;

  flex-shrink: 0;

  width: 0.58rem;

  height: 0.6rem;

  display: flex;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;
}

.ssc_col_left .ssc_icon img,
.ssc_col_right .ssc_icon img {
  width: 100%;

  height: 100%;

  display: block;
}

.ssc_col_left .ssc_icon {
  margin-right: -0.35rem;
}

.ssc_col_right .ssc_icon {
  margin-left: -0.35rem;
}

.ssc_icon img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: contain;
}

.ssc_card {
  flex: 1;

  min-width: 0;

  box-sizing: border-box;

  background: #f5f5f5;

  border: 1px solid transparent;

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

.ssc_col_left .ssc_card {
  padding: 0.22rem 0.28rem 0.4rem 0.5rem;
}

.ssc_col_right .ssc_card {
  padding: 0.22rem 0.5rem 0.4rem 0.28rem;
}

.ssc_item:hover .ssc_card {
  background: #ffffff;

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

.ssc_card h3 {
  color: #333333;

  font-weight: bold;

  margin-bottom: 0.06rem;

  transition: color 0.35s ease;
}

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

.ssc_card p {
  color: #666666;
}

.ssc_col_right .ssc_card {
  text-align: right;
}

/* 中心圆 */

.ssc_center {
  position: relative;

  flex-shrink: 0;

  width: 3.82rem;

  height: 3.82rem;
}

.ssc_circle_outer,
.ssc_circle_dash,
.ssc_circle_core {
  position: absolute;

  top: 50%;

  left: 50%;

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

  border-radius: 50%;

  box-sizing: border-box;
}

.ssc_circle_outer {
  width: 100%;

  height: 100%;

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

.ssc_circle_dash {
  width: 78%;

  height: 78%;

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

  opacity: 0.85;

  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    #4874cb;

  -webkit-animation: ssc_dash_ccw 24s linear infinite;

  animation: ssc_dash_ccw 24s linear infinite;
}

@keyframes ssc_dash_ccw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* 圆环：蓝底 + 内白圆，边缘用柔光过渡（避免渐变硬切锯齿） */

.ssc_circle_core {
  width: 52%;

  height: 52%;

  background: var(--i_color);

  color: var(--i_color);

  font-weight: bold;

  display: flex;

  align-items: center;

  justify-content: center;

  letter-spacing: 0.02em;

  line-height: 1;

  z-index: 1;

  border: none;

  box-sizing: border-box;

  isolation: isolate;

  -webkit-font-smoothing: antialiased;
}

.ssc_circle_core::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  width: 65%;

  height: 65%;

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

  border-radius: 50%;

  background: #ffffff;

  box-shadow:
    0 0 0 1px rgb(72 116 203 / 8%),
    0 0 0.06rem 0.04rem rgb(72 116 203 / 18%),
    0 0 0.12rem 0.08rem rgb(72 116 203 / 14%),
    0 0 0.2rem 0.12rem rgb(72 116 203 / 8%);

  z-index: -1;
}

@media screen and (min-width: 1921px) {
  .ssc_col.ssc_col_left li:nth-child(1)::before {
    right: -13.2%;

    top: 60%;
  }

  .ssc_col.ssc_col_left li:nth-child(2)::before {
    right: -12.6%;

    top: 35%;

    width: 0.72rem;
  }

  .ssc_col.ssc_col_right li:nth-child(1)::before {
    left: -13.2%;

    top: 60%;
  }

  .ssc_col.ssc_col_right li:nth-child(2)::before {
    left: -12.6%;

    top: 35%;

    width: 0.72rem;
  }
}

@media screen and (max-width: 1440px) {
  .ssc_col.ssc_col_left li:nth-child(1)::before {
    right: -16%;

    top: 60%;
  }

  .ssc_col.ssc_col_left li:nth-child(2)::before {
    right: -16.5%;

    top: 35%;

    width: 0.8rem;
  }

  .ssc_col.ssc_col_right li:nth-child(1)::before {
    left: -16%;

    top: 60%;
  }

  .ssc_col.ssc_col_right li:nth-child(2)::before {
    left: -16.5%;

    top: 35%;

    width: 0.8rem;
  }
}

@media screen and (max-width: 1200px) {
  .ssc_col.ssc_col_left li:nth-child(1)::before {
    right: -19%;

    top: 60%;
  }

  .ssc_col.ssc_col_left li:nth-child(2)::before {
    right: -20%;

    top: 35%;

    width: 0.8rem;
  }

  .ssc_col.ssc_col_right li:nth-child(1)::before {
    left: -19%;

    top: 60%;
  }

  .ssc_col.ssc_col_right li:nth-child(2)::before {
    left: -22%;

    top: 35%;

    width: 0.85rem;
  }
}

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

    align-items: stretch;

    gap: 0.3rem;
  }

  .ssc_center {
    order: -1;

    margin: 0 auto 0.1rem;

    width: 2.4rem;

    height: 2.4rem;
  }

  .ssc_col {
    width: 100%;

    gap: 0.3rem;
  }

  /* 竖排后左右统一：图标在左、文案左对齐、内边距一致 */

  .ssc_item,
  .ssc_item_right {
    flex-direction: row;
  }

  .ssc_col_left .ssc_icon {
    margin-right: -0.35rem;

    margin-left: 0;
  }

  .ssc_col_right .ssc_icon {
    order: -1;

    margin-right: -0.35rem;

    margin-left: 0;
  }

  .ssc_col_left .ssc_card,
  .ssc_col_right .ssc_card {
    padding: 0.22rem 0.28rem 0.4rem 0.5rem;

    text-align: left;
  }

  .ssc_col .ssc_item::before {
    display: none;
  }

  .ssc_circle_core::before {
    width: 70%;

    height: 70%;
  }

  .ssc_circle_core {
    width: 60%;

    height: 60%;
  }

  .ssc_contain {
    margin-top: 0.3rem;
  }
}

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

    height: auto;
  }

  .ssc_col_right .ssc_icon,
  .ssc_col_left .ssc_icon {
    margin-right: -0.25rem;

    margin-left: 0;
  }

  .ssc_circle_core::before {
    width: 75%;

    height: 75%;
  }

  .ssc_layout {
    gap: 0.2rem;
  }
}

/* -----------------------服务流程------------------------- */

.service_service_process {
  background: linear-gradient(218deg, #dae9f4 9%, #ffffff00 68%);
}

.ssp_maxbox {
}

.ssp_contain {
}

.process_ul {
  display: grid;

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

  grid-template-rows: repeat(2, 1fr);

  gap: 0;

  position: relative;

  margin-top: 0.6rem;

  z-index: 2;
}

.process_ul::after {
  content: "";

  position: absolute;

  top: 50%;

  left: 0;

  width: 100%;

  height: 0.04rem;

  background: linear-gradient(
    270deg,
    #4874cb00 1%,

    #4874cbb3 13%,

    #4874cb 50%,

    #4874cbb3 88%,

    #4874cb00 98%
  );

  z-index: -1;
}

.process_ul li {
  display: flex;

  gap: 0.4rem;

  flex-direction: column;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;
}

.process_ul li:nth-child(1) {
  grid-area: 2 / 1;
}

.process_ul li:nth-child(2) {
  grid-area: 1 / 2;
}

.process_ul li:nth-child(3) {
  grid-area: 2 / 3;
}

.process_ul li:nth-child(4) {
  grid-area: 1 / 4;
}

.process_ul li:nth-child(5) {
  grid-area: 2 / 5;
}

.process_ul li:nth-child(even) {
  margin-bottom: -0.12rem;
}

.process_ul li:nth-child(odd) {
  margin-top: -0.12rem;

  flex-direction: column-reverse;

  justify-content: flex-end;
}

.process_text {
  width: 80%;

  height: 80%;

  background: #f5f5f5;

  padding: 0.26rem 0.1rem 0.31rem 0.1rem;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  position: relative;
}

.process_text::before {
  content: "";

  display: block;

  width: 0%;

  height: 0.02rem;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  background: var(--i_color);

  top: 0;

  transition: all 0.35s ease;
}

.process_ul li:nth-child(even) .process_text::before {
  top: 100%;
}

.process_ul li:hover .process_text::before {
  width: 100%;
}

.process_ul li h3 {
  width: 0.52rem;

  height: 0.53rem;

  transition: all 0.3s ease;

  margin-bottom: 0.1rem;
}

.process_ul li h3 img {
  width: 100%;

  height: 100%;
}

.process_ul li h4 {
  text-align: center;
}

.process_ul li i {
  width: 0.25rem;

  height: 0.25rem;

  border-radius: 50%;

  display: block;

  box-sizing: border-box;

  background-color: #fff;

  transition: all 0.3s ease;

  box-shadow: 0px 4px 10px 0px rgba(72, 116, 203, 0.4);

  position: relative;

  flex-shrink: 0;
}

.process_ul li i::before {
  content: "";

  display: block;

  width: 52%;

  height: 52%;

  background: var(--i_color);

  border-radius: 50%;

  position: absolute;

  top: 50%;

  left: 50%;

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

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

@media screen and (max-width: 1440px) {
  .process_ul li {
    height: 2.3rem;
  }

  .process_bac {
    padding: 0.8rem 0;
  }
}

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

  .process_ul {
    margin-top: 0.4rem;
  }
}

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

    display: flex;

    gap: 0.2rem;
  }

  .process_ul li {
    margin: 0 !important;

    width: calc((100% - 0.4rem) / 3);

    height: unset;
  }

  .process_ul li i {
    display: none;
  }

  .process_ul li h5 {
    width: 100%;
  }

  .process_ul::after {
    display: none;
  }

  .process_text {
    height: 100%;

    width: 100%;
  }

  .process_text::before {
    top: 100%;
  }
}

@media screen and (max-width: 767px) {
  .process_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
}

@media screen and (max-width: 560px) {
  .process_ul li h3 {
    width: 0.4rem;

    height: 0.4rem;
  }

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

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

/* ------------------服务优势------------------------- */

.service_service_advantage {
}

.ssa_maxbox {
  display: flex;

  justify-content: space-between;
}

.ssam_pic {
  width: 56.3%;
}

.ssam_pic ul {
  width: 100%;

  position: relative;

  display: grid;
}

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

  display: block;

  width: 100%;

  height: 100%;

  background: var(--i_color);

  position: absolute;

  top: 0;

  left: 0;

  border-radius: 0 80% 10% 0 / 0 60% 40% 0;
}

.ssam_pic ul li {
  grid-area: 1 / 1;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0.5s;
}

.ssam_pic ul li.active {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.ssam_pic ul li span {
  position: relative;

  display: block;

  width: 96.5%;

  overflow: hidden; /* 裁剪图片 */

  border-radius: 0 25% 40% 0 / 0 60% 50% 0;
}

.ssam_pic ul li span::before {
  content: "";

  display: block;

  padding-bottom: 101%;
}

.ssam_pic ul li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.ssamp_info {
  position: absolute;

  left: 34%;

  top: 58%;

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

  width: 49%;
}

.ssampi_box {
  position: relative;

  padding: 0.5rem 0.52rem;

  box-sizing: border-box;
}

.ssampi_box::before {
  content: "";

  display: block;

  width: 0;

  height: 0;

  border-top: 0.24rem solid transparent;

  border-bottom: 0.24rem solid transparent;

  border-left: 0.22rem solid rgba(255, 255, 255, 0.8);

  position: absolute;

  right: -0.22rem;

  top: 55%;
}

.ssamp_info .ssampi_box h3 {
  color: var(--i_color);

  margin-bottom: 0.1rem;

  font-weight: bold;
}

.ssamp_info .ssampi_box h4 {
  color: #666;
}

.ssam_tab {
  width: 42%;

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

.ssam_tab ul {
  width: 100%;

  height: 100%;

  position: relative;
}

.ssam_tab ul li {
  display: flex;

  flex-direction: column;

  align-items: center;

  position: relative;

  width: fit-content;

  cursor: pointer;

  gap: 0.05rem;
}

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

.ssam_tab ul li i {
  width: 0.24rem;

  height: 0.24rem;

  border-radius: 50%;

  background: #fff;

  border: #ccc 1px solid;

  display: block;

  position: relative;
}

.ssam_tab ul li i::before {
  content: "";

  display: block;

  width: 50%;

  height: 50%;

  background: var(--i_color);

  border-radius: 50%;

  position: absolute;

  top: 50%;

  left: 50%;

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

.ssam_tab ul li h3 {
  color: #666666;

  text-align: center;

  width: 80%;

  transition: all 0.35s ease;
}

.ssam_dian {
  position: absolute;
}

.ssam_dian1 {
  top: 27%;

  left: 15%;
}

.ssam_dian2 {
  top: 42%;

  left: 4%;
}

.ssam_dian3 {
  top: -9%;

  left: 42%;
}

.ssam_dian4 {
  top: 6%;

  left: 40%;
}

.ssam_dian5 {
  top: -5.5%;

  left: 70%;
}

.ssam_dian6 {
  top: 9%;

  left: 65%;
}

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

.ssam_tab ul li.active h3 {
  color: var(--i_color);
}

@media screen and (min-width: 1921px) {
  .ssam_dian1 {
    top: 29.5%;

    left: 19.3%;
  }

  .ssam_dian2 {
    top: 48%;

    left: 9%;
  }

  .ssam_dian3 {
    top: -3%;

    left: 46%;
  }

  .ssam_dian4 {
    top: 15.5%;

    left: 44%;
  }

  .ssam_dian5 {
    top: 4.5%;

    left: 74%;
  }

  .ssam_dian6 {
    top: 23%;

    left: 67.5%;
  }

  .ssampi_box::before {
    right: -0.21rem;
  }
}

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

    left: 12%;
  }

  .ssam_dian2 {
    top: 33%;

    left: 0%;
  }

  .ssam_dian3 {
    top: -18%;

    left: 38%;
  }

  .ssam_dian4 {
    top: -8%;

    left: 36.5%;
  }

  .ssam_dian5 {
    top: -18.5%;

    left: 67%;
  }

  .ssam_dian6 {
    top: -9%;

    left: 62%;
  }

  .ssampi_box {
    position: relative;

    padding: 0.2rem 0.3rem;
  }

  .ssampi_box::before {
    right: -0.21rem;
  }
}

@media screen and (max-width: 1366px) {
  .ssam_dian1 {
    top: 20.5%;

    left: 9.5%;
  }

  .ssam_dian2 {
    top: 31%;

    left: -3.5%;
  }

  .ssam_dian3 {
    top: -20%;

    left: 38%;
  }

  .ssam_dian4 {
    top: -10%;

    left: 36%;
  }

  .ssam_dian5 {
    top: -20.5%;

    left: 68%;
  }

  .ssam_dian6 {
    top: -10%;

    left: 63%;
  }
}

@media screen and (max-width: 1200px) {
  .ssam_dian1 {
    top: 20%;

    left: 7.5%;
  }

  .ssam_dian2 {
    top: 31%;

    left: -5.5%;
  }

  .ssam_dian3 {
    top: -20%;

    left: 38%;
  }

  .ssam_dian4 {
    top: -10%;

    left: 36%;
  }

  .ssam_dian5 {
    top: -20.5%;

    left: 70%;
  }

  .ssam_dian6 {
    top: -10%;

    left: 65%;
  }
}

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

    flex-direction: column-reverse;
  }

  .ssam_tab {
    width: 100%;

    background: none;

    margin-bottom: 0.3rem;
  }

  .ssam_tab .public_top .public_right {
    align-items: center;
  }

  .ssam_dian {
    position: relative;

    top: initial;

    left: initial;
  }

  .ssam_tab ul li i {
    display: none;
  }

  .ssam_tab ul {
    gap: 0.25rem;

    display: flex;

    flex-wrap: wrap;
  }

  .ssam_tab ul li {
    width: calc((100% - 2 * 0.25rem) / 3);
  }

  .ssam_tab ul li h3 {
    width: fit-content;

    position: relative;
  }

  .ssam_tab ul li h3::before {
    content: "";

    display: block;

    width: 0;

    left: 50%;

    transform: translate(-50%);

    bottom: 0;

    background: var(--i_color);

    height: 0.02rem;

    position: absolute;

    transition: all 0.35s ease;
  }

  .ssam_tab ul li.active h3::before {
    width: 100%;
  }

  .ssam_pic {
    width: 100%;
  }
}

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

  .ssampi_box {
    padding: 0.1rem 0.15rem;
  }

  .ssamp_info {
    left: 0;

    top: 0;

    width: 100%;

    position: relative;
  }

  .ssampi_box::before {
    display: none;
  }

  .ssam_pic ul li span {
    width: 100%;

    border-radius: 0;
  }

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

  .ssam_tab ul {
    gap: 0.1rem;
  }

  .ssam_tab ul li h3 {
    text-align: left;

    width: 100%;

    padding: 0.05rem 0.1rem;

    box-sizing: border-box;

    border-bottom: 1px solid #666;
  }

  .ssam_tab ul li h3::before {
    height: 0.01rem;
  }

  .ssam_tab {
    margin-bottom: 0.2rem;
  }

  .ssam_tab .public_top .public_title h4 {
    text-align: center;
  }
}

/* ------------------服务目标--------------- */

.service_service_targets {
}

.sst_maxbox {
}

.sst_contain {
}

.adv_service_ul {
  display: flex;

  gap: 0.12rem;

  margin-top: 0.6rem;

  overflow: hidden;
}

.adv_service_ul li {
  flex-grow: 1;

  width: 13.53%;

  height: 4.96rem;

  position: relative;

  transition: all 0.7s ease;

  z-index: 2;

  border-radius: 0.1rem;
}

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

  display: block;

  width: 100%;

  height: 100%;

  position: absolute;

  left: 0;

  bottom: 0;

  transition: all 0.8s ease;

  background: rgba(0, 0, 0, 0.5);
}

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

  display: block;

  width: 100%;

  height: 100%;

  position: absolute;

  left: 0;

  bottom: 0;

  background: linear-gradient(180deg, transparent 80%, #000406 100%);
}

.adv_service_ul li.adv_service_active {
  flex-grow: 1000 !important;
}

.adv_service_ul li.adv_service_active::before {
  bottom: 0;
}

.adv_service_ul li .asa_img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.adv_service_text {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  box-sizing: border-box;

  padding: 0.3rem 0.22rem;

  z-index: 3;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.adv_service_text h6 {
  width: 0.4rem;

  height: 0.4rem;
}

.adv_service_text h6 img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.adv_service_text h3 {
  color: #fff;

  text-align: center;
}

.adv_service_ul li.adv_service_active .adv_service_text {
  align-items: flex-start;
}

.adv_service_ul li.adv_service_active .adv_service_text h6 {
  text-align: left;
}

.adv_service_ul li.adv_service_active .adv_service_text h3 {
  min-height: unset;

  text-align: left;

  font-weight: bold;
}

.adv_service_ul li.adv_service_active::before {
  top: 0;

  height: 0%;
}

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

@media screen and (max-width: 1024px) {
  .adv_service_text h6 {
    width: 0.3rem;

    height: 0.3rem;
  }

  .adv_service_ul {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .adv_service_ul {
    flex-wrap: wrap;
  }

  .adv_service_ul li {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .adv_service_ul li {
    height: 3rem;
  }

  .adv_service_ul li::after {
    background: linear-gradient(180deg, transparent 60%, #000406 100%);
  }

  .adv_service_ul {
    margin-top: 0.2rem;
  }

  .adv_service_text {
    padding: 0.2rem;
  }
}

@media screen and (max-width: 320px) {
  .adv_service_ul li {
    height: 2rem;
  }
}

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

.news_maxbox {
}

.nm_box {
}

.nmb_tab {
  padding-bottom: 0.15rem;

  border-bottom: #bcccdc 1px solid;
}

.nmb_tab ul {
  display: flex;

  gap: 0.3rem;
}

.nmb_tab ul li {
  position: relative;
}

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

  display: block;

  width: 0;

  height: 0.01rem;

  background: var(--i_color);

  position: absolute;

  bottom: -0.15rem;

  left: 50%;

  transition: all 0.35s ease;

  transform: translateX(-50%);
}

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

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

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

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

.nmb_contain {
}

.nmb_list {
  list-style: none;

  margin: 0;

  padding: 0;
}

.nmb_item {
  border-bottom: 1px solid #eeeeee;
}

.nmb_item:last-child {
  border-bottom: none;
}

.nmb_link {
  display: flex;

  align-items: center;

  gap: 2.31%;

  padding: 0.36rem 0;

  box-sizing: border-box;

  text-decoration: none;

  color: inherit;

  transition: background 0.35s ease;
}

.nmb_pic {
  flex: 0 0 23.61%;

  width: 23.61%;

  max-width: 23.61%;

  overflow: hidden;

  flex-shrink: 0;
}

.nmb_pic span {
  display: block;

  position: relative;

  width: 100%;
}

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

  display: block;

  padding-bottom: 74.919%;
}

.nmb_pic img {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.45s ease;
}

.nmb_link:hover .nmb_pic img {
  transform: scale(1.04);
}

.nmb_body {
  flex: 1;

  min-width: 0;

  padding: 0 0.08rem;

  box-sizing: border-box;
}

.nmb_body h3 {
  color: #222222;

  font-weight: bold;

  margin-bottom: 0.1rem;

  transition: color 0.35s ease;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

.nmb_body p {
  color: #666;

  margin: 0 0 0.16rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 3;

  overflow: hidden;
}

.nmb_btn {
  display: inline-block;

  min-width: 1.1rem;

  padding: 0.08rem 0.22rem;

  text-align: center;

  color: #666;

  background: #ffffff;

  border: 1px solid #aaa;

  box-sizing: border-box;

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

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

.nmb_link:hover .nmb_btn {
  color: #ffffff;

  background: var(--i_color);

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

.nmb_date {
  flex-shrink: 0;

  align-self: center;

  text-align: right;

  padding-left: 0.12rem;

  box-sizing: border-box;
}

.nmb_date strong {
  display: block;

  color: #333333;

  font-weight: bold;
}

.nmb_date span {
  display: block;

  color: #cccccc;

  margin-top: 0.04rem;
}

@media screen and (max-width: 1024px) {
  .nmb_link {
    gap: 2.5%;

    padding: 0.3rem 0;
  }
}

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

    align-items: flex-start;

    gap: 0.2rem;

    padding: 0.28rem 0;
  }

  .nmb_pic {
    flex: 0 0 100%;

    width: 100%;

    max-width: 100%;
  }

  .nmb_body {
    flex: 1 1 calc(100% - 1rem);

    padding: 0;
  }

  .nmb_date {
    flex: 0 0 auto;

    padding-left: 0;
  }
}

@media screen and (max-width: 560px) {
  .nmb_tab ul {
    gap: 0.2rem;
  }

  .nmb_body h3 {
    -webkit-line-clamp: 3;
  }

  .nmb_body p {
    -webkit-line-clamp: 4;
  }
}

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

.contact_our_team {
  overflow: hidden;
}

.cot_maxbox {
  width: 100%;
}

.cot_maxbox .public_top {
  margin-bottom: 0.1rem;
}

.cot_contain {
  display: flex;

  align-items: stretch;

  gap: 4.71%;
}

.cot_left {
  flex: 0 0 40.53%;

  width: 40.53%;

  display: flex;

  flex-direction: column;

  box-sizing: border-box;

  padding: 0.1rem 0 0.2rem;
}

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

  font-weight: bold;

  line-height: 1.25;

  margin-bottom: 0.12rem;
}

.cot_left_hd h4 {
  color: var(--i_color);

  font-weight: normal;

  opacity: 0.85;

  line-height: 1.4;
}

.cot_left_mid {
  color: #666666;

  margin: 0.36rem 0 0;
}

.cot_left_ft {
  color: #999999;

  margin: auto 0 0;

  padding-top: 0.4rem;
}

.cot_right {
  position: relative;

  flex: 0 0 54.76%;

  width: 54.76%;

  min-width: 0;

  z-index: 0;
}

.cot_right::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 200%;

  height: 100%;

  background: #f7f7f7;

  z-index: 0;
}

.cot_card {
  position: relative;

  z-index: 1;

  padding: 0.42rem 0.5rem 0.42rem 0.38rem;

  box-sizing: border-box;
}

.cot_card_name {
  color: #222222;

  font-weight: bold;

  padding-bottom: 0.22rem;

  margin-bottom: 0.08rem;

  border-bottom: 1px solid #333333;
}

.cot_info_list {
  list-style: none;

  margin: 0;

  padding: 0;
}

.cot_info_item {
  display: flex;

  align-items: flex-start;

  gap: 0.18rem;

  padding: 0.22rem 0;

  border-bottom: 1px solid #e5e5e5;
}

.cot_info_item:last-child {
  border-bottom: none;

  padding-bottom: 0;
}

.cot_info_item:first-of-type {
  padding-top: 0.18rem;
}

.cot_icon {
  flex-shrink: 0;

  width: 0.56rem;

  height: 0.56rem;

  border-radius: 50%;

  border: 1px solid #dddddd;

  display: flex;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;

  background: #ffffff;
}

.cot_icon img {
  width: 52%;

  height: 52%;

  object-fit: contain;

  display: block;

  display: block;

  transition: all 0.6s ease;

  transform-style: preserve-3d;
}

.cot_info_item:hover span img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(60%) saturate(500%)
    hue-rotate(200deg) brightness(90%);

  transform: rotateY(180deg);
}

.cot_info_body {
  flex: 1;

  min-width: 0;

  padding-top: 0.02rem;
}

.cot_info_body em {
  display: block;

  color: #999999;

  font-style: normal;

  margin-bottom: 0.06rem;
}

.cot_info_body p {
  color: #222222;

  margin: 0;
}

.cot_info_body a {
  color: #222222;

  transition: color 0.35s ease;
}

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

.cot_info_body p a + a {
  margin-left: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .cot_contain {
    gap: 3.5%;
  }

  .cot_card {
    padding: 0.36rem 0.4rem 0.36rem 0.3rem;
  }
}

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

    gap: 0.32rem;
  }

  .cot_left,
  .cot_right {
    flex: none;

    width: 100%;
  }

  .cot_right::before {
    width: 100%;

    left: 50%;

    transform: translateX(-50%);
  }

  .cot_left_ft {
    margin-top: 0.28rem;

    padding-top: 0;
  }

  .cot_card {
    padding: 0.36rem 0.3rem;
  }
}

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

  .cot_left_ft {
    margin-top: 0.2rem;
  }

  .cot_contain {
    gap: 0.2rem;
  }

  .cot_icon {
    width: 0.35rem;

    height: 0.35rem;
  }

  .cot_card {
    padding: 0.3rem 0.2rem;
  }
}

/* -----------------contactus表单--------------------- */

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

.csum_maxbox {
}

.csum_contain {
}

.hide {
  display: none;
}

#wpforms-81 {
  --wpforms_input_height: 52px;

  --wpforms_textarea_height: 155px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  width: 100%;
}

#wpforms-81 {
  margin: 0;

  padding: 0;
}

#wpforms-form-196 {
  width: 100%;

  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0px 0;

  clear: both;
}

/* 字段样式 */

#wpforms-81 .wpforms-field-container > .wpforms-field {
  width: 100%;

  /* padding: 0 1px 20px; */

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: #fff;
}

#wpforms-81 .wpforms-field-container .wpforms-required-label {
  color: #d63637;
}

#wpforms-81 .wpforms-field-container .wpforms-field > input,
#wpforms-81 .wpforms-field-container textarea,
#wpforms-81 .wpforms-field-container select {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

  border: 1px solid transparent;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #222;

  font-family: Arial;
}

#wpforms-81 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: #d6d6d6 1px solid;
}

#wpforms-81 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);

  border: #d6d6d6 1px solid;

  background: #fff;
}

#wpforms-81 .wpforms-field-container select {
  border: #d6d6d6 1px solid;

  height: var(--wpforms_select_height);

  background: #ffff
    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-81-field_1::placeholder,
#wpforms-81-field_2::placeholder,
#wpforms-81-field_3::placeholder,
#wpforms-81-field_4::placeholder,
#wpforms-81-field_5::placeholder {
  color: #999;

  opacity: 1;
}

#wpforms-81 input::placeholder,
#wpforms-81 textarea::placeholder,
#wpforms-81 select::placeholder {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

#wpforms-81 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  height: var(--wpforms_select_height);
}

#wpforms-81 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-81 .wpforms-field-container textarea:hover,
#wpforms-81 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-81 .wpforms-field-container textarea:focus {
  border: var(--i_color) 1px solid;

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

#wpforms-81 label.wpforms-error,
#wpforms-81 em.wpforms-error {
  position: absolute;

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

#wpforms-81 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0 0;
}

#wpforms-81 .wpforms-field-container .wpforms-required-label {
  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

/* 输入框水平排列，一行两个 */

#wpforms-81 .wpforms-field-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

#wpforms-81-field_1-container,
#wpforms-81-field_2-container,
#wpforms-81-field_3-container,
#wpforms-81-field_4-container {
  width: 49% !important;
}

#wpforms-81-field_5-container {
  width: 100% !important;
}

/* 提交按钮样式 */

#wpforms-81 .wpforms-submit-container {
  width: 30%;

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;
}

#wpforms-81 .wpforms-submit-container button {
  width: 100%;

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color);

  border: none;

  font-family: Arial;

  border-radius: 0;
}

#wpforms-81 .wpforms-submit-container img {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-81 .wpforms-submit-container button:hover {
  background: transparent;

  color: var(--i_color);

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

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

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

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

@media screen and (max-width: 1024px) {
  #wpforms-81 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

  #wpforms-81 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }

  #wpforms-81-field_1-container,
  #wpforms-81-field_2-container,
  #wpforms-81-field_3-container,
  #wpforms-81-field_4-container {
    width: 100% !important;
  }

  #wpforms-81 .wpforms-submit-container button {
    width: 100%;
  }
}

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

@media screen and (max-width: 768px) {
  #wpforms-81 {
    --input_height: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  #wpforms-81-field_1-container,
  #wpforms-81-field_2-container,
  #wpforms-81-field_3-container,
  #wpforms-81-field_4-container {
    width: 100% !important;
  }

  #wpforms-81 .wpforms-submit-container button {
    width: 100%;
  }

  #wpforms-81 {
    /* --wpforms_input_height: 48px;



    --wpforms_textarea_height: 120px;



    --wpforms_input_font_size: 14px; */

    --wpforms_textarea_height: 120px;

    width: 100%;
  }

  #wpforms-81 .wpforms-submit-container button {
    height: 0.4rem;

    font-size: 0.16rem;
  }

  #wpforms-81 .wpforms-submit-container {
    width: 100%;
  }

  #wpforms-81 .wpforms-submit-container {
    margin: 0 auto 0;
  }

  .contact_form {
    padding: 0.3rem 0;
  }
}

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

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