@charset "utf-8";

:root {
  --i_color: #fe6f07;

  /* 全局颜色 */

  --i_color2: #fff3ea;

  /* 副颜色 */

  --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: 94vw;

  max-width: 1600px;

  margin-left: auto;

  margin-right: auto;
}

.wrap_l {
  display: block;

  box-sizing: border-box;

  padding-left: 8.35%;
}

.wrap02 {
  width: 1500px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

.wrap03 {
  width: 1559px;

  max-width: 94vw;

  margin-left: auto;

  margin-right: auto;
}

.wrap_h {
  width: 94vw;

  max-width: 1520px;

  margin-left: 12.5%;

  padding-right: 8.33%;
}

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

    max-width: none;
  }
}

@media screen and (max-width: 1440px) {
  .wrap_h {
    width: auto;

    max-width: 1520px;

    margin-left: 12.5%;

    padding-right: 8.33%;
  }

  .wrap_l {
    padding-left: 3%;
  }
}

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

  .wrap_h {
    padding-right: 2%;
  }
}

@media screen and (max-width: 560px) {
  .wrap_h {
    margin-left: 25%;
  }

  .wrap_l {
    padding-left: 0%;
  }
}

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

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

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

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

.public_btn {
  width: fit-content;
}

.public_btn a {
  font-size: 0.18rem;

  padding: 0.1rem 0.21rem 0.1rem 0.23rem;

  box-sizing: border-box;

  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  display: flex;

  align-items: center;

  width: fit-content;

  color: #fff;

  border-radius: 0.25rem;

  position: relative;

  z-index: 1;

  overflow: hidden;

  border: transparent 1px solid;

  background-clip: padding-box;
}

.public_btn a img {
  margin-left: 0.15rem;

  width: 0.16rem;

  height: 0.16rem;

  object-fit: contain;
}

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

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

.public_btn a:after {
  content: "";

  background: white;

  position: absolute;

  z-index: -1;

  left: -20%;

  right: -20%;

  top: 0;

  bottom: 0;

  transform: skewX(-45deg) scale(0, 1);

  transition: all 0.5s;
}

.public_btn a:hover:after {
  transform: skewX(-45deg) scale(1, 1);

  -webkit-transition: all 0.5s;

  transition: all 0.5s;
}

.public_btn a:hover img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(85%) saturate(3500%)
    hue-rotate(345deg);
}

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

    padding: 0.1rem 0.18rem 0.1rem 0.19rem;
  }
}

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

    padding: 0.08rem 0.15rem 0.08rem 0.15rem;
  }
}

/* -------------------------------------------public_btn_noA------------------------------------ */

/* 按钮本体 */

.public_btn_noA {
  font-size: 0.18rem;

  padding: 0.11rem 0.21rem 0.11rem 0.23rem;

  box-sizing: border-box;

  display: inline-flex;

  align-items: center;

  width: fit-content;

  background: transparent;

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

  border-radius: 0.25rem;

  color: var(--i_color);

  cursor: pointer;

  position: relative;

  z-index: 1;

  overflow: hidden;

  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}

/* 图标 */

.public_btn_noA img {
  margin-left: 0.15rem;

  transition: filter 0.4s ease;

  filter: brightness(0) saturate(100%) invert(56%) sepia(85%) saturate(3500%);
}

/* 渐变背景层（默认隐藏） */

.public_btn_noA::after {
  content: "";

  position: absolute;

  z-index: -1;

  top: 0;

  bottom: 0;

  left: -20%;

  right: -20%;

  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  transform: skewX(-45deg) scale(0, 1);

  transition: transform 0.5s ease;
}

/* Hover 状态 */

.public_btn_noA:hover {
  color: #fff;

  border-color: transparent;
}

.public_btn_noA:hover::after {
  transform: skewX(-45deg) scale(1, 1);
}

/* Hover 图标变白 */

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

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

    padding: 0.1rem 0.18rem 0.1rem 0.19rem;
  }
}

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

    padding: 0.08rem 0.15rem 0.08rem 0.15rem;
  }
}

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

    padding: 0.05rem 0.1rem 0.05rem 0.1rem;
  }

  .public_btn_noA img {
    width: 0.06rem;

    height: 0.1rem;
  }
}

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

.public_title {
}

.public_title h3 {
  font-family: Arial;

  font-size: 0.4rem;

  font-weight: bold;

  line-height: 0.55rem;

  text-align: center;

  text-transform: capitalize;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #333333;

  padding-bottom: 0.15rem;

  position: relative;

  margin-bottom: 0.2rem;
}

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

  display: block;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 0.8rem;

  height: 0.03rem;

  background-color: var(--i_color);

  position: absolute;

  border-radius: 0.02rem;
}

.public_title h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  text-align: center;

  letter-spacing: 0em;

  color: #666666;
}

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

    line-height: 0.5rem;

    padding-bottom: 0.1rem;

    margin-bottom: 0.15rem;
  }

  .public_title h4 {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }
}

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

    line-height: 0.4rem;
  }
}

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

    line-height: 0.3rem;
  }

  .public_title h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

/* ----------------------------------------public_white_title----------------------------- */

.public_white_title h3 {
  color: #fff;
}

.public_white_title h4 {
  color: #fff;
}

/* --------------------------------------------public_left---------------------------------- */

.public_left h3 {
  text-align: left !important;
}

.public_left h3::before {
  left: 0 !important;

  transform: translateX(0) !important;
}

.public_left h4 {
  text-align: left !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;

  position: relative;
}

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  background-color: #202020;

  position: relative;
}

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

	.top_cont{background: #373737;}

} */

/* logo */

.logo {
  display: -webkit-flex;

  display: flex;

  align-items: center;

  height: 100%;

  position: absolute;

  left: 4%;
}

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

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

  .top_cont .top {
    background-color: #fff;
  }
}

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

/* 导航 */

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

    display: -webkit-flex;

    display: flex;

    flex-wrap: nowrap;

    z-index: 2014;

    background-color: #202020;
  }

  .i_nav > li {
    position: relative;
  }

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

    position: absolute;

    left: 50%;

    bottom: 0rem;

    width: 0;

    height: 3px;

    transform: translateX(-50%);

    background: var(--i_color);

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

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

    position: absolute;

    right: 0;

    top: 50%;

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

    height: 30%;

    width: 1px;

    background-color: #d3d3d3;
  }

  .i_nav > li:last-child::after {
    display: none;
  }

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

  .i_nav > li > a {
    display: block;

    font-size: 0.18rem;

    color: #fff;

    line-height: var(--top_h);

    white-space: nowrap;

    box-sizing: border-box;

    padding: 0 0.6rem;

    font-weight: bold;
  }

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

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

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    min-width: 1.6rem;

    background: var(--i_color2);

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

    font-size: 0;
  }

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

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

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

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

    padding: 0 0.16rem;

    font-size: 0.15rem;

    color: #333;

    line-height: 0.36rem;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    position: relative;
  }

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

    color: #fff;
  }

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

    top: 0;

    left: 100%;

    background: #fff;

    min-width: 1.4rem;

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

  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: #979797;
  }

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

    color: #333;
  }

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

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

    padding: 0 0.3rem;
  }

  /* .i_nav {

    margin-left: 1rem;

  } */
}

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

    left: 0;

    width: 100%;

    width: 100vw;

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

    background: #fff;

    overflow-y: auto;

    z-index: 2;

    margin-left: 0;
  }

  /*滚动条*/

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

    height: 8px;
  }

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

    background: #555;
  }

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

    border-radius: 0;

    background: #f1f1f1;
  }

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

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

    position: relative;
  }

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

    position: absolute;

    top: 0;

    right: 0;

    width: 0.44rem;

    height: 0.44rem;

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

    background-size: 0.24rem;

    -webkit-transition: all 0.5s ease;

    transition: all 0.5s ease;
  }

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

    background-size: 0.24rem;
  }

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

    font-size: 0.16rem;

    color: #222;

    line-height: 0.44rem;

    text-transform: uppercase;
  }

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

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

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

    font-size: 16px;

    color: #555;

    line-height: 0.4rem;

    position: relative;
  }

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

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

	} */

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

    top: 0;

    right: 0;

    width: 0.4rem;

    height: 0.4rem;

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

    background-size: 0.16rem;
  }

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

    background-size: 0.16rem;
  }

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

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

    font-size: 15px;

    color: #888;

    line-height: 0.36rem;

    position: relative;
  }

  .i_nav a {
    display: block;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
  }
}

/* 移动端导航按钮 */

.nav_menu {
  /* position: absolute;

	right: 0;

	top: 50%;

	transform: translateY(-50%); */

  position: relative;

  width: 22px;

  height: 16px;

  display: none;

  cursor: pointer;
}

.nav_menu i {
  display: block;

  width: 100%;

  height: 3px;

  position: absolute;

  top: 50%;

  margin-top: -2px;

  background: var(--i_color);

  border-radius: 0.1rem;

  transition: 0.5s;
}

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

  width: 100%;

  height: 3px;

  background: var(--i_color);

  position: absolute;

  left: 0;

  border-radius: 0.1rem;

  transition: 0.5s;
}

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

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

  top: 50%;

  margin-top: -2px;
}

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

  top: 50%;

  margin-top: -2px;
}

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

/* 导航下拉 */

.nav_dropdown {
  position: fixed;

  top: var(--top_h);

  left: 0;

  width: 100%;

  background: #fff;

  z-index: 2013;
}

.nav_dropdown_item {
  display: none;

  padding: 0.4rem 0;
}

.nav_dropdown_list {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  justify-content: center;

  gap: 0 3%;
}

.nav_dropdown_list dt {
  width: 100%;

  max-width: 3.8rem;
}

.nav_p_cat_name a {
  font-size: 0.2rem;

  color: var(--i_color);

  font-weight: 900;
}

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

.nav_dropdown_list li {
  position: relative;

  padding-left: 0.24rem;
}

.nav_dropdown_list li::before {
  opacity: 0.5;

  content: "";

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  left: 0;

  width: 0.2rem;

  height: 0.2rem;

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

  background-size: contain;
}

.nav_dropdown_list li a {
  display: block;

  padding: 0.06rem 0;

  font-size: 0.15rem;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

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

  color: var(--i_color);
}

.top_r {
  --size: 0.18rem;
}

.top_r {
  margin-left: auto;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

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

.segmentation {
  width: 1px;

  height: 20px;

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

  margin: 0 0.17rem;
}

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

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

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

.top_search_ico,
.top_language_btn {
  width: 0.4rem;

  height: 0.4rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

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

.top_search_ico iconify-icon,
.top_language_btn iconify-icon {
  font-size: var(--size);

  color: #fff;

  cursor: pointer;
}

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

.top_language {
  position: relative;
}

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

  gap: 0 8%;

  position: relative;

  cursor: pointer;
}

.top_language_btn::before {
  content: "";

  position: absolute;

  top: 44%;

  right: 0;

  width: 0;

  height: 0;

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;

  border-top: 6px solid #777;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  display: none;
}

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

  transform: rotate(-180deg);

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

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

.language_list {
  opacity: 0;

  visibility: hidden;

  position: absolute;

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

  -webkit-border-radius: 50%;

  border-radius: 50%;
}

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

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

@media screen and (max-width: 1024px) {
  .top_search_ico iconify-icon,
  .top_language_btn iconify-icon {
    color: #333;
  }
}

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

/* search */

.top_search {
  --search_height: 0.38rem;
}

.top_search {
  visibility: hidden;

  opacity: 0;

  position: fixed;

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

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

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

  padding: 0.73rem 0;
}

.footer_topMaxBox ul {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer_topMaxBox ul li.ft_firstli {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #ffffff;

  width: 75.61%;
}

.footer_topMaxBox ul li.ft_iconli {
  display: flex;

  gap: 0.35rem;
}

.footer_topMaxBox ul li.ft_iconli a iconify-icon {
  font-size: 0.29rem;
}

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

.footer_lastbox {
  background: url(https://lingjuimg.com/wp-content/uploads/HaoMin/2026/02/footer_laster_bg.webp)
    no-repeat center/contain;

  padding: 0.47rem 0 0 0;

  position: relative;
}

/* 中间 */

.footer_centerMaxBox {
  padding: 0 0 0.8rem 0;
}

.footer_centerMaxBox > ul {
  display: flex;

  gap: 1rem;
}

.footer_centerMaxBox > ul > li {
  min-width: 0;
}

.footer_centerMaxBox > ul > li:first-child {
  flex: 1.5;
}

.footer_centerMaxBox > ul > li:nth-of-type(2),
.footer_centerMaxBox > ul > li:nth-of-type(3),
.footer_centerMaxBox > ul > li:nth-of-type(4),
.footer_centerMaxBox > ul > li:nth-of-type(5) {
  flex: 1;
}

.footer_centerMaxBox > ul > li span {
  width: 1.76rem;

  height: 1.26rem;

  display: block;

  margin-bottom: 0.2rem;
}

.footer_centerMaxBox > ul > li span img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}
.ft_medeiabox {
  display: flex;
}
.ft_medeiabox i {
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 0.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ft_medeiabox i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ============================================================== */
.odi_infobox {
  display: flex;
}
.odii_ul {
  width: 50%;
}
.odii_uls {
  width: 50%;
  display: flex;
  flex-direction: row !important;
  list-style: none;
}
.odii_uls li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.odii_uls li {
  font-size: 0.16rem;
  font-family: Arial;
}
.odii_ul li span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* 第一个li */

.fc_infoUl {
  display: flex;

  flex-direction: column;

  gap: 0.15rem;
  margin-bottom: 0.2rem;
}

.fc_infoUl li a {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 0.24rem;

  color: #333333;

  word-break: break-all;
}

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

  text-decoration: underline;
}

/* 第二个 */

.footer_centerMaxBox > ul > li h3 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.3rem;
}

.tc_menu_ul {
  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.tc_menu_ul li a {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  color: #333333;
}

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

  text-decoration: underline;
}

.footer_bottomMaxBox {
  padding: 0.28rem 0 0.23rem 0;

  background: #202020;

  color: #fff;

  display: flex;

  align-items: center;

  font-size: 0.16rem;

  font-family: Arial;

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

.footer_bottomMaxBox .wrap a {
  color: #fff;

  cursor: pointer;
}

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

.tc_lastinfo_ul {
  padding-top: 0.2rem;

  display: flex;

  flex-direction: column;

  gap: 0.2rem;
}

.tc_lastinfo_ul li a {
  font-family: Arial;

  line-height: 0.32rem;

  color: #333333;

  font-size: 0.18rem;
}

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

  text-decoration: underline;
}

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

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

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

  .footer_topMaxBox ul li.ft_firstli {
    font-size: 0.2rem;

    line-height: 0.3rem;
  }

  .footer_centerMaxBox > ul > li:first-child {
    flex: 1;
  }

  .footer_centerMaxBox > ul > li:nth-of-type(2),
  .footer_centerMaxBox > ul > li:nth-of-type(3),
  .footer_centerMaxBox > ul > li:nth-of-type(4),
  .footer_centerMaxBox > ul > li:nth-of-type(5) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer_topMaxBox ul li.ft_firstli {
    font-size: 0.18rem;

    line-height: 0.28rem;
  }

  .footer_topMaxBox ul li.ft_iconli {
    gap: 0.2rem;
  }

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

  .footer_centerMaxBox > ul > li span {
    width: 1.3rem;

    height: 1rem;
  }

  .footer_lastbox {
    padding: 0.2rem 0 0 0;
  }

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

  .footer_centerMaxBox > ul > li:first-child {
    flex: 1.5;
  }

  .footer_centerMaxBox > ul > li:last-child {
    flex: 1;
  }

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

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

    padding: 0.1rem 0;
  }

  .footer_topMaxBox ul {
    display: block;
  }

  .footer_topMaxBox ul li.ft_firstli {
    width: 100%;

    font-size: 0.16rem;

    line-height: 0.28rem;

    margin-bottom: 0.2rem;
  }

  .footer_topMaxBox {
    padding: 0.2rem 0;
  }

  .footer_topMaxBox ul li.ft_iconli {
    display: flex;

    justify-content: flex-end;
  }

  .footer_centerMaxBox > ul > li:last-child {
    display: none;
  }

  .footer_centerMaxBox > ul > li span {
    width: 1rem;

    height: 1rem;
  }

  .footer_lastbox {
    background: none;
  }

  .odi_infobox {
    display: flex;
    flex-direction: column;
  }
  .fc_infoUl {
    width: 100%;
  }
}

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

  /* 设置比例 */

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

  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  text-align: center;

  width: 71.45%;
}

.b_text1_text1 {
  font-size: 0.5rem;

  font-weight: bold;

  color: #ffffff;

  line-height: 0.64rem;

  font-family: Arial;
}

.b_text1_text2 {
  font-size: 0.26rem;

  line-height: 0.32rem;

  color: #ffffff;

  font-family: Arial;
}

.b_text1_btn {
  margin-top: 0.4rem;

  display: flex;

  justify-content: center;
}

.b_text2 {
  position: absolute;

  top: 27%;

  right: 0;

  z-index: 3;

  text-align: left;

  width: 49.47%;
}

.b_text2_box {
  background: linear-gradient(270deg, #f46804 0%, rgba(244, 104, 4, 0) 94%);

  padding: 0.35rem 15% 0.35rem 0;

  box-sizing: border-box;

  margin-bottom: 0.25rem;

  display: flex;

  flex-direction: column;
}

.b_text2_text1 {
  font-family: Arial;

  font-size: 0.5rem;

  font-weight: bold;

  line-height: 0.6rem;

  text-transform: uppercase;

  letter-spacing: 0em;

  color: #ffffff;

  margin-bottom: 0.1rem;
}

.b_text2_text2 {
  font-family: Arial;

  font-size: 0.26rem;

  font-weight: bold;

  line-height: 0.32rem;

  text-align: right;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #ffffff;

  margin-bottom: 0.1rem;

  width: 60%;

  align-self: flex-end;
}

.b_text2_btn {
  display: flex;

  justify-content: flex-end;

  padding: 0 15% 0 0;
}

.b_text3 {
  position: absolute;

  top: 19.2%;

  left: 8%;

  width: 28.5%;
}

.b_text3_text1 {
  font-family: Arial;

  font-size: 0.5rem;

  font-weight: bold;

  line-height: 0.6rem;

  text-transform: uppercase;

  letter-spacing: 0em;

  text-align: left;

  color: #ffffff;

  background: linear-gradient(180deg, rgba(244, 104, 4, 0) 0%, #f46804 100%);

  padding: 0.24rem;

  margin-bottom: 0.25rem;
}

.b_text3_text2 {
  font-family: Arial;

  font-size: 0.26rem;

  font-weight: bold;

  line-height: 0.32rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #ffffff;

  margin-bottom: 0.9rem;
}

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

  .b_text2_text1 {
    font-size: 0.43rem;
  }

  .b_text2_text2 {
    font-size: 0.24rem;
  }

  .b_text3 {
    position: absolute;

    top: 19.2%;

    left: 8%;

    width: 29.5%;
  }

  .b_text3_text1 {
    font-size: 0.45rem;

    line-height: 0.5rem;
  }

  .b_text3_text2 {
    font-size: 0.24rem;
  }
}

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

  .b_text1_text2 {
    font-size: 0.24rem;
  }

  .b_text2_text1 {
    font-size: 0.4rem;
  }

  .b_text2_text2 {
    font-size: 0.22rem;
  }

  .b_text3_text1 {
    font-size: 0.4rem;
  }

  .b_text3_text2 {
    font-size: 0.24rem;

    margin-bottom: 0.5rem;
  }
}

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

    line-height: 0.54rem;
  }

  .b_text1_text2 {
    font-size: 0.2rem;
  }

  .b_text1 {
    top: 9%;
  }

  .b_text1_btn {
    margin-top: 0.3rem;
  }

  .b_text2_text1 {
    font-size: 0.35rem;
  }

  .b_text2_text2 {
    font-size: 0.2rem;
  }

  .b_text3_text1 {
    font-size: 0.35rem;
  }

  .b_text3_text2 {
    font-size: 0.2rem;
  }
}

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

    line-height: 0.4rem;
  }

  .b_text1_text2 {
    font-size: 0.18rem;
  }

  .b_text2 {
    top: 16%;
  }

  .b_text2_box {
    padding: 0.35rem 15% 0.35rem 0;

    margin-bottom: 0.2rem;
  }

  .b_text2_text1 {
    font-size: 0.28rem;

    line-height: 0.4rem;
  }

  .b_text2_text2 {
    font-size: 0.18rem;

    line-height: 0.26rem;

    width: 71%;
  }

  .b_text3 {
    width: 37%;

    top: 10%;
  }

  .b_text3_text1 {
    font-size: 0.28rem;

    line-height: 0.4rem;

    text-align: center;

    padding: 0.15rem;
  }

  .b_text3_text2 {
    font-size: 0.2rem;

    margin-bottom: 0.3rem;
  }
}

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

    line-height: 0.28rem;

    margin-bottom: 0.1rem;
  }

  .b_text1_text2 {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }

  .b_text2 {
    width: 56%;
  }

  .b_text2_box {
    padding: 0.2rem 8% 0.2rem 0;
  }

  .b_text2_text1 {
    font-size: 0.24rem;

    line-height: 0.28rem;
  }

  .b_text2_text2 {
    font-size: 0.16rem;

    line-height: 0.24rem;

    width: 71%;
  }

  .b_text2_btn {
    display: flex;

    justify-content: flex-end;

    padding: 0 8% 0 0;
  }

  .b_text3 {
    width: 80%;

    top: 10%;

    left: 50%;

    transform: translateX(-50%);
  }

  .b_text3_text1 {
    font-size: 0.24rem;

    line-height: 0.28rem;

    padding: 0.15rem;

    margin-bottom: 0.1rem;
  }

  .b_text3_text2 {
    font-size: 0.16rem;

    line-height: 0.24rem;

    width: 100%;

    text-align: center;
  }

  .b_text3_btn {
    display: flex;

    justify-content: center;
  }

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

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

    line-height: 0.22rem;
  }

  /* .b_text1_text2 {

    display: none;

  } */

  .b_text1_btn {
    display: none;
  }

  .b_text1 {
    top: 15%;

    width: 80%;
  }

  /* .b_text2_text2 {

    display: none;

  } */

  .b_text2_text2 {
    width: 80%;

    align-self: center;

    text-align: center;
  }

  .b_text3 {
    width: 86%;
  }

  .b_text3_text1 {
    margin-bottom: 0rem;
  }

  .b_text2_btn {
    display: none;
  }

  .b_text2_text1 {
    font-size: 0.2rem;

    line-height: 0.22rem;
  }

  .b_text2 {
    width: 100%;

    text-align: center;
  }

  .b_text2_box {
    background: transparent;

    padding: 0;
  }

  .b_text3_text1 {
    font-size: 0.18rem;

    background: transparent;

    padding: 0.1rem;
  }

  /* .b_text3_text2 {

    display: none;

  }*/

  .b_text3_btn {
    display: none;
  }

  .banner .swiper-slide {
    padding-bottom: 50%;
  }
}

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

  .b_text2_text1 {
    font-size: 0.18rem;

    line-height: 0.22rem;
  }

  .b_text3_text1 {
    font-size: 0.18rem;

    line-height: 0.22rem;
  }

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

/* ---------------------------------------Partners------------------------------- */

.home_partners {
  padding: 0.6rem 0;

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

.hp_top {
  margin-bottom: 0.5rem;
}

.partner_list {
  position: relative;

  overflow: hidden;

  padding: 0.1rem;

  box-sizing: border-box;
}

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

  display: flex;

  position: relative;

  width: 100%;

  padding: 0.05rem;
}

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

  background: #fff;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

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

  transition: box-shadow 0.25s ease;

  -webkit-transition: box-shadow 0.25s ease;

  -moz-transition: box-shadow 0.25s ease;

  -ms-transition: box-shadow 0.25s ease;

  -o-transition: box-shadow 0.25s ease;

  border-radius: 0.05rem;

  overflow: hidden;

  cursor: pointer;
}

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

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

.partner_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 40%;
}

.partner_list li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.public-pagination {
  text-align: center;
}

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

  height: 0.12rem;

  display: inline-block;

  margin: 0 6px;

  -webkit-border-radius: 2rem;

  border-radius: 2rem;

  background: #ccc;

  outline: none;

  cursor: pointer;

  position: relative;

  -webkit-transition: width 0.5s ease;

  transition: width 0.5s ease;
}

.public-pagination .swiper-pagination-bullet-active {
  width: 0.36rem;

  background: var(--i_color);

  background-size: contain;

  border-radius: 0.24rem;

  -webkit-border-radius: 0.24rem;

  -moz-border-radius: 0.24rem;

  -ms-border-radius: 0.24rem;

  -o-border-radius: 0.24rem;
}

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

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

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

    height: 0.05rem;
  }
}

/* -------------------------------------Hot Product--------------------------------------  */

.home_hot_product {
  padding: 0.6rem 0;

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

.hhpm_contain {
  display: flex;

  flex-direction: column;

  padding: 0 0 0.6rem 0;
}

.hhpmc_list {
  position: relative;

  overflow: hidden;

  padding: 0.1rem 0 0.4rem 0;

  box-sizing: border-box;
}

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

  display: flex;

  position: relative;

  width: 100%;

  padding: 0.05rem;
}

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

  background: #fff;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

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

  transition: box-shadow 0.25s ease;

  -webkit-transition: box-shadow 0.25s ease;

  -moz-transition: box-shadow 0.25s ease;

  -ms-transition: box-shadow 0.25s ease;

  -o-transition: box-shadow 0.25s ease;

  border-radius: 0.06rem;
}

.hhpmc_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 34%;
}

.hhpmc_list li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.hhpmc_list_pagination {
  text-align: center;
}

/* 进度条容器 */

.hhpmc_list_pagination.swiper-pagination-progressbar {
  height: 2.59px;

  background: #e0e0e1;

  border-radius: 4px;

  overflow: hidden;

  top: auto;

  bottom: 0rem;

  width: 56.4%;

  left: 50%;

  transform: translateX(-50%);
}

/* 进度条填充 */

.hhpmc_list_pagination .swiper-pagination-progressbar-fill {
  background: var(--i_color);

  border-radius: 4px;
}

.hhpmc_list ul li {
  padding: 0.18rem 0.18rem 0 0.18rem;

  box-sizing: border-box;

  border: 1px solid #e5e5e5;

  border-radius: 0.04rem;

  cursor: pointer;
}

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

.hhpmc_list ul li:hover .hhpmc_btn .hhpmcb_box h3 {
  color: #fff;
}

.hhpmc_list ul li:hover .hhpmc_btn .hhpmcb_box img {
  filter: brightness(0) invert(1);
}

.hhpmc_list ul li:hover {
  background-color: var(--i_color2);
}

.hhpmc_list ul li span {
  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 100%;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1);

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

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

.hhpmc_list ul li a .hhpmc_info {
  padding: 0.24rem 0 0.24rem 0;

  box-sizing: border-box;
}

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

  font-size: 0.2rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  margin-bottom: 0.24rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2; /* 显示两行 */

  overflow: hidden;
}

.hhpmc_list ul li a .hhpmc_info h4 {
  font-family: Arial;

  font-size: 16px;

  font-weight: normal;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  padding-left: 0.2rem;

  position: relative;
}

.hhpmc_list ul li a .hhpmc_info h4::before {
  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  content: "";

  display: block;

  width: 0.1rem;

  height: 0.1rem;

  background-color: #333;

  border-radius: 50%;
}

.hhpmc_list ul li a .hhpmc_info h4 i {
  color: #ff0000;
}

.hhpmc_list ul li a .hhpmc_btn {
  padding: 0.2rem 0;

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

.hhpmc_list ul li a .hhpmc_btn .hhpmcb_box {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 0.1rem;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

  border-radius: 2.4rem;
}

/* 背景动画层 */

.hhpmc_list ul li a .hhpmc_btn .hhpmcb_box::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 0;

  background-color: var(--i_color);

  transition: height 0.5s ease;

  z-index: 0;
}

/* hover 触发背景上升 */

.hhpmc_list ul li:hover .hhpmcb_box::before {
  height: 100% !important;
}

/* 内容层始终在最上面 */

.hhpmc_list ul li a .hhpmc_btn .hhpmcb_box > * {
  position: relative;

  z-index: 1;
}

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

  font-size: 0.18rem;

  color: var(--i_color);

  margin: 0.1rem 0;
}

.hhpmc_list ul li a .hhpmc_btn .hhpmcb_box img {
  filter: brightness(0) invert(56%) sepia(86%) saturate(3500%)
    hue-rotate(345deg);
}

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

  .hhpmc_list ul li a .hhpmc_btn h3 {
    font-size: 0.16rem;
  }
}

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

  .hhpmc_list ul li a .hhpmc_info {
    padding: 0.15rem 0 0.15rem 0;
  }

  .hhpmc_list ul li a .hhpmc_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.2rem;
  }

  .hhpmc_list ul li a .hhpmc_info h4 {
    font-size: 0.14rem;
  }

  .hhpmc_list ul li a .hhpmc_btn h3 {
    font-size: 0.14rem;
  }
}

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

  .home_hot_product {
    padding: 0.3rem 0;
  }

  .hp_top {
    margin-bottom: 0.3rem;
  }

  .hhpmc_list .swiper-wrapper {
    padding: 0rem;
  }
}

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

/* --------------------------Product Categories ---------------------------------------- */

.home_product_categories {
  padding: 0.6rem 0;

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

.hpc_maxbox {
}

.hpcm_contain {
  margin-top: 0.5rem;

  display: flex;

  justify-content: space-between;
}

.hpcmc_left {
  position: relative;

  width: 34.375%;

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

  cursor: pointer;

  border-radius: 0.06rem;
}

.hpcmc_left::before {
  content: "";

  display: block;

  padding-bottom: 120%;
}

.hpcmc_left h3 {
  position: absolute;

  top: 4%;

  left: 8.36%;

  font-family: Arial;

  font-size: 0.3rem;

  font-weight: bold;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #333333;
}

.hpcmc_left h4 {
  position: absolute;

  top: 11.21%;

  left: 8.36%;

  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #666666;
}

.hpcmc_left span {
  position: absolute;

  top: 26.1%;

  left: 8.36%;

  width: 0.4rem;

  height: 0.4rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

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

.hpcmc_left span img {
  width: 0.16rem;

  height: 0.16rem;

  object-fit: contain;

  filter: brightness(0) invert(56%) sepia(86%) saturate(3500%)
    hue-rotate(345deg);
}

.hpcmc_left .hpct_pic {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 89.81%;

  height: 67.57%;

  object-fit: cover;
}

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

.hpcmc_left:hover span {
  background-color: var(--i_color);
}

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

.hpcmc_right {
  width: 63.5%;
}

.hpcmc_right ul {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  align-content: space-between;

  height: 100%;
}

.hpcmc_right ul li {
  width: 48.43%;

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

  position: relative;
}

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

  display: block;

  padding-bottom: 64%;
}

.hpcmc_right ul li h3 {
  position: absolute;

  top: 7%;

  left: 7.5%;

  font-family: Arial;

  font-size: 0.3rem;

  font-weight: bold;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #333333;
}

.hpcmc_right ul li span {
  position: absolute;

  top: 66%;

  left: 8.7%;

  width: 0.4rem;

  height: 0.4rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

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

.hpcmc_right ul li span img {
  width: 0.16rem;

  height: 0.16rem;

  object-fit: contain;

  filter: brightness(0) invert(56%) sepia(86%) saturate(3500%)
    hue-rotate(345deg);
}

.hpcmc_right ul li .hpcr_pic {
  position: absolute;

  right: 0;

  bottom: 0;

  width: 64%;

  height: 100%;

  object-fit: cover;
}

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

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

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

.hpcm_btnbox {
  margin-top: 0.5rem;

  display: block;

  display: flex;

  justify-content: center;
}

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

  .hpcmc_left h4 {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }

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

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

  .hpcmc_left {
    width: 100%;

    margin-bottom: 0.2rem;
  }

  .hpcmc_left h3 {
    left: 4%;
  }

  .hpcmc_left h4 {
    left: 4%;

    top: 15.21%;
  }

  .hpcmc_left::before {
    padding-bottom: 38%;
  }

  .hpcmc_left span {
    left: 4%;

    top: 37%;
  }

  .hpcmc_left .hpct_pic {
    position: absolute;

    bottom: 0;

    left: auto;

    transform: none;

    right: 0;

    width: 38.81%;

    height: 88.57%;

    object-fit: cover;
  }

  .hpcmc_right {
    width: 100%;

    gap: 0.2rem;
  }

  .hpcmc_right ul li {
    margin-bottom: 0.2rem;

    width: calc((100% - 0.2rem) / 2);
  }

  .hpcm_btnbox {
    display: none;
  }
}

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

    font-size: 0.24rem;
  }

  .hpcmc_left h4 {
    top: 23%;

    font-size: 0.14rem;
  }

  .hpcmc_left span {
    top: 45%;
  }

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

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

  .hpcmc_left h3 {
    font-size: 0.2rem;

    left: 7%;
  }

  .hpcmc_left span {
    width: 0.3rem;

    height: 0.3rem;

    left: 7%;

    top: 29%;
  }

  .hpcmc_left span img {
    width: 0.12rem;

    height: 0.12rem;
  }

  .hpcmc_right ul li {
    width: 100%;
  }

  .hpcmc_left::before {
    padding-bottom: 64%;
  }

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

    top: 8%;
  }

  .hpcmc_right ul li span {
    width: 0.3rem;

    height: 0.3rem;

    left: 7%;

    top: 29%;
  }

  .hpcmc_right ul li span img {
    width: 0.12rem;

    height: 0.12rem;
  }

  .hpcmc_left .hpct_pic {
    width: 62.81%;
  }

  .home_product_categories {
    padding: 0.3rem 0;
  }
}

/* -----------------------------------About Company---------------------------------------- */

.home_about_company {
  padding: 0.6rem 0 0 0;

  background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 100%);
}

.hac_maxbox {
}

.hacm_contain {
  position: relative;

  display: flex;

  margin-top: 0.7rem;
}

.hacmc_info {
  width: 45.68%;

  background: #fff;

  border-radius: 1.72rem 0 0 0;

  padding: 0.55rem 0.45rem 0.55rem 1rem;

  box-sizing: border-box;

  position: relative;

  z-index: 2;
}

.hacmc_info .haci_topbg {
  width: 100%;

  height: 18%;

  display: block;
}

.hacmc_info .haci_topbg img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.hacmc_info h3 {
  font-family: Arial;

  font-size: 0.36rem;

  font-weight: bold;

  line-height: 0.46rem;

  letter-spacing: 0em;

  color: var(--i_color);

  margin-bottom: 0.4rem;
}

.hacmc_info h4 span {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  letter-spacing: 0em;

  color: #666666;

  display: block;

  margin-bottom: 0.2rem;
}

.hacmc_pic {
  background: #fff;

  width: 54.76%;

  display: flex;

  align-items: center;
}

.hacmc_pic .hacmcp_span {
  position: relative;

  width: 100%;

  display: block;

  height: 100%;
}

.hacmc_pic .hacmcp_span::before {
  content: "";

  display: block;

  padding-bottom: 75.53%;
}

.hacmc_pic .hacmcp_span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hacmc_rb_bg {
  position: absolute;

  right: 0.45rem;

  bottom: 0.55rem;

  width: 30.6%;

  height: 34%;
}

.hacmc_rb_bg img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.hacmc_tl_bg {
  position: absolute;

  left: 0.3rem;

  top: -0.8rem;

  width: 3.38rem;

  height: 3.38rem;

  z-index: 1;
}

.hacmc_tl_bg img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

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

.hacm_card ul {
  display: flex;

  gap: 0.5rem 1rem;

  flex-wrap: wrap;

  padding: 0.6rem 0;
}

.hacm_card ul li {
  display: flex;

  justify-content: center;

  align-items: center;

  width: calc((100% - 3 * 1rem) / 4);

  gap: 0.4rem;
}

.hacm_card ul li .hacmca_icon {
  width: 0.72rem;

  height: 0.61rem;
}

.hacm_card ul li .hacmca_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.hacm_card ul li .hacmca_info {
}

.hacm_card ul li .hacmca_info h3 {
  font-family: Arial;

  font-size: 0.45rem;

  font-weight: bold;

  text-transform: capitalize;

  letter-spacing: 0em;

  color: #ffffff;
}

.hacm_card ul li .hacmca_info h4 {
  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.3rem;

  text-transform: capitalize;

  letter-spacing: 0em;

  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1440px) {
  .hacmc_info {
    padding: 0.55rem 0.45rem 0.55rem 0.55rem;
  }

  .hacmc_tl_bg {
    left: 0.1rem;

    top: -0.5rem;

    width: 3rem;

    height: 3rem;
  }
}

@media screen and (max-width: 1200px) {
  .hacmc_info .haci_topbg {
    width: 100%;

    height: 13%;
  }

  .hacmc_info h4 span {
    font-size: 0.16rem;
  }

  .hacmc_info h3 {
    font-size: 0.32rem;

    line-height: 0.4rem;

    margin-bottom: 0.2rem;
  }

  .hacm_card ul li .hacmca_info h3 {
    font-size: 0.35rem;
  }

  .hacm_card ul li .hacmca_info h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

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

  .hacmc_info {
    width: 100%;
  }

  .hacmc_pic {
    width: 100%;
  }

  .hacmc_pic .hacmcp_span::before {
    padding-bottom: 42%;
  }

  .hacmc_tl_bg {
    left: 0.1rem;

    top: -0.3rem;

    width: 2rem;

    height: 2rem;
  }

  .hacm_card ul li {
    display: flex;

    justify-content: center;

    align-items: center;

    width: calc((100% - 2 * 1rem) / 3);

    gap: 0.4rem;
  }
}

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

    justify-content: center;

    align-items: center;

    width: calc((100% - 1rem) / 2);

    gap: 0.4rem;
  }
}

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

  .hacmc_info {
    padding: 0.2rem;
  }

  .hacmc_tl_bg {
    display: none;
  }

  .hacmc_info h3 {
    font-size: 0.24rem;

    line-height: 0.3rem;

    margin-bottom: 0.2rem;
  }

  .hacmc_info h4 span {
    font-size: 0.14rem;

    line-height: 0.22rem;
  }

  .hacm_card ul {
    gap: 0.2rem;

    padding: 0.15rem 0;

    justify-content: space-between;
  }

  .hacm_card ul li .hacmca_info h3 {
    font-size: 0.18rem;
  }

  .hacm_card ul li .hacmca_icon {
    width: 0.3rem;

    height: 0.5rem;
  }

  .hacm_card ul li .hacmca_info {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

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

  .hacm_card ul li {
    gap: 0.15rem;
  }
}

/*  */

.hacmc_pic i {
  display: block;

  width: 0.74rem;

  height: 0.74rem;

  border-radius: 50%;

  cursor: pointer;

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

  background-size: contain;

  position: absolute;

  top: 50%;

  left: 50%;

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

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

.i_v_btn span {
  position: relative;
}

.i_v_btn span::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;
}

.i_v_btn span::after {
  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;
}

.i_v_btn span::before {
  animation: serv_one_border 1.5s 0s ease infinite;
}

.i_v_btn span::after {
  animation: serv_one_border 2.5s 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) {
  .hacmc_pic i {
    width: 0.5rem;

    height: 0.5rem;
  }
}

/* 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: url(static/images/home_news_bg.webp) no-repeat center/cover;
}

.hn_maxbox {
}

.hln_contain {
  display: flex;

  justify-content: space-between;

  margin-top: 0.5rem;

  position: relative;
}

.hln_contain::before {
  content: "";

  height: 100%;

  width: 1px;

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

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  top: 0;
}

.hlnc_leftbox {
  width: 46.9%;
}

.hlnc_rightbox {
  width: 47%;
}

.hlnc_leftbox a {
  width: 100%;

  position: relative;

  display: block;
}

.hlnc_leftbox a span {
  position: relative;
}

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

  display: block;

  padding-bottom: 64%;
}

.hlnc_leftbox a span img {
  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  object-fit: cover;
}

.hlnc_leftbox a h3 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #fff;

  margin: 0.2rem 0.16rem;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.hlnc_leftbox a h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.24rem;

  color: #fff;

  margin: 0 0.16rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

.hlnc_leftbox a span i {
  position: absolute;

  top: 77%;

  left: 4%;

  width: 0.86rem;

  height: 0.86rem;

  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  border-radius: 0.05rem;

  display: flex;

  align-items: center;

  flex-direction: column;

  justify-content: center;
}

.hlnc_leftbox a span i h5 {
  font-family: Arial;

  font-size: 0.36rem;

  color: #ffffff;
}

.hlnc_leftbox a span i h6 {
  font-family: Arial;

  font-size: 0.18rem;

  color: #ffffff;
}

.hlnc_rightbox ul {
  display: flex;

  flex-direction: column;

  gap: 0.3rem;

  height: 100%;
}

.hlnc_rightbox ul li {
  height: calc((100% - 0.3rem * 2) / 3);

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

.hlnc_rightbox ul li a {
  display: flex;

  width: 100%;

  height: 100%;

  justify-content: space-between;

  align-items: center;
}

.hlncr_info {
  padding: 0.1rem 0 0.26rem 0;

  display: flex;

  flex-direction: column;

  gap: 0.2rem;

  width: 64.8%;
}

.hlncr_info h3 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: 0.32rem;

  color: #fff;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

.hlncr_info h4 {
  font-family: Arial;

  font-size: 0.18rem;

  line-height: 0.24rem;

  color: #fff;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

.hlncr_info h5 {
  font-family: Arial;

  font-size: 0.14rem;

  font-weight: normal;

  line-height: 0.16rem;

  color: #999999;
}

.hlncr_pic {
  width: 32.53%;
}

.hlncr_pic span {
  position: relative;
}

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

  display: block;

  padding-bottom: 72%;
}

.hlncr_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

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

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

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

.hlnc_first_news {
  display: none;
}

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

  .hlnc_first_news {
    display: block;
  }

  .hlnc_leftbox {
    display: none;
  }

  .hlnc_rightbox {
    width: 100%;
  }

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

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

    line-height: 0.22rem;
  }

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

    gap: 0.1rem;

    width: 55%;
  }

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

  .hlncr_pic {
    width: 40%;
  }

  .hln_contain {
    margin-top: 0.3rem;
  }

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

  .home_latest_news {
    padding: 0.3rem 0;
  }

  .home_news {
    padding: 0.3rem 0;

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

/* ----------------------------------------home_contact_us------------------------- */

.home_contact_us {
  padding: 0.6rem 0;

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

.hcumt_contain {
  display: flex;

  justify-content: space-between;

  margin-top: 0.5rem;
}

.hcumt_info {
  width: 46.875%;

  display: flex;

  border-radius: 0.1rem;

  overflow: hidden;
}

.hcumti_pic {
  width: 50%;

  position: relative;
}

.hcumti_pic::before {
  content: "";

  display: block;

  padding-bottom: 126%;
}

.hcumti_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

.hcumti_info {
  width: 50%;

  position: relative;

  box-sizing: border-box;
}

.hcumti_info span {
  position: relative;

  display: block;

  height: 100%;
}

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

  display: block;

  padding-bottom: 126%;
}

.hcumti_info span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hcumti_info ul {
  display: flex;

  flex-direction: column;

  position: absolute;

  top: 15%;

  left: -0.28rem;
}

.hcumti_info ul li {
  width: 100%;

  display: flex;

  gap: 0.2rem;

  margin-bottom: 0.5rem;
}

.hcumti_info ul li .hcumtii_icon {
  width: 0.56rem;

  height: 0.56rem;

  flex-shrink: 0;
}

.hcumti_info ul li .hcumtii_icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.hcumtii_info h3 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  color: #ffffff;

  margin-bottom: 0.15rem;
}

.hcumtii_info h4 {
  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.25rem;

  letter-spacing: 0em;

  color: #ffffff;
}

.hcumt_form {
  width: 47.93%;
}

@media screen and (max-width: 1200px) {
  .hcumti_info ul li .hcumtii_icon {
    width: 0.4rem;

    height: 0.4rem;
  }

  .hcumtii_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.1rem;
  }

  .hcumtii_info h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

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

  .hcumt_info {
    width: 100%;
  }

  .hcumt_info {
    display: none;
  }

  .hcumt_form {
    width: 100%;
  }
}

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

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

.products_banner {
  width: 100%;

  position: relative;
}

.products_banner::before {
  content: "";

  display: block;

  padding-bottom: 28.75%;
}

.products_banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  top: 0;

  left: 0;
}

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

.in_position {
  box-sizing: border-box;

  padding: 0.2rem 0;

  background: linear-gradient(
    270deg,
    rgba(254, 163, 7, 0.05) 0%,

    rgba(254, 111, 7, 0.05) 100%
  );

  position: relative;
}

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

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

  display: flex;

  flex-wrap: wrap;

  align-items: center;
}

.in_position a {
  display: block;

  font-size: 0.16rem;

  color: #666666;

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

.products_bac {
  box-sizing: border-box;

  background: #f7f7f7;

  padding: 0.6rem 0;
}

.products {
  display: flex;

  justify-content: space-between;
}

.products_left {
  width: 20.5259%;

  box-sizing: border-box;

  flex-shrink: 0;
}

.products_left_all {
  background-color: transparent;
}

.products_left_h2 {
  font-family: Arial;

  font-size: 0.28rem;

  font-weight: bold;

  line-height: normal;

  text-align: center;

  letter-spacing: 0em;

  color: #333333;

  margin-bottom: 0.15rem;
}

.products_left_h2 iconify-icon {
  color: #fff;

  font-size: 0.34rem;

  margin-left: 0.1rem;

  font-weight: bold;

  margin-bottom: 2px;

  display: none;
}

.list {
  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;
}

.list li {
  position: relative;

  margin-bottom: 0.1rem;
}

/* .list li::after{

	content: '';

	position: absolute;

	bottom: 0;

	left: 50%;

	transform: translate(-50%,0);

	width: 100%;

	height: 1px;

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

} */

.list_a {
  box-sizing: border-box;

  padding: 0.2rem 0.2rem;

  position: relative;

  z-index: 2;

  overflow: hidden;

  background-color: #fff;

  border-radius: 0.06rem;
}

.list_a::after {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  width: 0;

  height: 100%;

  transition: all 0.5s ease-in-out;

  z-index: -1;
}

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

  color: #333;

  font-weight: bold;

  box-sizing: border-box;

  line-height: 110%;

  transition: all 0.3s ease;

  display: block;
}

.list .list_a i {
  width: 0.5rem;

  height: 0.55rem;

  position: absolute;

  top: 50%;

  transform: translate(0, -50%);

  right: 0;

  cursor: pointer;
}

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

  top: 50%;

  left: 50%;

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

  font-size: 0.24rem;

  color: #222;

  transition: all 0.3s ease;
}

.list_dl {
  padding: 0.1rem 0.18rem 0.18rem;

  display: flex;

  display: -webkit-flex;

  flex-direction: column;

  box-sizing: border-box;

  gap: 0.1rem;

  background-color: #fff;

  margin-top: 0.1rem;
}

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

  padding: 0.15rem 0 0.17rem 0;

  border-radius: 0.06rem;
}

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

  color: #333;

  display: block;

  transition: all 0.3s ease;

  position: relative;

  box-sizing: border-box;

  padding: 0rem 0.2rem;
}

/* .list_dl dt a::after {

  content: "";

  position: absolute;

  left: -0.1rem;

  top: 50%;

  transform: translate(0, -50%);

  width: 0.07rem;

  height: 0.07rem;

  background-color: var(--i_color);

  opacity: 0;

  transition: all 0.3s ease;

  border-radius: 50%;

  border-radius: 0.06rem;

} */

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

.list_active {
}

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

  left: 0;

  right: auto;
}

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

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

.list_active .list_a a {
  color: #fff;

  display: block;
}

.list_dl_active a::after,
.list_dl_active a::before {
  opacity: 1 !important;

  left: 0 !important;
}

.list_dl dt a:hover::after {
  opacity: 1 !important;

  left: 0 !important;
}

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

.list_dl_active {
  background: #f1f1f1;
}

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

  font-weight: bold;
}

.list_active .list_dl {
}

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

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

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

  .products_right_top_title {
    font-size: 0.35rem;
  }
}

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

  .products_left_h2 iconify-icon {
    display: block;
  }

  .products_left_h2 {
    display: flex;

    display: -webkit-flex;

    align-items: center;

    justify-content: center;
  }

  .products_left_h2 {
    margin-bottom: 0;
  }

  .list {
    margin-top: 0.2rem;
  }

  .products_left_h2 {
    color: #fff;

    background-color: var(--i_color);

    box-sizing: border-box;

    padding: 0.15rem 0;
  }

  .list {
    padding-bottom: 0.2rem;
  }

  .products_left_all {
    padding: 0.2rem;
  }
}

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

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

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

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

    border-radius: 0.06rem;
  }

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

    border-radius: 0.06rem;
  }
}

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

.products_right {
  width: 76.65%;
}

.products_right_top {
  display: flex;

  flex-direction: column;

  gap: 0.1rem;

  margin-bottom: 0.2rem;
}

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

  font-family: Arial;

  font-weight: 600;

  font-size: 0.36rem;
}

.products_right_top_des {
  font-size: 0.18rem;

  line-height: 0.3rem;

  color: #333;
}

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

  .products {
    display: block;
  }

  .products_right_top_title {
    display: flex;

    justify-content: center;
  }

  .products_right_top_des {
    display: flex;

    justify-content: center;
  }

  .products_right {
    width: 100%;
  }
}

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

  .products_right_top_des {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }
}

@media screen and (max-width: 425px) {
  .products_right_top_des {
    font-size: 0.15rem;

    line-height: 0.22rem;
  }
}

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

    line-height: 0.18rem;
  }
}

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

.products_right_contain_excavatorList {
  margin-top: 0.4rem;
}

.products_right_contain_excavatorList ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem 0.22rem;
}

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

  padding: 0.18rem 0.18rem 0 0.18rem;

  box-sizing: border-box;

  border: 1px solid #e5e5e5;

  border-radius: 0.06rem;

  cursor: pointer;

  background-color: #fff;
}

.products_right_contain_excavatorList ul li .hhpmcb_box img {
  filter: brightness(0) invert(56%) sepia(86%) saturate(3500%)
    hue-rotate(345deg);
}

.products_right_contain_excavatorList ul li:hover {
  background-color: var(--i_color2);
}

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

.products_right_contain_excavatorList ul li:hover .hhpmc_btn .hhpmcb_box h3 {
  color: #fff;
}

.products_right_contain_excavatorList ul li:hover .hhpmc_btn .hhpmcb_box img {
  filter: brightness(0) invert(1);
}

.products_right_contain_excavatorList ul li span {
  position: relative;

  overflow: hidden;

  display: block;
}

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

  display: block;

  padding-bottom: 100%;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1);

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

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

.products_right_contain_excavatorList ul li a .hhpmc_info {
  padding: 0.24rem 0 0.24rem 0;

  box-sizing: border-box;
}

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

  font-size: 0.2rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  margin-bottom: 0.24rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2; /* 显示两行 */

  overflow: hidden;
}

.products_right_contain_excavatorList ul li a .hhpmc_info h4 {
  font-family: Arial;

  font-size: 16px;

  font-weight: normal;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  padding-left: 0.2rem;

  position: relative;
}

.products_right_contain_excavatorList ul li a .hhpmc_info h4::before {
  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  content: "";

  display: block;

  width: 0.1rem;

  height: 0.1rem;

  background-color: #333;

  border-radius: 50%;
}

.products_right_contain_excavatorList ul li a .hhpmc_info h4 i {
  color: #ff0000;
}

.products_right_contain_excavatorList ul li a .hhpmc_btn {
  padding: 0.2rem 0;

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

.products_right_contain_excavatorList ul li a .hhpmc_btn .hhpmcb_box {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 0.1rem;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

  border-radius: 2.4rem;
}

/* 背景动画层 */

.products_right_contain_excavatorList ul li a .hhpmc_btn .hhpmcb_box::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 0;

  background-color: var(--i_color);

  transition: height 0.5s ease;

  z-index: 0;
}

/* hover 触发背景上升 */

.products_right_contain_excavatorList ul li:hover .hhpmcb_box::before {
  height: 100% !important;
}

/* 内容层始终在最上面 */

.products_right_contain_excavatorList ul li a .hhpmc_btn .hhpmcb_box > * {
  position: relative;

  z-index: 1;
}

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

  font-size: 0.18rem;

  color: var(--i_color);

  margin: 0.1rem 0;
}

@media screen and (max-width: 1024px) {
  .products_right_contain_excavatorList ul li {
    width: calc((100% - 2 * 0.22rem) / 3);
  }

  .products_right_contain_excavatorList ul li a .hhpmc_btn {
    padding: 0.1rem 0;
  }

  .products_right_contain_excavatorList ul li a .hhpmc_btn h3 {
    font-size: 0.16rem;
  }
}

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

  .products_right_contain_excavatorList ul li a .hhpmc_info {
    padding: 0.15rem 0 0.15rem 0;
  }

  .products_right_contain_excavatorList ul li a .hhpmc_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.2rem;
  }

  .products_right_contain_excavatorList ul li a .hhpmc_info h4 {
    font-size: 0.14rem;
  }

  .products_right_contain_excavatorList ul li a .hhpmc_btn h3 {
    font-size: 0.14rem;
  }
}

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

  .products_bac {
    padding: 0.3rem 0;
  }
}

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

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

.single_grid_left {
  width: 38.75%;
}

/* 轮播图宽度 */

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

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

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

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

.in_grid_show .img {
  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 100%;
}

.in_grid_show .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

.in_grid_list_box {
  margin-top: 0.3rem;

  padding: 0 0;

  position: relative;

  width: 100%;

  height: initial;
}

.in_grid_list {
  width: 100%;

  margin: 0 auto;
}

.in_grid_list_box .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  z-index: 1;
}

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

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;
}

.in_grid_list .img {
  height: auto;

  border-radius: 0.04rem;
}

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

  display: block;

  padding-bottom: 100%;
}

.in_grid_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  object-fit: cover;
}

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

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  transition: all 0.3s ease;

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

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

/* 左右箭头 */

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

  top: 50%;

  transform: translate(0, -50%);

  width: 0.34rem;

  height: 0.34rem;

  z-index: 999;

  cursor: pointer;

  outline: none;

  transition: all 0.3s ease;

  display: flex;

  display: -webkit-flex;

  justify-content: center;

  align-items: center;
}

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

  color: #333;

  transition: all 0.3s ease;
}

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

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

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

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

.single_grid_right {
  width: 60%;

  box-sizing: border-box;

  padding-left: 3%;
}

.single_grid_right h2 {
  font-size: 0.18rem;

  color: #999999;

  box-sizing: border-box;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.single_grid_right h2 span {
  font-size: 0.18rem;

  color: var(--i_color);
}

.single_grid_right h1 {
  font-size: 0.28rem;

  color: var(--i_color);

  font-weight: bold;

  margin: 0.2rem 0;

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

  padding-bottom: 0.25rem;

  position: relative;
}

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

  display: block;

  width: 40%;

  height: 1px;

  position: absolute;

  bottom: 0;

  left: 0;

  background: var(--i_color);
}

.single_grid_right article {
}

.sgr_btn {
  margin-top: 0.5rem;

  padding-top: 0.4rem;

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

.sgr_btn ul {
  display: flex;

  gap: 0.4rem;
}

.sgr_share {
}

.sgr_share ul {
  display: flex;

  gap: 0.25rem;

  align-items: center;
}

.sgr_share ul li {
  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: 0.22rem;

  text-align: center;

  letter-spacing: 0em;

  color: #333333;
}

.sgr_share ul li a {
  display: flex;

  align-items: center;
}

.sgr_share ul li a iconify-icon {
  font-size: 0.22rem;
}

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

.sgrbtn a {
  border-radius: 0.28rem !important;

  padding: 0.12rem 0.23rem 0.16rem 0.24rem !important;
}

@media screen and (max-width: 1440px) {
  .single_grid_right h1 {
    font-size: 0.26rem;

    margin: 0.15rem 0;
  }
}

@media screen and (max-width: 1200px) {
  .single_grid_right h1 {
    font-size: 0.24rem;
  }

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

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

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

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

  .single_grid_right {
    width: 100%;

    margin-top: 0.4rem;

    padding-left: 0%;
  }
}

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

    font-size: 0.13rem;
  }

  .sgr_btn {
    margin-top: 0.3rem;

    padding-top: 0.4rem;

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

@media screen and (max-width: 375px) {
  .sgr_btn ul {
    gap: 0;
  }
}

.productsDetail_contain {
  background: #f6f6f6;

  padding: 0.5rem 0;
}

.pdc_maxbox {
  display: flex;

  justify-content: space-between;
}

.productsDetail_contain .pdc_nav {
  width: 20.125%;
}

.pdc_detailedDescription {
  width: 76.125%;
}

.pdc_detailedDescription .pdcd_title {
  font-family: Arial;

  font-size: 0.3rem;

  font-weight: bold;

  line-height: normal;

  text-transform: capitalize;

  letter-spacing: 0px;

  color: #333;

  padding-bottom: 0.2rem;

  border-bottom: #e1e1e1 2px solid;

  margin-bottom: 0.2rem;

  position: relative;
}

.pdc_detailedDescription .pdcd_title::before {
  content: "";

  display: block;

  width: 15%;

  height: 3px;

  position: absolute;

  left: 0;

  bottom: -1px;

  background: var(--i_color);
}

.pdcd_faq {
  margin-top: 0.3rem;
}
.dpcd_faq1 {
  display: none;
}
.pdcd_faq h3 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;
}

.pdcd_faq ul {
  display: flex;

  flex-direction: column;
}

.pdcd_faq ul li {
  padding: 0.3rem 0.4rem 0.4rem 0.3rem;

  cursor: pointer;

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

  margin-bottom: 0.1rem;
}

.pdcd_faq ul li .pdcdf_ques {
  font-family: Arial;

  font-size: 0.2rem;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  display: flex;

  align-items: center;
}

.pdcd_faq ul li.active .pdcdf_ques {
  margin-bottom: 0.2rem;
}

.pdcd_faq ul li .pdcdf_ques i {
  width: 0.32rem;

  height: 0.32rem;

  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  align-self: start;

  font-family: Arial;

  font-size: 0.2rem;

  font-weight: bold;

  line-height: normal;

  text-align: center;

  text-transform: capitalize;

  letter-spacing: 0em;

  flex-shrink: 0;

  color: #ffffff;

  margin-right: 0.15rem;

  border-radius: 0.04rem;
}

.pdcd_faq ul li .pdcdf_answer {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  letter-spacing: 0em;

  color: #333;

  display: flex;

  align-items: center;

  align-items: flex-start;

  overflow: hidden;

  max-height: 0;

  opacity: 0;

  transform: translateY(-8px);

  transition:
    max-height 0.45s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.pdcd_faq ul li.active .pdcdf_answer {
  max-height: 3rem;

  opacity: 1;

  transform: translateY(0);
}

.pdcd_faq ul li .pdcdf_answer i {
  width: 0.32rem;

  height: 0.32rem;

  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: Arial;

  font-size: 0.2rem;

  font-weight: bold;

  line-height: normal;

  text-align: center;

  text-transform: capitalize;

  letter-spacing: 0em;

  flex-shrink: 0;

  color: #ffffff;

  margin-right: 0.15rem;

  border-radius: 0.04rem;
}

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

  .pdc_detailedDescription {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .pdcd_faq ul li {
    padding: 0.2rem 0.3rem 0.2rem 0.2rem;
  }

  .pdcd_faq ul li .pdcdf_ques {
    font-size: 0.18rem;

    margin-bottom: 0.15rem;

    line-height: 0.25rem;
  }

  .pdcd_faq ul li .pdcdf_ques i {
    width: 0.3rem;

    height: 0.3rem;

    font-size: 0.18rem;
  }

  .pdcd_faq ul li .pdcdf_answer {
    font-size: 0.16rem;

    line-height: 0.25rem;
  }

  .pdcd_faq ul li .pdcdf_answer i {
    width: 0.3rem;

    height: 0.3rem;

    font-size: 0.18rem;
  }

  .pdc_detailedDescription .pdcd_title {
    font-size: 0.24rem;
  }

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

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

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

  .pdcd_faq ul li .pdcdf_ques i {
    font-size: 0.16rem;
  }

  .pdcd_faq ul li .pdcdf_answer i {
    font-size: 0.16rem;
  }
}

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

.single_two_bac {
  background: #f6f6f6;

  box-sizing: border-box;

  padding-bottom: 0.6rem;
}

.single_two {
}

.bottom_single_tags {
  display: flex;

  display: -webkit-flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.15rem;

  box-sizing: border-box;

  padding-bottom: 0.2rem;

  margin-bottom: 0.2rem;

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

.bottom_single_tags p {
  font-size: 0.18rem;

  color: #333333;

  font-family: "bold";

  line-height: 0.42rem;
}

.bottom_single_tags a {
  display: inline-block;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  font-size: 0.16rem;

  color: #333;
}

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

.sx {
  display: flex;

  display: -webkit-flex;

  justify-content: space-between;

  flex-wrap: wrap;
}

.sx > div {
  width: 48%;
}

.sx_left {
}

.sx a {
  display: block;

  width: 100%;

  display: flex;

  display: -webkit-flex;

  align-items: center;
}

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

  transition: all 0.3s ease;
}

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

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

.sx p {
  font-size: 0.18rem;

  color: #333333;

  text-transform: capitalize;

  margin-right: 0.1rem;

  font-weight: bold;
}

.sx span {
  font-size: 0.16rem;

  color: #333333;

  transition: all 0.3s ease;
}

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

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

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

.sx .sx_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.12rem;
  }

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

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

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

    padding-bottom: 0.1rem;

    margin-bottom: 0.2rem;
  }
}

/* --------------------------------------Related Products------------------------------- */

.product_related_products {
  padding: 0.6rem 0;

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

.prp_maxbox {
  overflow: hidden;

  /* width: 100%; */
}

.prp_contain {
  display: flex;

  flex-direction: column;

  padding: 0.5rem 0 0.6rem 0;
}

.prpc_list {
  position: relative;

  overflow: hidden;

  padding: 0.1rem 0.1rem 0.4rem 0.1rem;

  box-sizing: border-box;
}

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

  display: flex;

  position: relative;

  width: 100%;

  box-sizing: border-box;
}

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

  background: #fff;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

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

  transition: box-shadow 0.25s ease;

  -webkit-transition: box-shadow 0.25s ease;

  -moz-transition: box-shadow 0.25s ease;

  -ms-transition: box-shadow 0.25s ease;

  -o-transition: box-shadow 0.25s ease;
}

.prpc_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 34%;
}

.prpc_list li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.prpc_list_pagination {
  text-align: center;
}

/* 进度条容器 */

.prpc_list_pagination.swiper-pagination-progressbar {
  height: 2.59px;

  background: #e0e0e1;

  border-radius: 4px;

  overflow: hidden;

  top: auto;

  bottom: 0rem;

  width: 56.4%;

  left: 50%;

  transform: translateX(-50%);
}

/* 进度条填充 */

.prpc_list_pagination .swiper-pagination-progressbar-fill {
  background: var(--i_color);

  border-radius: 4px;
}

.prpc_list ul li {
  padding: 0.18rem 0.18rem 0 0.18rem;

  box-sizing: border-box;

  border: 1px solid #e5e5e5;

  border-radius: 0.06rem;

  cursor: pointer;
}

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

.prpc_list ul li:hover {
  background-color: var(--i_color2);
}

/* .prpc_list ul li:hover .hhpmcb_box {

  background-color: var(--i_color);

  width: 100%;

  border-radius: 2.4rem;

} */

.prpc_list ul li .hhpmc_btn .hhpmcb_box h3 {
  color: var(--i_color);
}

.prpc_list ul li:hover .hhpmc_btn .hhpmcb_box h3 {
  color: #fff;
}

.prpc_list ul li:hover .hhpmc_btn .hhpmcb_box img {
  filter: brightness(0) invert(1);
}

.prpc_list ul li span {
  position: relative;
}

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

  display: block;

  padding-bottom: 100%;
}

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

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1);

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

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

.prpc_list ul li a .hhpmc_info {
  padding: 0.24rem 0 0.24rem 0;

  box-sizing: border-box;
}

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

  font-size: 0.2rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  margin-bottom: 0.24rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2; /* 显示两行 */

  overflow: hidden;
}

.prpc_list ul li a .hhpmc_info h4 {
  font-family: Arial;

  font-size: 16px;

  font-weight: normal;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  padding-left: 0.2rem;

  position: relative;
}

.prpc_list ul li a .hhpmc_info h4::before {
  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  content: "";

  display: block;

  width: 0.1rem;

  height: 0.1rem;

  background-color: #333;

  border-radius: 50%;
}

.prpc_list ul li a .hhpmc_info h4 i {
  color: #ff0000;
}

.prpc_list ul li a .hhpmc_btn {
  padding: 0.2rem 0;

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

.prpc_list ul li a .hhpmc_btn .hhpmcb_box {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 0.1rem;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

  border-radius: 2.4rem;
}

/* 背景动画层 */

.prpc_list ul li a .hhpmc_btn .hhpmcb_box::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 0;

  background-color: var(--i_color);

  transition: height 0.5s ease;

  z-index: 0;
}

/* hover 触发背景上升 */

.prpc_list ul li:hover .hhpmcb_box::before {
  height: 100% !important;
}

/* 内容层始终在最上面 */

.prpc_list ul li a .hhpmc_btn .hhpmcb_box > * {
  position: relative;

  z-index: 1;
}

.hhpmcb_box img {
  filter: brightness(0) invert(56%) sepia(86%) saturate(3500%)
    hue-rotate(345deg);
}

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

  font-size: 0.18rem;

  color: #666666;

  margin: 0.1rem 0;
}

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

  .prpc_list ul li a .hhpmc_btn h3 {
    font-size: 0.16rem;
  }
}

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

  .prpc_list ul li a .hhpmc_info {
    padding: 0.15rem 0 0.15rem 0;
  }

  .prpc_list ul li a .hhpmc_info h3 {
    font-size: 0.16rem;

    margin-bottom: 0.2rem;
  }

  .prpc_list ul li a .hhpmc_info h4 {
    font-size: 0.14rem;
  }

  .prpc_list ul li a .hhpmc_btn h3 {
    font-size: 0.14rem;
  }
}

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

  .product_related_products {
    padding: 0.3rem 0;
  }

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

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

/* ------------------------------------aboutUs.html---------------------------------------------- */

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

.aboutUs_about_company {
  padding: 0.6rem 0;

  background: #f7f7f7;
}

.aac_maxbox {
}

.aacm_box {
  display: flex;

  justify-content: space-between;

  margin-bottom: 0.5rem;
}

.aacmb_info {
  width: 65.25%;
}

.aacmb_info h3 {
  font-family: Arial;

  font-size: 0.4rem;

  font-weight: bold;

  line-height: 0.5rem;

  letter-spacing: 0em;

  color: var(--i_color);

  margin-bottom: 0.4rem;
}

.aacmb_info h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  letter-spacing: 0em;

  color: #333333;
}

.aacmb_info h4 span {
  margin-bottom: 0.2rem;

  display: block;
}

.aacmb_pic {
  width: 32%;

  cursor: pointer;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.aacmb_pic span {
  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 100%;
}

.aacmb_pic span::after {
  content: "Watch Video";

  display: block;

  width: 1.39rem;

  height: 1.39rem;

  background: var(--i_color);

  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  text-align: center;

  letter-spacing: 0em;

  color: #ffffff;

  border-radius: 50%;

  position: absolute;

  right: 0;

  bottom: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  pointer-events: none;
}

.aacmb_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.aacm_pic {
  width: 100%;
}

.aacm_pic span {
  width: 100%;

  display: block;

  position: relative;
}

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

  display: block;

  padding-bottom: 36.3%;
}

.aacm_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .aacmb_pic span::after {
    width: 1.2rem;

    height: 1.2rem;

    font-size: 0.15rem;
  }
}

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

  .aacmb_info,
  .aacmb_pic {
    width: 100%;
  }

  .aacmb_pic {
    margin-top: 0.3rem;

    align-items: center;
  }

  .aacmb_pic span {
    width: 40%;
  }
}

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

    margin-bottom: 0.2rem;
  }

  .aacmb_info h4 {
    font-size: 0.16rem;

    line-height: 0.26rem;
  }

  .aacmb_info h4 span {
    margin-bottom: 0.1rem;
  }

  .aacmb_pic span::after {
    width: 1rem;

    height: 1rem;

    font-size: 0.14rem;
  }
}

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

  .aacmb_info h3 {
    font-size: 0.24rem;

    margin-bottom: 0.1rem;

    line-height: 0.35rem;
  }

  .aacmb_info h4 {
    font-size: 0.14rem;

    line-height: 0.24rem;
  }

  .aacmb_pic {
    margin-top: 0.1rem;
  }

  .aacm_box {
    margin-bottom: 0.2rem;
  }

  .aacmb_pic span::after {
    width: 0.6rem;

    height: 0.6rem;

    font-size: 0.11rem;
  }

  .aacmb_pic span {
    width: 55%;
  }
}

@media screen and (max-width: 425px) {
  .aacmb_pic span::after {
    width: 0.5rem;

    height: 0.5rem;

    font-size: 0.1rem;
  }
}

/* --------------------------------------Company Advantages------------------------------------- */

.aboutUs_company_advantages {
  padding: 0.6rem 0;
}

.aca_maxbox {
  display: flex;

  justify-content: space-between;
}

.acam_box {
  width: 26.67%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.acam_top {
  width: 80%;
}

.acam_tab ul {
  display: flex;

  flex-direction: column;

  justify-content: space-around;

  gap: 0.6rem;
}

.acam_tab ul li {
  display: flex;

  gap: 0.25rem;

  padding: 0.28rem;

  align-items: center;

  cursor: pointer;

  border-radius: 0.04rem;

  box-sizing: border-box;

  background: linear-gradient(to right, var(--i_color) 0%, var(--i_color) 100%);

  background-size: 0% 100%;

  background-repeat: no-repeat;

  background-color: #fff;

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

  transition: background-size 0.6s ease;
}

.acam_tab ul li span {
  width: 0.36rem;

  height: 0.36rem;
}

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

  height: 100%;

  object-fit: contain;

  filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(2600%)
    hue-rotate(6deg) brightness(95%) contrast(95%);
}

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

  font-size: 0.22rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0px;

  color: #333333;
}

.acam_tab ul li.active {
  background-size: 100% 100%;
}

.acam_tab ul li.active h3 {
  color: #fff;
}

.acam_tab ul li.active span img {
  filter: brightness(0) invert(100%);
}

.acam_picInfo {
  width: 69.07%;

  position: relative;

  display: flex;

  align-items: center;
}

.acam_picInfo span {
  position: absolute;

  inset: 0;

  opacity: 0;

  transform: scale(0.96);

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

.acam_picInfo span.active {
  width: 100%;

  display: block;

  position: relative;

  opacity: 1;

  transform: scale(1);
}

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

  display: block;

  padding-bottom: 62%;
}

.acam_picInfo span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 73.29%;

  object-fit: cover;
}

.acam_picInfo h3 {
  position: absolute;

  height: 26.71%;

  width: 100%;

  bottom: 0;

  left: 0;

  background: #fff;

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

  padding: 0.26rem 0.48rem;

  box-sizing: border-box;

  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.32rem;

  letter-spacing: 0px;

  color: #666666;

  overflow-y: auto;
}

.acam_picInfo h3::-webkit-scrollbar {
  width: 3px; /* 滚动条宽度 */
}

.acam_picInfo h3::-webkit-scrollbar-track {
  background: transparent; /* 滚动条轨道 */
}

.acam_picInfo h3::-webkit-scrollbar-thumb {
  background-color: rgba(254, 111, 7, 0.6); /* 滑块颜色 */

  border-radius: 6px;
}

.acam_picInfo h3::-webkit-scrollbar-thumb:hover {
  background-color: rgba(254, 111, 7, 0.85);
}

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

    align-items: center;
  }

  .acam_box {
    width: 100%;

    margin-bottom: 0.2rem;

    display: block;
  }

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

  .acam_top {
    width: auto;

    margin-bottom: 0.2rem;
  }

  .acam_tab ul {
    flex-direction: row;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.2rem;
  }

  .acam_picInfo {
    width: 100%;
  }

  .acam_tab ul li {
    width: 100%;

    padding: 0.2rem;
  }

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

  .acam_tab ul li span {
    width: 0.3rem;

    height: 0.3rem;
  }
}

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

    font-size: 0.16rem;

    line-height: 0.25rem;
  }
}

@media screen and (max-width: 560px) {
  .acam_picInfo h3 {
    padding: 0.05rem 0.1rem;

    font-size: 0.14rem;

    line-height: 0.2rem;
  }

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

    display: block;

    padding-bottom: 86%;
  }

  .aboutUs_company_advantages {
    padding: 0.3rem 0;
  }

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

  .acam_tab ul li span {
    width: 0.2rem;

    height: 0.2rem;
  }
}

/* -----------------------------------aboutUs_global_market------------------------------------ */

.aboutUs_global_market {
  padding: 0.6rem 0;

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

.agmm_top {
  margin-bottom: 0.5rem;
}

.agmm_map {
  width: 100%;
}

.agmm_map span {
  position: relative;

  display: block;
}

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

  display: block;

  padding-bottom: 48%;
}

.agmm_map span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.agmm_list {
  position: relative;

  overflow: hidden;

  padding: 0.1rem;

  box-sizing: border-box;
}

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

  display: flex;

  position: relative;

  width: 100%;

  padding: 0.05rem;
}

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

  background: #fff;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;

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

  transition: box-shadow 0.25s ease;

  -webkit-transition: box-shadow 0.25s ease;

  -moz-transition: box-shadow 0.25s ease;

  -ms-transition: box-shadow 0.25s ease;

  -o-transition: box-shadow 0.25s ease;

  border-radius: 0.05rem;

  overflow: hidden;
}

.agmm_list li span {
  display: block;

  width: 100%;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 40%;
}

.agmm_list li span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: contain;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

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

/* ------------------------------Work Shop--------------------  */

.aboutUs_work_shop {
  padding: 0.6rem 0;
}

.aws_maxbox {
}

/*  */

.line_partner_box {
  margin-top: 0.6rem;
}

.line_partner {
  position: relative;
}

.line_partner_list {
  width: 100%;

  padding: 0;

  margin: 0 auto;

  position: relative;

  overflow: hidden;

  z-index: 1;
}

.line_partner_list .swiper-wrapper {
  display: flex;

  position: relative;

  width: 100%;

  z-index: 1;
}

.line_partner_list li {
  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-shrink: 0;

  position: relative;

  cursor: pointer;

  flex-direction: column;

  border-radius: 0.08rem;

  transform-style: preserve-3d;

  transition-property: transform;

  overflow: hidden;
}

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

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

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

  transition: all 0.3s ease;
}

.line_partner_list .img {
  width: 100%;

  box-sizing: border-box;

  position: relative;

  overflow: hidden;
}

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

  display: block;

  padding-bottom: 74%;
}

.line_partner_list .img img {
  position: absolute;

  top: 50%;

  left: 50%;

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

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.line_partner_list .img img {
  -webkit-transition: all 0.5s ease;

  -moz-transition: all 0.5s ease;

  -ms-transition: all 0.5s ease;

  -o-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

.line_partner_list p {
  position: absolute;

  bottom: -100%;

  left: 0;

  width: 100%;

  box-sizing: border-box;

  padding: 0.28rem 0;

  background: var(--i_color);

  font-size: 0.2rem;

  color: #fff;

  text-transform: capitalize;

  text-align: center;

  font-family: "med";

  opacity: 0;

  transition: all 0.7s ease;

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

.line_partner_list li.swiper-slide-active p {
  bottom: 0;

  opacity: 1;
}

.line_partner_list li.swiper-slide-active::after {
  opacity: 0;
}

/* 指示器 */

.line_partner .pt-pagination {
  text-align: center;

  margin: 0.4rem auto 0;
}

.line_partner .pt-pagination .swiper-pagination-bullet {
  width: 0.1rem;

  height: 0.1rem;

  cursor: pointer;

  display: inline-block;

  margin: 0 0.05rem;

  box-sizing: border-box;

  border-radius: 50%;

  outline: none;
}

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

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

  background: var(--i_color);
}

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

  .line_partner_list p {
    font-size: 0.18rem;
  }
}

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

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

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

  .production_line_bac {
    padding: 0.6rem 0;
  }

  .line_partner_list p {
    padding: 0.15rem 0;

    font-size: 0.16rem;

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

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

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

  .line_partner_list p {
    padding: 0.1rem 0;

    font-size: 0.14rem;
  }
}

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

  .line_partner .pt-pagination {
    text-align: center;

    margin: 0.2rem auto 0;
  }

  .line_partner_list p {
    padding: 0.08rem 0;

    font-size: 0.12rem;

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

/* ---------------------------------------aboutUs_contact_us---------------------------- */

.aboutUs_contact_us {
  padding: 0.6rem 0;

  background: #fff;
}

.cu_box {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;

  gap: 0.4rem 0;
}

.cu_box_left {
  width: 38%;
}

.cl_information {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

  gap: 0.12rem 0;
}

.cl_information li {
  width: 100%;
}

.cl_information li:nth-child(-n + 2) {
  width: 49%;
}

.cl_information span {
  display: block;

  background: #f3f3f3;

  padding: 0.26rem;

  border-radius: 0.12rem;
}

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

.cu_map {
  width: 55.5%;

  height: 4.62rem;
}

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

  height: 100% !important;
}

@media screen and (max-width: 1200px) {
  .cl_information li:nth-child(-n + 2) {
    width: 100%;
  }
}

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

  .cu_map {
    width: 100%;
  }

  .cl_information li {
    width: 100%;
  }

  .cl_information span {
    padding: 0.2rem;
  }
}

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

  .cu_map {
    height: 3rem;
  }

  .aboutUs_contact_us {
    padding: 0.3rem 0;
  }
}

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

/* --------------------------------------------Our Service------------------------------------ */

.service_our_service {
  padding: 0.6rem 0;

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

.sos_maxbox {
}

.sosm_top {
  margin-bottom: 0.5rem;
}

.sosm_contain {
  display: flex;

  justify-content: space-between;
}

.sosmc_left {
  width: 39.25%;

  cursor: pointer;

  border-radius: 0.08rem;

  overflow: hidden;
}

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

.sosmc_left span {
  position: relative;

  display: block;

  background: #fff;

  overflow: hidden;

  height: 100%;
}

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

  display: block;

  padding-bottom: 105%;
}

.sosmc_left span h3 {
  width: 85%;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  top: 4.5%;

  font-family: Arial;

  font-size: 0.3rem;

  font-weight: bold;

  line-height: 0.48rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #333;
}

.sosmc_left span h4 {
  width: 85%;

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  top: 13%;

  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.26rem;

  letter-spacing: 0em;

  height: calc(0.26rem * 4);

  font-variation-settings: "opsz" auto;

  color: #666666;

  overflow-y: auto;
}

/* 滚动条整体 */

.sosmc_left span h4::-webkit-scrollbar {
  width: 2px; /* 滚动条宽度 */
}

/* 滚动条轨道 */

.sosmc_left span h4::-webkit-scrollbar-track {
  background: transparent;
}

/* 滚动条滑块 */

.sosmc_left span h4::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);

  border-radius: 4px;
}

/* hover 时更明显 */

.sosmc_left span h4::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

.sosmc_left span .sosmcl_pic {
  position: absolute;

  bottom: 0;

  left: 0;

  height: 66.67%;

  width: 100%;

  overflow: hidden;

  /* border-radius: 2.9rem 2.9rem 0 0; */
}

.sosmc_left span .sosmcl_pic img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

/* hover 放大 */

.sosmc_left span:hover .sosmcl_pic img {
  transform: scale(1.08);
}

.sosmc_right {
  width: 59.06%;
}

.sosmc_right ul {
  display: flex;

  flex-direction: column;

  height: 100%;

  gap: 0.3rem;
}

.sosmc_right ul li {
  display: flex;

  justify-content: space-between;

  background: #fff;

  cursor: pointer;

  border-radius: 0.08rem;

  overflow: hidden;
}

.sosmcr_info {
  width: 37.14%;

  padding: 0.24rem 0 0 0.37rem;

  box-sizing: border-box;
}

.sosmcr_info h3 {
  font-family: Arial;

  font-size: 0.3rem;

  font-weight: bold;

  line-height: 0.48rem;

  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;

  color: #333333;

  margin-bottom: 0.1rem;
}

.sosmcr_info h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.26rem;

  letter-spacing: 0em;

  height: calc(0.26rem * 7);

  font-variation-settings: "opsz" auto;

  color: #666666;

  overflow-y: auto;
}

/* 滚动条整体 */

.sosmcr_info h4::-webkit-scrollbar {
  width: 2px; /* 滚动条宽度 */
}

/* 滚动条轨道 */

.sosmcr_info h4::-webkit-scrollbar-track {
  background: transparent;
}

/* 滚动条滑块 */

.sosmcr_info h4::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);

  border-radius: 4px;
}

/* hover 时更明显 */

.sosmcr_info h4::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

.sosmcr_pic {
  width: 60.52%;

  overflow: hidden;
}

.sosmcr_pic span {
  position: relative;
}

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

  display: block;

  padding: 27.54%;
}

.sosmcr_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;

  /* border-radius: 1.5rem 0 0 1.5rem; */
}

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

.sosmc_right ul li:hover .sosmcr_pic img {
  transform: scale(1.08);
}

.sosm_little_contain {
  display: none;
}

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

  .sosm_little_contain {
    display: block;
  }

  .sosm_little_contain ul {
    display: flex;

    flex-direction: column;
  }

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

  .sosm_little_contain ul li span {
    width: 100%;

    position: relative;
  }

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

    display: block;

    padding-bottom: 50%;
  }

  .sosm_little_contain ul li span img {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;
  }

  .sosm_little_contain ul li span .sosmlcp_info {
    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    background: rgba(254, 111, 7, 0.6);

    color: #fff;

    padding: 0.2rem 0.8rem;

    box-sizing: border-box;

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

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

    font-size: 0.22rem;

    font-weight: bold;

    line-height: 0.36rem;

    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;

    margin-bottom: 0.1rem;
  }

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

    font-size: 0.16rem;

    line-height: 0.25rem;

    height: 0.75rem;

    overflow-y: auto;
  }
}

@media screen and (max-width: 768px) {
  .sosm_little_contain ul li span .sosmlcp_info {
    padding: 0.1rem 0.2rem;

    border-radius: 0;
  }

  .sosm_little_contain ul li span .sosmlcp_info h3 {
    font-size: 0.18rem;

    line-height: 0.25rem;

    margin-bottom: 0.1rem;
  }

  .sosm_little_contain ul li span .sosmlcp_info h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .sosm_little_contain ul li span .sosmlcp_info h4 {
    font-size: 0.12rem;

    line-height: 0.18rem;

    height: 0.3rem;
  }

  .sosm_little_contain ul li span .sosmlcp_info h3 {
    font-size: 0.16rem;

    line-height: 0.25rem;

    margin-bottom: 0.02rem;
  }

  /* 滚动条整体 */

  .sosm_little_contain ul li span .sosmlcp_info h4::-webkit-scrollbar {
    width: 2px; /* 滚动条宽度 */
  }

  /* 滚动条轨道 */

  .sosm_little_contain ul li span .sosmlcp_info h4::-webkit-scrollbar-track {
    background: transparent;
  }

  /* 滚动条滑块 */

  .sosm_little_contain ul li span .sosmlcp_info h4::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);

    border-radius: 4px;
  }

  /* hover 时更明显 */

  .sosm_little_contain
    ul
    li
    span
    .sosmlcp_info
    h4::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.45);
  }

  .service_our_service {
    padding: 0.3rem 0;
  }
}

/* -----------------------------------------Service Advantages---------------------------------- */

.service_ser_advantage {
  padding: 0.6rem 0;
}

.ssa_maxbox {
}

.ssam_top {
  margin-bottom: 0.5rem;
}

.company_advantages_contain {
  width: 100%;

  display: flex;

  position: relative;
}

.home_company_advantage_bg {
  position: absolute;

  right: 0;

  bottom: 0;

  width: 41%;

  object-fit: cover;
}

.cac_leftbox {
  width: 40%;

  position: relative;
}

.cac_leftbox::before {
  content: "";

  display: block;

  width: 100%;

  padding-bottom: 76.2%; /* 设置整体高度比例 */
}

.cac_leftbox ul {
  position: absolute;

  inset: 0;
}

.cac_leftbox ul li {
  position: absolute;

  inset: 0;

  opacity: 0;

  transition: opacity 0.4s ease;

  height: auto;
}

.cac_leftbox ul li.active {
  opacity: 1;

  z-index: 2;
}

.cac_leftbox ul li img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.cac_rightbox {
  width: 66.5%;

  margin-left: -6.5%;

  overflow: hidden;

  z-index: 2;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.cac_rightbox_card {
  background: #fff;

  color: #333;

  transition: 0.3s;

  flex: 1;

  border-radius: 0.08rem;

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

  transition:
    box-shadow 0.3s,
    transform 0.3s;

  padding: 0.32rem;

  box-sizing: border-box;

  /* height: 2.6rem; */

  display: flex;

  flex-direction: column;
}

.cac_rightbox_card h3 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  color: #333333;

  margin-bottom: 0.2rem;
}

.cac_rightbox_card h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  color: #666666;

  display: -webkit-box;

  -webkit-line-clamp: 4;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.swiper-slide-active .cac_rightbox_card {
  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  color: #fff;

  border-radius: 0.08rem;

  box-sizing: border-box;
}

.swiper-slide-active .cac_rightbox_card h3 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  color: #ffffff;

  margin-bottom: 0.2rem;
}

.swiper-slide-active .cac_rightbox_card h4 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.3rem;

  color: #ffffff;
}

.cac_rightbox .swiper-wrapper .swiper-slide {
  display: flex;

  align-items: center;
}

.cac_rightbox_pagination {
  text-align: left;

  padding-left: 15%;
}

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

  height: 0.1rem;

  display: inline-block;

  margin: 0 0.08rem !important;

  -webkit-border-radius: 2rem;

  border-radius: 2rem;

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

  outline: none;

  cursor: pointer;

  position: relative;

  -webkit-transition: width 0.5s ease;

  transition: width 0.5s ease;
}

.cac_rightbox_pagination .swiper-pagination-bullet-active {
  width: 0.2rem;

  height: 0.1rem;

  background: var(--i_color);

  background-size: contain;

  border-radius: 50%;

  -webkit-border-radius: 0.24rem;

  -moz-border-radius: 0.24rem;

  -ms-border-radius: 0.24rem;

  -o-border-radius: 0.24rem;
}

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

    flex-direction: column;

    align-items: center;

    box-sizing: border-box;

    padding-left: 0;
  }

  .cac_leftbox {
    width: 100%;

    box-sizing: border-box;

    margin: 0 auto;

    margin-bottom: 0.4rem;
  }

  .cac_rightbox {
    width: 100%;
  }

  .cac_rightbox_pagination {
    text-align: center;
  }

  .cac_leftbox::before {
    content: "";

    display: block;

    width: 100%;

    padding-bottom: 44.2%;
  }

  .cac_rightbox_pagination {
    text-align: center;

    padding-left: 0%;
  }

  .home_company_advantage_bg {
    display: none;
  }
}

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

    margin-bottom: 0.2rem;
  }

  .cac_rightbox_card h4 {
    font-family: Arial;

    font-size: 0.16rem;

    font-weight: normal;

    line-height: 0.24rem;

    color: #666666;

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;

    height: 47%;
  }

  .swiper-slide-active .cac_rightbox_card h3 {
    font-size: 0.2rem;
  }

  .swiper-slide-active .cac_rightbox_card h4 {
    font-family: Arial;

    font-size: 0.16rem;

    font-weight: normal;

    line-height: 0.24rem;

    color: #ffffff;

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .cac_rightbox {
    margin-left: 0;
  }

  .cac_rightbox .swiper-slide {
    width: 100%;

    margin: 0 auto;
  }

  .service_ser_advantage {
    padding: 0.3rem 0;
  }

  .swiper-slide-active .cac_rightbox_card h3 {
    font-size: 0.2rem;

    margin-bottom: 0.1rem;
  }

  .swiper-slide-active .cac_rightbox_card h4 {
    font-size: 0.14rem;

    line-height: 0.2rem;
  }

  .cac_leftbox {
    width: 100%;

    box-sizing: border-box;

    margin: 0 auto;

    margin-bottom: 0.1rem;
  }
}

/* --------------------------------------How To Buy --------------------------------- */

.service_how_to_by {
  padding: 0.6rem 0;
}

.shtb_maxbox {
}

.buy_ul {
  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem;

  margin-top: 0.4rem;
}

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

.buy_box {
  background-color: rgba(244, 104, 4, 0.1);

  box-sizing: border-box;

  border-radius: 0.12rem;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.buy_box h3 {
  box-sizing: border-box;

  padding-top: 0.3rem;

  font-size: 0.3rem;

  color: var(--i_color);

  font-weight: bold;

  text-align: center;

  margin-bottom: 0.05rem;
}

.buy_box i {
  display: block;

  width: 0.5rem;

  height: 0.06rem;

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

  background-size: contain;

  margin: 0 auto;
}

.buy_box h4 {
  font-size: 0.22rem;

  line-height: 0.25rem;

  min-height: 0.5rem;

  color: #333;

  text-align: center;

  font-weight: bold;

  margin: 0.15rem 0% 0.2rem 0%;

  padding: 0 5%;
}

.buy_box img {
  width: 100%;

  height: auto;

  object-fit: cover;
}

.buy_ul li h5 {
  font-size: 0.18rem;

  color: #666;

  text-align: center;

  margin-top: 0.2rem;

  font-family: Arial;
}

@media screen and (max-width: 1440px) {
  .buy_ul {
    gap: 0.4rem;
  }

  .buy_ul li {
    width: calc((100% - 1.6rem) / 5);
  }

  .buy_box h4 {
    font-size: 0.2rem;
  }

  .buy_bac {
    padding-top: 0.8rem;
  }

  .buy_ul li h5 {
    font-size: 0.16rem;
  }
}

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

  .buy_ul li {
    width: calc((100% - 0.8rem) / 5);
  }

  .buy_bac {
    padding-top: 0.6rem;
  }
}

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

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

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

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

  .buy_ul li {
    width: 100%;
  }
}

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

/* --------------------------------------Frequently Asked Questions--------------------------- */

.service_faq {
  padding: 0.6rem 0;
}

.sf_maxbox {
}

.sfm_top {
  margin-bottom: 0.5rem;
}

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

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

.news_maxbox {
  padding: 0.6rem 0;

  background: #f7f7f7;
}

.nm_box {
}

.nmb_tab {
  display: flex;

  gap: 0.3rem;

  margin-bottom: 0.5rem;
}

.nmb_tab li a {
  padding: 0.13rem 0.9rem;

  box-sizing: border-box;

  font-family: Arial;

  font-size: 0.18rem;

  color: #333333;

  border: 1px solid #999999;

  border-radius: 0.5rem;
}

.nmb_tab li.active a {
  background: linear-gradient(270deg, #fea307 0%, #fe6f07 100%);

  color: #fff;

  border: transparent 1px solid;

  background-clip: padding-box;
}

.nmb_list {
  display: flex;

  flex-direction: column;

  gap: 0.5rem;
}

.nmb_list li {
  padding: 0.09rem 0.6rem 0.09rem 0.18rem;

  box-sizing: border-box;

  background: #fff;

  border-radius: 0.12rem;
}

.nmb_list li a {
  display: flex;

  justify-content: space-between;
}

.nmb_list li a .nmbl_pic {
  width: 26%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.nmbl_pic span {
  position: relative;
}

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

  display: block;

  padding-bottom: 68%;
}

.nmbl_pic span img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 0.12rem;
}

.nmb_list li a .nmbl_info {
  width: 71%;

  padding: 0.2rem 0;

  box-sizing: border-box;
}

.nmbl_info h3 {
  font-family: Arial;

  font-size: 0.16rem;

  font-weight: normal;

  line-height: normal;

  letter-spacing: 0em;

  color: #999999;

  margin-bottom: 0.2rem;
}

.nmbl_info h4 {
  font-family: Arial;

  font-size: 0.24rem;

  font-weight: bold;

  line-height: normal;

  letter-spacing: 0em;

  color: #333333;

  margin-bottom: 0.2rem;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.nmbl_info h5 {
  font-family: Arial;

  font-size: 0.18rem;

  font-weight: normal;

  line-height: 0.28rem;

  letter-spacing: 0em;

  color: #666666;

  margin-bottom: 0.35rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

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

/* Hover 状态 */

.nmb_list li:hover a .nmbl_info .public_btn_noA {
  color: #fff;

  border-color: transparent;
}

.nmb_list li:hover a .nmbl_info .public_btn_noA::after {
  transform: skewX(-45deg) scale(1, 1);
}

/* Hover 图标变白 */

.nmb_list li:hover a .nmbl_info .public_btn_noA img {
  filter: brightness(0) invert(1);
}

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

    margin-bottom: 0.1rem;
  }

  .nmbl_info h4 {
    font-size: 0.2rem;

    margin-bottom: 0.1rem;
  }

  .nmbl_info h5 {
    font-size: 0.16rem;

    line-height: 0.28rem;

    margin-bottom: 0.15rem;
  }
}

@media screen and (max-width: 768px) {
  .nmb_list li a .nmbl_pic {
    width: 30%;
  }

  .nmb_list li a .nmbl_info {
    width: 67%;

    padding: 0.1rem 0;
  }

  .nmb_list {
    gap: 0.3rem;
  }
}

@media screen and (max-width: 560px) {
  .nmb_tab li a {
    padding: 0.1rem 0.3rem;

    font-size: 0.16rem;
  }

  .news_maxbox {
    padding: 0.3rem 0;
  }

  .nmb_tab {
    margin-bottom: 0.3rem;
  }

  .nmb_list li a .nmbl_pic {
    width: 38%;
  }

  .nmb_list li a .nmbl_info {
    width: 60%;

    padding: 0;
  }

  .nmb_list li {
    padding: 0.09rem;
  }

  .nmbl_info h4 {
    font-size: 0.16rem;

    margin-bottom: 0.05rem;
  }

  .nmbl_info h5 {
    font-size: 0.14rem;

    line-height: 0.2rem;

    margin-bottom: 0.1rem;
  }
}

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

/* ------------------------------------------------Worldwide Coverage------------------------------ */

.contact_worldwide_coverage {
  padding: 0.6rem 0;
}

.cwc_maxbox {
}

.cwcm_top {
  margin-bottom: 0.5rem;
}

.contact__list {
  display: -webkit-flex;

  display: flex;

  flex-wrap: nowrap;

  gap: 0 2%;
}

.contact__list dt {
  text-align: center;

  width: 100%;

  box-sizing: border-box;

  padding: 0.4rem 0.2rem;

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

  position: relative;

  overflow: hidden;
}

.contact__list dt::before {
  content: "";

  position: absolute;

  left: 24%;

  top: 104%;

  width: 4rem;

  height: 4rem;

  box-sizing: border-box;

  border: 0.6rem solid rgba(254, 111, 7, 0.06);

  -webkit-border-radius: 50%;

  border-radius: 50%;

  -webkit-transition: all 0.8s 0.3s;

  transition: all 0.8s 0.3s;
}

.contact__list dt::after {
  content: "";

  position: absolute;

  left: 50%;

  transform: translate(-50%, 0);

  bottom: 0;

  width: 0;

  height: 2px;

  background: var(--i_color);
}

.contact__list span {
  position: relative;
}

.contact__list i {
  display: table;

  margin-left: auto;

  margin-right: auto;

  width: 0.6rem;

  height: 0.6rem;

  background: var(--i_color2);

  -webkit-border-radius: 50%;

  border-radius: 50%;

  position: relative;
}

.contact__list iconify-icon {
  position: absolute;

  top: 50%;

  left: 50%;

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

  font-size: 0.28rem;

  color: var(--i_color);
}

.contact__list h6 {
  margin: 0.16rem 0;

  font-size: 0.18rem;

  color: #666;
}

.contact__list a {
  display: block;
}

.contact__list a,
.contact__list p {
  font-size: 0.2rem;

  font-weight: bold;

  line-height: 1.5;
}

.contact__list dt:hover {
  background: var(--i_color2);

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

.contact__list dt:hover::before {
  top: 44%;
}

.contact__list dt:hover::after {
  width: 100%;
}

.contact__list dt:hover i {
  background: var(--i_color);
}

.contact__list dt:hover iconify-icon {
  color: #fff;
}

.contact__list dt,
.contact__list i,
.contact__list iconify-icon,
.contact__list dt::after {
  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;
}

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

    gap: 26px 2%;
  }

  .contact__list dt {
    width: 49%;
  }

  .contact__list i {
    width: 50px;

    height: 50px;
  }

  .contact__list iconify-icon {
    font-size: 24px;
  }
}

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

  .contact__list a,
  .contact__list p {
    font-size: 16px;
  }
}

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

  .contact__list dt {
    width: 100%;

    padding: 20px 10px;
  }

  .contact__list i {
    width: 40px;

    height: 40px;
  }

  .contact_worldwide_coverage {
    padding: 0.3rem 0;
  }
}

/* -----------------------------------------Contact Form------------------------------------------- */

.contactUs_form {
  padding: 0.6rem 0;

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

.cf_maxbox {
}

.cfm_top {
  margin-bottom: 0.5rem;
}

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

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

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

.contact_map {
  height: 5.8rem;
}

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

  height: 100% !important;
}

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

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

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

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

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

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

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

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

#wpforms-160 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 228px;

  --wpforms_input_font_size: 18px;

  width: 100%;
}

#wpforms-160 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

/* 字段样式 */

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

  padding: 0 1px 20px;

  margin: 0 0 6px;

  overflow-x: initial !important;

  position: relative;
}

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

#wpforms-160-field_1::placeholder,
#wpforms-160-field_2::placeholder,
#wpforms-160-field_3::placeholder,
#wpforms-160-field_4::placeholder,
#wpforms-160-field_5::placeholder {
  color: #999999;

  opacity: 1;
}

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

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

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #999;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

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

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

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

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

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

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: left;
}

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

  height: 0.63rem;

  font-size: 0.18rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color);

  border: none;

  border-radius: 0.05rem;
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-160 .wpforms-submit-container button:hover {
  background: #fff;

  color: var(--i_color);

  border: var(--i_color) 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-160 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

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

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

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

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

  #wpforms-160 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

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

    font-size: 0.16rem;
  }
}

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

.hide {
  display: none !important;
}

/* ---------------------产品详情底部表单-------------- */

#wpforms-163 {
  --wpforms_input_height: 60px;

  --wpforms_textarea_height: 228px;

  --wpforms_input_font_size: 18px;

  width: 100%;
}

#wpforms-163 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

/* 字段样式 */

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

  padding: 0 1px 20px;

  margin: 0 0 6px;

  overflow-x: initial !important;

  position: relative;
}

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

#wpforms-163-field_1::placeholder,
#wpforms-163-field_2::placeholder,
#wpforms-163-field_3::placeholder,
#wpforms-163-field_4::placeholder,
#wpforms-163-field_5::placeholder {
  color: #999999;

  opacity: 1;
}

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

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 20px !important;

  margin: 0 0;

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

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #999;

  border-radius: 0.05rem;

  font-family: Arial;
}

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

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

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

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

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

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

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: left;
}

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

  height: 0.63rem;

  font-size: 0.18rem;

  color: #fff;

  font-weight: bold;

  background: var(--i_color);

  border: none;

  border-radius: 0.05rem;
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-163 .wpforms-submit-container button:hover {
  background: #fff;

  color: var(--i_color);

  border: var(--i_color) 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-163 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

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

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

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

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

  #wpforms-163 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

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

    font-size: 0.16rem;
  }
}

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

/* ---------------------contactUs表单-------------- */

#wpforms-166 {
  --wpforms_input_height: 55px;

  --wpforms_textarea_height: 160px;

  --wpforms_input_font_size: 16px;

  width: 100%;
}

#wpforms-166 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}

/* 字段样式 */

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

  padding: 0 1px 20px;

  margin: 0 0 6px;

  overflow-x: initial !important;

  position: relative;
}

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

#wpforms-166-field_1::placeholder,
#wpforms-166-field_2::placeholder,
#wpforms-166-field_3::placeholder,
#wpforms-166-field_4::placeholder,
#wpforms-166-field_5::placeholder {
  color: #666;

  opacity: 1;
}

#wpforms-166 .wpforms-field-container .wpforms-field > input,
#wpforms-166 .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: #fff;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;

  color: #666;

  border-radius: 0.05rem;

  font-family: Arial;

  background-clip: padding-box;
}

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

  background: #fff;

  border: transparent 1px solid;
}

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

  background: #fff;
}

#wpforms-166 input::placeholder,
#wpforms-166 textarea::placeholder {
  color: #666;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
}

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

  outline: none;

  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

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

  font-size: 0;

  margin: 0 0;
}

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

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: center;
}

#wpforms-166 .wpforms-submit-container button {
  width: 1.8rem;

  height: 0.55rem;

  font-size: 0.18rem;

  color: var(--i_color);

  font-weight: bold;

  background: transparent;

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

  border-radius: 0.4rem;
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-166 .wpforms-submit-container button:hover {
  background: var(--i_color);

  color: #fff;

  border: transparent 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-166 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }

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

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

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

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

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

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

  #wpforms-166 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }

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

    font-size: 0.16rem;
  }
}

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

.pdcd_list {
  position: relative;
  overflow: hidden;
  padding: 0.1rem 0 0.4rem 0;
  box-sizing: border-box;
}

.pdcd_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  /* padding: 0.05rem; */
}

.pdcd_list .swiper-slide {
  flex-shrink: 0;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.25s ease;
  -webkit-transition: box-shadow 0.25s ease;
  -moz-transition: box-shadow 0.25s ease;
  -ms-transition: box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
}

.pdcd_list li span {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pdcd_list li span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.pdcd_list li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pdcd_list_pagination {
  text-align: center;
}

/* 进度条容器 */
.pdcd_list_pagination.swiper-pagination-progressbar {
  height: 2.59px;
  background: #e0e0e1;
  border-radius: 4px;
  overflow: hidden;
  top: auto;
  bottom: 0rem;
  width: 56.4%;
  left: 50%;
  transform: translateX(-50%);
}

/* 进度条填充 */
.pdcd_list_pagination .swiper-pagination-progressbar-fill {
  background: var(--i_color);
  border-radius: 4px;
}
