@charset "utf-8";

:root {
  --i_color: #004183;

  /* 全局颜色 */

  --i_color2: #be221d;

  /* 副颜色 */

  --top_h: 0.9rem;

  --header_height: 0.9rem;

  /* 顶部高度 */

  --border_color: rgba(51, 51, 51, 0.2);

  /* 默认边框颜色 */

  --title_fz: 0.4rem;

  /* 标题字体大小 */

  --contain-width: 1.6rem;

  /* 盒子左右间距 */

  --box-bottom: 0.95rem;

  /* 盒子与盒子之间距离 */

  --border_color: rgba(51, 51, 51, 0.12);

  /* 默认边框颜色 */

  --boxShadow: 0 2px 10px rgb(0 88 167 / 20%);
}

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

    --box-bottom: 0.55rem;
  }
}

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

    --header_height: 0.5rem;

    --title_fz: 0.3rem;

    --contain-width: 0.5rem;

    --box-bottom: 0.55rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

@media screen and (max-width: 425px) {
  :root {
    --title_fz: 0.2rem;

    --contain-width: 0.2rem;

    --box-bottom: 0.3rem;
  }
}

.wrap {
  width: 90vw;

  max-width: 1400px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 8.35%;
}

.wrap02 {
  width: 1400px;

  max-width: 85vw;

  margin-left: auto;

  margin-right: auto;
}

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

    max-width: none;
  }
  .wrap02 {
    width: 85vw;

    max-width: none;
  }
}

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

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

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

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

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

.public_title {
  display: flex;

  justify-content: center;

  flex-direction: column;

  align-items: center;
}

.public_title h3 {
  font-family: "Roboto";

  font-size: 0.36rem;

  font-weight: 600;

  line-height: normal;

  color: #333333;

  margin-bottom: 0.2rem;
}

.public_title h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #666666;

  text-align: center;
}

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

    margin-bottom: 0.15rem;
  }

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

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

    margin-bottom: 0.1rem;
  }

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

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

    margin-bottom: 0.05rem;
  }

  .public_title h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

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

.public_btn {
}

.public_btn a {
  font-family: "Roboto";

  font-size: 0.18rem;

  border: 2px solid transparent;

  border-radius: 0.04rem;

  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;

  padding: 0.11rem 0.2rem;

  background: var(--i_color2);

  box-sizing: border-box;
}

.public_btn a img {
  width: 0.23rem;

  height: 0.23rem;

  object-fit: contain;

  margin-left: 0.1rem;
}

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

  position: absolute;

  z-index: -1;

  background: #fff;

  width: 200%;

  height: 200%;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  top: 50%;

  left: 50%;

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

  transition: transform 0.7s ease;

  opacity: 0;
}

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

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

.public_btn a:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3200%)
    hue-rotate(340deg) brightness(90%) contrast(95%);
}

.public_btn a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.public_btn a:hover {
  background: transparent;
}
@media screen and (max-width: 1440px) {
  .public_btn a {
    padding: 0.1rem 0.18rem;
  }
}

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

    height: 0.2rem;

    margin-left: 0.08rem;
  }

  .public_btn a {
    font-size: 0.16rem;

    padding: 0.06rem 0.12rem;
  }
}

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

    padding: 0.06rem 0.1rem;
  }

  .public_btn a img {
    width: 0.18rem;

    height: 0.18rem;

    margin-left: 0.08rem;
  }
}

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

    padding: 0.05rem 0.08rem;
  }

  .public_btn a img {
    width: 0.15rem;

    height: 0.15rem;

    margin-left: 0.05rem;
  }
}

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

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

.other_btn {
}

.other_btn a {
  font-family: "Roboto";

  font-size: 0.18rem;

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

  border-radius: 0.04rem;

  box-sizing: border-box;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  transition: all 0.5s ease;

  z-index: 1;

  cursor: pointer;

  color: var(--i_color2);

  padding: 0.11rem 0.2rem;

  background: #fff;

  box-sizing: border-box;
}

.other_btn a img {
  width: 0.23rem;

  height: 0.23rem;

  object-fit: contain;

  margin-left: 0.1rem;

  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3200%)
    hue-rotate(340deg) brightness(90%) contrast(95%);

  transition: all 0.5s ease;
}

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

  position: absolute;

  z-index: -1;

  background: var(--i_color2);

  width: 200%;

  height: 200%;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  top: 50%;

  left: 50%;

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

  transition: transform 0.7s ease;

  opacity: 0;
}

.other_btn a:hover {
  color: #fff;

  border: 2px solid transparent;
}

.other_btn a:hover img {
  filter: brightness(0) invert(1);
}

.other_btn a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.other_btn a:hover {
  background: var(--i_color2);
}
@media screen and (max-width: 1440px) {
  .other_btn a {
    padding: 0.1rem 0.18rem;
  }
}

@media screen and (max-width: 1024px) {
  .other_btn a img {
    width: 0.2rem;

    height: 0.2rem;

    margin-left: 0.08rem;
  }

  .other_btn a {
    font-size: 0.16rem;

    padding: 0.06rem 0.12rem;
  }
}

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

    padding: 0.06rem 0.1rem;
  }

  .other_btn a img {
    width: 0.18rem;

    height: 0.18rem;

    margin-left: 0.08rem;
  }
}

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

    padding: 0.05rem 0.08rem;
  }

  .other_btn a img {
    width: 0.16rem;

    height: 0.16rem;

    margin-left: 0.05rem;
  }
}

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

/* -------------------------------------pd_other_btn--------------------------------- */

.pd_other_btn {
}

.pd_other_btn a {
  font-family: "Roboto";

  font-size: 0.18rem;

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

  border-radius: 0.04rem;

  box-sizing: border-box;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  transition: all 0.5s ease;

  z-index: 1;

  cursor: pointer;

  color: var(--i_color);

  padding: 0.11rem 0.2rem;

  background: #fff;

  box-sizing: border-box;
}

.pd_other_btn a img {
  width: 0.23rem;

  height: 0.23rem;

  object-fit: contain;

  margin-left: 0.1rem;

  filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(1500%)
    hue-rotate(190deg) brightness(90%) contrast(90%);

  transition: all 0.5s ease;
}

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

  position: absolute;

  z-index: -1;

  background: var(--i_color);

  width: 200%;

  height: 200%;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  top: 50%;

  left: 50%;

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

  transition: transform 0.7s ease;
  opacity: 0;
}

.pd_other_btn a:hover {
  color: #fff;

  border: 2px solid transparent;
}

.pd_other_btn a:hover img {
  filter: brightness(0) invert(1);
}

.pd_other_btn a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.pd_other_btn a:hover {
  background: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .pd_other_btn a {
    padding: 0.1rem 0.18rem;
  }
}

@media screen and (max-width: 1024px) {
  .pd_other_btn a img {
    width: 0.2rem;

    height: 0.2rem;

    margin-left: 0.08rem;
  }

  .pd_other_btn a {
    font-size: 0.16rem;

    padding: 0.06rem 0.12rem;
  }
}

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

    padding: 0.06rem 0.1rem;
  }

  .pd_other_btn a img {
    width: 0.18rem;

    height: 0.18rem;

    margin-left: 0.08rem;
  }
}

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

    padding: 0.05rem 0.08rem;
  }

  .pd_other_btn a img {
    width: 0.16rem;

    height: 0.16rem;

    margin-left: 0.05rem;
  }
}

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

/* -------------------------------------other_noA_btn--------------------------------- */

.other_btn {
}

.other_noA_btn {
  font-family: "Roboto";

  font-size: 0.18rem;

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

  border-radius: 0.04rem;

  box-sizing: border-box;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  transition: all 0.5s ease;

  z-index: 1;

  cursor: pointer;

  color: var(--i_color2);

  padding: 0.11rem 0.2rem;

  background: #fff;

  box-sizing: border-box;
}

.other_noA_btn img {
  width: 0.23rem;

  height: 0.23rem;

  object-fit: contain;

  margin-left: 0.1rem;

  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3200%)
    hue-rotate(340deg) brightness(90%) contrast(95%);

  transition: all 0.5s ease;
}

.other_noA_btn::before {
  content: "";

  position: absolute;

  z-index: -1;

  background: var(--i_color2);

  width: 200%;

  height: 200%;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  top: 50%;

  left: 50%;

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

  transition: transform 0.7s ease;
  opacity: 0;
}

.other_noA_btn:hover {
  color: #fff;

  border: 2px solid transparent;
  background: var(--i_color2);
}

.other_noA_btn:hover img {
  filter: brightness(0) invert(1);
}

.other_noA_btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width: 1440px) {
  .other_noA_btn {
    padding: 0.1rem 0.18rem;
  }
}

@media screen and (max-width: 1024px) {
  .other_noA_btn img {
    width: 0.2rem;

    height: 0.2rem;

    margin-left: 0.08rem;
  }

  .other_noA_btn {
    font-size: 0.16rem;

    padding: 0.06rem 0.12rem;
  }
}

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

    padding: 0.06rem 0.1rem;
  }

  .other_noA_btn img {
    width: 0.18rem;

    height: 0.18rem;

    margin-left: 0.08rem;
  }
}

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

    padding: 0.05rem 0.08rem;
  }

  .other_noA_btn img {
    width: 0.16rem;

    height: 0.16rem;

    margin-left: 0.05rem;
  }
}

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

/* ----------------------------------------noA_btn------------------------------- */

.noA_btn {
}

.noA_btn {
  font-family: "Roboto";

  font-size: 0.18rem;

  border: 2px solid transparent;

  border-radius: 0.04rem;

  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;

  padding: 0.11rem 0.2rem;

  background: var(--i_color2);

  box-sizing: border-box;
}

.noA_btn img {
  width: 0.23rem;

  height: 0.23rem;

  object-fit: contain;

  margin-left: 0.1rem;
}

.noA_btn::before {
  content: "";

  position: absolute;

  z-index: -1;

  background: #fff;

  width: 200%;

  height: 200%;

  border-radius: 50%;

  top: 100%;

  left: 100%;

  top: 50%;

  left: 50%;

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

  transition: transform 0.7s ease;
  opacity: 0;
}

.noA_btn:hover {
  color: var(--i_color2);

  border: 2px solid var(--i_color2);
  background: transparent;
}

.noA_btn:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3200%)
    hue-rotate(340deg) brightness(90%) contrast(95%);
}

.noA_btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width: 1440px) {
  .noA_btn {
    padding: 0.1rem 0.18rem;
  }
}

@media screen and (max-width: 1024px) {
  .noA_btn img {
    width: 0.2rem;

    height: 0.2rem;

    margin-left: 0.08rem;
  }

  .noA_btn {
    font-size: 0.16rem;

    padding: 0.06rem 0.12rem;
  }
}

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

    padding: 0.06rem 0.1rem;
  }

  .noA_btn img {
    width: 0.18rem;

    height: 0.18rem;

    margin-left: 0.08rem;
  }
}

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

    padding: 0.05rem 0.08rem;
  }

  .noA_btn img {
    width: 0.15rem;

    height: 0.15rem;

    margin-left: 0.05rem;
  }
}

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

/* ------------------------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 {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 2014;

  height: var(--top_h);
}

.top_cont {
  background: #fff;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  height: 100%;

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

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: 100%;
}

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

	.top_cont{background: #373737;}

} */

/* logo */

.logo {
  display: -webkit-flex;

  height: 88.89%;
}

.logo a {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;

  position: relative;
}

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

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

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

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

/* 导航 */

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

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    gap: 0 0.58rem;

    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }

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

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;

    /* display: none; */
  }

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

  .i_nav > li > a {
    display: block;

    font-size: 0.18rem;

    color: #333;

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

    line-height: 0.32rem;

    white-space: nowrap;

    box-sizing: border-box;

    /* font-weight: 600; */

    font-family: "Roboto";
  }

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

    background: #fff;

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

    font-size: 0;

    top: calc(100% + 0.15rem);

    min-width: 3rem;
    width: 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.1rem 0.16rem;

    font-size: 0.15rem;

    color: var(--i_color);

    line-height: 1.5;

    white-space: normal;
    word-break: break-all;

    position: relative;
  }

  .i_nav > li > .sub-menu > li:hover > a {
    color: var(--i_color2);
  }

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

    top: 0;

    left: 100%;

    background: #979797;

    min-width: 1.4rem;
  }

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

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

    color: #fff;
  }

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

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

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

    position: fixed;

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

    left: 0;

    width: 100%;

    width: 100vw;

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

    background: #fff;

    overflow-y: auto;

    z-index: 2;
  }

  /*滚动条*/

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

    height: 8px;
  }

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

    background: #555;
  }

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

    border-radius: 0;

    background: #f1f1f1;
  }

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

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

    position: relative;
  }

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

    position: absolute;

    top: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

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

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

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

    background-size: 0.24rem;
  }

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

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

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

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

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

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

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

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

	} */

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

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

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

    background-size: 0.16rem;
  }

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

    background-size: 0.16rem;
  }

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

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

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

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

/* 移动端导航按钮 */

.nav_menu {
  /* position: absolute;

	right: 0;

	top: 50%;

	transform: translateY(-50%); */

  position: relative;

  width: 22px;

  height: 16px;

  display: none;

  cursor: pointer;
}

.nav_menu i {
  display: block;

  width: 100%;

  height: 3px;

  position: absolute;

  top: 50%;

  margin-top: -2px;

  background: var(--i_color);

  border-radius: 0.1rem;

  transition: 0.5s;
}

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

  width: 100%;

  height: 3px;

  background: var(--i_color);

  position: absolute;

  left: 0;

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

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

  top: 50%;

  margin-top: -2px;
}

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

  top: 50%;

  margin-top: -2px;
}

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

/* 导航下拉 */

.nav_dropdown {
  position: fixed;

  top: var(--top_h);

  left: 0;

  width: 100%;

  background: #fff;

  z-index: 2013;
}

.nav_dropdown_item {
  display: none;

  padding: 0.4rem 0;
}

.nav_dropdown_list {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  justify-content: center;

  gap: 0 3%;
}

.nav_dropdown_list dt {
  width: 100%;

  max-width: 3.8rem;
}

.nav_p_cat_name a {
  font-size: 0.2rem;

  color: var(--i_color);

  font-weight: 900;
}

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

.nav_dropdown_list li {
  position: relative;

  padding-left: 0.24rem;
}

.nav_dropdown_list li::before {
  opacity: 0.5;

  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.2rem;

  height: 0.2rem;

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

  background-size: contain;
}

.nav_dropdown_list li a {
  display: block;

  padding: 0.06rem 0;

  font-size: 0.15rem;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

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

  color: var(--i_color);
}

.top_r {
  --size: 0.18rem;
}

.top_r {
  margin-left: auto;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 0.48rem;

  position: relative;
}

.top_r::before {
  content: "";

  display: block;

  height: 20%;

  top: 50%;

  left: 50%;

  position: absolute;

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

  width: 1px;

  background: #222222;
}

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

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

    margin-right: 0.3rem;
  }

  .top_language_btn > p {
    display: none;
  }
}

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

    gap: 0 0.05rem;
  }
}

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

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  text-align: center;

  position: relative;
}

.search_cont iconify-icon {
  font-size: 0.23rem;
}

.top_language img {
  width: 0.23rem;

  height: 0.23rem;

  object-fit: contain;
}

.top_search_ico {
  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;
}

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

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

  .top_language img {
    width: 0.18rem;

    height: 0.18rem;
  }

  .top_r {
    gap: 0.2rem;
  }

  .top_r::before {
    display: none;
  }
}

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

.top_language {
  position: relative;
}

.top_language_btn {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  height: var(--header_height);

  cursor: pointer;

  position: relative;
}

.top_language_btn::after {
  content: "";

  position: absolute;

  top: 50%;

  right: 0.05rem;

  transform: translateY(-50%);

  width: 0;

  height: 0;

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;

  border-top: 6px solid #333; /* 颜色 */

  display: none;
}

.top_language_btn p {
  font-size: 18px;

  color: #333;
}

.language_list {
  opacity: 0;

  visibility: hidden;

  position: absolute;

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

  right: 0;

  background: #fff;

  min-width: 1.2rem;

  z-index: 2016;

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

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  padding: 0.16rem 0.2rem;

  text-align: left;
}

.language_list.on {
  opacity: 1;

  visibility: visible;

  top: var(--header_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: #006bb8;

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

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

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

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

  .top_language_btn::before,
  .top_language_btn::after {
    display: none;
  }
}

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

  .lang_list a {
    padding: 2px 0;
  }

  .lang_list .trp-ls-language-name {
    padding-left: 20px;
  }

  .lang_list .trp-ls-language-name::before {
    width: 14px;

    height: 14px;
  }

  .lang_list .trp-ls-language-name::after {
    left: 4px;
  }
}

/* search */

.top_search {
  --search_height: 0.38rem;
}

.top_search {
  visibility: hidden;

  opacity: 0;

  position: fixed;

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

  right: 0;

  width: 100%;

  padding: 0.2rem 0;

  background: #f5f6f7;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  z-index: 99;
}

.top_search.on {
  visibility: visible;

  opacity: 1;

  top: var(--header_height);

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

.top_search form {
  width: 90%;

  margin: 0 auto;

  max-width: 5rem;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  box-sizing: border-box;

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

  overflow: hidden;
}

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

  height: var(--search_height);

  box-sizing: border-box;

  padding: 0 0 0 0.12rem;
}

.top_search_btn {
  font-size: 0;

  color: #fff;

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

  height: var(--search_height);

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

  background-size: 0.24rem;

  cursor: pointer;
}

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

.full_header_height {
  display: none;

  height: var(--header_height);
}

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

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

footer {
}

.footer_maxBox {
  height: 100%;

  position: relative;
}

.fb_bg {
  width: 65%;

  position: absolute;

  right: 0;

  bottom: 0.83rem;

  z-index: -1;
}

.fb_bg img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.footer_topMaxBox {
  color: #fff;

  position: relative;
}

.footer_menu_maxbox {
  display: flex;
}

.fmm_max_ul {
  display: flex;

  padding: 0.5rem 0 0.72rem 0;

  width: 100%;

  gap: 1.5rem;
}

.fmm_max_ul > li:nth-child(1) {
  flex: 1.5;
}

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

.fmml_infoul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.fmml_infoul li span {
  position: relative;

  width: 2.11rem;

  height: 0.8rem;

  display: block;
}

.fmml_infoul li span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.fmml_infoul li h5 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: 600;

  width: 90%;

  color: #222222;
}

.fmml_infoul li h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 0.28rem;

  color: #222222;
}

.ft_media_li dl {
  display: flex;

  gap: 0.3rem;
}

.ft_media_li dl dt a {
  font-size: 0.27rem;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 0.44rem;

  height: 0.44rem;

  background: #94aec8;

  border-radius: 50%;
}

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

.ft_media_li dl dt a iconify-icon {
  transition: all 0.6s ease;

  transform-style: preserve-3d;

  font-size: 0.18rem;
}

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

.fmm_max_ul li h3 {
  font-family: "Roboto";

  font-size: 0.24rem;

  color: #222222;

  margin-bottom: 0.36rem;
}

.fmmlm1,
.fmmlm2,
.fmmlm3 {
  display: flex;

  flex-direction: column;
}

.fmmlm1 {
  gap: 0.25rem;
}

.fmmlm1 li a {
  text-transform: lowercase; /* 先全部小写 */
}

.fmmlm1 li a::first-letter {
  text-transform: uppercase; /* 首字母大写 */
}

.fmmlm2 {
  gap: 0.3rem;
}

.fmmlm3 {
  gap: 0.27rem;
}

.fmml_menuul li {
  display: flex;

  flex-direction: column;
}

.fmmlm1 li a,
.fmmlm2 li a {
  font-family: "Roboto";

  font-size: 0.16rem;

  color: #222222;

  font-weight: 400;
}

.fmmlm2 li a {
  line-height: 0.24rem;
}

.fmmlm3 li a {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  font-weight: 400;

  color: #333333;
}

.fmml_menuul li a {
  transition: all 0.35s ease;
}

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

  color: var(--i_color);
}

.footer_bottomMaxBox {
  padding: 0.32rem 0;

  background: #e5e5e5;

  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  color: #666666;
}

.footer_bottomMaxBox .wrap a {
  color: #666;

  cursor: pointer;
}

.footer_bottomMaxBox .wrap a:hover {
  text-decoration: underline;
}
.fmml_infoul li h6 {
  display: flex;
  gap: 0.2rem;
}
.fmml_infoul li h6 .footer_media_img {
  width: 0.8rem;
  height: 0.8rem;
}
.fmml_infoul li h6 .footer_media_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1440px) {
  .footer_bottomMaxBox {
    padding: 0.3rem 0;
  }
}

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

  .fmm_max_ul {
    gap: 0.5rem;
  }
}

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

  .ft_media_li dl dt a {
    font-size: 0.24rem;

    width: 0.35rem;

    height: 0.35rem;
  }

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

  .fmm_max_ul li h3 {
    font-size: 0.22rem;

    margin-bottom: 0.2rem;
  }

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

  .fmml_infoul li span {
    position: relative;

    width: 1.5rem;

    height: 0.5rem;

    display: block;
  }

  .fmml_infoul li h5 {
    font-size: 0.2rem;
  }

  .fmml_infoul li h4 {
    font-size: 0.16rem;
  }

  .fmmlm2 {
    gap: 0.15rem;
  }

  .fmmlm3 {
    gap: 0.2rem;
  }

  .fmm_max_ul {
    padding: 0.3rem 0;
  }
}

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

@media screen and (max-width: 560px) {
  .ft_logo span {
    width: 85%;
  }

  .footer_bottomMaxBox {
    font-size: 0.12rem;

    padding: 0.1rem 0;
  }

  .fmm_max_ul {
    flex-direction: column;

    padding: 0 0 0.2rem 0;
  }

  .ft_logo {
    padding-bottom: 0.1rem;
  }

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

  .fmml_infoul li a img {
    width: 0.2rem;

    height: 0.2rem;
  }

  .ft_media_li dl dt a {
    font-size: 0.18rem;

    width: 0.3rem;

    height: 0.3rem;
  }

  .fmml_infoul {
    gap: 0.1rem;
  }

  footer {
    padding: 0.2rem 0 0 0;
  }

  .fb_bg {
    display: none;
  }

  .fmml_infoul li span {
    width: 1.3rem;

    height: 0.5rem;
  }

  .fmml_infoul li h5 {
    font-size: 0.18rem;
  }

  .fmm_max_ul {
    gap: 0.1rem;
  }

  .ft_media_li dl dt a iconify-icon {
    font-size: 0.14rem;
  }

  .fmm_max_ul li h3 {
    font-size: 0.18rem;
  }

  .fmmlm3 {
    gap: 0.15rem;
  }
  .fmml_infoul li h6 .footer_media_img {
    width: 0.5rem;
    height: 0.5rem;
  }
}

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

  /* 设置比例 */

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

  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  width: 87%;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.b_text1_pic {
  width: 46.92%;

  position: relative;
}

.b_text1_pic::before {
  content: "";

  display: block;

  padding-bottom: 61.7%;

  width: 100%;
}

.b_text1_pic img {
  width: 100%;

  /* height: 100%; */

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

.b_text1_info {
  width: 49.68%;
}

.b_text1_text1 {
  font-family: "Roboto";

  font-size: 0.72rem;

  font-weight: 600;

  line-height: 1.1rem;

  text-align: center;

  color: #ffffff;
}

.b_text1_text2 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: normal;

  line-height: 0.32rem;

  text-align: center;

  color: #ffffff;

  margin-bottom: 0.5rem;
}

.b_text1_btn {
  display: flex;

  justify-content: center;
}

@media screen and (max-width: 1440px) {
  .b_text1_text1 {
    font-size: 0.5rem;

    line-height: 0.7rem;

    margin-bottom: 0.3rem;
  }

  .b_text1 {
    top: 18%;
  }
}

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

@media screen and (max-width: 1200px) {
  .b_text1_text {
    font-size: 0.25rem;

    line-height: 0.54rem;
  }

  .b_text1 {
    top: 23%;
  }
}

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

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

  .b_text1_text1 {
    font-size: 0.4rem;

    line-height: 0.5rem;
  }

  .b_text1_text2 {
    font-size: 0.15rem;

    line-height: 0.3rem;

    margin-bottom: 0.4rem;
  }
}

@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_text1 {
    font-size: 0.3rem;

    line-height: 0.4rem;

    margin-bottom: 0.15rem;
  }

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

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

    line-height: 0.22rem;
  }

  .b_text1 {
    top: 29%;

    width: 80%;
  }

  .b_text1_text1 {
    font-size: 0.18rem;

    line-height: 0.3rem;

    margin-bottom: 0.1rem;
  }

  .b_text1 {
    top: 12%;

    width: 92%;
  }

  .b_text1_text2 {
    font-size: 0.13rem;

    line-height: 0.2rem;

    margin-bottom: 0.4rem;
  }

  .b_text1_btn {
    display: none;
  }

  .b_text1_text1 {
    font-size: 0.14rem;

    line-height: 0.22rem;

    margin-bottom: 0.1rem;
  }

  .b_text1_text2 {
    font-size: 0.11rem;

    line-height: 0.18rem;

    margin-bottom: 0rem;
  }
}

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

    line-height: 0.18rem;
  }

  .b_text1 {
    top: 33%;
  }

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

  .b_text1 {
    top: 25%;
  }
}

/* -----------------------------home_company_advantage--------------------------- */

.home_company_advantage {
}

.hca_maxbox {
}

.hca_maxbox ul {
  display: flex;

  flex-wrap: wrap;
}

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

  position: relative;

  cursor: pointer;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 63.7%;
}

.hca_maxbox ul li .hca_img,
.hca_maxbox ul li .hca_hoverimg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  transition: all 0.7s ease;
}

.hca_maxbox ul li .hca_img img,
.hca_maxbox ul li .hca_hoverimg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hca_maxbox ul li .hca_hoverimg {
  opacity: 0;
  visibility: hidden;
}

.hca_maxbox ul li .hca_img {
  opacity: 1;
  visibility: visible;
}

.hcaul_info {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  padding: 0.32rem 0.55rem;

  box-sizing: border-box;
}

.hcaul_info h3 {
  font-family: "Roboto";

  font-size: 0.28rem;

  font-weight: 600;

  line-height: 0.36rem;

  color: #333333;

  border-bottom: #c3c3c3 1px solid;

  height: 48.27%;

  transition: all 1s ease;
}

.hcaul_info h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.26rem;

  color: #666666;

  flex: 1;

  margin-top: 0.3rem;

  transition: all 1s ease;
}

.hca_maxbox ul li:hover .hca_img {
  opacity: 0;

  transform: scale(1);
}

.hca_maxbox ul li:hover .hca_hoverimg {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hca_maxbox ul li:hover h3 {
  color: #fff;
}

.hca_maxbox ul li:hover h4 {
  color: #fff;
}

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

  .hcaul_info h3 {
    font-size: 0.23rem;

    line-height: 0.33rem;
  }

  .hcaul_info h4 {
    margin-top: 0.15rem;
  }
}

@media screen and (max-width: 1366px) {
  .hcaul_info h3 {
    font-size: 0.2rem;

    line-height: 0.3rem;
  }

  .hcaul_info h4 {
    font-size: 0.15rem;

    line-height: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .hcaul_info h3 {
    font-size: 0.15rem;

    line-height: 0.22rem;
  }

  .hcaul_info {
    padding: 0.1rem 0.2rem;
  }

  .hcaul_info h4 {
    margin-top: 0.05rem;
  }

  .hcaul_info h4 {
    font-size: 0.13rem;

    line-height: 0.2rem;
  }

  .hca_maxbox ul li::before {
    padding-bottom: 70.7%;
  }

  .hcaul_info h3 {
    height: 41%;
  }
}

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

@media screen and (max-width: 560px) {
  .hca_maxbox ul li {
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.2);
  }

  .hca_maxbox ul li::before {
    padding-bottom: 53.7%;
  }

  .hca_maxbox ul {
    gap: 0.2rem;
  }
}

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

  .hcaul_info h3 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }

  .hcaul_info h4 {
    font-size: 0.12rem;

    line-height: 0.18rem;
  }
}

/* ---------------------------------home_main_product--------------------- */

.home_main_product {
  padding: 0.6rem 0;
}

.hmp_maxbox {
}

.hmpm_top {
  margin-bottom: 0.5rem;
}

.hmpm_contain {
}

.hmpmc_ul {
  display: flex;

  flex-direction: column;

  gap: 0.3rem;

  height: 200vh;
}

.hmpmcu_li {
  display: flex;

  justify-content: space-between;

  align-items: center;

  background: #fff;

  overflow: hidden;

  position: sticky;

  position: -webkit-sticky;

  top: 2rem;

  margin-bottom: 0.4rem;

  padding-top: 0.3rem;

  box-sizing: border-box;

  flex: 1;
}

.hmpmc_ul .hmpmcu_li:nth-child(even) {
  flex-direction: row-reverse;
}

.hl_info {
  width: 40.8%;
  height: 100%;
}

.hl_info h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  color: var(--i_color2);

  margin-bottom: 0.3rem;

  display: block;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hl_info h4 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: 600;

  line-height: 0.32rem;

  color: #333333;

  margin-bottom: 0.27rem;

  max-height: 1.28rem;

  display: -webkit-box;

  -webkit-line-clamp: 4;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  cursor: pointer;
}

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

.hl_info ul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;

  margin-bottom: 0.3rem;
}

.hl_info ul li a {
  display: flex;
}

.hl_info ul li a span {
  width: 0.21rem;

  height: 0.18rem;

  display: block;

  margin-right: 0.1rem;

  flex-shrink: 0;
}

.hl_info ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.hl_info ul li a h5 {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #333333;

  max-height: 0.72rem;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: all 0.35s ease;
}

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

.hl_pic {
  width: 47.56%;
}

.hl_pic span {
  display: block;

  width: 100%;

  position: relative;
}

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

  display: block;

  padding-bottom: 58.5%;
}

.hl_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hl_btnbox {
  display: flex;
}

@media screen and (max-width: 1440px) {
  .hmpmc_ul {
    height: 210vh;
  }
}

@media screen and (max-width: 1024px) {
  .hmpmc_ul {
    height: auto;
  }

  .hmpmcu_li {
    position: relative;

    top: initial;

    margin-bottom: 0;

    padding-top: 0;
  }

  .hl_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

  .hl_info h4 {
    font-size: 0.2rem;

    line-height: 0.28rem;

    height: 1.12rem;

    margin-bottom: 0.2rem;
  }

  .hl_info ul li a span {
    width: 0.18rem;

    height: 0.15rem;
  }

  .hl_info ul li a h5 {
    font-size: 0.14rem;

    line-height: 0.2rem;

    height: 0.6rem;
  }
}

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

    line-height: 0.24rem;

    height: auto;

    margin-bottom: 0.15rem;
  }

  .hl_info ul li a h5 {
    font-size: 0.14rem;

    line-height: 0.18rem;

    height: auto;
  }

  .hmpm_top {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .hmpmc_ul .hmpmcu_li:nth-child(odd),
  .hmpmc_ul .hmpmcu_li:nth-child(even) {
    flex-direction: column-reverse;
  }

  .hl_pic {
    width: 90%;
  }

  .hl_info {
    width: 100%;
  }

  .home_main_product {
    padding: 0.3rem 0;
  }
}

/* -----------------------------------home_our_products----------------------- */

.home_our_products {
  padding: 0.6rem 0;

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

.hop_maxbox {
  overflow: hidden;
}

.hm_top {
  margin-bottom: 0.5rem;
}

.hmp_title h3 {
  color: #fff;
}

.hmp_title h4 {
  color: #fff;
}

.hmc_list {
  position: relative;

  overflow: hidden;
}

.hmc_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.hmc_list li {
  flex-shrink: 0;

  position: relative;

  background: #fff;
}

.hmc_list li a {
  position: relative;

  display: block;

  width: 100%;

  height: 100%;
}

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

  display: block;

  width: 100%;

  height: 100%;

  background: rgb(161, 183, 206);

  position: absolute;

  top: 0;

  left: 0;

  /* opacity: 1; */

  z-index: 1;
  transition: all 0.85s ease;
}

.hmc_list li.swiper-slide-prev a::before,
.hmc_list li.swiper-slide-active a::before,
.hmc_list li.swiper-slide-next a::before {
  height: 0%;
}

.hmc_list li a .hopi_icon {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  pointer-events: none;
}

.hmc_list li .hmc_imbox {
  box-sizing: border-box;

  z-index: 2;

  position: relative;
}

.hmc_list li span {
  position: relative;

  display: block;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 75%;
}

.hmc_list li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: all 0.35s ease;
}

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

.hm_info {
  padding: 0.1rem 0.3rem 0.3rem 0.3rem;

  box-sizing: border-box;

  position: relative;

  z-index: 2;
}

.hm_info h3 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: 600;

  color: #333333;

  margin-bottom: 0.1rem;

  transition: all 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hm_info h4 {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  color: #333333;

  margin-bottom: 0.2rem;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hm_btn {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  color: var(--i_color);

  display: flex;

  align-items: center;

  transition: all 0.35s ease;
}

.hm_btn img {
  margin-left: 0.05rem;

  width: 0.2rem;

  height: 0.2rem;

  object-fit: contain;

  transition: all 0.35s ease;
}

.odd_icon {
  display: block;

  filter: brightness(0) saturate(100%) invert(18%) sepia(92%) saturate(2200%)
    hue-rotate(195deg) brightness(90%) contrast(95%);
}

.hover_icon {
  display: none;
}

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

.hmc_list li a:hover .hm_btn {
  color: var(--i_color2);
}

.hmc_list li a:hover .odd_icon {
  display: none;
}

.hmc_list li a:hover .hover_icon {
  display: block;
}

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

  top: 50%;

  transform: translate(0, -50%);

  width: 0.51rem;

  height: 0.51rem;

  background: transparent;

  border-radius: 50%;

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

  z-index: 3;

  cursor: pointer;

  outline: none;

  user-select: none;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hmc-prev {
  left: 5%;
}

.hmc-next {
  right: 5%;
}

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

  top: 50%;

  left: 50%;

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

  font-size: 0.25rem;

  color: #be221d !important;
}

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

.hmc-prev:hover,
.hmc-next:hover {
  background: var(--i_color2);
}

.hmc-prev:hover iconify-icon,
.hmc-next:hover iconify-icon {
  color: #fff !important;
}

.hmc-pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

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

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

@media screen and (max-width: 1440px) {
  .hmc_list li .hmc_imbox {
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1200px) {
  .hmc-prev {
    left: 2%;
  }

  .hmc-next {
    right: 2%;
  }
}

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

  .hm_info h3 {
    font-size: 0.18rem;

    margin-bottom: 0.15rem;
  }

  .hm_info h4 {
    font-size: 0.14rem;

    margin-bottom: 0.1rem;
  }

  .hm_btn {
    font-size: 0.16rem;
  }

  .hm_btn img {
    width: 0.16rem;

    height: 0.16rem;
  }

  .hmc-prev,
  .hmc-next {
    width: 0.4rem;

    height: 0.4rem;
  }

  .hmc-prev iconify-icon,
  .hmc-next iconify-icon {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .hmc_list li .hmc_imbox {
    box-sizing: border-box;
  }
}

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

  .hm_info {
    padding: 0.1rem 0.15rem 0.2rem 0.15rem;
  }

  .hm_top {
    margin-bottom: 0.3rem;
  }

  .hm_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

  .hm_info h4 {
    font-size: 0.13rem;

    margin-bottom: 0.1rem;
  }

  .hm_btn {
    font-size: 0.14rem;
  }

  .hmc-prev,
  .hmc-next {
    width: 0.3rem;

    height: 0.3rem;
  }

  .hmc-prev iconify-icon,
  .hmc-next iconify-icon {
    font-size: 0.16rem;
  }
}

/* -----------------------------home_application_scenarios------------------------- */

.home_application_scenarios {
  padding: 0.6rem 0;
}

.has_maxbox {
}

.has_top {
  margin-bottom: 0.5rem;
}

.has_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.26rem;
}

.has_contain ul li {
  width: calc((100% - 3 * 0.26rem) / 4);

  cursor: pointer;
}

.has_contain ul li a {
  display: block;
}

.has_contain ul li a span {
  width: 100%;

  position: relative;

  overflow: hidden;

  display: block;

  background: #fff;
}

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

  display: block;

  padding-bottom: 75%;
}

.has_contain ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.35s ease;
}

.has_contain ul li a p {
  background: #fff;

  display: block;

  text-align: center;

  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  padding: 0.08rem 0.05rem;

  color: #333333;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);

  transition: all 0.35s ease;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

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

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

@media screen and (max-width: 1024px) {
  .has_contain ul li a p {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

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

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

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

  .home_application_scenarios {
    padding: 0.3rem 0;
  }

  .has_top {
    margin-bottom: 0.3rem;
  }
}

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

/* ---------------------------------home_about_us--------------------------------- */

.home_about_us {
  padding: 0.6rem 0 1.2rem 0;

  position: relative;

  overflow: hidden;
}

.hau_mabox {
  position: relative;

  z-index: 2;

  padding: 0.6rem 0;
}

.hau_title h3 {
  color: #fff;
}

.hau_title h4 {
  color: #fff;

  line-height: 0.3rem;
}

.hau_top {
  margin-bottom: 0.7rem;
}

.hau_contain {
}

.hau_contain ul {
  display: flex;
}

.hau_contain ul li {
  width: calc(100% / 4);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.1rem;

  cursor: pointer;
}

.hau_contain ul li span {
  width: 0.64rem;

  height: 0.55rem;

  display: block;
}

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

  height: 100%;

  object-fit: contain;
}

.hau_contain ul li h3 {
  font-weight: 600;

  line-height: normal;

  color: #ffffff;

  font-family: "Roboto";

  font-size: 0.2rem;
}

.hau_contain ul li h3 i {
  font-size: 0.64rem;
}

.hau_contain ul li h4 {
  font-family: "Roboto";

  font-size: 0.14rem;

  font-weight: normal;

  color: #ffffff;
}

.hau_maxbg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  padding: 0.6rem 0;

  box-sizing: border-box;

  overflow: hidden;
}

.haum_bg {
  width: 100%;

  height: 100%;

  position: relative;

  flex-direction: column;

  overflow: hidden;
}

.haum_bg::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 65, 131, 0.75);

  z-index: 0;
}

.hau_box {
  width: 100%;

  height: 100%;

  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  transform: rotate(-10deg) scale(1.35);

  transform-origin: center center;

  z-index: -1;
}

.hau_box span {
  display: block;

  flex-shrink: 0;

  overflow: hidden;

  position: relative;
}

.hau_box span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

.hau_topspan,
.hau_bottomspan {
  flex: 1;
}

.hau_centerspan {
  flex: 1;
}

.hau_maxbg span img {
  display: block;

  width: 100%;

  height: 100%;
}

.hau_btn {
  display: flex;

  justify-content: center;

  margin-top: 0.8rem;
}

@media screen and (max-width: 1024px) {
  .hau_contain ul li span {
    width: 0.5rem;

    height: 0.4rem;
  }

  .hau_contain ul li h3 i {
    font-size: 0.5rem;
  }

  .home_about_us {
    padding: 0.6rem 0 0.2rem 0;
  }

  .hau_mabox {
    padding: 0.6rem 0 1rem 0;
  }
}

@media screen and (max-width: 768px) {
  .hau_contain ul li span {
    width: 0.4rem;

    height: 0.3rem;
  }

  .hau_contain ul li h3 i {
    font-size: 0.3rem;
  }

  .home_about_us {
    padding: 0.6rem 0;
  }
}

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

  .hau_top {
    margin-bottom: 0.4rem;
  }

  .hau_contain ul {
    flex-wrap: wrap;
  }

  .hau_contain ul li {
    width: 50%;

    margin-bottom: 0.2rem;
  }

  .hau_title h4 {
    line-height: 0.24rem;
  }

  .hau_contain ul li h3 i {
    font-size: 0.24rem;
  }

  .hau_contain ul li h3 {
    font-size: 0.16rem;
  }

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

  .hau_btn {
    display: flex;

    justify-content: center;

    margin-top: 0.3rem;
  }

  .hau_maxbg {
    padding: 0.3rem 0;
  }

  .home_about_us {
    padding: 0.3rem 0;
  }
}

/* -------------------------------------home_case--------------------------- */

.home_case {
  padding: 0.6rem 0;
}

.hc_maxbox {
  overflow: hidden;
}

.hcm_top {
  margin-bottom: 0.5rem;
}

.hcmt_title {
  display: flex;

  flex-direction: row;

  justify-content: space-between;

  padding-bottom: 0.4rem;

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

.hcmt_title h3 {
  width: 10%;
}

.hcmt_title h4 {
  width: 35.4%;

  text-align: left;
}

.hcm_contain {
}

.hcm_contain ul {
  display: flex;

  gap: 0.3rem;

  flex-wrap: wrap;
}

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

.hcm_contain ul li a {
  display: block;

  width: 100%;

  height: 100%;
}

.hcm_contain ul li a span {
  position: relative;

  display: block;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 59%;
}

.hcm_contain ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.35s ease;
}

.hcm_contain ul li a span p {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 93.7%;

  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  color: #333333;

  padding: 0.18rem 0.63rem 0.2rem 0.2rem;

  box-sizing: border-box;

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

  backdrop-filter: blur(10px);

  border-radius: 0 0.6rem 0 0;

  transition: all 0.35s ease;
}

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

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

@media screen and (max-width: 1200px) {
  .hcm_contain ul li a span p {
    font-size: 0.16rem;

    padding: 0.18rem 0.5rem 0.2rem 0.2rem;
  }
}

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

  .hcmt_title h3 {
    width: 100%;
  }

  .hcmt_title h4 {
    width: 100%;
  }

  .hcm_contain ul li a span p {
    font-size: 0.14rem;

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

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

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

  .home_case {
    padding: 0.3rem 0;
  }

  .hcmt_title {
    padding-bottom: 0.2rem;
  }
}

.hcm_contain ul li a span i {
  display: block;

  width: 0.74rem;

  height: 0.74rem;

  border-radius: 50%;

  cursor: pointer;

  background: url("static/images/video_pic.webp") center no-repeat;

  background-size: contain;

  position: absolute;

  top: 40%;

  left: 50%;

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

  transition: all 0.6s ease;
}

.hcm_contain ul li:hover a span i {
  display: block;

  width: 0.74rem;

  height: 0.74rem;

  border-radius: 50%;

  cursor: pointer;

  background: url("https://lingjuimg.com/wp-content/uploads/DaFanZhiXiang/2026/04/组-632-4.webp")
    center no-repeat;

  background-size: contain;

  position: absolute;

  top: 40%;

  left: 50%;

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

  transition: all 0.6s ease;
}

.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: 560px) {
  .hacm_video i {
    width: 0.45rem;

    height: 0.45rem;
  }
}

/* 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_news------------------- */

.home_news {
  padding: 0.6rem 0;

  background: linear-gradient(
    180deg,
    #ebf1f9 0%,

    rgba(235, 241, 249, 0.0089) 73%,

    rgba(235, 241, 249, 0) 100%
  );
}

.hn_maxbox {
}

.hnm_top {
  margin-bottom: 0.5rem;
}

.hnm_contain {
  display: flex;

  justify-content: space-between;
}

.hnmc_left {
  width: 34%;
}

.hnmc_left a {
  display: block;

  width: 100%;
}

.hnmc_left a span {
  position: relative;

  display: block;

  width: 100%;

  overflow: hidden;
}

.hnmc_left a span::before {
  content: "";

  display: block;

  padding-bottom: 44.5%;
}

.hnmc_left a span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.35s ease;
}

.hnmcl_info {
  padding: 0.16rem 0 0.3rem 0;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  gap: 0.18rem;

  border-bottom: 1px solid #d8d8d8;
}

.hnmcl_info h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  color: #666666;
}

.hnmcl_info h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.26rem;

  color: #333333;
}

.hnmcl_info h5 {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #333333;

  margin-bottom: 0.2rem;
}

.hnmc_btn {
  display: flex;
}

.hnmc_left:hover .hnmc_btn .noA_btn {
  color: var(--i_color2);
  background: transparent;
  border: 2px solid var(--i_color2);
}

.hnmc_left:hover .hnmc_btn .noA_btn img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3200%)
    hue-rotate(340deg) brightness(90%) contrast(95%);
}

.hnmc_left:hover .hnmc_btn .noA_btn::before {
  transform: translate(-50%, -50%) scale(1);
}

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

.hnmc_right {
  width: 62%;
}

.hnmc_right ul {
  display: flex;

  flex-direction: column;

  height: 100%;

  gap: 0.3rem;
}

.hnmc_right ul li {
  flex: 1;

  border-bottom: 1px solid #d8d8d8;
}

.hnmc_right ul li a {
  display: flex;

  justify-content: space-between;
}

.hnmc_right ul li a span {
  width: 35.58%;

  position: relative;

  display: block;

  flex-shrink: 0;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 67%;
}

.hnmc_right ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.35s ease;
}

.hnmcr_info {
  width: 61%;
}

.hnmcr_info h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.26rem;

  color: #333333;

  margin-bottom: 0.2rem;

  transition: all 0.35s ease;
}

.hnmcr_info h4 {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #333333;

  margin-bottom: 0.5rem;
}

.hnmcr_info h5 {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  color: #666666;
}

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

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

.hnmcr_firstchildren {
  display: none;
}

@media screen and (max-width: 1200px) {
  .hnmcl_info h5 {
    margin-bottom: 0.2rem;
  }
}

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

  .hnmc_left {
    display: none;
  }

  .hnmc_right {
    width: 100%;
  }

  .hnmcr_firstchildren {
    display: block;
  }

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

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

    line-height: 0.24rem;

    margin-bottom: 0.1rem;
  }

  .hnmcr_info h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;

    margin-bottom: 0.2rem;
  }
}

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

  .hnm_top {
    margin-bottom: 0.3rem;
  }

  .hnmc_right ul li a {
    flex-direction: column;
  }

  .hnmc_right ul li a span {
    width: 100%;

    margin-bottom: 0.1rem;
  }

  .hnmcr_info {
    width: 100%;
  }
}

/* ---------------------------home_form----------------------- */

.home_form {
  padding: 0.6rem 0;

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

.hf_maxbox {
}

.hfm_top {
  margin-bottom: 0.5rem;
}

.hfm_title h3 {
  color: #fff;

  text-align: center;
}

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

  .hfm_top {
    margin-bottom: 0.3rem;
  }
}

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

.products_banner {
  width: 100%;

  position: relative;
}

.products_banner::before {
  content: "";

  display: block;

  padding-bottom: 27.2%;
}

.products_banner::after {
  content: "Products"; /* 显示的文字 */

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: bold;

  color: #fff;

  font-family: "Roboto";

  font-size: 0.72rem;

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

  color: #ffffff;
}

.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: 1200px) {
  .products_banner::after {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .products_banner::after {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .products_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }

  .products_banner::after {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .products_banner::before {
    content: "";

    display: block;

    padding-bottom: 45.5%;
  }

  .products_banner::after {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 320px) {
  .products_banner::before {
    padding-bottom: 40%;
  }

  .products_banner::after {
    font-size: 0.2rem;
  }
}

/* ---------------------------------------aboutUs_banner--------------------------------------- */

.aboutUs_banner {
  width: 100%;

  position: relative;
}

.aboutUs_banner::before {
  content: "";

  display: block;

  padding-bottom: 27.2%;
}

.aboutUs_banner::after {
  content: "About Us"; /* 显示的文字 */

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: bold;

  color: #fff;

  font-family: "Roboto";

  font-size: 0.72rem;

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

  color: #ffffff;
}

.aboutUs_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  animation: scaleIn 1.5s ease-out forwards;
}

@media screen and (max-width: 1200px) {
  .aboutUs_banner::after {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .aboutUs_banner::after {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .aboutUs_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }

  .aboutUs_banner::after {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .aboutUs_banner::before {
    content: "";

    display: block;

    padding-bottom: 45.5%;
  }

  .aboutUs_banner::after {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 320px) {
  .aboutUs_banner::before {
    padding-bottom: 40%;
  }

  .aboutUs_banner::after {
    font-size: 0.2rem;
  }
}

/* ---------------------------------------aboutUs_banner--------------------------------------- */

.application_banner {
  width: 100%;

  position: relative;
}

.application_banner::before {
  content: "";

  display: block;

  padding-bottom: 27.2%;
}

.application_banner::after {
  content: "Application"; /* 显示的文字 */

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: bold;

  color: #fff;

  font-family: "Roboto";

  font-size: 0.72rem;

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

  color: #ffffff;
}

.application_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  animation: scaleIn 1.5s ease-out forwards;
}

@media screen and (max-width: 1200px) {
  .application_banner::after {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .application_banner::after {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .application_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }

  .application_banner::after {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .application_banner::before {
    content: "";

    display: block;

    padding-bottom: 45.5%;
  }

  .application_banner::after {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 320px) {
  .application_banner::before {
    padding-bottom: 40%;
  }

  .application_banner::after {
    font-size: 0.2rem;
  }
}

/* ---------------------------------------case_banner--------------------------------------- */

.case_banner {
  width: 100%;

  position: relative;
}

.case_banner::before {
  content: "";

  display: block;

  padding-bottom: 27.2%;
}

.case_banner::after {
  content: "Case"; /* 显示的文字 */

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: bold;

  color: #fff;

  font-family: "Roboto";

  font-size: 0.72rem;

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

  color: #ffffff;
}

.case_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  animation: scaleIn 1.5s ease-out forwards;
}

@media screen and (max-width: 1200px) {
  .case_banner::after {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .case_banner::after {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .case_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }

  .case_banner::after {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .case_banner::before {
    content: "";

    display: block;

    padding-bottom: 45.5%;
  }

  .case_banner::after {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 320px) {
  .case_banner::before {
    padding-bottom: 40%;
  }

  .case_banner::after {
    font-size: 0.2rem;
  }
}

/* ---------------------------------------caseDetail_banner--------------------------------------- */

.caseDetail_banner {
  width: 100%;

  position: relative;
}

.caseDetail_banner::before {
  content: "";

  display: block;

  padding-bottom: 27.2%;
}

.caseDetail_banner::after {
  content: "Case"; /* 显示的文字 */

  position: absolute;

  left: 0;

  top: 31.34%;

  width: 36.4%;

  padding: 0.52rem 0;

  box-sizing: border-box;

  font-weight: bold;

  padding-left: 8%;

  color: #fff;

  font-family: "Roboto";

  font-size: 0.72rem;

  background: linear-gradient(90deg, rgba(0, 65, 131, 0.1) 0%, #004183 100%);
}

.caseDetail_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  animation: scaleIn 1.5s ease-out forwards;
}

@media screen and (max-width: 1200px) {
  .caseDetail_banner::after {
    font-size: 0.5rem;

    width: 30%;
  }
}

@media screen and (max-width: 1024px) {
  .caseDetail_banner::after {
    font-size: 0.4rem;

    padding: 0.35rem 0;

    padding-left: 8%;
  }
}

@media screen and (max-width: 768px) {
  .caseDetail_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }

  .caseDetail_banner::after {
    font-size: 0.3rem;

    padding: 0.25rem 0;

    padding-left: 6%;
  }
}

@media screen and (max-width: 425px) {
  .caseDetail_banner::before {
    content: "";

    display: block;

    padding-bottom: 45.5%;
  }

  .caseDetail_banner::after {
    font-size: 0.24rem;

    width: 40%;

    padding: 0.15rem 0;

    padding-left: 8%;
  }
}

@media screen and (max-width: 320px) {
  .caseDetail_banner::before {
    padding-bottom: 40%;
  }

  .caseDetail_banner::after {
    font-size: 0.2rem;
  }
}

/* ---------------------------------------news_banner--------------------------------------- */

.news_banner {
  width: 100%;

  position: relative;
}

.news_banner::before {
  content: "";

  display: block;

  padding-bottom: 27.2%;
}

.news_banner::after {
  content: "News"; /* 显示的文字 */

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: bold;

  color: #fff;

  font-family: "Roboto";

  font-size: 0.72rem;

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

  color: #ffffff;
}

.news_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  animation: scaleIn 1.5s ease-out forwards;
}

@media screen and (max-width: 1200px) {
  .news_banner::after {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .news_banner::after {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .news_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }

  .news_banner::after {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .news_banner::before {
    content: "";

    display: block;

    padding-bottom: 45.5%;
  }

  .news_banner::after {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 320px) {
  .news_banner::before {
    padding-bottom: 40%;
  }

  .news_banner::after {
    font-size: 0.2rem;
  }
}

/* ---------------------------------------contactUs_banner--------------------------------------- */

.contactUs_banner {
  width: 100%;

  position: relative;
}

.contactUs_banner::before {
  content: "";

  display: block;

  padding-bottom: 27.2%;
}

.contactUs_banner::after {
  content: "Contact Us"; /* 显示的文字 */

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: bold;

  color: #fff;

  font-family: "Roboto";

  font-size: 0.72rem;

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

  color: #ffffff;
}

.contactUs_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  animation: scaleIn 1.5s ease-out forwards;
}

@media screen and (max-width: 1200px) {
  .contactUs_banner::after {
    font-size: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .contactUs_banner::after {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .contactUs_banner::before {
    content: "";

    display: block;

    padding-bottom: 36.5%;
  }

  .contactUs_banner::after {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
  .contactUs_banner::before {
    content: "";

    display: block;

    padding-bottom: 45.5%;
  }

  .contactUs_banner::after {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 320px) {
  .contactUs_banner::before {
    padding-bottom: 40%;
  }

  .contactUs_banner::after {
    font-size: 0.2rem;
  }
}

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

.in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

  background: #f2f5f9;

  position: relative;
}

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

.in_position a {
  display: block;

  font-size: 0.16rem;

  color: #333333;

  position: relative;

  line-height: 0.2rem;
}

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

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

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.18rem;

  height: 0.18rem;

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

  background-size: contain;
}

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

  margin: 0 4px;

  color: #555;
}

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

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

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

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

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

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

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

.products_maxbox {
  padding: 0.6rem 0;
}

.pm_box {
  overflow: hidden;
}

.pmb_top {
  margin-bottom: 0.5rem;
}

.pmb_contain {
}

.pmbc_tab {
  margin-bottom: 0.5rem;
}

.pmbc_tab ul {
  display: flex;

  gap: 0.6rem;

  flex-wrap: wrap;
}

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

.pmbc_tab ul li a {
  width: 100%;
  height: 100%;
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  color: #666666;

  background: #f4f4f4;

  padding: 0.17rem 0.24rem;

  box-sizing: border-box;

  display: block;

  position: relative;

  z-index: 1;

  transition: all 0.45s ease;
}

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

  display: block;

  background: var(--i_color);

  width: 0;

  height: 100%;

  z-index: -1;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.65s ease;
}

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

.pmbc_tab ul li.active a {
  color: #fff;
}

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

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

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

.pmbc_list ul {
  display: flex;

  flex-direction: column;

  gap: 0.5rem;
}

.pmbc_list ul li {
}

.pmbc_list ul li a {
  display: flex;

  justify-content: space-between;
}

.pmbc_list ul li a span {
  width: 38.81%;

  position: relative;

  display: block;

  flex-shrink: 0;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 75%;
}

.pmbc_list ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 0;

  transition: all 0.35s ease;
}

.pmbcl_info {
  flex: 1;

  background: #f8f9fa;

  padding: 0.5rem 0.6rem 0.3rem 0.8rem;

  box-sizing: border-box;
}

.pmbcl_info h3 {
  padding-bottom: 0.2rem;

  margin-bottom: 0.27rem;

  position: relative;
}

.pmbcl_info h3 p {
  position: relative;

  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: 600;

  line-height: 0.3rem;

  color: #333333;

  position: relative;

  transition: all 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

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

  display: block;

  width: 8%;

  height: 0.04rem;

  background: var(--i_color);

  position: absolute;

  left: 0;

  bottom: 0;
}

.pmbcl_info h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.32rem;

  color: #333333;

  margin-bottom: 0.8rem;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.pmbc_btn {
  display: flex;
}

.pmbc_list ul li a:hover .other_noA_btn {
  color: #fff;
  background: var(--i_color2);
  border: 2px solid transparent;
}

.pmbc_list ul li a:hover .other_noA_btn img {
  filter: brightness(0) invert(1);
}

.pmbc_list ul li a:hover .other_noA_btn::before {
  transform: translate(-50%, -50%) scale(1);
}

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

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

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

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

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

    gap: 0.3rem;
  }

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

  .pmbc_tab ul li a {
    font-size: 0.16rem;

    padding: 0.1rem 0.2rem;
  }

  .pmbcl_info {
    padding: 0.2rem;
  }

  .pmbcl_info h3 p {
    font-size: 0.2rem;

    line-height: 0.3rem;
  }

  .pmbcl_info h4 {
    font-size: 0.15rem;

    line-height: 0.25rem;

    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .pmbcl_info h3 p {
    font-size: 0.18rem;

    line-height: 0.25rem;
  }

  .pmbcl_info h3 {
    padding-bottom: 0.15rem;

    margin-bottom: 0.1rem;
  }

  .pmbcl_info h4 {
    font-size: 0.14rem;

    line-height: 0.22rem;

    margin-bottom: 0.2rem;
  }
}

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

  .pmb_top {
    margin-bottom: 0.3rem;
  }

  .pmbc_tab ul li {
    width: 100%;
  }

  .pmbc_tab ul {
    gap: 0.1rem;
  }

  .pmbc_tab {
    margin-bottom: 0.3rem;
  }

  .pmbc_list ul li a {
    flex-direction: column;
  }

  .pmbc_list ul li a span {
    width: 100%;
  }

  .pmbc_list ul li a span::before {
    padding-bottom: 55%;
  }

  .pmbcl_info {
    padding: 0.1rem;
  }

  .pmbc_tab ul li a {
    font-size: 0.14rem;

    padding: 0.1rem 0.15rem;
  }

  .pmbcl_info h3 p {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }

  .pmbcl_info h4 {
    font-size: 0.12rem;

    line-height: 0.2rem;

    margin-bottom: 0.15rem;
  }

  .pmbc_list ul {
    gap: 0.2rem;
  }

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

/* -----------------------productsDetail.html---------------------- */

/* single_grid */

.single_grid_bac {
  box-sizing: border-box;

  padding: 0.4rem 0 0.8rem 0;
}

.single_grid {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.single_grid_left {
  width: 45.25%;
}

/* 轮播图宽度 */

.in_grid_cont {
  --sm_pic_width: 17%;
}

.in_grid_cont {
  position: relative;

  overflow: hidden;
}

.in_grid_cont:before {
  content: "";

  display: block;

  padding-bottom: 80.4%;
}

/* 底部缩略图 */

.in_grid_list_box {
  position: absolute;

  top: 0;

  left: 0;

  width: var(--sm_pic_width);

  height: 100%;

  box-sizing: border-box;

  padding: 40px 0;
}

.in_grid_list {
  height: 100%;

  overflow: hidden;
}

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

.in_grid_list .img {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  border: 1px solid #d8d8d8;

  position: relative;

  overflow: hidden;
}

.in_grid_list .img img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

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

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

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

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

  opacity: 0.1;
}

/* 轮播图 */

.in_grid_show_box {
  position: absolute;

  top: 0;

  right: 0;

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

  height: 100%;

  box-sizing: border-box;

  padding: 0 0;

  margin: 0 auto;
}

.in_grid_show {
  width: 100%;

  height: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

.in_grid_show .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  height: 100%;

  z-index: 1;
}

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

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_show .img {
  width: 100%;

  height: 100%;

  position: relative;

  overflow: hidden;
}

.in_grid_show .img img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.ingrid-pagination {
  position: absolute;

  top: 0.2rem;

  right: 0.2rem;

  width: 0.5rem;

  height: 0.5rem;

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

  border-radius: 50%;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;

  font-size: 0.18rem;

  color: var(--i_color);

  display: none;
}

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

  height: 8px;

  display: inline-block;

  margin: 0 4px;

  background: #e5e5e5;

  -webkit-border-radius: 50%;

  -moz-border-radius: 50%;

  -o-border-radius: 50%;

  border-radius: 50%;

  outline: none;
}

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

  background: var(--i_color);
}

.in_grid_cont:before {
  display: none;
}

.in_grid_show_box {
  position: initial;

  width: 100%;

  border-radius: 0.04rem;

  overflow: hidden;

  border: 1px solid #d8d8d8;
}

.in_grid_show .img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 75%;
}

.in_grid_show .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

.in_grid_list_box {
  margin-top: 0.16rem;

  padding: 0 0;

  position: relative;

  width: 100%;

  height: initial;
}

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

  margin: 0 auto;

  padding: 0 0.1rem;
}

.in_grid_list_box .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  z-index: 1;
}

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

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_list .img {
  height: auto;

  border-radius: 0.04rem;
}

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

  display: block;

  padding-bottom: 75%;
}

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

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

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

  opacity: 1;

  transition: all 0.35s ease;
}

.in_grid_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  object-fit: cover;
}

.swiper-slide-thumb-active .img {
  border: 1px solid var(--i_color);
}

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

.single_grid_right {
  width: 49.75%;
}

.single_grid_right h1 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: 600;

  color: var(--i_color);

  padding-bottom: 0.25rem;

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

  margin-bottom: 0.3rem;
}

.pd_detail_article {
  min-height: 60%;

  font-family: "Roboto";
}

.pd_mediabox {
  padding-top: 0.5rem;

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

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.2rem;
}

.pdm_btn {
  display: flex;

  gap: 0.23rem;
}

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

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

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

.pd_btn a:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(1500%)
    hue-rotate(190deg) brightness(90%) contrast(90%);
}

.pdm_media {
}

.pdm_media ul {
  display: flex;

  gap: 0.2rem;
}

.pdm_media ul li {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  color: #666666;

  display: flex;

  align-items: center;
}

.pdm_media ul li a {
  display: flex;

  align-items: center;
}

.pdm_media ul li a iconify-icon {
  font-size: 0.25rem;
}

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

  transition: all 0.35s ease;
}

@media screen and (max-width: 1200px) {
  .in_grid_list {
    width: calc(100% - 0.6rem);
  }
}

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

  .single_grid_right h1 {
    font-size: 0.18rem;

    padding-bottom: 0.15rem;

    margin-bottom: 0.15rem;
  }

  .pd_mediabox {
    padding-top: 0.2rem;
  }
}

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

    align-items: center;
  }

  .single_grid_left {
    width: 90%;

    margin-bottom: 0.2rem;
  }

  .single_grid_right {
    width: 100%;
  }

  .pd_detail_article {
    padding-bottom: 0.2rem;
  }
}

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

  .single_grid_bac {
    box-sizing: border-box;

    padding: 0.3rem 0;
  }

  .single_grid_right h1 {
    font-size: 0.16rem;

    padding-bottom: 0.1rem;

    margin-bottom: 0.1rem;
  }

  .pdm_media ul li {
    font-size: 0.16rem;
  }

  .pdm_media ul {
    gap: 0.1rem;
  }

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

/* ----------------------------Product description--------------------- */

.pd_description {
  padding: 0.6rem 0;
}

.pdd_maxbox {
  overflow: hidden;
}

.pddm_title {
  padding-bottom: 0.2rem;

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

.pddm_title h3 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: 600;

  line-height: 100%;

  position: relative;

  width: fit-content;

  color: var(--i_color);
}

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

  display: block;

  width: 100%;

  height: 0.02rem;

  position: absolute;

  bottom: -0.2rem;

  left: 0;

  background: var(--i_color);
}

.pd_faq h3 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: 600;

  color: var(--i_color);

  margin-bottom: 0.2rem;
}

.pd_application_scenarios {
  margin-bottom: 0.2rem;
}

.pd_application_scenarios h3 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: 600;

  color: var(--i_color);

  margin-bottom: 0.2rem;
}

.pd_video_article iframe {
  max-width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto;
}

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

  .pddm_title h3 {
    font-size: 0.2rem;
  }

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

  .pd_description {
    padding: 0.3rem 0;
  }
}

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

.faq_bac {
  box-sizing: border-box;

  width: 100%;
}

.faq {
}

.faq_ul {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  gap: 0.3rem;
}

.faq_ul li {
  position: relative;

  border-radius: 0.06rem;

  overflow: hidden;
}

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

  border-radius: 0rem;

  display: flex;

  display: -webkit-flex;

  cursor: pointer;

  align-items: center;

  padding: 0.25rem 0.2rem 0.25rem 0.3rem;

  box-sizing: border-box;
}

.faq_q img {
  width: 0.5rem;

  height: 0.5rem;

  object-fit: contain;

  transition: transform 0.3s ease;

  transform: rotate(0deg);
}

.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.5rem);

  box-sizing: border-box;

  font-family: "Montserrat";

  font-size: 0.2rem;

  font-weight: normal;

  color: #333333;
}

.faq_a {
  display: flex;

  display: -webkit-flex;

  box-sizing: border-box;

  padding: 0rem 0.3rem 0.2rem 0.3rem;

  background: #fff;
}

.faq_a p {
  width: 100%;

  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.26rem;

  color: #ffffff;
}

.faq_ul li.on .faq_q img {
  transform: rotate(180deg);

  transition: transform 0.3s ease;

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

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

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

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

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

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

  .faq_a p {
    font-size: 0.14rem;

    line-height: 0.24rem;
  }

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

  .faq_q img {
    width: 0.4rem;

    height: 0.4rem;
  }

  .faq_a p {
    font-size: 0.16rem;

    line-height: 0.24rem;
  }

  .faq_a {
    padding: 0rem 0.3rem 0.2rem 0.25rem;
  }
}

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

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

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

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

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

  .faq_q img {
    width: 0.4rem;

    height: 0.4rem;
  }
}

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

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

  .faq_q img {
    width: 0.3rem;

    height: 0.3rem;
  }

  .faq_q h2 {
    font-size: 0.14rem;
  }

  .faq_a p {
    font-size: 0.12rem;

    line-height: 0.2rem;
  }

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

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

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

.single_two_bac {
  background: #fff;

  box-sizing: border-box;

  padding: 0.3rem 0;
}

.single_two {
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.1rem;

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

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

.bottom_single_tags p {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.32rem;

  color: #666666;
}

.bottom_single_tags a {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: var(--i_color);

  padding: 0.08rem 0.5rem;

  box-sizing: border-box;
}

.bottom_single_tags a:hover {
  color: #fff;

  background: var(--i_color);
}

.sx {
  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;
}

.sx > div {
  width: 48%;
}

.sx_left {
}

.sx a {
  display: block;

  width: 100%;

  display: flex;

  align-items: center;
}

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

  transition: all 0.3s ease;
}

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

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

.sx p {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  color: #333333;
}

.sx span {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  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_left:hover iconify-icon {
  color: var(--i_color) !important;
}

.sx .sx_right:hover iconify-icon {
  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.14rem;
  }

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

  .bottom_single_tags {
    gap: 0.1rem;
  }

  .sx p {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .bottom_single_tags p {
    font-size: 0.16rem;
  }
}

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

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }
}

/* --------------------------------pd_related_products-------------------- */

.pd_related_products {
  padding: 0.6rem 0;
}

.prp_maxbox {
}

.prpm_top {
  margin-bottom: 0.5rem;
}

.prpm_list {
  position: relative;

  overflow: hidden;
}

.prpm_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;
}

.prpm_list li {
  flex-shrink: 0;

  position: relative;

  background: #fff;
}

.prpm_list li a {
  position: relative;

  display: block;

  width: 100%;

  height: 100%;
}

.prpm_list li a .hopi_icon {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  pointer-events: none;
}

.prpm_list li .hmc_imbox {
  padding: 0 0.4rem;

  box-sizing: border-box;
}

.prpm_list li span {
  position: relative;

  display: block;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 75%;
}

.prpm_list li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: all 0.35s ease;
}

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

.hrpm_info {
  padding: 0.1rem 0.3rem 0.2rem 0.3rem;

  box-sizing: border-box;
}

.hrpm_info h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: 600;

  color: #333333;

  margin-bottom: 0.1rem;

  transition: all 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  text-align: left;
}

.hrpm_info h4 {
  font-family: "Roboto";

  font-size: 0.14rem;

  font-weight: normal;

  color: #333333;

  margin-bottom: 0.25rem;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  text-align: left;
}

.hrpm_btn {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  color: var(--i_color);

  display: flex;

  align-items: center;

  transition: all 0.35s ease;
}

.hrpm_btn img {
  margin-left: 0.05rem;

  width: 0.2rem;

  height: 0.2rem;

  object-fit: contain;

  transition: all 0.35s ease;
}

.odd_icon {
  display: block;

  filter: brightness(0) saturate(100%) invert(18%) sepia(92%) saturate(2200%)
    hue-rotate(195deg) brightness(90%) contrast(95%);
}

.hover_icon {
  display: none;
}

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

.prpm_list li a:hover .hrpm_btn {
  color: var(--i_color2);
}

.prpm_list li a:hover .odd_icon {
  display: none;
}

.prpm_list li a:hover .hover_icon {
  display: block;
}

.prpm_contain {
  display: block;

  margin-top: 0.3rem;

  text-align: center;

  overflow: hidden;
}

.hrpm_pagination {
  margin-top: 0.3rem;

  padding: 0.2rem 0;
}

.prpm_contain .swiper-pagination-bullet {
  width: 0.06rem;

  height: 0.06rem;

  display: inline-block;

  margin: 0 13px !important;

  border-radius: 50%;

  outline: none;

  cursor: pointer;

  position: relative;

  background: #666666;

  opacity: 1;
}

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

.prpm_contain .hrpm_pagination .swiper-pagination-bullet-active::after {
  position: absolute;

  top: 50%;

  left: 50%;

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

  content: "";

  border-radius: 0;

  width: 0.18rem;

  height: 0.18rem;

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

  border-radius: 50%;
}

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

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

  .hrpm_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.15rem;
  }

  .hrpm_info h4 {
    font-size: 0.14rem;

    margin-bottom: 0.1rem;
  }

  .hrpm_btn {
    font-size: 0.16rem;
  }

  .hrpm_btn img {
    width: 0.16rem;

    height: 0.16rem;
  }
}

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

  .hrpm_info {
    padding: 0.1rem 0.15rem 0.2rem 0.15rem;
  }

  .hm_top {
    margin-bottom: 0.3rem;
  }

  .hrpm_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

  .hrpm_info h4 {
    font-size: 0.13rem;

    margin-bottom: 0.1rem;
  }

  .hrpm_btn {
    font-size: 0.14rem;
  }

  .hrpm_pagination {
    margin-top: 0.1rem;

    padding: 0.2rem 0;
  }

  .prpm_contain .swiper-pagination-bullet {
    width: 0.06rem;

    height: 0.06rem;
  }

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

    height: 0.12rem;
  }
}

/* ---------------------------about.html-------------------------------- */

/* -----------------aboutUs_about_company--------------------- */

.aboutUs_about_company {
  padding: 0.6rem 0;

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

.aac_maxbox {
  overflow: hidden;
}

.aacm_top {
  margin-bottom: 0.3rem;
}

.aacm_title h3 {
  margin-bottom: 0.4rem;
}

.aacm_title h4 {
  line-height: 0.28rem;
}

.golbal_map {
  position: relative;
}

.golbal_map img {
  width: 15.88rem;

  max-width: 100%;
}

.market_dian {
  position: absolute;
}

.market_dian.d1 {
  top: 29.5%;

  left: 17.5%;
}

.market_dian.d2 {
  top: 70.5%;

  left: 31.8%;
}

.market_dian.d3 {
  top: 69.5%;

  left: 56.3%;
}

.market_dian.d4 {
  top: 28.6%;

  right: 48.7%;
}

.market_dian.d5 {
  top: 25.8%;

  right: 24%;
}

.market_dian.d6 {
  bottom: 18.5%;

  right: 15.2%;
}

.market_dian .round {
  width: 0.1rem;

  height: 0.1rem;

  margin: 0 auto;

  background: var(--i_color);

  -webkit-border-radius: 50%;

  border-radius: 50%;

  position: relative;
}

.market_dian .round::before {
  opacity: 0;

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  margin: -130% 0 0 -130%;

  width: 260%;

  height: 260%;

  background: rgb(0 65 131 / 50%);

  -webkit-border-radius: 50%;

  border-radius: 50%;

  -webkit-animation: warn 1.2s ease-out;

  animation: warn 1.2s ease-out;

  animation-iteration-count: infinite;
}

@keyframes warn {
  0% {
    transform: scale(0);

    opacity: 0.5;
  }

  25% {
    transform: scale(0.15);

    opacity: 0.7;
  }

  50% {
    transform: scale(0.33);

    opacity: 0.8;
  }

  75% {
    transform: scale(0.66);

    opacity: 1;
  }

  100% {
    transform: scale(1);

    opacity: 0.2;
  }
}

.market_dian p {
  position: absolute;

  left: 50%;

  transform: translate(-50%, 0);

  margin-top: 0.1rem;

  font-size: 0.18rem;

  white-space: nowrap;

  overflow: hidden;
}

.market_dian.d4 p {
  left: initial;

  top: 50%;

  transform: translate(0, -50%);

  right: calc(100% + 0.1rem);

  margin-top: 0;
}

.market_dian.d5 p {
  bottom: calc(100% + 0.1rem);

  margin-top: 0;
}

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

    left: 17%;
  }

  .market_dian.d2 {
    top: 70.5%;

    left: 31%;
  }

  .market_dian.d3 {
    top: 69.5%;

    left: 55.1%;
  }

  .market_dian.d4 {
    top: 28.6%;

    right: 49.7%;
  }

  .market_dian.d5 {
    top: 25.8%;

    right: 25.5%;
  }

  .market_dian.d6 {
    bottom: 18.5%;

    right: 17.1%;
  }
}

@media screen and (max-width: 1600px) {
  .market_dian.d1 {
    top: 29.8%;

    left: 17.5%;
  }

  .market_dian.d2 {
    top: 70.5%;

    left: 31.9%;
  }

  .market_dian.d3 {
    top: 69.5%;

    left: 56.5%;
  }

  .market_dian.d4 {
    top: 28.6%;

    right: 47.9%;
  }

  .market_dian.d5 {
    top: 26%;

    right: 23.8%;
  }

  .market_dian.d6 {
    bottom: 18.6%;

    right: 15.2%;
  }
}

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

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

@media screen and (max-width: 1200px) {
  .market_dian p {
    font-size: 0.14rem;
  }

  .golbal_bac {
    padding: 0.6rem 0;
  }
}

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

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

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

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

    height: 0.07rem;
  }

  .aboutUs_about_company {
    padding: 0.3rem 0;
  }
}

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

.aacm_card {
  background: rgba(255, 255, 255, 0.6);
}

.aacm_card ul {
  display: flex;

  flex-wrap: wrap;
}

.aacm_card ul li {
  width: 25%;

  display: flex;

  flex-direction: column;

  align-items: center;

  padding: 0.22rem 0;

  box-sizing: border-box;

  cursor: pointer;
}

.aacm_card ul li span {
  width: 0.64rem;

  height: 0.55rem;

  margin-bottom: 0.15rem;
}

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

  height: 100%;

  object-fit: contain;

  transition: all 0.35s ease;
}

.aacm_card ul li h3 {
  font-family: "Roboto";

  font-size: 0.3rem;

  font-weight: 600;

  color: #333333;

  transition: all 0.35s ease;
}

.aacm_card ul li h3 i {
  font-size: 0.64rem;

  transition: all 0.35s ease;
}

.aacm_card ul li h4 {
  font-family: "Roboto";

  font-size: 0.14rem;

  font-weight: normal;

  color: #333333;

  transition: all 0.35s ease;
}

.aacm_card ul li:hover span img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(1500%)
    hue-rotate(190deg) brightness(90%) contrast(90%);
}

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

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

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

@media screen and (max-width: 1200px) {
  .aacm_card ul li h3 i {
    font-size: 0.5rem;
  }

  .aacm_card ul li h3 {
    font-size: 0.26rem;

    margin-bottom: 0.05rem;
  }

  .aacm_card ul li span {
    width: 0.6rem;

    height: 0.5rem;

    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 1024px) {
  .aacm_card ul li h3 i {
    font-size: 0.4rem;
  }

  .aacm_card ul li span {
    width: 0.5rem;

    height: 0.4rem;

    margin-bottom: 0.05rem;
  }
}

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

  .aacm_card ul li h3 {
    font-size: 0.2rem;
  }
}

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

  .aacm_card ul li span {
    width: 0.4rem;

    height: 0.3rem;

    margin-bottom: 0.05rem;
  }

  .aacm_card ul li h3 i {
    font-size: 0.24rem;
  }

  .aacm_card ul li h3 {
    font-size: 0.16rem;
  }

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

/* -----------------------------aboutUs_development_history------------------------ */

.aboutUs_development_history {
  padding: 0.6rem 0;
}

.adh_maxbox {
}

/* history */

.history {
  margin-top: 0.8rem;
}

.history .i_tit {
  margin-bottom: 0;
}

.history_list {
  padding: 0.2rem 0;

  position: relative;
}

.history_list::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  width: 1px;

  height: 100%;

  background: #333;
}

.history_list li {
  margin: 0.7rem 0;

  width: 100%;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  position: relative;
}

.yuan {
  position: absolute;

  left: 50%;

  transform: translate(-50%, 0);

  top: 0.4rem;

  width: 0.26rem;

  height: 0.26rem;

  background: #fff;

  box-sizing: border-box;

  border: 1px solid #000;

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.yuan::before {
  content: "";

  position: absolute;

  top: 50%;

  width: 0.36rem;

  height: 1px;

  background: #000;
}

.yuan::after {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 50%;

  height: 50%;

  background: #000;

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

.top_yuan {
  width: 100%;

  position: relative;
}

.top_yuan .yuan {
  top: -0.14rem;
}

.top_yuan .yuan::before {
  width: 0;
}

.history_list li:nth-child(odd) .yuan::before {
  left: 100%;
}

.history_list li:nth-child(even) .yuan::before {
  right: 100%;
}

.history_list .img {
  width: 43.8%;

  height: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 46%;
}

.history_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 100%;

  height: 100%;

  object-fit: cover;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.history_list .txt {
  width: 45%;
}

.history_list p {
  font-family: "Roboto";

  font-size: 0.45rem;

  font-weight: 600;

  color: #333333;
}

.history_list h5 {
  margin: 0.1rem 0 0.2rem;

  font-family: "Roboto";

  font-size: 0.3rem;

  font-weight: normal;

  color: #333333;
}

.history_list h6 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: normal;

  line-height: 0.32rem;

  color: #666666;
}

.history_list li:nth-child(even) .txt {
  order: -1;
}

.history_list li:nth-child(even) .txt {
  text-align: right;
}

.history_list li:hover .img img {
  width: 110%;

  height: 110%;
}

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

.history_list li:hover .yuan {
  border-color: var(--i_color);
}

.history_list li:hover .yuan::before,
.history_list li:hover .yuan::after {
  background: var(--i_color);
}

.history_more_btn {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  cursor: pointer;
}

.history_more_btn span {
  width: 0.68rem;

  height: 0.68rem;

  -webkit-border-radius: 50%;

  border-radius: 50%;

  background: var(--i_color2);

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;
}

.history_more_btn span img {
  width: 33.8%;

  height: 33.8%;

  object-fit: contain;
}

.history_more_btn p {
  margin-top: 0.14rem;

  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  color: #000000;
}

@media screen and (max-width: 1400px) {
  .history_list p {
    font-size: 0.4rem;
  }

  .history_list h5 {
    font-size: 0.26rem;
  }

  .history_list h6 {
    font-size: 0.18rem;

    line-height: 0.28rem;
  }
}

@media screen and (max-width: 1024px) {
  .history_list li {
    margin: 0.6rem 0;
  }

  .history_list p {
    font-size: 0.3rem;
  }

  .history_list h5 {
    font-size: 0.22rem;
  }

  .history_list .yuan {
    width: 0.18rem;

    height: 0.18rem;
  }

  .history_list .yuan::before {
    width: 0.24rem;
  }

  .history_more_btn span {
    width: 0.5rem;

    height: 0.5rem;
  }

  .history_list h6 {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }
}

@media screen and (max-width: 768px) {
  .history_list::before {
    left: 0;
  }

  .history_list li {
    box-sizing: border-box;

    margin: 0.4rem 0;

    padding-left: 0.46rem;
  }

  .history_list .yuan {
    top: 0.18rem;

    left: -0.09rem;

    transform: none;
  }

  .history_list li:nth-child(even) .yuan::before {
    right: initial;

    left: 100%;
  }

  .history_list .img {
    width: 100%;
  }

  .history_list .txt {
    order: -1;

    width: 100%;

    text-align: left !important;

    margin-bottom: 0.2rem;
  }

  .history_list p {
    font-size: 0.2rem;
  }

  .history_list h5 {
    margin: 0.1rem 0 0.14rem;

    font-size: 0.18rem;
  }

  .history_more_btn i {
    width: 0.4rem;

    height: 0.4rem;
  }

  .top_yuan .yuan {
    left: 0;
  }
}

@media screen and (max-width: 560px) {
  .history_list li:nth-child(1) {
    margin-top: 20px;
  }

  .history_list .img {
    -webkit-border-radius: 0.1rem;

    border-radius: 0.1rem;
  }

  .history_list p {
    font-size: 18px;
  }

  .history_list h5 {
    font-size: 17px;
  }

  .aboutUs_development_history {
    padding: 0.3rem 0;
  }

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

/* --------------------------------aboutUs_service_philosophy-------------------- */

.aboutUs_service_philosophy {
  padding: 0.6rem 0;

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

  position: relative;
}

.asp_bg {
  position: absolute;

  bottom: 0;

  left: 8%;

  width: 33.81%;

  height: auto;
}

.asp_bg img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.asp_maxbox {
  overflow: hidden;
}

.asp_top {
  margin-bottom: 0.5rem;
}

.aboutUs_service_philosophy {
  --li_height: 1.2rem;
}

.aboutAdv_cont {
  display: flex;

  flex-wrap: wrap;

  align-items: flex-start;
}

.aboutAdv_nav {
  width: 40%;

  box-sizing: border-box;

  padding-left: 0.3rem;

  position: relative;
}

.aboutAdv_nav .curr {
  position: absolute;

  top: 0;

  left: 0;

  margin-top: -0.1rem;

  height: 0.2rem;

  transition: all 0.5s ease;
}

.aboutAdv_nav .curr iconify-icon {
  font-size: 0.2rem;

  color: var(--i_color);
}

.aboutAdv_nav ul {
  display: flex;

  flex-wrap: wrap;

  flex-direction: column;
}

.aboutAdv_nav li {
  height: var(--li_height);

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  padding-left: 0.4rem;

  cursor: pointer;

  position: relative;

  -webkit-tap-highlight-color: transparent;

  -webkit-touch-callout: none;

  -webkit-user-select: none;

  user-select: none;
}

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

  position: absolute;

  top: 50%;

  left: 0;

  width: 0.16rem;

  height: 2px;

  background: #aaa;
}

.aboutAdv_nav p {
  font-family: "Roboto";

  font-weight: 600;

  line-height: 0.3rem;

  color: #666666;
}

.aboutAdv_nav .line {
  position: absolute;

  top: 70%;

  left: 0;

  width: 8px;

  height: calc(var(--li_height) / 2 + 10%);
}

.aboutAdv_nav .line i {
  position: absolute;

  left: 0;

  width: 100%;

  height: 1px;

  background: #ccc;
}

.aboutAdv_nav .line i:nth-child(1) {
  top: 0;
}

.aboutAdv_nav .line i:nth-child(2) {
  top: 16.66%;
}

.aboutAdv_nav .line i:nth-child(3) {
  top: 33.33%;
}

.aboutAdv_nav .line i:nth-child(4) {
  top: 49.98%;
}

.aboutAdv_nav .line i:nth-child(5) {
  top: 66.64%;
}

.aboutAdv_nav .line i:nth-child(6) {
  top: 83.33%;
}

.aboutAdv_nav .line i:nth-child(7) {
  top: 99%;
}

.aboutAdv_nav li:last-child .line {
  display: none;
}

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

  transition: all 0.5s ease;
}

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

  transition: all 0.5s ease;
}

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

  .aboutUs_service_philosophy p {
    font-size: 18px;
  }
}

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

  .aboutUs_service_philosophy {
    --li_height: 60px;
  }

  .aboutAdv_nav {
    width: 100%;
  }

  .aboutUs_service_philosophy p {
    font-size: 16px;
  }

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

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

.aboutAdv_show {
  margin-left: auto;

  width: 55.7%;
}

.aboutAdv_show dt {
  opacity: 0;

  visibility: hidden;

  height: 0;

  position: relative;

  left: 0.3rem;
}

.aboutAdv_show dt.active {
  opacity: 1;

  visibility: visible;

  height: auto;

  left: 0;

  transition: all 0.5s ease;
}

.aboutAdv_show .pic {
  width: 100%;

  aspect-ratio: 890 / 450;

  position: relative;

  overflow: hidden;
}

.aboutAdv_show .pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.aboutAdv_show .txt {
  margin-top: 0.16rem;
}

.aboutAdv_show .txt h5 {
  font-weight: bold;

  color: var(--i_color);
}

.aboutAdv_show .txt span {
  display: block;

  margin-top: 0.1rem;

  color: #666666;
}

@media screen and (max-width: 768px) {
  .aboutAdv_show {
    margin-top: 20px;

    width: 100%;
  }
}

/* ---------------------aboutUs_a_dealer----------------- */

.aboutUs_a_dealer {
  padding: 0.6rem 0;

  background: linear-gradient(
    180deg,
    rgba(244, 244, 244, 0) 33%,

    rgba(244, 244, 244, 0.9642) 100%
  );
}

.aad_maxbox {
}

.aadm_top {
  margin-bottom: 0.5rem;
}

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

  .aadm_top {
    margin-bottom: 0.3rem;
  }
}

/* --------------------------------------application.html------------------------- */

.application_maxbox {
  padding: 0.6rem 0;

  background: linear-gradient(
    to bottom,

    rgba(244, 244, 244, 0) 0%,

    #f4f4f4 100%
  );
}

.am_box {
}

.amb_top {
  margin-bottom: 0.5rem;
}

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

  .amb_top {
    margin-bottom: 0.3rem;
  }
}

/* -----------------------------------case.html----------------------------------- */

.case_mabox {
  padding: 0.6rem 0;
}

.cm_box {
}

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

.cmb_top {
  margin-bottom: 0.3rem;
}

.cmb_contain {
}

.cmbc_company_video {
  margin-bottom: 0.6rem;
}

.cmb_public_title {
  padding-left: 0.2rem;

  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: 600;

  color: #333333;

  position: relative;

  line-height: 100%;

  margin-bottom: 0.3rem;
}

.cmb_public_title::before {
  content: "";

  display: block;

  width: 0.04rem;

  height: 100%;

  background: var(--i_color);

  position: absolute;

  left: 0;

  top: 0;
}

.ccv_video {
}

.ccv_video ul {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;
}

.ccv_video ul li {
  width: 100%;
}

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

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

.ccv_video ul li a {
  display: block;

  width: 100%;

  padding: 0.18rem;

  box-sizing: border-box;

  background: #f4f4f4;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.ccv_video ul li a span {
  width: 32.5%;

  flex-shrink: 0;

  display: block;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 56%;
}

.ccv_video ul li a span::after {
  content: "";

  display: block;

  position: absolute;

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

  inset: 0;
}

.ccv_video ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.45s ease;
}

.ccv_info {
  width: 61.875%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.ccv_video h3 {
  font-family: "Roboto";

  font-size: 0.2rem;

  font-weight: 500;

  color: #333333;

  margin-bottom: 0.35rem;
}

.ccv_video h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.28rem;

  color: #333333;
}

.ccv_video ul li a span i {
  display: block;

  width: 0.74rem;

  height: 0.74rem;

  border-radius: 50%;

  cursor: pointer;

  background: url("static/images/case_company_video_icon1.webp") center
    no-repeat;

  background-size: contain;

  position: absolute;

  top: 50%;

  left: 50%;

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

  transition: all 0.6s ease;

  z-index: 1;
}

.cpv_contain {
}

.cpv_contain ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.24rem 0.4rem;
}

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

  cursor: pointer;
}

.cpv_contain ul li a {
  width: 100%;

  display: flex;

  padding: 0.1rem;

  box-sizing: border-box;

  background: #f4f4f4;

  justify-content: space-between;
}

.cpv_contain ul li a span {
  width: 35.15%;

  display: block;

  position: relative;

  flex-shrink: 0;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 60%;
}

.cpv_contain ul li a span::after {
  content: "";

  display: block;

  position: absolute;

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

  inset: 0;
}

.cpv_contain ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

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

  top: 0;

  left: 0;

  transition: all 0.45s ease;
}

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

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

.cpv_contain ul li a span i {
  display: block;

  width: 0.58rem;

  height: 0.58rem;

  border-radius: 50%;

  cursor: pointer;

  background: url("static/images/case_company_video_icon1.webp") center
    no-repeat;

  background-size: contain;

  position: absolute;

  top: 50%;

  left: 50%;

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

  transition: all 0.6s ease;

  z-index: 1;
}

.cpv_info {
  width: 60%;

  display: flex;

  align-items: center;
}

.cpv_info h4 {
  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.28rem;

  color: #333333;
}

@media screen and (max-width: 1024px) {
  .cmb_public_title {
    padding-left: 0.2rem;

    font-size: 0.2rem;

    margin-bottom: 0.2rem;
  }

  .ccv_video h3 {
    font-size: 0.18rem;

    margin-bottom: 0.1rem;
  }

  .ccv_video h4 {
    font-size: 0.16rem;

    line-height: 0.22rem;
  }

  .cpv_info h4 {
    font-size: 0.16rem;

    line-height: 0.22rem;
  }

  .cpv_contain ul li a span i {
    width: 0.35rem;

    height: 0.35rem;
  }

  .cpv_contain ul {
    gap: 0.2rem 0.2rem;
  }

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

@media screen and (max-width: 768px) {
  .cmb_public_title {
    padding-left: 0.15rem;

    font-size: 0.18rem;
  }

  .ccv_video h3 {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

  .ccv_video h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }

  .ccv_video ul li a span::before {
    padding-bottom: 66%;
  }

  .cpv_contain ul li {
    width: 100%;
  }

  .cpv_contain ul li a span i {
    width: 0.5rem;

    height: 0.5rem;
  }
}

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

    padding: 0.1rem;
  }

  .ccv_info {
    width: 100%;
  }

  .ccv_video ul li a span {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .ccv_video ul li a span::before {
    padding-bottom: 56%;
  }

  .cmb_public_title {
    font-size: 0.16rem;
  }

  .cpv_contain ul li a span i {
    width: 0.45rem;

    height: 0.45rem;
  }

  .cpv_contain ul li a {
    flex-direction: column;
  }

  .cpv_contain ul li a span {
    width: 100%;

    margin-bottom: 0.15rem;
  }

  .cpv_info {
    width: 100%;
  }

  .cpv_info h4 {
    font-size: 0.15rem;
  }

  .case_mabox {
    padding: 0.3rem 0;
  }

  .cmbc_company_video {
    margin-bottom: 0.3rem;
  }
}

.i_v_btn1::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) {
  .ccv_video ul li a span i {
    width: 0.5rem;

    height: 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  .ccv_video ul li a span i {
    width: 0.45rem;

    height: 0.45rem;
  }
}

/* ---------------------------------caseDetail.html---------------------------- */

.caseDetail_maxbox {
  padding: 0.6rem 0;
}

.cdm_box {
}

.cdmb_top {
  margin-bottom: 0.5rem;
}

.cdmb_title {
  align-items: flex-start;

  width: 40%;
}

.cdmb_title h4 {
  text-align: left;
}

.cdmb_contain {
  display: flex;

  justify-content: space-between;
}

.cdc_edit {
  width: 72.56%;
}

.cdce_article iframe {
  max-width: 100%;
}

.cdc_btn {
  display: flex;

  margin-top: 0.5rem;
}

.cdc_tab {
  width: 23%;

  background: #f4f4f4;

  padding: 0.15rem 0.15rem 0.6rem 0.15rem;

  box-sizing: border-box;
}

.cdc_tab h3 {
  font-family: "Roboto";

  font-size: 0.24rem;

  font-weight: 600;

  color: #333333;

  padding: 0 0.14rem 0.14rem 0.14rem;
}

.cdc_tab ul {
  display: flex;

  flex-direction: column;

  height: 70vh;

  overflow-y: auto;

  scrollbar-width: thin;

  scrollbar-color: var(--i_color) #fff;

  padding-right: 0.1rem;
}

/* Chrome, Edge, Safari */

.cdc_tab ul::-webkit-scrollbar {
  width: 0.02rem;

  background-color: #f4f4f4;

  border-radius: 0.15rem;
}

.cdc_tab ul::-webkit-scrollbar-thumb {
  background-color: #888;

  border-radius: 0.15rem;

  border: 2px solid #f4f4f4;
}

.cdc_tab ul::-webkit-scrollbar-thumb:hover {
  background-color: var(--i_color);
}

.cdc_tab ul li {
  cursor: pointer;
}

.cdc_tab ul li a {
  display: block;

  padding: 0.1rem;

  box-sizing: border-box;

  border-bottom: #d7d7d7 1px solid;

  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.26rem;

  color: #333333;

  transition: all 0.45s ease;

  position: relative;

  height: 100%;

  z-index: 1;

  overflow: hidden;
}

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

  display: block;

  width: 0;

  height: 100%;

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

  background: var(--i_color);

  border-bottom: transparent 1px solid;

  position: absolute;

  left: 0;

  top: 0;

  z-index: -1;

  transition: all 0.6s ease;
}

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

.cdc_tab ul li.active a {
  color: #fff;
}

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

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

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

  .cdc_tab {
    width: 100%;

    padding: 0.2rem;

    margin-bottom: 0.3rem;
  }

  .cdc_edit {
    width: 100%;
  }

  .cdc_tab ul {
    height: 30vh;
  }

  .cdc_tab h3 {
    font-size: 0.24rem;
  }

  .cdc_tab ul li a {
    padding: 0.1rem;

    font-size: 0.16rem;

    line-height: 0.24rem;
  }

  .cdmb_top {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .cdc_tab {
    padding: 0.1rem;

    margin-bottom: 0.2rem;
  }
}

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

  .cdc_tab ul li a {
    padding: 0.1rem;

    font-size: 0.14rem;

    line-height: 0.2rem;
  }

  .caseDetail_maxbox {
    padding: 0.3rem 0;
  }

  .cdmb_title {
    width: 100%;
  }
}

/* -----------------------------caseDetail_become_a_dealer------------------- */

.caseDetail_become_a_dealer {
  padding: 0.6rem 0;
}

.cdbad_maxbox {
}

.cdbad_top {
  margin-bottom: 0.5rem;
}

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

  .cdbad_top {
    margin-bottom: 0.3rem;
  }
}

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

.news_maxbox {
  padding: 0.6rem 0;

  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 24%);
}

.nm_box {
}

.nmb_top {
  margin-bottom: 0.3rem;
}

.news_tab {
  display: flex;

  justify-content: center;

  margin-bottom: 0.5rem;
}

.news_tab ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.4rem;
}

.news_tab ul li {
}

.news_tab ul li a {
  display: block;

  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #333333;

  padding: 0.17rem 0.75rem;

  background: #f4f4f4;

  position: relative;

  z-index: 0;

  transition: all 0.35s ease;
}

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

  display: block;

  height: 100%;

  width: 0;

  position: absolute;

  top: 0;

  left: 0;

  background: var(--i_color);

  transition: all 0.35s ease;

  z-index: -1;
}

.news_tab ul li.active a {
  color: #fff;
}

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

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

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

.news_contain {
}

.nc_box ul {
  display: flex;

  gap: 0.3rem;

  flex-wrap: wrap;
}

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

.nc_box ul li a {
  display: flex;

  width: 100%;

  padding: 0.1rem;

  box-sizing: border-box;

  background: #fff;

  justify-content: space-between;
}

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

.nc_box ul li a:hover .nc_info h4 i {
  color: var(--i_color);
}

.nc_box ul li a span {
  width: 32%;

  flex-shrink: 0;

  display: block;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 84%;
}

.nc_box ul li a span img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.35s ease;
}

.nc_info {
  width: 64%;
}

.nc_info h3 {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  color: #666666;

  margin-bottom: 0.1rem;

  display: block;
}

.nc_info h4 {
  padding-bottom: 0.1rem;

  border-bottom: 1px solid #999999;
}

.nc_info h4 i {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.26rem;

  display: block;

  color: #333333;

  transition: all 0.35s ease;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

.nc_info h5 {
  margin-top: 0.2rem;
}

.nc_info h5 i {
  font-family: "Roboto";

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.26rem;

  color: #666666;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

@media screen and (max-width: 1200px) {
  .nc_info h4 i {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }

  .nc_info h5 {
    margin-top: 0.1rem;
  }

  .nc_info h5 i {
    font-size: 0.14rem;

    line-height: 0.24rem;
  }
}

@media screen and (max-width: 1024px) {
  .news_tab ul li a {
    padding: 0.1rem 0.5rem;
  }

  .nc_box ul {
    gap: 0.2rem;
  }

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

  .nc_info h4 i {
    line-height: 0.24rem;
  }

  .nc_info h5 i {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

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

@media screen and (max-width: 560px) {
  .news_tab ul li a {
    line-height: 0.16rem;

    padding: 0.1rem 0.3rem;
  }

  .news_tab ul {
    gap: 0.2rem;
  }

  .news_maxbox {
    padding: 0.3rem 0;
  }

  .news_tab {
    margin-bottom: 0.3rem;
  }

  .nc_box ul li a {
    flex-direction: column;
  }

  .nc_box ul li a span {
    width: 100%;

    margin-bottom: 0.1rem;
  }

  .nc_box ul li a span::before {
    padding-bottom: 61%;
  }

  .nc_info {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .news_tab ul li a {
    font-size: 0.14rem;

    padding: 0.1rem 0.15rem;
  }

  .news_tab ul {
    gap: 0.1rem;
  }
}

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

.contactus_maxbox {
  padding: 0.6rem 0;
}

.cum_box {
}

.cumb_box {
}

.cumb_top {
  margin-bottom: 0.5rem;
}

.cumb_contain {
}

.cumb_list {
  position: relative;

  overflow: hidden;

  padding: 0.5rem;
}

.cumb_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  align-items: stretch;
}

.cumb_list li {
  flex-shrink: 0;

  position: relative;

  cursor: pointer;

  transition: all 0.6s ease;

  height: auto;
}

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

  display: block;

  width: 0;

  height: 100%;

  background: #fff;

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.45s ease;

  z-index: -1;
}

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

  display: block;

  width: 0;

  height: 0.03rem;

  background: var(--i_color);

  position: absolute;

  top: 0;

  left: 0;

  transition: all 0.65s ease;

  z-index: 1;
}

.cl_info {
  width: 100%;

  padding: 0.4rem 0.25rem 0.25rem 0.4rem;

  box-sizing: border-box;

  background: #f0f0f0;

  z-index: 1;

  position: relative;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.cl_info h3 {
  font-family: "Roboto";

  font-size: 0.18rem;

  line-height: 150%;

  color: #666666;

  margin-bottom: 0.2rem;
}

.cl_info h4 {
  font-family: "Roboto";

  font-size: 0.22rem;

  font-weight: 600;

  line-height: 150%;

  color: #333333;

  margin-bottom: 0.2rem;

  word-break: break-all;
}

.cl_info h5 {
  display: flex;

  justify-content: flex-end;
}

.cl_info h5 i {
  width: 0.5rem;

  height: 0.5rem;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #fff;

  border-radius: 50%;
}

.cl_info h5 i img {
  width: 0.35rem;

  height: 0.35rem;

  object-fit: contain;
}

.cl_hoverbg {
  position: absolute;

  top: 0;

  left: 0;

  width: auto;

  height: 100%;

  z-index: 0;
}

.cl_hoverbg img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0;
}

.cumb_list li:hover::before {
  width: 100%;
}

.cumb_list li:hover {
  box-shadow:
    0 0 0.4rem rgba(0, 0, 0, 0.12),
    0 0 0.1rem rgba(0, 0, 0, 0.08);
}

.cumb_list li:hover .cl_info {
  background: transparent;
}

.cumb_list li:hover .cl_hoverbg img {
  opacity: 1;
}

.cumb_list li:hover h5 i {
  background: var(--i_color);
}

.cumb_list li:hover h5 i img {
  filter: brightness(0) invert(1);
}

.cumb_list li:hover::after {
  width: 100%;
}

.cl_pagination {
  display: block;

  margin-top: 0.3rem;

  text-align: center;
}

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

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

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

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

  .cl_info h4 {
    font-size: 0.2rem;

    margin-bottom: 0.2rem;
  }

  .cl_info h5 i {
    width: 0.35rem;

    height: 0.35rem;
  }

  .cl_info h5 i img {
    width: 0.2rem;

    height: 0.2rem;
  }
}

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

  .cumb_top {
    margin-bottom: 0.2rem;
  }

  .cl_info h4 {
    font-size: 0.18rem;

    margin-bottom: 0.2rem;
  }
}

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

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

  .contactus_maxbox {
    padding: 0.3rem 0;
  }
}

/* ----------------------------contact_map_and_form--------------------------- */

.contact_map_and_form {
  background: #f0f0f0;

  padding: 0.6rem 0;
}

.cmaf_maxbox {
  background: #fff;

  padding: 0.54rem 0.8rem 0.43rem 0.8rem;

  box-sizing: border-box;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.cfam_map {
  width: 46.6%;

  flex-shrink: 0;
}

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

.contact_map {
  height: 5.8rem;

  margin-bottom: 0.2rem;
}

.cmb_address {
  display: flex;
}

.cmb_address span {
  width: 0.56rem;

  height: 0.56rem;

  flex-shrink: 0;

  display: flex;

  align-items: center;
}

.cmb_address span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.cmb_address h3 {
  word-break: break-all;

  font-family: "Roboto";

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.28rem;

  color: #333333;
}

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

  height: 100% !important;
}

.cfam_form {
  width: 50%;
}

.cfamf_top {
  margin-bottom: 0.3rem;
}

.cfamf_title {
  align-items: flex-start;
}

.cfamf_title h3 {
  text-align: left;
}

.cfamf_title h4 {
  text-align: left;
}

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

  .cmaf_maxbox {
    flex-direction: column-reverse;
  }

  .cfam_form {
    width: 100%;

    margin-bottom: 0.3rem;
  }

  .cfam_map {
    width: 100%;
  }

  .cmaf_maxbox {
    padding: 0.3rem;
  }
}

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

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

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

  .contact_map_bac {
    margin-top: 0rem;
  }

  .cmaf_maxbox {
    padding: 0.2rem;
  }

  .cmb_address span {
    width: 0.35rem;

    height: 0.35rem;
  }

  .contact_map_and_form {
    padding: 0.3rem 0;
  }
}

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

/* ---------------------home表单-------------- */

#wpforms-214 {
  --wpforms_input_height: 50px;

  --wpforms_textarea_height: 120px;

  --wpforms_input_font_size: 16px;

  width: 100%;
}

#wpforms-214 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

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

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: transparent;
}

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

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 0px !important;

  margin: 0 0;

  border: 1px solid transparent;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #fff;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

  background: transparent;

  border-bottom: #c4c4c4 1px solid;

  border-radius: 0;
}

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

  background: transparent;

  border-bottom: #c4c4c4 1px solid;

  border-radius: 0;
}

#wpforms-214-field_1::placeholder,
#wpforms-214-field_2::placeholder,
#wpforms-214-field_3::placeholder,
#wpforms-214-field_4::placeholder,
#wpforms-214-field_5::placeholder {
  color: #fff;

  opacity: 1;
}

#wpforms-214 input::placeholder,
#wpforms-214 textarea::placeholder {
  color: #fff;

  font-family: "Montserrat";

  font-size: 0.16rem;

  line-height: 1.4;

  font-family: "Montserrat";
}

#wpforms-214 .wpforms-form .wpforms-field-label {
  display: block;

  font-size: 20px;

  float: none;

  line-height: 1.3;

  margin: 0 0 4px 0;

  padding: 0;

  word-break: break-word;

  word-wrap: break-word;

  font-weight: 100;

  color: #333;
}

#wpforms-214 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-214 .wpforms-field-container textarea:hover,
#wpforms-214 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-214 .wpforms-field-container textarea:focus {
  /* border: transparent 1px solid; */

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: -10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

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

/* 提交按钮样式 */

#wpforms-214 .wpforms-submit-container {
  width: 15%;

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;

  margin-top: 0.6rem;
}

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

  height: 0.52rem;

  font-size: 0.18rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color2);

  border: none;

  font-family: "Roboto";
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

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

  color: var(--i_color2);

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

  #wpforms-214 .wpforms-submit-container {
    margin-top: 0.3rem;
  }

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

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

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

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

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

  #wpforms-214 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

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

    font-size: 0.16rem;
  }

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

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

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

.hide {
  display: none !important;
}

/* --------------------------------aboutUs表单--------------------------------- */

#wpforms-217 {
  --wpforms_input_height: 50px;

  --wpforms_textarea_height: 120px;

  --wpforms_input_font_size: 16px;

  width: 100%;
}

#wpforms-217 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

#wpforms-217 .wpforms-field-container > .wpforms-field {
  width: 49%;

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: transparent;
}

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

#wpforms-217-field_1::placeholder,
#wpforms-217-field_2::placeholder,
#wpforms-217-field_3::placeholder,
#wpforms-217-field_4::placeholder,
#wpforms-217-field_5::placeholder,
#wpforms-217-field_6::placeholder,
#wpforms-217-field_7::placeholder {
  color: #666;

  opacity: 1;
}

#wpforms-217 .wpforms-field-container .wpforms-field > input,
#wpforms-217 .wpforms-field-container textarea {
  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;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

  background: transparent;

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

  border-radius: 0;
}

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

  background: transparent;

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

  border-radius: 0;
}

#wpforms-217 input::placeholder,
#wpforms-217 textarea::placeholder,
#wpforms-217 select::placeholder {
  color: #666;

  font-family: "Roboto";

  font-size: 0.16rem;

  line-height: 1.4;
}

#wpforms-217 select {
  color: #666; /* 默认颜色 */
}

#wpforms-217 select:valid {
  color: inherit; /* 选中后恢复原来的颜色 */
}

#wpforms-217 .wpforms-form .wpforms-field-label {
  display: block;

  font-size: 20px;

  float: none;

  line-height: 1.3;

  margin: 0 0 4px 0;

  padding: 0;

  word-break: break-word;

  word-wrap: break-word;

  font-weight: 100;

  color: #333;
}

#wpforms-217 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-217 .wpforms-field-container textarea:hover,
#wpforms-217 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-217 .wpforms-field-container textarea:focus {
  /* border: transparent 1px solid; */

  outline: none;

  box-shadow: none;
}

#wpforms-217 select {
  padding-inline-start: 20px;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

#wpforms-217-field_7-container {
  width: 100% !important;
}

#wpforms-217 .wpforms-form select.wpforms-field-medium {
  max-width: 100% !important;
}

/* 提交按钮样式 */

#wpforms-217 .wpforms-submit-container {
  width: 15%;

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;

  margin-top: 0.6rem;
}

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

  height: 0.65rem;

  font-size: 0.2rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color2);

  border: none;

  font-family: "Roboto";
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

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

  color: var(--i_color2);

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

  #wpforms-217 .wpforms-submit-container button {
    height: 0.5rem;

    font-size: 0.2rem;
  }
}

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

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

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

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

  #wpforms-217 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

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

    font-size: 0.16rem;
  }

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

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

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

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

/* --------------------------------案例详情表单--------------------------------- */

#wpforms-220 {
  --wpforms_input_height: 50px;

  --wpforms_textarea_height: 120px;

  --wpforms_input_font_size: 16px;

  width: 100%;
}

#wpforms-220 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

#wpforms-220 .wpforms-field-container > .wpforms-field {
  width: 49%;

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: transparent;
}

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

#wpforms-220-field_1::placeholder,
#wpforms-220-field_2::placeholder,
#wpforms-220-field_3::placeholder,
#wpforms-220-field_4::placeholder,
#wpforms-220-field_5::placeholder,
#wpforms-220-field_6::placeholder,
#wpforms-220-field_7::placeholder {
  color: #666;

  opacity: 1;
}

#wpforms-220 .wpforms-field-container .wpforms-field > input,
#wpforms-220 .wpforms-field-container textarea {
  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;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

  background: transparent;

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

  border-radius: 0;
}

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

  background: transparent;

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

  border-radius: 0;
}

#wpforms-220 input::placeholder,
#wpforms-220 textarea::placeholder,
#wpforms-220 select::placeholder {
  color: #666;

  font-family: "Roboto";

  font-size: 0.16rem;

  line-height: 1.4;
}

#wpforms-220 select {
  color: #666; /* 默认颜色 */
}

#wpforms-220 select:valid {
  color: inherit; /* 选中后恢复原来的颜色 */
}

#wpforms-220 .wpforms-form .wpforms-field-label {
  display: block;

  font-size: 20px;

  float: none;

  line-height: 1.3;

  margin: 0 0 4px 0;

  padding: 0;

  word-break: break-word;

  word-wrap: break-word;

  font-weight: 100;

  color: #333;
}

#wpforms-220 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-220 .wpforms-field-container textarea:hover,
#wpforms-220 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-220 .wpforms-field-container textarea:focus {
  /* border: transparent 1px solid; */

  outline: none;

  box-shadow: none;
}

#wpforms-220 select {
  padding-inline-start: 20px;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

#wpforms-220-field_7-container {
  width: 100% !important;
}

#wpforms-220 .wpforms-form select.wpforms-field-medium {
  max-width: 100% !important;
}

/* 提交按钮样式 */

#wpforms-220 .wpforms-submit-container {
  width: 15%;

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;

  margin-top: 0.6rem;
}

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

  height: 0.65rem;

  font-size: 0.2rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color2);

  border: none;

  font-family: "Roboto";
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

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

  color: var(--i_color2);

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

  #wpforms-220 .wpforms-submit-container button {
    height: 0.5rem;

    font-size: 0.2rem;
  }
}

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

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

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

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

  #wpforms-220 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

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

    font-size: 0.16rem;
  }

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

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

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

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

/* ---------------------contactUs表单-------------- */

#wpforms-224 {
  --wpforms_input_height: 50px;

  --wpforms_textarea_height: 120px;

  --wpforms_input_font_size: 16px;

  width: 100%;
}

#wpforms-224 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

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

  clear: both;
}

/* 字段样式 */

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

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;

  background: transparent;
}

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

#wpforms-224-field_1::placeholder,
#wpforms-224-field_2::placeholder,
#wpforms-224-field_3::placeholder,
#wpforms-224-field_4::placeholder,
#wpforms-224-field_5::placeholder {
  color: #999999;

  opacity: 1;
}

#wpforms-224 .wpforms-field-container .wpforms-field > input,
#wpforms-224 .wpforms-field-container textarea {
  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;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

  background: transparent;

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

  border-radius: 0;
}

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

  background: transparent;

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

  border-radius: 0;
}

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

  font-size: 0.16rem;

  line-height: 1.4;

  font-family: "Roboto";
}

#wpforms-224 .wpforms-form .wpforms-field-label {
  display: block;

  font-size: 20px;

  float: none;

  line-height: 1.3;

  margin: 0 0 4px 0;

  padding: 0;

  word-break: break-word;

  word-wrap: break-word;

  font-weight: 100;

  color: #333;
}

#wpforms-224 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-224 .wpforms-field-container textarea:hover,
#wpforms-224 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-224 .wpforms-field-container textarea:focus {
  /* border: transparent 1px solid; */

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;

  margin-top: 0.3rem;
}

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

  height: 0.65rem;

  font-size: 0.2rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color2);

  border: none;

  font-family: "Roboto";
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

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

  color: var(--i_color2);

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

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

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

  #wpforms-224 .wpforms-submit-container {
    margin-top: 0.3rem;
  }
}

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

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

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

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

  #wpforms-224 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

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

    font-size: 0.16rem;
  }

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

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

@media screen and (max-width: 425px) {
}
.viewer-backdrop {
  background-color: rgba(0, 0, 0, 0.65) !important;
}
