@charset "utf-8";

:root {
  --i_color: #083189;

  /* 全局颜色 */

  --i_color2: #e71511;

  /* 副颜色 */

  --top2_height: 0.8rem;

  /* 顶部高度 */

  --top_height: 0.3rem;

  /* 导航总高度 */

  --all_height: calc(var(--top_height) + var(--top2_height));
}

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

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

    --top_height: 0.2rem;
  }
}

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

@media screen and (max-width: 425px) {
}
#customization_process {
  scroll-margin-top: var(--all_height);
}
.pr {
  position: relative;
}

.clear {
  clear: both;
}

.wrap {
  width: 94vw;

  max-width: 1500px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 11.19%;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

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

    max-width: none;
  }
}

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

@media screen and (max-width: 1024px) {
  .wrap_l {
    width: 94vw;

    margin-left: auto;

    margin-right: auto;

    padding-left: 0;
  }
}

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

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

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

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

.public_title {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.public_title h3 {
  font-family: Arial;

  font-size: 0.42rem;

  font-weight: bold;

  line-height: 1.5;

  color: #333333;

  text-align: center;

  margin-bottom: 0.1rem;
}

.public_title h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 1.5;

  text-align: center;

  color: #666666;
}

@media screen and (max-width: 1200px) {
  .public_title h3 {
    font-size: 0.35rem;
  }

  .public_title h4 {
    font-size: 0.16rem;
  }
}

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

  .public_title h4 {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .public_title h3 {
    font-size: 0.24rem;

    margin-bottom: 0.05rem;
  }

  .public_title h4 {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 375px) {
  .public_title h3 {
    font-size: 0.2rem;
  }
}

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

.public_btn {
}

.public_btn a {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 0.24rem;

  font-weight: normal;

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

  box-sizing: border-box;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  transition: color 0.5s;

  z-index: 1;

  cursor: pointer;

  color: var(--i_color);

  background: transparent;

  padding: 0.08rem 0.26rem;
}

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

  position: absolute;

  z-index: -1;

  background: var(--i_color);

  width: 0%;

  height: 100%;

  top: 0%;

  left: 0%;

  transition: all 0.7s ease;
}

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

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

  left: 0;
}

@media screen and (max-width: 1024px) {
  .public_btn a {
    font-size: 0.16rem;

    padding: 0.1rem 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .public_btn a {
    font-size: 0.14rem;

    padding: 0.06rem 0.12rem;
  }
}

@media screen and (max-width: 375px) {
  .public_btn a {
    font-size: 0.13rem;
  }
}

/* -----------------------------------pd_radius----------------------------- */

.pd_radius a {
  border-radius: 0.5rem;
}

/* -----------------------------pb_whitebg_btn------------------------- */

.pb_whitebg_btn a {
  background: #fff;

  border: 1px solid transparent;
}

/* -----------------------------------public_color_btn---------------------------------------- */

.public_color_btn {
}

.public_color_btn a {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 0.24rem;

  font-weight: normal;

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

  box-sizing: border-box;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  transition: color 0.5s;

  z-index: 1;

  cursor: pointer;

  color: #fff;

  background: transparent;

  padding: 0.08rem 0.26rem;
}

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

  position: absolute;

  z-index: -1;

  background: var(--i_color);

  width: 100%;

  height: 100%;

  top: 0%;

  right: 0%;

  transition: all 0.7s ease;
}

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

.public_color_btn a:hover::before {
  width: 0%;

  right: 0;
}

@media screen and (max-width: 1024px) {
  .public_color_btn a {
    font-size: 0.16rem;

    padding: 0.1rem 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  .public_color_btn a {
    font-size: 0.14rem;

    padding: 0.05rem 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .public_color_btn a {
    font-size: 0.14rem;

    padding: 0.06rem 0.12rem;
  }
}

@media screen and (max-width: 375px) {
  .public_color_btn a {
    font-size: 0.13rem;
  }
}

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

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

/* header */

.top {
  background: #1a1a1a;

  position: relative;
}

.top_cont {
  height: var(--top_height);
}

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

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.top .toptxt li {
  line-height: var(--top_height);

  display: flex;

  align-items: center;

  color: #fff;
}

.top .toptxt > li img {
  margin-right: 0.1rem;
}

.top .toptxt li a {
  margin-right: 0.35rem;
}

.top .toptxt li iconify-icon {
  font-size: 0.22rem;

  color: #fff;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.top .toptxt li iconify-icon:hover {
  color: var(--i_color);
}

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

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

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

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

header {
}

.top2 {
  width: 100%;

  background: #fff;

  position: fixed;

  left: 0;

  top: 0;

  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.top2.TopHeader {
  position: fixed;

  left: 0;

  top: 0;

  z-index: 9999;

  background: #fff;

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

.top2_cont {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: var(--all_height);

  box-sizing: border-box;

  box-sizing: border-box;
}

.full_header {
  height: var(--top2_height);

  display: none !important;
}

@media screen and (max-width: 1200px) {
  .language .p1 {
    width: 0.1rem !important;

    background: #fff !important;
  }

  .language p::after {
    content: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .top2 {
    position: fixed;

    left: 0;

    top: 0;

    z-index: 9999;

    background: #fff;
  }

  .full_header {
    display: block !important;
  }
}

.logo {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: 100%;

  box-sizing: border-box;

  border-right: 1px solid #dedede;

  padding: 0 0.6rem;
}

.logo img {
  max-height: 80%;

  object-fit: contain;
}

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

  .logo {
    margin: 0 0.1rem;

    border: none;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-height: 70%;
  }
}

@media screen and (max-width: 425px) {
  .logo img {
    max-height: 65%;
  }
}

@media screen and (min-width: 1024px) {
  .dbox {
    height: var(--all_height);

    flex: 1;
  }

  .outs {
    flex: 1;

    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    height: var(--top_height);

    box-sizing: border-box;

    align-items: center;

    justify-content: end;

    gap: 0;

    border-bottom: 1px solid #dedede;
  }

  .outs ul {
    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;
  }

  .outs > ul a {
    font-size: 0.12rem;

    color: #999;

    margin: 0 0.8rem;
    transition: all 0.35s ease;
  }
  .outs > ul a:hover {
    text-decoration: underline;
    color: var(--i_color);
  }
  .flex {
    height: var(--top2_height);

    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    box-sizing: border-box;
  }

  .flex .topbox a {
    height: var(--top2_height);

    width: 1.6rem;

    box-sizing: border-box;

    color: #fff;

    background: var(--i_color);

    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    align-items: center;

    margin-left: auto;
  }
}

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

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

  .language {
    width: 1rem;
  }

  .outs > ul a {
    padding: 0 0.1rem;
  }
}

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

  .logo {
    padding: 0;
  }

  .dbox {
    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;
  }

  .dbox .outs > ul {
    display: none;
  }

  .topbox {
    display: none;
  }
}

/* 导航 */

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

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.68rem;

    z-index: 2014;

    height: 100%;
  }

  .i_nav > li {
    position: relative;

    display: flex;

    align-items: center;
  }

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

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    /* display: none; */
  }

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

  .i_nav > li > a {
    display: block;

    font-size: 0.22rem;

    color: #222;

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

    line-height: 0.32rem;

    white-space: nowrap;

    box-sizing: border-box;

    font-weight: 500;

    font-family: Arial;
  }

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

    color: var(--i_color);
  }

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

    position: absolute;

    left: 0;

    min-width: 1.6rem;

    background: #fff;

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

    font-size: 0;

    top: 100%;
  }

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

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

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

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

    padding: 0 0.16rem;

    font-size: 0.15rem;

    color: #333;

    line-height: 0.36rem;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    position: relative;
  }

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

    color: #fff;
  }

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

    top: 0;

    left: 100%;

    background: #fff;

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

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

  .i_nav .sub-menu .sub-menu li:hover a {
    color: #fff;
  }
}

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

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

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

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

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

    position: fixed;

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

    left: 101%;

    width: 100%;

    width: 100vw;

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

    background: #fff;

    overflow-y: auto;

    z-index: 2;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

  .i_nav.active {
    opacity: 1;

    left: 0;
  }

  /*滚动条*/

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

    height: 8px;
  }

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

    background: #555;
  }

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

    border-radius: 0;

    background: #f1f1f1;
  }

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

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

    position: relative;
  }

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

    position: absolute;

    top: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

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

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

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

    background-size: 0.24rem;
  }

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

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

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

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

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

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

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

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

	} */

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

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

    background-size: 0.16rem;
  }

  .i_nav > li > .sub-menu b.on {
    background-size: 0.16rem;
  }

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

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

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

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

/* 移动端导航按钮 */

.nav_menu {
  position: relative;

  width: 22px;

  height: 16px;

  display: none;

  cursor: pointer;
}

.nav_menu i {
  display: block;

  width: 100%;

  height: 3px;

  position: absolute;

  top: 50%;

  margin-top: -2px;

  background: var(--i_color);

  border-radius: 0.1rem;

  transition: 0.5s;
}

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

  width: 100%;

  height: 3px;

  background: var(--i_color);

  position: absolute;

  left: 0;

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

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

  top: 50%;

  margin-top: -2px;
}

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

  top: 50%;

  margin-top: -2px;
}

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

    /* margin-left: 0rem; */

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);
  }
}

#menu-item-48 {
  display: none;
}

@media screen and (max-width: 1024px) {
  #menu-item-48 {
    display: block;
  }
}

.topbox {
  margin-left: auto;
}

.top_search {
  --search_height: 0.3rem;

  /* background: #f3f3f3; */
}

.top_search {
  /* margin: 0 .1rem 0 0; */
}

.top_search form {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  box-sizing: border-box;

  overflow: hidden;

  /* border-radius: 0.05rem; */
}

.top_search_ipt {
  width: 1.3rem;

  height: var(--search_height);

  box-sizing: border-box;

  /* padding: 0 0 0 .12rem; */

  background: #f3f3f3;

  padding-left: 0.1rem;
}

.top_search_btn {
  font-size: 0;

  width: var(--search_height);

  height: var(--search_height);

  background: var(--i_color2)
    url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/search.png)
    no-repeat center;

  background-size: 0.14rem;

  cursor: pointer;

  position: relative;

  border-radius: none;

  box-sizing: border-box;
}

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

  .top_search {
    margin-left: auto;
  }
}

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

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

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

.language {
  position: relative;

  display: none;

  height: var(--top_height);

  align-items: center;

  display: flex;

  align-items: center;

  /* margin-right: 0.1rem; */
}

.language .colorbox {
  width: 100%;

  height: 100%;
}

.language .p1 {
  display: block;

  width: 1rem;

  height: var(--top1_height);

  display: flex;

  align-items: center;

  justify-content: left;

  color: #999;

  /* background: #f3f3f3; */

  /* padding: 0.1rem; */

  box-sizing: border-box;

  gap: 0.1rem;
}

.language .p2 {
  display: none;

  padding-left: 0.3rem;

  padding-right: 0.2rem;

  background: red;

  position: relative;
}

.language p {
  font-size: 0.16rem;

  color: var(--i_color);

  position: relative;

  /* padding-left: .3rem;

	padding-right: 0.2rem; */

  line-height: var(--top_height);

  cursor: pointer;
}

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

.language p::after {
  /* content: ''; */

  position: absolute;

  top: 50%;

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

  left: 85%;

  width: 0.2rem;

  height: 0.2rem;

  /* background: url("static/images/global.png") no-repeat center; */

  background-size: cover;

  z-index: 99999;
}

.language .p2::after {
  content: "";

  position: absolute;

  top: 50%;

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

  left: 50%;

  width: 0.2rem;

  height: 0.2rem;

  /* background: url("static/images/ic@1x.png") no-repeat center; */

  background-size: cover;

  z-index: 99999;
}

.language_list {
  opacity: 0;

  visibility: hidden;

  position: absolute;

  top: var(--top_height);

  right: 0;

  background: #fff;

  min-width: 1.2rem;

  z-index: 2016;

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

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  padding: 0.16rem 0.2rem;
}

.language_list.on {
  opacity: 1;

  visibility: visible;

  /* top: var(--top_height2); */

  top: calc(var(--top_height));
}

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

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

  transition: all 0.5s ease;
}

.lau_img.on {
  transform: rotate(180deg);
}

.reversed {
  -webkit-transform: rotateY(180deg);

  transform: rotateY(180deg);
}

@media screen and (max-width: 1024px) {
  .language {
    height: var(--all_height);
  }

  .language .colorbox {
    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    align-items: center;
  }

  .language_list.on {
    top: var(--all_height);
  }

  .dbox {
    flex: 1;

    margin-right: 0.3rem;
  }

  .outs {
    display: -webkit-flex;

    display: flex;

    flex-wrap: wrap;

    width: 100%;

    align-items: center;

    height: var(--all_height);
  }

  .language .p1 {
    /* display: none; */
  }

  .language .p2 {
    display: block;
  }

  .language {
    /* margin-right: 0.2rem; */
  }
}

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

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

footer {
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/footer_bg.webp)
    no-repeat center/cover;
}

.footer_maxBox {
}

.footer_topMaxBox {
  color: #fff;

  padding: 0.4rem 0;

  box-sizing: border-box;
}

.footer_topMaxBox .ft_ul {
  display: flex;

  gap: 1rem;
}

.ft_ul > li:first-child .ft_logo {
  width: 2.42rem;

  display: block;

  margin-bottom: 0.3rem;
}

.ft_ul > li:first-child .ft_logo img {
  width: 100%;

  height: auto;

  object-fit: contain;
}

.ft_ul > li:first-child,
.ft_ul > li:last-child {
  flex: 1.5;
}

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

.ft_infoul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.ft_infoul li {
}

.ft_infoul li a {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  transition: all 0.35s ease;
}

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

  color: var(--i_color);
}

.ft_ul li h3 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.4rem;

  margin-top: 0.3rem;
}

.ft_menuul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.ft_menuul li {
}

.ft_menuul li a {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  transition: all 0.35s ease;
}

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

  text-decoration: underline;
}

.ft_jumpul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;

  margin-top: 0.4rem;

  margin-bottom: 0.4rem;
}

.ft_jumpul li {
}

.ft_jumpul li a {
  display: flex;

  align-items: center;

  font-family: Arial;

  font-weight: normal;

  color: #333333;

  transition: all 0.35s ease;
}

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

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

.ft_jumpul li a:hover span img {
  filter: brightness(0) invert(1);

  transform: rotateY(180deg);
}

.ft_jumpul li a span {
  width: 0.58rem;

  height: 0.58rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

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

  margin-right: 0.1rem;

  transition: all 0.35s ease;
}

.ft_jumpul li a span img {
  width: 79.31%;

  height: 79.31%;

  object-fit: contain;

  transition: all 0.6s ease;

  display: inline-block;

  transform-style: preserve-3d;
}

.ft_mmedia_dl {
  display: flex;

  gap: 0.2rem;
}

.ft_mmedia_dl dt {
}

.ft_mmedia_dl dt a {
  width: 0.44rem;

  height: 0.44rem;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(8, 49, 137, 0.1);

  border-radius: 50%;

  transition: all 0.55s ease;
}

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

.ft_mmedia_dl dt a iconify-icon {
  display: inline-block;

  transition: transform 0.6s ease;

  transform-style: preserve-3d;
}

.ft_mmedia_dl dt a:hover iconify-icon {
  color: #fff !important;

  transform: rotateY(180deg);
}

.footer_bottomMaxBox {
  padding: 0.32rem 0;

  background: transparent;

  color: #333;

  display: flex;

  align-items: center;

  font-size: 0.16rem;

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

.footer_bottomMaxBox .wrap a {
  color: #333;

  cursor: pointer;
}

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

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

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

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

  .ft_ul li:first-child .ft_logo {
    width: 2rem;

    margin-bottom: 0.2rem;
  }

  .ft_ul li h3 {
    margin-bottom: 0.2rem;

    margin-top: 0.2rem;
  }

  .ft_jumpul li a span {
    width: 0.45rem;

    height: 0.45rem;
  }
}

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

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

    padding: 0.1rem 0;
  }

  .ft_ul {
    display: flex;

    flex-direction: column;
  }

  .footer_topMaxBox .ft_ul {
    gap: 0.2rem;
  }

  .ft_jumpul {
    gap: 0.2rem;

    margin-top: 0;

    margin-bottom: 0.1rem;

    flex-direction: row;

    flex-wrap: wrap;
  }

  .ft_ul li:first-child .ft_logo {
    width: 1.5rem;

    margin-bottom: 0.1rem;
  }

  .footer_topMaxBox {
    color: #fff;

    padding: 0.2rem 0;

    box-sizing: border-box;
  }

  .ft_infoul {
    gap: 0.1rem;
  }

  .ft_jumpul li a span {
    width: 0.3rem;

    height: 0.3rem;

    flex-shrink: 0;
  }

  .ft_mmedia_dl dt a {
    width: 0.35rem;

    height: 0.35rem;
  }
}

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

  /* 设置比例 */

  position: relative;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.banner-pagination {
  display: block;

  text-align: center;

  bottom: 0.3rem !important;

  position: absolute;

  left: 50% !important;

  transform: translate(-50%, 0);

  z-index: 3;
}

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

  height: 0.14rem;

  display: inline-block;

  margin: 0 0.06rem;

  background: #ccc;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  outline: none;

  cursor: pointer;
}

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

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

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.6rem;

  height: 0.6rem;

  cursor: pointer;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  z-index: 3;
}

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

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

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

  top: 50%;

  left: 50%;

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

  font-size: 0.4rem;

  color: #666;
}

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

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

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

.b_text1 {
  position: absolute;

  top: 17.22%;

  left: 11%;

  z-index: 3;

  width: 41.66%;
}

.b_text1 h3 {
  font-family: Arial;

  font-weight: bold;

  color: #ffffff;

  border-bottom: 0.05rem solid #fff;

  margin-bottom: 0.2rem;
}

.b_text1 h4 {
  font-family: Arial;

  font-weight: normal;

  color: #ffffff;

  margin-bottom: 0.38rem;
}

.b_text1 ul {
  display: flex;

  gap: 0.3rem;
}

.b_text1 ul li {
  font-family: Arial;

  font-weight: normal;

  color: #ffffff;

  background: var(--i_color);

  padding: 0.08rem 0.28rem;
}

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

    left: 6%;

    width: 49%;
  }

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

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

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

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

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

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

  .b_text1 ul li {
    padding: 0.08rem 0.1rem;
  }
}

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

    height: 0.1rem;

    display: inline-block;

    margin: 0 0.06rem;

    background: #ccc;

    -webkit-border-radius: 50%;

    border-radius: 50%;

    outline: none;

    cursor: pointer;
  }

  .b_text1 h4 {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

  .b_text1 ul li {
    font-size: 0.14rem;
  }
}

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

  .b_text1 {
    top: 10%;

    left: 50%;

    width: 90%;

    transform: translateX(-50%);

    text-align: center;
  }

  .b_text1 h4 {
    display: none;
  }

  .b_text1 h3 {
    font-size: 18px;

    border-bottom: 0.03rem solid #fff;
  }

  .b_text1 ul li {
    font-size: 0.12rem;
  }

  .b_text1 ul {
    gap: 0.2rem;

    justify-content: center;
  }
}

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

    height: 0.08rem;

    display: inline-block;

    margin: 0 0.03rem;

    background: #ccc;

    -webkit-border-radius: 50%;

    border-radius: 50%;

    outline: none;

    cursor: pointer;
  }

  .b_text1 ul {
    display: none;
  }
}

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

.home_product_center {
  padding: 0.6rem 0;
}

.hpc_maxbox {
}

.hpcm_top {
  margin-bottom: 0.3rem;
}

.hpcm_title h4 {
  width: 40%;
}

.hpcm_contain {
}

.hpcm_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem;
}

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

.hpcm_contain ul li a {
  display: flex;

  justify-content: space-between;

  background: linear-gradient(
    113deg,
    #eeeeee 0%,

    rgba(238, 238, 238, 0) 49%,

    #eeeeee 100%
  );

  height: 100%;
}

.hpcmc_left {
  width: 39.45%;

  padding: 0.4rem 0 0.1rem 0.35rem;
}

.hpcmc_left h3 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;

  transition: all 0.35s ease;
}

.hpcmc_left span {
  width: 100%;

  display: block;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 73%;
}

.hpcmc_left span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.hpcmc_right {
  width: 40.81%;

  display: flex;

  align-items: center;
}

.hpcmc_right span {
  position: relative;

  display: block;

  width: 100%;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 100%;
}

.hpcmc_right span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.hpcm_contain ul li a:hover .hpcmc_left h3 {
  color: var(--i_color);
}

.hpcm_contain ul li a:hover .hpcmc_left span img {
  transform: scale(1.1);
}

.hpcm_contain ul li a:hover .hpcmc_right span img {
  transform: scale(1.1);
}

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

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

  .hpcm_title h4 {
    width: 80%;
  }
}

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

    padding: 0.2rem 0 0.1rem 0.2rem;
  }

  .hpcmc_left span {
    width: 90%;
  }
}

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

  .home_product_center {
    padding: 0.3rem 0;
  }

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

/* ------------------------------------热门产品------------------------- */

.home_hot_products {
  padding: 0.6rem 0;

  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/home_hot_product_bg.webp)
    no-repeat center/cover;
}

.hhp_maxbox {
}

.hhpm_top {
  margin-bottom: 0.3rem;
}

/*  */

.hot_partner_box {
  margin-top: 0.3rem;
}

.hot_partner {
  position: relative;
}

.hot_partner_list {
  width: 100%;

  padding: 0.1rem !important;

  box-sizing: border-box;

  margin: 0 auto;

  position: relative;

  overflow: hidden;

  z-index: 1;
}

.hot_partner_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  z-index: 1;
}

.hot_partner_list li {
  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;

  flex-direction: column;
}

.hot_a {
  display: block;

  width: 100%;

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

  box-sizing: border-box;

  overflow: hidden;

  background-color: #fff;
}

.hot_img {
  width: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.hot_img {
  content: "";

  display: block;

  padding-bottom: 100%;
}

.hot_img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hot_text {
  box-sizing: border-box;

  padding: 0.1rem 0.2rem 0.2rem 0.2rem;
}

.hot_text h3 {
  font-size: 0.18rem;

  line-height: 0.24rem;

  height: 0.72rem;

  color: #333;

  overflow: hidden;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 3;

  width: 100%;

  text-align: center;

  transition: all 0.3s ease;
}

.hot_i {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  margin-top: 0.1rem;
}

.hot_i i {
  display: flex;

  justify-content: center;

  align-items: center;

  width: 0.4rem;

  height: 0.4rem;

  /* border-radius: 50%; */

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

.hot_i i iconify-icon {
  font-size: 0.2rem;

  color: #fff;
}

.hot_i p {
  position: absolute;

  top: 50%;

  left: 50%;

  font-size: 0.18rem;

  color: #fff;

  text-align: center;
}

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

/* 指示器 */

.hot_partner .pt-pagination {
  display: none;

  text-align: center;

  margin: 0.4rem auto 0;
}

.hot_partner .pt-pagination .swiper-pagination-bullet {
  width: 0.12rem;

  height: 0.12rem;

  box-sizing: border-box;

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

  cursor: pointer;

  display: inline-block;

  margin: 0 0.05rem;

  background: var(--i_color);

  border-radius: 2px;

  opacity: 1;

  outline: none;
}

.hot_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;

  background: transparent;
}

/* 左右箭头 */

.hot_partner .pt-button-prev,
.hot_partner .pt-button-next {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.3rem;

  height: 0.52rem;

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

  box-sizing: border-box;

  z-index: 999;

  cursor: pointer;

  outline: none;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  transition: all 0.3s ease;
}

.hot_partner .pt-button-prev iconify-icon,
.hot_partner .pt-button-next iconify-icon {
  font-size: 0.22rem;

  color: var(--i_color);

  transition: all 0.3s ease;
}

.hot_partner .pt-button-prev {
  left: -3%;
}

.hot_partner .pt-button-next {
  right: -3%;
}

.hot_partner .pt-button-prev:hover,
.hot_partner .pt-button-next:hover {
  background-color: var(--i_color);
}

.hot_partner .pt-button-prev:hover iconify-icon,
.hot_partner .pt-button-next:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .hot_text h3 {
    font-size: 0.16rem;
  }
}

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

  .hot_partner .pt-pagination {
    display: block;
  }

  .hot_products_bac {
    padding: 0.6rem 0;
  }
}

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

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

@media screen and (max-width: 767px) {
  .hot_text h3 {
    font-size: 0.14rem;
  }
}

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

/* ---------------------手风琴------------------- */

.home_accordion {
}

.ha_maxbox {
}

.hoa_contain {
}

.hoa_contain ul {
  display: flex;

  overflow: hidden;
}

.hoa_contain ul li {
  position: relative;

  flex: 1;

  min-width: 0;

  overflow: hidden;

  transition: all 0.5s ease;

  cursor: pointer;
}

.hoa_contain ul li span {
  position: relative;

  display: block;

  width: 100%;

  height: 8.4rem;
}

.hoa_contain ul li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hoa_contain ul li.active {
  flex: 3;
}

.hoa_contain ul li .hoac_info {
  position: absolute;

  bottom: 0;

  left: 0;

  background: linear-gradient(
    180deg,
    rgba(8, 49, 137, 0) 0%,

    rgba(8, 49, 137, 0.8) 82%
  );

  width: 100%;

  padding: 0.3rem 0.2rem;

  box-sizing: border-box;
}

.hoa_contain ul li.active .hoac_info {
  padding: 0.6rem 0.6rem 0.6rem 0.82rem;

  box-sizing: border-box;
}

.hoa_contain ul li.active .hoac_info h3 {
  font-size: 0.3rem;

  text-align: left;
}

.hoa_contain ul li .hoac_info h4 {
  display: none;
}

.hoa_contain ul li.active .hoac_info h4 {
  display: block;
}

.hoac_info h3 {
  font-family: Arial;

  font-weight: bold;

  color: #fff;

  margin-bottom: 0.15rem;

  text-align: center;
}

.hoac_info h4 {
  font-family: Arial;

  font-weight: normal;

  color: #fff;

  width: 39vw;
}

@media screen and (max-width: 1440px) {
  .hoac_info h4 {
    width: 38vw;
  }

  .hoa_contain ul li span {
    height: 6rem;
  }

  .hoa_contain ul li.active .hoac_info {
    padding: 0.3rem 0.3rem 0.3rem 0.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .hoa_contain ul li span {
    height: 5rem;
  }

  .hoa_contain ul li.active .hoac_info h3 {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 768px) {
  .hoa_contain ul li span {
    height: 4.5rem;
  }

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

  .hoa_contain ul li.active .hoac_info {
    padding: 0.2rem;
  }

  .hoac_info h4 {
    width: 46vw;
  }

  .hoa_contain ul li .hoac_info {
    padding: 0 0 0.1rem 0;
  }

  .hoac_info h3 {
    font-size: 0.16rem;

    /* word-break: break-all; */
  }

  .hoa_contain ul li.active .hoac_info h3 {
    font-size: 0.2rem;
  }
}

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

    flex-direction: column;
  }

  .hoa_contain ul li .hoac_info h4 {
    opacity: 1;
  }

  .hoac_info h4 {
    width: 100%;
  }

  .home_our_advantages {
    padding: 0.3rem 0;
  }

  .hoa_contain ul li span {
    height: 2.5rem;
  }

  .hoa_contain ul li.active .hoac_info h3 {
    font-size: 0.18rem;
  }
}

/* -----------------------------解决方案与案例研究-------------------------------- */

.home_solutions_and_case_studies {
  padding: 0.6rem 0;

  background: #f5f5f5;
}

.hss_maxbox {
}

.hssm_top {
  margin-bottom: 0.3rem;
}

.hss_contain {
  position: relative;
}

.hssc_info {
  width: 59.47%;
}

.hssci_ul {
  display: flex;

  flex-wrap: wrap;

  width: 82%;

  gap: 0.2rem 0;

  margin-bottom: 0.3rem;
}

.hssci_ul li {
  width: calc(100% / 3);

  font-family: Arial;

  font-size: 0.16rem;

  line-height: 1.5;

  font-weight: normal;

  text-align: center;

  color: #333333;

  padding: 0.1rem 0.2rem;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  cursor: pointer;

  transition: all 0.35s ease;

  z-index: 1;
}

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

  display: block;

  height: 50%;

  width: 1px;

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

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);
}

.hssci_ul li:nth-child(3)::before,
.hssci_ul li:nth-child(6)::before {
  display: none;
}

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

  display: block;

  height: 100%;

  width: 0;

  background: var(--i_color);

  position: absolute;

  right: 0;

  top: 0;

  transition: all 0.65s ease;

  z-index: -1;
}

.hssci_ul li.active::after {
  width: 100%;

  left: 0;
}

.hssci_ul li.active {
  color: #fff;
}

.hssci_ul li:hover::after {
  width: 100%;

  left: 0;
}

.hssci_ul li:hover {
  color: #fff;
}

.hssci_infoul {
  background: #fff;

  padding: 0.2rem 0.42rem 0.35rem 0.42rem;

  box-sizing: border-box;

  display: grid;
}

.hssci_infoul li {
  width: 73%;

  grid-area: 1 / 1;

  opacity: 0;

  visibility: hidden;

  transform: translateY(30px);

  transition: all 0.55s ease;
}

.hssci_infoul li.active {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hssci_infoul li h3 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;
}

.hssci_infoul li h3 i {
  font-family: Arial;

  font-weight: normal;

  color: var(--i_color);

  margin-right: 0.1rem;
}

.hssci_infoul li h4 {
  font-family: Arial;

  font-weight: normal;

  color: rgba(51, 51, 51, 0.5);

  margin-bottom: 0.4rem;
}

.hssci_infoul li p {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.25rem;
}

.hssci_infoul li dl {
  display: flex;

  gap: 0.18rem;
}

.hssci_infoul li dl dt {
  width: calc((100% - 2 * 0.18rem) / 3);

  position: relative;
}

.hssci_infoul li dl dt::before {
  content: "";

  display: block;

  padding-bottom: 65%;
}

.hssci_infoul li dl dt img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hssc_pic {
  position: absolute;

  right: 0;

  top: 0;

  width: 45.4%;
}

.hssc_pic ul {
  display: flex;

  flex-direction: column;

  display: grid;
}

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

  opacity: 0;

  visibility: hidden;

  transform: translateY(30px);

  transition: all 0.55s ease;
}

.hssc_pic ul li.active {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.hssc_pic ul li span {
  position: relative;

  width: 100%;

  display: block;
}

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

  display: block;

  padding-bottom: 84%;
}

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

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

@media screen and (max-width: 1440px) {
  .hssci_infoul li {
    width: 90%;
  }
}

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

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 100%;
  }

  .hssc_pic ul {
    width: 80%;
  }

  .hss_contain {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .hssc_info {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

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

@media screen and (max-width: 768px) {
  .hssci_ul {
    gap: 0.1rem 0;

    margin-bottom: 0.15rem;
  }

  .hssci_ul li {
    padding: 0rem 0.1rem;
  }

  .hssci_infoul li {
    width: 100%;
  }
}

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

  .hssci_ul li {
    width: 100%;

    padding: 0.1rem 0;

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

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

  .hssci_ul {
    gap: 0;
  }

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

  .hssci_infoul {
    padding: 0.2rem;
  }

  .hssci_infoul li p {
    margin-bottom: 0.15rem;
  }

  .hssc_pic ul {
    width: 100%;
  }

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

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

.home_about_us {
  padding: 0.6rem 0;

  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/home_about_us_bg.webp)
    no-repeat center/cover;
}

.hau_maxbox {
}

.haum_top {
  margin-bottom: 0.5rem;
}

.haum_top .haum_title h3 {
  color: var(--i_color);

  position: relative;

  margin-bottom: 0.3rem;
}

.haum_top .haum_title h3::before {
  content: "";

  display: block;

  height: 0.03rem;

  width: 120%;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);
}

.haum_top .haum_title h4 {
  width: 80%;
}

.haum_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.2rem;

  margin-bottom: 0.8rem;
}

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

  text-align: center;

  border-bottom: #dbdfe9 0.02rem solid;

  padding-bottom: 0.2rem;

  position: relative;

  cursor: pointer;
}

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

  display: block;

  width: 0.02rem;

  height: 80%;

  background: #dbdfe9;

  position: absolute;

  right: -0.1rem;

  top: 50%;

  transform: translateY(-50%);
}

.haum_contain ul li:nth-child(n + 4) {
  border-bottom: none;
}

.haum_contain ul li:nth-child(3)::before,
.haum_contain ul li:nth-child(6)::before {
  display: none;
}

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

.haum_contain ul li h3 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  transition: all 0.35s ease;
}

.haum_contain ul li h4 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;

  display: flex;

  align-items: center;

  justify-content: center;
}

.haum_contain ul li h4 img {
  width: 0.24rem;

  height: 0.24rem;

  margin-right: 0.1rem;
}

.haumc_info {
  display: flex;

  justify-content: space-between;
}

.haumci_info {
  width: 42%;
}

.haumci_info h3 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

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

.haumci_btn {
  display: flex;
}

.haumci_pic {
  width: 51.73%;
}

.haumci_pic span {
  width: 100%;

  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 60%;
}

.haumci_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.haumci_pic i {
  display: block;

  width: 1.04rem;

  height: 1.04rem;

  border-radius: 50%;

  cursor: pointer;

  background: url("https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/video_pic1.webp")
    center no-repeat;

  background-size: contain;

  position: absolute;

  top: 50%;

  left: 50%;

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

.haumci_pic i:hover {
}

.i_v_btn::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

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

  border: 1px solid #fff;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  opacity: 0;

  z-index: 2;

  animation: serv_one_border 2s 0s ease infinite;
}

@keyframes serv_one_border {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;

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

    -ms-transform: translate(-50%, -50%) scale(1.5);

    -o-transform: translate(-50%, -50%) scale(1.5);

    -webkit-transform: translate(-50%, -50%) scale(1.5);

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

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

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

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

  .haumci_info {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .haumci_pic {
    width: 100%;
  }

  .haumci_btn {
    justify-content: flex-end;
  }
}

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

  .haum_contain ul {
    margin-bottom: 0.3rem;
  }

  .haumci_pic i {
    width: 0.8rem;

    height: 0.8rem;
  }
}

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

  .haum_top .haum_title h3 {
    margin-bottom: 0.1rem;
  }

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

  .haum_contain ul li:nth-child(n + 4) {
    border-bottom: #dbdfe9 0.02rem solid;
  }

  .haum_contain ul li:nth-child(3)::before,
  .haum_contain ul li:nth-child(6)::before {
    display: flex;
  }

  .haum_contain ul li:nth-child(2n)::before {
    display: none;
  }

  .haum_top .haum_title h4 {
    width: 100%;
  }

  .haum_contain ul li h4 img {
    width: 0.2rem;

    height: 0.2rem;
  }

  .haum_top {
    margin-bottom: 0.2rem;
  }

  .haumci_pic i {
    width: 0.6rem;

    height: 0.6rem;
  }
}

/* eject videos */

.vd_box {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

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

  z-index: 999999;
}

.vd_box_area {
  position: absolute;

  top: 52%;

  left: 50%;

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

  z-index: 2014;

  width: 60%;

  max-height: 90%;
}

.vd_box_area::before {
  content: "";

  display: block;

  padding-bottom: 56.25%;
}

.close_v {
  position: absolute;

  top: -0.2rem;

  right: -0.2rem;

  width: 0.4rem;

  height: 0.4rem;

  background: var(--i_color);

  z-index: 2;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  cursor: pointer;
}

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

  position: absolute;

  top: 46%;

  left: 53%;

  font-size: 0.44rem;

  color: #fff;

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

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

.vd_box iframe {
  position: absolute;

  top: 0;

  right: 0;

  width: 100%;

  height: 100%;

  background: #000;

  object-fit: contain;
}

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

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

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

  .close_v {
    top: -0.15rem;

    right: -0.15rem;

    width: 0.3rem;

    height: 0.3rem;
  }

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

/* eject videos */

.vd_box {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

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

  z-index: 999999;
}

.vd_box_area {
  position: absolute;

  top: 52%;

  left: 50%;

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

  z-index: 2014;

  width: 60%;

  max-height: 90%;
}

.vd_box_area::before {
  content: "";

  display: block;

  padding-bottom: 56.25%;
}

.close_v {
  position: absolute;

  top: -0.2rem;

  right: -0.2rem;

  width: 0.4rem;

  height: 0.4rem;

  background: var(--i_color);

  z-index: 2;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  cursor: pointer;
}

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

  position: absolute;

  top: 46%;

  left: 53%;

  font-size: 0.44rem;

  color: #fff;

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

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

.vd_box iframe {
  position: absolute;

  top: 0;

  right: 0;

  width: 100%;

  height: 100%;

  background: #000;

  object-fit: contain;
}

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

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

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

  .close_v {
    top: -0.15rem;

    right: -0.15rem;

    width: 0.3rem;

    height: 0.3rem;
  }

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

/* ------------------------------为什么选择我们---------------------- */

.home_why_choose_us {
  padding: 0.6rem 0;

  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/home_why_choose_us_bg.webp)
    no-repeat center/cover;
}

.hwcu_maxbox {
  display: flex;

  justify-content: space-between;
}

.hwcum_info {
  width: 41%;
}

.hwcum_title {
  margin-bottom: 0.3rem;
}

.hwcum_title h3 {
  position: relative;

  text-align: left;

  padding-bottom: 0.1rem;
}

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

  display: block;

  width: 15%;

  height: 0.03rem;

  position: absolute;

  left: 0;

  bottom: 0;

  background: var(--i_color);
}

.hwcum_title h4 {
  text-align: left;
}

.hwcum_info span {
  width: 100%;

  position: relative;

  display: block;
}

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

  display: block;

  padding-bottom: 64%;
}

.hwcum_info span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.hwcum_advantage {
  width: 51.7%;
}

.hwcum_advantage ul {
  display: flex;

  flex-direction: column;

  height: 100%;
}

.hwcum_advantage ul li {
  flex: 1;

  display: flex;

  gap: 0.2rem;

  align-items: center;

  cursor: pointer;

  transition: all 0.35s ease;

  padding: 0.1rem 0.2rem;

  box-sizing: border-box;
}

.hwcum_advantage ul li:hover {
  background: #fff;

  box-shadow: 0px 0px 10px 0px rgba(8, 49, 137, 0.15);
}

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

.hwcum_advantage ul li:hover .hwcuma_icon span {
  background: var(--i_color);
}

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

.hwcuma_icon span {
  width: 0.86rem;

  height: 0.86rem;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #fff;

  border-radius: 50%;

  transition: all 0.35s ease;
}

.hwcuma_icon span img {
  width: 55.8%;

  height: 55.8%;

  object-fit: contain;

  transition: all 0.35s ease;
}

.hwcuma_info h3 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  transition: all 0.35s ease;
}

.hwcuma_info h4 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;
}

@media screen and (max-width: 1024px) {
  .hwcuma_icon span {
    width: 0.6rem;

    height: 0.6rem;
  }
}

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

    flex-direction: column;
  }

  .hwcum_info {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .hwcum_advantage {
    width: 100%;
  }
}

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

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

/* ---------------------------工厂展示------------------------------ */

.home_factory_showcase {
  padding: 0.6rem 0;
}

.hfs_maxbox {
}

.hfsm_top {
  margin-bottom: 0.3rem;
}

.hfsm_contain {
}

.hfsm_contain ul {
  display: grid;

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

  gap: 0.3rem;
}

/* 公共 */

.hfsm_contain ul li {
  position: relative;

  overflow: hidden;
}

.hfsm_contain ul li img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

/* 第一行：2个（4:3） */

.hfsm_contain ul li:nth-child(1) {
  grid-column: span 7;
}

.hfsm_contain ul li:nth-child(2) {
  grid-column: span 5;
}

/* 第二行：3个（均分） */

.hfsm_contain ul li:nth-child(3),
.hfsm_contain ul li:nth-child(4),
.hfsm_contain ul li:nth-child(5) {
  grid-column: span 4;
}

/* 第三行：2个（3:4） */

.hfsm_contain ul li:nth-child(6) {
  grid-column: span 5;
}

.hfsm_contain ul li:nth-child(7) {
  grid-column: span 7;
}

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

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

  .hfsm_contain ul {
    gap: 0.1rem;
  }

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

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

.home_news {
  padding: 0.6rem 0;

  background: #f5f5f5;
}

.hn_maxbox {
}

.hnm_top {
  margin-bottom: 0.3rem;
}

.hnm_contain {
  display: flex;

  justify-content: space-between;
}

.hnm_l {
  width: 34%;

  padding-bottom: 0.3rem;

  border-bottom: 1px solid #d8d8d8;
}

.hnm_l span {
  width: 100%;

  position: relative;

  display: block;

  margin-bottom: 0.2rem;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 47%;
}

.hnm_l span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hnm_l h3 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  margin-bottom: 0.2rem;

  transition: all 0.35s ease;
}

.hnm_l h4 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.hnm_l h5 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  margin-bottom: 0.2rem;
}

.hnml_btn {
  padding: 0.1rem 0.36rem;

  box-sizing: border-box;

  background: var(--i_color);

  color: #fff;

  font-family: Arial;

  width: fit-content;

  font-weight: normal;

  transition: all 0.35s ease;

  border: 1px solid transparent;
}

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

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

.hnm_l:hover .hnml_btn {
  background: transparent;

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

  color: var(--i_color);
}

.hnm_r {
  width: 62.5%;
}

.hnm_r ul {
  display: flex;

  flex-direction: column;

  height: 100%;

  gap: 0.2rem;
}

.hnm_r ul li {
  flex: 1;
}

.hnm_r ul li a {
  display: flex;

  justify-content: space-between;

  padding: 0 0 0.2rem 0;

  box-sizing: border-box;

  border-bottom: 1px solid #d8d8d8;

  height: 100%;
}

.hnmr_pic {
  width: 35%;

  position: relative;

  flex-shrink: 0;

  overflow: hidden;
}

.hnmr_pic::before {
  content: "";

  display: block;

  padding-bottom: 72%;
}

.hnmr_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.hnmr_info {
  width: 60.76%;
}

.hnmr_info h3 {
  font-family: Arial;

  color: #333333;

  transition: all 0.35s ease;

  margin-bottom: 0.2rem;
}

.hnmr_info h4 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  margin-bottom: 0.2rem;
}

.hnmr_info h5 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;
}

.hnm_r ul li:hover .hnmr_pic img {
  transform: scale(1.1);
}

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

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

    flex-direction: column;
  }

  .hnm_l {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .hnm_r {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .hnm_r ul li a {
    display: flex;

    flex-direction: column;
  }

  .hnmr_pic {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .hnmr_info {
    width: 100%;
  }

  .home_news {
    padding: 0.3rem 0;
  }

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

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

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

  .hnml_btn {
    padding: 0.05rem 0.2rem;
  }

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

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

/* --------------------首页表单-------------------- */

.home_form {
  padding: 0.6rem 0;

  background: #083189;
}

.hf_maxbox {
  display: flex;

  justify-content: space-between;
}

.hfm_left {
  width: 42.26%;
}

.hfm_left .public_title {
  align-items: flex-start !important;
}

.hfm_title {
  margin-bottom: 0.7rem;
}

.hfm_title h3 {
  color: #fff;

  text-align: left;
}

.hfm_title h4 {
  color: #fff;

  text-align: left;
}

.hfm_bg {
  width: 100%;
}

.hfm_bg img {
  width: 100%;

  height: auto;

  object-fit: contain;
}

.hfm_right {
  width: 49.8%;
}
@media screen and (max-width: 768px) {
  .hf_maxbox {
    flex-direction: column;
  }
  .hfm_left {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .hfm_right {
    width: 100%;
  }
  .hfm_left .public_title {
    align-items: center !important;
  }

  .hfm_title h3 {
    text-align: center;
  }

  .hfm_title h4 {
    text-align: center;
  }
  .hfm_title {
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .home_form {
    padding: 0.3rem 0;
  }
  .hfm_title {
    margin-bottom: 0.2rem;
  }
}
/* ---------------------------------------products_banner --------------------------------------- */

.products_banner {
  width: 100%;

  position: relative;
  overflow: hidden;
}

.products_banner::before {
  content: "";

  display: block;

  padding-bottom: 29.26%;
}

.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) {
  .products_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }
}

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

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

.in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

  background: #f6f6f6;

  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;

  font-family: Arial;
}

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

  justify-content: space-between;
}

.products_left {
  width: 26.35%;

  box-sizing: border-box;

  flex-shrink: 0;

  box-sizing: border-box;

  background: #fff;

  padding: 0.6rem 0.35rem 0.6rem 0;
}

.products_left_all {
  box-sizing: border-box;

  margin-bottom: 0.46rem;
}

.products_left_h2 {
  font-family: Arial;

  font-size: 0.36rem;

  font-weight: bold;

  color: var(--i_color);

  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-family: Arial;

  font-size: 0.18rem;

  font-weight: bold;

  color: #222;

  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: #666;

  transition: all 0.3s ease;
}

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

  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  background: #fff;
}

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

  padding: 0 0 0.1rem 0;

  border-radius: 0.06rem;
}

.list_dl dt a {
  font-family: "Roboto Slab";

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

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

  position: absolute;

  left: 0rem;

  top: 50%;

  width: 0.2rem;

  height: 0.02rem;

  background-color: var(--i_color);

  opacity: 0;

  transition: all 0.3s ease;
}

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

.list_dl dt a:hover {
  padding: 0rem 0.3rem;
}

.list_dl .list_dl_active a {
  padding: 0rem 0.3rem;
}

.list_active {
}

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

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

  left: 0;

  right: auto;
}

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

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

.list_active .list_a a {
  color: #fff;

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

.products_info {
  background: rgba(8, 49, 137, 0.05);

  padding: 0.4rem 0.2rem;
}

.products_info h3 {
  font-family: Arial;

  font-weight: bold;

  color: var(--i_color);

  position: relative;

  padding-bottom: 0.1rem;

  margin-bottom: 0.3rem;
}

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

  display: block;

  width: 20%;

  height: 0.03rem;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  left: 0;
}

.products_info ul {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;
}

.products_info ul li {
}

.products_info ul li span {
  font-family: Arial;

  font-weight: 700;

  color: #333333;
}

.products_info ul li span a {
  font-family: Arial;

  font-weight: 400;

  color: #333333;

  transition: all 0.35s ease;
}

.products_info ul li span a:hover {
  color: var(--i_color);

  text-decoration: underline;
}

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

    padding: 0.3rem 0;
  }

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

  .products_info {
    display: none;
  }
}

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

@media screen and (max-width: 425px) {
  .products_bac {
    box-sizing: border-box;

    background-color: #fff;

    padding: 0.3rem 0;
  }
}

.products_right {
  background: #f2f4f9;

  flex: 1;

  position: relative;

  padding: 0.6rem 0 0.6rem 0.4rem;
}

.products_right::before {
  content: "";

  display: block;

  width: 200%;

  height: 100%;

  position: absolute;

  left: 0;

  top: 0;

  background-color: #f2f4f9;

  z-index: -1;
}

.products_right .pr_h3 {
  font-family: Arial;

  font-weight: bold;

  color: var(--i_color);

  margin-bottom: 0.1rem;
}

.products_right h4 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;

  margin-bottom: 0.2rem;
}

.pr_btn a {
  padding: 0.13rem 0.4rem;

  border-radius: 0.4rem;

  background: #e0e5f0;

  width: fit-content;

  color: var(--i_color);

  font-family: Arial;

  cursor: pointer;

  margin-bottom: 0.3rem;

  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.pr_btn a::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  left: 0;
  background: var(--i_color);
  position: absolute;
  top: 0;
  transition: all 0.55s ease;
  border-radius: 0.4rem;
  z-index: -1;
}
.pr_btn a:hover::before {
  width: 100%;
}
.pr_btn a:hover {
  color: #fff;
}
.pr_contain {
}

.pr_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.35rem;
}

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

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

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

@media screen and (max-width: 1024px) {
  .products_right::before {
    left: -30%;
  }

  .products_right {
    padding: 0.3rem 0;
  }
}

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

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

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

  .pr_contain ul li {
    width: 100%;
  }

  .products_left {
    padding: 0;
  }
}

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

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

.productDetail_maxbox {
  padding: 0.6rem 0;

  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/productsdetail_bg.webp)
    no-repeat center/cover;
}

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

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

/* thumbnail */

.p_thumbnail {
  position: absolute;

  top: 0;

  left: 0;

  width: 22.7%;

  height: 100%;
}

.p_thumbnail_list {
  position: relative;

  top: 50%;

  transform: translate(0, -50%);

  width: 100%;

  height: 100%;

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

.p_atlas_list {
  position: absolute;

  top: 0;

  right: 0;

  width: calc(100% - 26%);

  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 (min-width: 1921px) {
  .p_atlas_list {
    padding-right: 0rem;
  }
}
@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;
  }
}

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

  .p_data {
    flex-direction: column;

    align-items: center;
  }

  .p_data_box {
    width: 80%;

    margin-bottom: 0.2rem;
  }

  .p_media_box {
    display: flex;

    justify-content: flex-end;
  }
}

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

.p_media_box ul li {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  display: flex;

  align-items: center;
}

.p_media_box ul li a {
  width: 0.44rem;

  height: 0.44rem;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #cddbed;

  border-radius: 50%;

  transition: all 0.35s ease;
}

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

.p_dataInfo {
  width: 48.22%;
}

.p_dataInfo h2 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;

  margin-bottom: 0.1rem;
}

.p_dataInfo h2 span {
  color: var(--i_color);
}

.p_dataInfo h1 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  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: 70%;

  height: 0.02rem;

  position: absolute;

  left: 0;

  bottom: 0;

  background: var(--i_color);
}

.pd_article {
  margin-bottom: 0.3rem;
}

.pd_btnbox {
  display: flex;

  gap: 0.2rem;

  padding: 0.2rem 0;

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

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

@media screen and (max-width: 560px) {
  .p_media_box ul li a {
    width: 0.35rem;

    height: 0.35rem;
  }

  .pd_btnbox {
    gap: 0.15rem;

    padding: 0.2rem 0 0 0;
  }
}

/* ---------------------------------productDetail_article-------------------------- */

.productDetail_article {
  padding: 0.6rem 0;
}

.pda_maxbox {
  display: flex;

  justify-content: space-between;
}

.pdam_left {
  padding: 0;
}

.pdam_right {
  width: 71.4%;
}

.pdam_right .pdamr_ul {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);

  position: relative;
}

.pdam_right .prh2 {
  font-family: Arial;

  padding-bottom: 0.15rem;

  font-weight: bold;

  color: var(--i_color);

  position: relative;

  width: fit-content;
}

.pdam_right .prh2::before {
  content: "";

  width: 110%;

  height: 0.01rem;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  left: 0;
}

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

  .pdam_right {
    width: 100%;
  }
}

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

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

.single_two_bac {
  background: #f3f9fe;

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

  margin-bottom: 0.3rem;

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

.bottom_single_tags p {
  font-size: 0.18rem;

  color: #333333;

  font-family: Arial;

  font-weight: bold;

  display: flex;

  align-items: center;
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  padding: 0.1rem 0.12rem;

  font-size: 0.16rem;

  color: #333;
}

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

  text-decoration: underline;
}

.sx {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;

  box-sizing: border-box;
}

.sx > div {
  width: 48%;
}

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

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

  box-sizing: border-box;
}

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

  box-sizing: border-box;
}

.sx_left a i,
.sx_right a i {
  background: transparent;

  border-radius: 50%;

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

  width: 0.47rem;

  height: 0.47rem;

  display: flex;

  align-items: center;

  justify-content: center;
  flex-shrink: 0;
}

.sx_left a i img,
.sx_right a i img {
  width: 70%;

  object-fit: contain;
}

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

.sx .sx_left:hover i img {
  filter: brightness(0) invert(1);
}

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

.sx .sx_right:hover i img {
  filter: brightness(0) invert(1);
}

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

  font-weight: bold;
}

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

@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.35rem;

    height: 0.35rem;
  }

  .single_two_bac {
    padding: 0.3rem 0;
  }
}

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

/* --------------------------pd_faqs--------------------- */

.pd_faqs {
  padding: 0.6rem 0;
}

.pdf_maxbox {
}

.pdf_maxbox h2 {
  font-family: Arial;

  font-weight: bold;

  color: #222222;

  margin-bottom: 0.3rem;
}

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0.3rem;
}

.faq_ul li {
  position: relative;

  border-radius: 0.06rem;

  overflow: hidden;

  border-bottom: #e8e8e8 1px solid;
}

.faq_ul li span {
  position: absolute;

  right: 0;

  top: 0;

  display: block;

  width: 21%;

  opacity: 0;

  pointer-events: none;
}

.faq_ul li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.faq_q {
  background-color: #fff;

  box-sizing: border-box;

  padding: 0.2rem 0rem;

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  align-items: center;
}

.faq_q .faq_Q {
  font-family: "Arial";

  font-weight: normal;

  color: #ffffff;

  background: var(--i_color);

  width: 0.3rem;

  height: 0.36rem;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 0.15rem;

  flex-shrink: 0;
}

.faq_ul i {
  border-radius: 0rem;

  display: block;

  color: #333333;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  font-size: 0.2rem;

  font-weight: bold;
}

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

  box-sizing: border-box;

  font-family: "Arial";

  font-size: 0.24rem;

  font-weight: normal;

  color: #333333;

  font-weight: bold;
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0rem 0.3rem 0.2rem 0.3rem;

  /* background: var(--i_color); */
}

.faq_a .faq_A {
  font-family: "Arial";

  font-weight: normal;

  color: var(--i_color);

  background: #fff;

  width: 0.3rem;

  height: 0.36rem;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 0.15rem;

  flex-shrink: 0;
}

.faq_a p {
  width: 84%;

  font-size: 0.18rem;

  color: #666;

  line-height: 0.28rem;

  font-family: "Arial";

  font-weight: normal;
}

.faq_q h3 {
  width: 0.4rem;

  height: 0.4rem;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  transition: all 0.3s ease;

  position: relative;
}

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

  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 2px;

  height: 0.2rem;

  background-color: #333;

  transition: all 0.3s ease;
}

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

  position: absolute;

  top: 50%;

  left: 50%;

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

  height: 2px;

  width: 0.2rem;

  background-color: #333;
}

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

  background-color: #333 !important;
}

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

.faq_ul li.on .faq_q {
  /* background-color: var(--i_color); */
}

.faq_ul li.on .faq_q h2 {
}

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

.faq_ul li.on .faq_q .faq_Q {
  background: #fff !important;

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

  .faq_q {
    padding: 0.15rem 0;
  }
}

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

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

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

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

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

  .faq_q {
    padding: 0.2rem 0;
  }

  .pdcd_faq {
    padding: 0.3rem 0;
  }
}

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

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

  .faq_ul i {
    width: 0.3rem;

    height: 0.3rem;
  }

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

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

  .faq_ul {
    gap: 0.2rem;
  }

  .faq_q .faq_Q,
  .faq_a .faq_A {
    width: 0.25rem;

    height: 0.25rem;
  }

  .pd_faqs {
    padding: 0.3rem 0;
  }

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

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

  .home_customers_like_title .home_customers_like_title_phone {
    font-size: 0.13rem;
  }
}

/* ----------------------------------相关推荐--------------------------- */

.productDetail_related_recommendations {
  padding: 0.6rem 0;

  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/productDetail_related_recommendations_bg.webp)
    no-repeat center/cover;
}

.prr_maxbox {
}

.prrm_top {
  margin-bottom: 0.3rem;
}

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

/* --------------------------------------custom.html--------------------------- */

.customization_process {
  padding: 0.6rem 0;
}

.cp_maxbox {
}

.cpm_top {
  margin-bottom: 0.3rem;
}

.cpm_contain {
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/customization_process_bg.webp)
    no-repeat center/cover;

  width: 100%;
}

.cpmc_box ul {
  display: flex;

  overflow: hidden;
}

.cpmc_box ul li {
  height: 7.5rem;

  flex: 1;

  min-width: 0;

  overflow: hidden;

  transition: all 0.7s ease;
}

.cpmc_box ul li.active {
  flex: 2;
}

.cpmc_box ul li span {
  background: rgba(0, 0, 0, 0.3);

  width: 100%;

  height: 100%;

  display: block;

  border-right: 1px solid #fff;

  display: flex;

  flex-direction: column;

  align-items: center;

  padding: 50% 0.25rem 0 0.25rem;

  box-sizing: border-box;

  cursor: pointer;
}

.cpmc_box ul li span i {
  width: 0.8rem;

  height: 0.8rem;

  display: block;

  margin-bottom: 0.3rem;
}

.cpmc_box ul li span i img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.cpmc_box ul li span h3 {
  font-family: Arial;

  font-weight: bold;

  color: #ffffff;

  text-align: center;

  margin-bottom: 0.25rem;
}

.cpmc_box ul li span h4 {
  font-family: Arial;

  font-weight: normal;

  color: #ffffff;

  text-align: center;
}

.cpmc_box ul li.active h4 {
  width: 30vw;
}

.cpmc_box ul li.active span {
  padding: 35% 0.25rem 0 0.25rem;
}

@media screen and (max-width: 1440px) {
  .cpmc_box ul li span {
    padding: 45% 0.25rem 0 0.25rem;
  }

  .cpmc_box ul li.active span {
    padding: 30% 0.25rem 0 0.25rem;
  }
}

@media screen and (max-width: 1200px) {
  .cpmc_box ul li span {
    padding: 40% 0.25rem 0 0.25rem;
  }

  .cpmc_box ul li span i {
    width: 0.6rem;

    height: 0.6rem;

    margin-bottom: 0.2rem;
  }

  .cpmc_box ul li span h3 {
    margin-bottom: 0.15rem;
  }
}

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

    overflow: hidden;

    flex-wrap: wrap;
  }

  .cpmc_box ul li {
    flex: 0 0 50%;
  }

  .cpmc_box ul li span {
    padding: 25% 0.25rem;

    border-bottom: 1px solid #fff;
  }

  .cpmc_box ul li:nth-child(n + 3) span {
    border-bottom: none;
  }

  .cpmc_box ul li {
    height: auto;
  }
}

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

  .cpmc_box ul li:nth-child(n + 3) span {
    border-bottom: 1px solid #fff;
  }

  .cpmc_box ul li span {
    padding: 20% 0.25rem;

    border-right: none;
  }

  .customization_process {
    padding: 0.3rem 0;
  }

  .cpmc_box ul li span i {
    width: 0.5rem;

    height: 0.5rem;

    margin-bottom: 0.2rem;
  }

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

/* -----------------------------定制化流程2--------------------------- */

.customization_info {
  padding: 0.6rem 0;
}

.ci_maxbox {
}

.cim_top {
  margin-bottom: 0.8rem;
}

.cim_contain {
}

.cim_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.8rem 0.45rem;
}

.cim_contain ul li {
  width: calc((100% - 2 * 0.45rem) / 3);

  box-sizing: border-box;

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

  cursor: pointer;

  transition: all 0.55s ease;

  position: relative;
}

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

  display: block;

  width: 100%;

  height: 0.04rem;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  left: 0;

  opacity: 0;

  transition: all 0.35s ease;
}

.cim_contain ul li span {
  padding: 0.35rem;

  display: block;

  position: relative;

  box-sizing: border-box;
}

.cim_contain ul li span i {
  position: absolute;

  top: -0.55rem;

  right: 0.55rem;

  width: 1.17rem;

  height: 1.17rem;

  border-radius: 50%;

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

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.55s ease;
}

.cim_contain ul li span i img {
  width: 64%;

  height: 64%;

  object-fit: contain;
}

.cim_contain ul li span h3 {
  font-family: Arial;

  font-weight: normal;

  color: #999999;

  transition: all 0.35s ease;
}

.cim_contain ul li span h4 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.1rem;

  transition: all 0.35s ease;
}

.cim_contain ul li span h5 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  width: 80%;
}

.cim_contain ul li:hover {
  border: 2px solid transparent;

  box-shadow: 0px 4px 10px 0px rgba(8, 49, 137, 0.2);
}

.cim_contain ul li:hover span i {
  background: var(--i_color);
}

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

.cim_contain ul li:hover span h3,
.cim_contain ul li:hover span h4 {
  color: var(--i_color);
}

.cim_contain ul li:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .cim_contain ul li span i {
    top: -0.4rem;

    right: 0.4rem;

    width: 0.8rem;

    height: 0.8rem;
  }
}

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

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

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

  .cim_contain ul {
    gap: 0.2rem;
  }

  .cim_contain ul li {
    width: 100%;
  }

  .cim_contain ul li span i {
    top: -0.25rem;

    right: 0.25rem;

    width: 0.5rem;

    height: 0.5rem;
  }

  .cim_contain ul {
    gap: 0.4rem;
  }

  .cim_top {
    margin-bottom: 0.4rem;
  }

  .cim_contain ul li span {
    padding: 0.2rem;
  }
}

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

.aboutus_about_contain .haumci_info {
  width: 100%;
}

.aboutus_about_contain .haumci_info h3 {
  text-align: center;
}

.aboutus_about_contain .haumci_info .haumci_btn {
  justify-content: center;
}

/* -------------------------------服务内容---------------------------- */

.aboutus_service_content {
  padding: 0.6rem 0;

  background: #f6f6f6;
}

.asc_maxbox {
}

.ascm_top {
  margin-bottom: 0.3rem;
}

.ascm_contain {
}

.ascm_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.44rem;
}

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

  background: #fff;

  display: flex;

  padding: 0.5rem 0.5rem 0.8rem 0.5rem;

  box-sizing: border-box;

  cursor: pointer;

  box-shadow: 0px 0px 10px 0px rgba(8, 49, 137, 0.15);

  transition: all 0.55s ease;
}

.ascm_contain ul li span {
  width: 0.86rem;

  height: 0.86rem;

  display: flex;

  justify-content: center;

  align-items: center;

  background: var(--i_color);

  border-radius: 50%;

  flex-shrink: 0;

  margin-right: 0.4rem;

  transition: all 0.55s ease;
}

.ascm_contain ul li span img {
  width: 55.8%;

  height: 55.8%;

  object-fit: contain;
}

.ascmc_info h3 {
  font-family: Arial;

  font-weight: bold;

  color: var(--i_color);

  margin: 0.2rem 0 0.1rem 0;

  transition: all 0.55s ease;
}

.ascmc_info h4 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;

  transition: all 0.55s ease;
}

.ascm_contain ul li:hover {
  background: var(--i_color);

  border-radius: 0px 0.6rem 0px 0.6rem;
}

.ascm_contain ul li:hover .ascmc_info h3,
.ascm_contain ul li:hover .ascmc_info h4 {
  color: #fff;
}

.ascm_contain ul li:hover span {
  background: #fff;
}

.ascm_contain ul li:hover span img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(60%) saturate(3000%)
    hue-rotate(195deg) brightness(85%);
}

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

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

    padding: 0.3rem 0.3rem 0.5rem 0.3rem;
  }

  .ascm_contain ul li span {
    width: 0.6rem;

    height: 0.6rem;

    margin-right: 0.2rem;
  }

  .ascmc_info h3 {
    margin: 0.1rem 0;
  }
}

@media screen and (max-width: 768px) {
  .ascm_contain ul li {
    padding: 0.2rem 0.2rem 0.35rem 0.2rem;
  }

  .ascm_contain ul li span {
    width: 0.5rem;

    height: 0.5rem;

    margin-right: 0.1rem;
  }
}

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

  .ascm_contain ul li {
    width: 100%;
  }

  .ascm_top {
    margin-bottom: 0.1rem;
  }

  .ascm_contain ul li span {
    width: 0.4rem;

    height: 0.4rem;
  }
}

/* -------------------------荣誉介绍--------------------------- */

.aboutUs_honor_introduction {
  padding: 0.6rem 0;
}

.ahi_maxbox {
}

.ahi_top {
  margin-bottom: 0.3rem;
}

.ahi_top .public_title h5 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;

  margin-bottom: 0.25rem;

  text-align: center;
}

.ahi_contain {
  background: linear-gradient(
    to bottom,

    #f7f7f7 0%,

    #f7f7f7 60%,

    #ededed 60%,

    #ededed 100%
  );
}

.ahi_contain span {
  display: block;

  padding: 0.3rem 0;
}

.ahi_contain span img {
  width: 100%;

  object-fit: contain;
}

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

  .ahi_top .public_title h5 {
    margin-bottom: 0.1rem;
  }

  .ahi_top {
    margin-bottom: 0.2rem;
  }

  .ahi_contain span {
    padding: 0.2rem 0;
  }
}

/* --------------------------------公司环境------------------ */

.aboutus_company_environment {
  padding: 0.6rem 0;
}

.ace_maxbox {
}

.acem_top {
  margin-bottom: 0.3rem;
}

.acem_contain {
}

.acem_list {
  position: relative;

  overflow: hidden;
}

.acem_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.acem_list li {
  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.acem_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 76%;
}

.acem_list li span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

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

.acem_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

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

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

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

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

  .aboutus_company_environment {
    padding: 0rem 0 0.3rem 0;
  }
}

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

.service_service_advantage {
  padding: 0.6rem 0;
}

.ssa_maxbox {
}

.ssam_top {
  margin-bottom: 0.3rem;
}

.ssam_contain {
}

.ssamc_box {
  display: flex;

  justify-content: space-between;
}

.ssamc_box span {
  width: 50%;

  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 52%;
}

.ssamc_box span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

.ssamc_box ul {
  width: 48%;

  display: flex;

  flex-direction: column;

  gap: 0.3rem;
}

.ssamc_box ul li {
  display: flex;

  flex: 1;

  border: 1px solid #9d9d9d;

  padding: 0.25rem;

  box-sizing: border-box;

  cursor: pointer;

  transition: all 0.35s ease;
}

.ssamc_box ul li h3 {
  font-family: Arial;

  font-weight: normal;

  color: #333333;

  margin-right: 0.1rem;

  transition: all 0.35s ease;
}

.ssam_info h4 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin: 0.1rem 0;

  transition: all 0.35s ease;
}

.ssam_info h5 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;
}

.sb_1 {
  margin-bottom: 0.3rem;
}

.ssamc_box ul li:hover {
  border: 1px solid var(--i_color);
}

.ssamc_box ul li:hover h3,
.ssamc_box ul li:hover .ssam_info h4 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .ssam_info h4 {
    margin: 0;
  }
}

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

  .ssamc_box span {
    width: 100%;
  }

  .ssamc_box ul {
    width: 100%;

    gap: 0.2rem;
  }

  .sb_1 {
    margin-bottom: 0.2rem;
  }

  .sb_1 ul {
    margin-bottom: 0.2rem;
  }

  .sb_2 {
    flex-direction: column;
  }

  .sb_2 ul {
    margin-bottom: 0.2rem;
  }
}

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

  .ssam_top {
    margin-bottom: 0.2rem;
  }

  .ssamc_box ul li {
    padding: 0.2rem;
  }
}

/* ----------------------------------服务内容-------------------------- */

.service_service_content {
  padding: 0.6rem 0;

  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/service_service_content_bg.webp)
    no-repeat center/cover;
}

.ssc_maxbox {
}

.sscm_top {
  margin-bottom: 0.3rem;
}

.sscm_title h3,
.sscm_title h4 {
  color: #fff;
}

.sscm_title h4 {
  width: 80%;
}

.sscm_contain {
}

.sscm_contain ul {
  display: flex;

  gap: 0.4rem;

  flex-wrap: wrap;
}

.sscm_contain ul li {
  width: calc((100% - 2 * 0.4rem) / 3);

  background: #fff;

  padding: 0.5rem 0.4rem;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  align-items: center;

  cursor: pointer;

  transition: all 0.35s ease;
}

.sscm_contain ul li span {
  width: 0.6rem;

  height: 0.6rem;

  display: block;

  margin-bottom: 0.25rem;
}

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

  height: 100%;

  object-fit: contain;

  transition: all 0.35s ease;
}

.sscm_contain ul li h3 {
  margin-bottom: 0.2rem;

  font-family: Arial;

  font-weight: bold;

  text-align: center;

  color: #333333;

  transition: all 0.35s ease;
}

.sscm_contain ul li h4 {
  font-family: Arial;

  font-weight: normal;

  text-align: center;

  color: #666666;

  transition: all 0.35s ease;
}

.sscm_contain ul li:hover {
  background: var(--i_color);
}

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

.sscm_contain ul li:hover h3,
.sscm_contain ul li:hover h4 {
  color: #fff;
}

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

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

    padding: 0.3rem 0.2rem;
  }
}

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

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

  .sscm_contain ul li span {
    width: 0.4rem;

    height: 0.4rem;

    margin-bottom: 0.2rem;
  }

  .service_service_content {
    padding: 0.3rem 0;
  }

  .sscm_title h4 {
    width: 100%;
  }
}

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

.service_faq {
}

.sf_maxbox {
  display: flex;

  justify-content: space-between;

  align-items: stretch;
}

.sfm_left {
  padding: 1rem 0 0.4rem 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  width: 50.5%;
}

.sfm_left h4 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;
}

.fold_list {
}

.fold_list li {
  /* background: #f6f6f6; */

  box-sizing: border-box;

  padding: 0.15rem 0;

  border-bottom: 1px dashed rgba(0, 0, 0, 0.13);
}

.fold_list .tit {
  width: 100%;

  display: flex;

  flex-wrap: nowrap;

  position: relative;

  overflow: hidden;

  background: #fff;

  align-items: center;

  /* margin: 20px 0; */
}

.fold_list .tit.active {
}

.fold_list .tit span {
  width: 80%;

  padding: 20.5px 0px;

  font-size: 0.26rem;

  color: #333333;

  font-family: "ob";

  background: transparent;

  display: flex;

  align-items: center;
}

.fold_list .icon {
  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 0.3rem;

  width: 0.36rem;

  height: 0.36rem;

  background: #d8d8d8;

  border-radius: 0.08rem;

  -webkit-border-radius: 0.08rem;

  -moz-border-radius: 0.08rem;

  -ms-border-radius: 0.08rem;

  -o-border-radius: 0.08rem;

  display: none;
}

.fold_list .tit span i {
  font-weight: bold;
}

.fold_list .icon iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

  color: #333;

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

  font-size: 18px;

  transition: 0.5s all ease;
}

.fold_list .tit .ic1 {
  display: block;
}

.fold_list .tit .ic2 {
  display: none;
}

.fold_list .tit.active .ic2 {
  display: block;
}

.fold_list .tit.active .ic1 {
  display: none;
}

.fold_list .txt {
  width: 100%;

  display: none;

  padding: 20px 40px 20px 0px;

  background: #fff;

  box-sizing: border-box;

  overflow: hidden;

  line-height: 21px;

  font-size: 0.18rem;

  /* display: flex; */

  display: none;
}

.fold_list .txt i {
  color: #666666;

  font-family: "ob";
}

.tit.tit2.active span {
  /* background: var(--i_color); */

  color: var(--i_color);
}

.zfxqa {
  width: 0.38rem;

  height: 0.36rem;

  border-radius: 0.05rem;

  background: #666666;

  color: #fff;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;

  margin-right: 0.42rem;

  font-size: 0.22rem;
}

.fold_list .txt.active {
  display: -webkit-flex;

  display: flex !important;

  flex-wrap: nowrap;

  gap: 0 20px;

  align-items: start;
}

.active .zfxqa {
  background: 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) {
  .zfxqa {
    width: 28px;

    height: 28px;
  }
}

@media screen and (max-width: 768px) {
  .fold_list .tit span {
    padding: 10px 0px;

    font-size: 0.2rem;
  }

  .zfxqa {
    width: 0.38rem;

    height: 0.36rem;

    margin-right: 0.2rem;

    font-size: 0.16rem;
  }

  .fold_list .txt.active {
    gap: 0 10px;
  }
}

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

    height: 0.28rem;

    margin-right: 0.1rem;

    font-size: 0.14rem;
  }

  .fold_list .tit span {
    padding: 10px 0px;

    font-size: 0.15rem;
  }

  .fold_list .txt {
    padding: 10px 20px 10px 0px;

    line-height: 20px;

    font-size: 0.14rem;
  }

  .frequest .wrap02 .left h6 {
    line-height: 0.22rem;
  }
}

.sfm_right {
  width: 45%;
}

.sfm_right span {
  position: relative;

  display: block;

  width: 100%;
}

.sfm_right span::before {
  display: block;

  content: "";

  padding-bottom: 108%;
}

.sfm_right span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;
}

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

    align-items: center;
  }

  .sfm_left {
    width: 100%;
  }

  .sfm_right {
    width: 80%;
  }

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

  .sfm_left {
    padding: 0.6rem 0 0.4rem 0;
  }
}

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

  .sfm_right {
    width: 100%;
  }
}

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

.news_maxbox {
  padding: 0.6rem 0;
}

.nm_box {
}

.nmb_tab {
  margin-bottom: 0.3rem;
}

.nmb_tab ul {
  display: flex;

  gap: 0.5rem;

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

  flex-wrap: wrap;
}

.nmb_tab ul li {
  padding: 0.2rem;

  position: relative;

  transition: all 0.35s ease;
}

.nmb_tab ul li a {
  font-family: Arial;

  font-weight: bold;

  color: #666666;

  transition: all 0.35s ease;
}

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

  display: block;

  background: var(--i_color);

  width: 0;

  height: 0.02rem;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  bottom: 0;

  transition: all 0.35s ease;
}

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

.nmb_tab ul li:hover::before {
  width: 100%;
}
.nmb_tab ul li.active a {
  color: var(--i_color);
}

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

.nmb_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem;
}

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

.nmb_contain ul li span {
  display: block;

  position: relative;

  width: 100%;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 71%;
}

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

  height: 100%;

  object-fit: cover;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.nmbc_box {
  padding: 0.2rem;

  box-sizing: border-box;
}

.nmbc_box h3 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.15rem;

  transition: all 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.nmbc_box h4 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;

  margin-bottom: 0.2rem;

  display: -webkit-box;

  -webkit-line-clamp: 4;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.nmbc_box h5 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;
}

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

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

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

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

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

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

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

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

  .news_maxbox {
    padding: 0.3rem 0;
  }

  .nmb_tab ul {
    gap: 0.1rem;

    border-bottom: none;
  }

  .nmb_tab ul li {
    padding: 0.05rem;

    width: 100%;

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

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

.contact_form {
  padding: 0.6rem 0;
}

.cf_maxbox {
}

.cfm_logo {
  width: 100%;

  margin-bottom: 1rem;
}

.cfm_logo img {
  width: 100%;

  object-fit: contain;
}

.cfm_contain {
  display: flex;

  justify-content: space-between;
}

.cfm_left {
  width: 40%;
}

.cfm_left h3 {
  font-family: Arial;

  font-weight: bold;

  color: var(--i_color);

  margin-bottom: 0.3rem;
}

.cfm_left ul {
  display: flex;

  flex-direction: column;

  gap: 0.3rem;

  margin-bottom: 0.5rem;
}

.cfm_left ul li {
  display: flex;

  padding-bottom: 0.3rem;

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

  cursor: pointer;

  position: relative;
}

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

  display: block;

  width: 0;

  height: 0.01rem;

  background: var(--i_color);

  position: absolute;

  bottom: 0;

  right: 0;

  transition: all 0.85s ease;
}

.cfm_left ul li span {
  margin-right: 0.1rem;

  width: 0.58rem;

  height: 0.58rem;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f6f6f6;

  flex-shrink: 0;

  transition: all 0.65s ease;
}

.cfm_left ul li span img {
  width: 65.5%;

  height: 65.5%;

  object-fit: contain;

  transition: all 0.65s ease;

  transform-style: preserve-3d;
}

.cfm_info h4 {
  font-family: Arial;

  font-weight: normal;

  color: #666666;
}

.cfm_info h5 a {
  font-family: Arial;

  font-weight: bold;

  color: #333333;
}

.cfm_left ul li:hover span {
  background: var(--i_color);
}

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

  transform: rotateY(180deg);
}

.cfm_left ul li:hover::before {
  width: 100%;

  left: 0;
}

.cfm_left ul li:hover .cfm_info h5 a {
  color: var(--i_color);
}

.cfm_left p {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.cfm_left dl {
  display: flex;

  gap: 0.3rem;
}

.cfm_left dl dt a iconify-icon {
  font-size: 0.25rem;

  transform-style: preserve-3d;

  transition: all 0.65s ease;
}

.cfm_left dl dt a:hover iconify-icon {
  color: var(--i_color) !important;

  transform: rotateY(180deg);
}

.cfm_right {
  width: 50%;

  padding: 0.5rem 0.3rem;

  box-sizing: border-box;

  background: url(https://lingjuimg.com/wp-content/uploads/ZhenZhongDianQi/2026/05/contactus_form_bg.webp)
    no-repeat center/cover;
}

.csfm_title {
  margin-bottom: 0.6rem;
}

.csfm_title h3,
.csfm_title h4 {
  color: #fff;
}

.csfm_title h4 {
  width: 80%;
}

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

  .cfm_left {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .cfm_right {
    width: 100%;
  }

  .cfm_logo {
    margin-bottom: 0.6rem;
  }
}

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

  .cfm_logo {
    margin-bottom: 0.3rem;
  }

  .cfm_left ul li span {
    width: 0.4rem;

    height: 0.4rem;
  }

  .cfm_left ul li {
    padding-bottom: 0.2rem;
  }

  .cfm_left ul {
    gap: 0.2rem;

    margin-bottom: 0.2rem;
  }

  .cfm_left dl {
    gap: 0.15rem;
  }

  .cfm_right {
    padding: 0.3rem 0.2rem;
  }
  .csfm_title {
    margin-bottom: 0.3rem;
  }
}

/* ---------------------------------contact_map------------------------------- */

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

.contact_map {
  height: 5.8rem;
}

.contact_map #simpleMap,
.contact_map .fluid-width-video-wrapper,
.contact_map iframe {
  width: 100%;

  height: 100% !important;
}

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

@media screen and (max-width: 1200px) {
  .contact_map {
    height: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .contact_map {
    height: 4.5rem;
  }
}

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

@media screen and (max-width: 768px) {
  .contact_map {
    height: 4rem;
  }
}

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

@media screen and (max-width: 425px) {
}
.hide {
  display: none;
}
/* -----------------home底部表单---------------------- */
#wpforms-179 {
  --wpforms_input_height: 52px;

  --wpforms_textarea_height: 88px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  width: 100%;
}

#wpforms-179 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

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

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: #fff;
}

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

#wpforms-179 .wpforms-field-container .wpforms-field > input,
#wpforms-179 .wpforms-field-container textarea,
#wpforms-179 .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-179 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: #d6d6d6 1px solid;
}

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

  border: #d6d6d6 1px solid;

  background: #fff;
}
#wpforms-179 .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-179-field_1::placeholder,
#wpforms-179-field_2::placeholder,
#wpforms-179-field_3::placeholder,
#wpforms-179-field_4::placeholder,
#wpforms-179-field_5::placeholder {
  color: #999;

  opacity: 1;
}

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

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}
#wpforms-179 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
  height: var(--wpforms_select_height);
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  /* margin-left: auto;



  margin-right: auto; */
}

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

  height: 0.52rem;

  font-size: 0.18rem;

  color: var(--i_color);

  background: #fff;

  border: none;

  font-family: Arial;
  border-radius: 0;
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-179 .wpforms-submit-container button:hover {
  background: #06276e;
  color: #fff;
}

@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-179 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

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

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

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

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

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px; */

    width: 100%;
  }

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

    font-size: 0.16rem;
  }

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

  #wpforms-179 .wpforms-submit-container {
    margin: 0 auto 0;
  }
  .contact_form {
    padding: 0.3rem 0;
  }
}

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

/* 产品详情底部表单 */
#wpforms-193 {
  --wpforms_input_height: 52px;

  --wpforms_textarea_height: 88px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  width: 100%;
}

#wpforms-193 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

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

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: #fff;
}

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

#wpforms-193 .wpforms-field-container .wpforms-field > input,
#wpforms-193 .wpforms-field-container textarea,
#wpforms-193 .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-193 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: #d6d6d6 1px solid;
}

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

  border: #d6d6d6 1px solid;

  background: #fff;
}
#wpforms-193 .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-193-field_1::placeholder,
#wpforms-193-field_2::placeholder,
#wpforms-193-field_3::placeholder,
#wpforms-193-field_4::placeholder,
#wpforms-193-field_5::placeholder {
  color: #999;

  opacity: 1;
}

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

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}
#wpforms-193 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
  height: var(--wpforms_select_height);
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  /* margin-left: auto;



  margin-right: auto; */
}

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

  height: 0.52rem;

  font-size: 0.18rem;

  color: var(--i_color);

  background: #fff;

  border: none;

  font-family: Arial;
  border-radius: 0;
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-193 .wpforms-submit-container button:hover {
  background: #06276e;
  color: #fff;
}

@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-193 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

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

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

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

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

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px; */

    width: 100%;
  }

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

    font-size: 0.16rem;
  }

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

  #wpforms-193 .wpforms-submit-container {
    margin: 0 auto 0;
  }
  .contact_form {
    padding: 0.3rem 0;
  }
}

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

/* contactus表单 */
#wpforms-196 {
  --wpforms_input_height: 52px;

  --wpforms_textarea_height: 155px;

  --wpforms_input_font_size: 18px;

  --wpforms_select_height: 52px;

  width: 100%;
}

#wpforms-196 {
  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-196 .wpforms-field-container > .wpforms-field {
  width: 100%;

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: #fff;
}

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

#wpforms-196 .wpforms-field-container .wpforms-field > input,
#wpforms-196 .wpforms-field-container textarea,
#wpforms-196 .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-196 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);

  background: #fff;

  border: #d6d6d6 1px solid;
}

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

  border: #d6d6d6 1px solid;

  background: #fff;
}
#wpforms-196 .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-196-field_1::placeholder,
#wpforms-196-field_2::placeholder,
#wpforms-196-field_3::placeholder,
#wpforms-196-field_4::placeholder,
#wpforms-196-field_5::placeholder {
  color: #999;

  opacity: 1;
}

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

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}
#wpforms-196 select:invalid {
  color: #999;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
  height: var(--wpforms_select_height);
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: -0.18rem;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;

  font-family: Arial;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;
}

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

  height: 0.52rem;

  font-size: 0.18rem;

  color: var(--i_color);
  font-weight: bold;
  background: #fff;

  border: none;

  font-family: Arial;
  border-radius: 0;
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-196 .wpforms-submit-container button:hover {
  background: #06276e;
  color: #fff;
}

@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-196 {
    --wpforms_input_height: 48px;

    --wpforms_select_height: 40px;

    --wpforms_textarea_height: 100px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

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

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

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

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

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px; */

    width: 100%;
  }

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

    font-size: 0.16rem;
  }

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

  #wpforms-196 .wpforms-submit-container {
    margin: 0 auto 0;
  }
  .contact_form {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 425px) {
}
/* ------------------------solutions.html------------------- */

.solutions_maxbox {
  padding: 0.6rem 0;
}

.smb_title {
  margin-bottom: 0.5rem;
}

.smb_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem;
}

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

.smb_contain ul li a {
  display: block;

  overflow: hidden;

  transition: all 0.35s ease;
}

.smb_contain ul li a span {
  display: block;

  position: relative;

  overflow: hidden;
}

.smb_contain ul li a span::before {
  content: "";

  display: block;

  padding-bottom: 75%;
}

.smb_contain ul li a span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.smb_contain ul li a h3 {
  font-family: Arial;

  font-weight: bold;

  color: #333333;

  text-align: center;

  padding: 0.2rem 0.1rem;

  box-sizing: border-box;

  transition: all 0.35s ease;
}

.smb_contain ul li a:hover span img {
  transform: scale(1.1);
}

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

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

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

  .solutions_maxbox {
    padding: 0.3rem 0;
  }
}

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