@charset "utf-8";

:root {
  --i_color: #0f345b;
  /* 全局颜色 */
  --i_color2: #cf1e2c;

  /* 副颜色 */
  --top_h: 1.2rem;
  --header_height: 0.82rem;
  /* 顶部高度 */
  --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.85rem;
    --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: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_l {
  display: block;
  box-sizing: border-box;
  padding-left: 13.54%;
}
.wrap_l02 {
  display: block;
  box-sizing: border-box;
  padding-left: 13.54%;
}
.wrap02 {
  width: 1500px;
  max-width: 94vw;
  margin-left: auto;
  margin-right: auto;
}
.wrap_h {
  width: 1760px;
  max-width: 94vw;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1921px) {
  .wrap {
    width: 85vw;
    max-width: none;
  }
  .wrap02 {
    width: 85vw;
    max-width: none;
  }
  .wrap_h {
    width: 85vw;
    max-width: none;
  }
}
@media screen and (max-width: 1440px) {
  .wrap_l02 {
    padding: 0 3%;
  }
}
@media screen and (max-width: 1024px) {
  .wrap_l {
    padding-left: 3%;
  }
}
@media screen and (max-width: 768px) {
  .wrap_l {
    padding: 0 3%;
  }
}
/* --------------------占位盒子----------------- */
.header_heightbox {
  height: calc(var(--top_h));
}

@media screen and (max-width: 560px) {
  .header_heightbox {
    height: var(--header_height);
  }
}
/* ----------------------------------------public_btn------------------------------- */
.public_btn {
}
.public_btn a {
  font-family: "Outfit";
  font-size: 0.18rem;
  border: 2px solid transparent;
  border-radius: 0.04rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-weight: normal;
  transition: color 0.5s;
  z-index: 1;
  cursor: pointer;

  color: #fff;
  padding: 0.11rem 0.2rem;
  background: var(--i_color2);
  box-sizing: border-box;
}
.public_btn a img {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
  margin-left: 0.1rem;
}
.public_btn a::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #fff;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  top: 100%;
  left: 100%;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.7s ease;
}
.public_btn a:hover {
  color: var(--i_color2);
  border: 2px solid var(--i_color2);
}
.public_btn a:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3200%)
    hue-rotate(340deg) brightness(90%) contrast(95%);
}
.public_btn a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 1440px) {
  .public_btn a {
    padding: 0.1rem 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .public_btn a img {
    width: 0.24rem;
    height: 0.24rem;
    margin-left: 0.08rem;
  }
  .public_btn a {
    font-size: 0.16rem;
    padding: 0.06rem 0.12rem;
  }
}
@media screen and (max-width: 768px) {
  .public_btn a {
    font-size: 0.14rem;
    padding: 0.06rem 0.1rem;
  }
  .public_btn a img {
    width: 0.2rem;
    height: 0.2rem;
    margin-left: 0.08rem;
  }
}
@media screen and (max-width: 560px) {
  .public_btn a {
    font-size: 0.12rem;
    padding: 0.05rem 0.08rem;
  }
  .public_btn a img {
    width: 0.16rem;
    height: 0.16rem;
    margin-left: 0.05rem;
  }
}
@media screen and (max-width: 375px) {
}

/* -------------------------------------other_btn--------------------------------- */
.other_btn {
}
.other_btn a {
  font-family: "Outfit";
  font-size: 0.18rem;
  border: 2px solid var(--i_color2);
  border-radius: 0.04rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 1;
  cursor: pointer;
  color: var(--i_color2);
  padding: 0.11rem 0.2rem;
  background: transparent;
  box-sizing: border-box;
}
.other_btn a img {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
  margin-left: 0.1rem;
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(3200%)
    hue-rotate(340deg) brightness(90%) contrast(95%);
  transition: all 0.5s ease;
}
.other_btn a::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--i_color2);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  top: 100%;
  left: 100%;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.7s ease;
}
.other_btn a:hover {
  color: #fff;
  border: 2px solid transparent;
}
.other_btn a:hover img {
  filter: brightness(0) invert(1);
}
.other_btn a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 1440px) {
  .other_btn a {
    padding: 0.1rem 0.18rem;
  }
}
@media screen and (max-width: 1024px) {
  .other_btn a img {
    width: 0.24rem;
    height: 0.24rem;
    margin-left: 0.08rem;
  }
  .other_btn a {
    font-size: 0.16rem;
    padding: 0.06rem 0.12rem;
  }
}
@media screen and (max-width: 768px) {
  .other_btn a {
    font-size: 0.14rem;
    padding: 0.06rem 0.1rem;
  }
  .other_btn a img {
    width: 0.2rem;
    height: 0.2rem;
    margin-left: 0.08rem;
  }
}
@media screen and (max-width: 560px) {
  .other_btn a {
    font-size: 0.12rem;
    padding: 0.05rem 0.08rem;
  }
  .other_btn a img {
    width: 0.16rem;
    height: 0.16rem;
    margin-left: 0.05rem;
  }
}
@media screen and (max-width: 375px) {
}
/* Paging */

.in_paging {
  --size: 30px;

  --border_radius: 5px;

  --curr_color: var(--i_color);
  box-sizing: border-box;
}

.in_paging ul {
  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  text-align: center;
  width: 100%;
}

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

  margin: 0 4px;
}

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

  padding: 0 10px;

  height: var(--size);

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

  font-size: 14px;

  color: #666;

  background: #fff;

  box-sizing: border-box;

  border: 1px solid #ccc;

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

  border-radius: var(--border_radius);

  overflow: hidden;
}

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

.in_paging i {
  margin-top: 14px;

  width: 100%;

  font-size: 13px;

  color: #888;
}

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

  background: var(--curr_color);

  color: #fff !important;
}

/* ----------------------------------public_title------------------------ */
.public_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.public_title h3 {
  font-family: "Outfit";
  font-size: 0.4rem;
  font-weight: 600;
  color: var(--i_color);
  padding-bottom: 0.1rem;
  border-bottom: var(--i_color) 0.03rem solid;
  width: fit-content;
  margin-bottom: 0.16rem;
  text-align: center;
}
.public_title h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #333333;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .public_title h3 {
    font-size: 0.35rem;
  }
  .public_title h4 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1200px) {
  .public_title h3 {
    font-size: 0.3rem;
    margin-bottom: 0.1rem;
  }
  .public_title h4 {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 1024px) {
  .public_title h3 {
    font-size: 0.26rem;
    padding-bottom: 0.05rem;
  }
  .public_title h4 {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .public_title h3 {
    font-size: 0.24rem;
    padding-bottom: 0.05rem;
  }
}
@media screen and (max-width: 560px) {
  .public_title h3 {
    font-size: 0.2rem;
  }
  .public_title h4 {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 375px) {
  .public_title h3 {
    font-size: 0.18rem;
  }
  .public_title h4 {
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
}
/* --------------------顶部信息----------------- */
.top_info {
  width: 100%;
  height: 0.38rem;
  background-color: var(--i_color);
}
.top_info_maxbox {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.top_info_maxbox_left {
  font-size: 0.14rem;
  color: #ffffff;
  height: 100%;
  display: flex;
  align-items: center;
}
.top_info_maxbox_right ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  height: 100%;
  color: #ffffff;
}

.top_info_maxbox_right ul li {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.top_info_maxbox_right ul li a {
  display: flex;
  align-items: center;
}
.top_info_maxbox_right ul li span {
  font-size: 0.14rem;
  font-family: "Montserrat";
  color: #ffffff;
  display: flex;
  align-items: center;
}
.top_info_maxbox_right ul li span a {
  font-size: 0.14rem;
  font-family: "Montserrat";
  color: #ffffff;
}
.top_info_maxbox_right ul li span a:hover {
  text-decoration: underline;
}
.top_info_maxbox_right ul .timr_segmentation {
  color: rgba(255, 255, 255, 0.2);
}
.top_info_maxbox_right ul li iconify-icon {
  font-size: 0.18rem;
}
.top_info_maxbox_right ul li a:hover iconify-icon {
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .top_info_maxbox_left {
    font-size: 0.13rem;
  }
  .top_info_maxbox_right ul li img {
    margin-right: 0.05rem;
    width: 0.15rem;
    height: 0.15rem;
  }
  .top_info_maxbox_right ul li span {
    font-size: 0.13rem;
  }
  .top_info_maxbox_right ul li span a {
    font-size: 0.13rem;
  }
  /* .top_info {
    display: none;
  } */
}
@media screen and (max-width: 560px) {
  .top_info {
    display: none;
  }
  .top_info_maxbox {
    display: block;
    padding: 0.05rem;
  }
  .top_info_maxbox_left {
    font-size: 0.12rem;
    height: auto;
  }
  .top_info_maxbox_right ul li span {
    font-size: 0.12rem;
  }
  .top_info_maxbox_right ul li span a {
    font-size: 0.12rem;
  }
  .top_info_maxbox_right ul li img {
    margin-right: 0.03rem;
    width: 0.13rem;
    height: 0.13rem;
  }
}
@media screen and (max-width: 375px) {
}
/* --------------------------------------------------header----------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2014;
  height: var(--top_h);
}

.top_cont {
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: var(--header_height);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.top_cont .top {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}

/* @media screen and (max-width:1024px) {
	.top_cont{background: #373737;}
} */
/* logo */
.logo {
  display: -webkit-flex;

  height: 51%;
}

.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

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

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

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

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

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 0.8rem;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    gap: 0 0.45rem;
    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }

  .i_nav > li::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    background: var(--i_color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    /* display: none; */
  }

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

  .i_nav > li > a {
    display: block;
    font-size: 18px;
    color: #333;
    /* line-height: var(--top_h); */
    line-height: 0.32rem;
    white-space: nowrap;
    box-sizing: border-box;
    font-weight: bold;
    font-family: "Outfit";
  }

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

  .i_nav > li > .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1.6rem;
    background: var(--i_color);
    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
    font-size: 0;
    top: calc(100% + 0.15rem);
  }

  .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: #fff;
    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: var(--i_color2);
  }

  .i_nav .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #e1e1e1;
    min-width: 1.4rem;
  }

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

  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;
    color: #333;
  }
  .i_nav .sub-menu .sub-menu li:hover a {
    color: var(--i_color2);
  }
  .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;
  }
}

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

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

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

@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: fixed;
    top: calc(var(--top_h) + 0.44rem);
    left: 0;
    width: 100%;
    width: 100vw;
    max-height: calc(100vh - var(--top_h));
    background: #fff;
    overflow-y: auto;
    z-index: 2;
  }

  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }

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

  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }

  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.24rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);
    background-size: 0.24rem;
  }

  .i_nav > li > a {
    padding: 0 3%;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }

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

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

  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 16px;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }

  /* .i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	} */
  .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }

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

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

  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 15px;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }

  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 768px) {
  .i_nav {
    top: calc(var(--top_h));
  }
}
@media screen and (max-width: 560px) {
  .i_nav {
    top: calc(var(--header_height));
  }
}
/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}

.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}

.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}

.nav_menu::before {
  top: 0;
}

.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}

.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}

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

/* 导航下拉 */
.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 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: auto;
  gap: 0 0.3rem;
}

/* search */
.top_search_btn {
  display: none;
}

.search_cont {
  --search_height: 0.45rem;
  position: relative;
}
/* .search_cont::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.15rem;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background-color: #d1d4d5;
} */
.search_cont form {
  width: 2.8rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
  border: 1px solid #cf1e2c;
}

.search_ipt {
  width: calc(100% - var(--search_height));
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0.1rem 0 0.12rem;
  background: none;
  font-size: 0.18rem;
  color: #333;
}

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

  background-size: 0.2rem;
  cursor: pointer;
}

@media screen and (max-width: 1440px) {
  .top_search_btn {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    position: relative;
  }

  .top_search_btn iconify-icon {
    font-size: 0.24rem;
    color: #333;
  }

  .search_cont {
    --search_height: 0.4rem;
  }

  .search_cont {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: calc(var(--header_height) + 0.2rem);
    left: 0;
    width: 100%;
    background: #f5f6f7;
    box-sizing: border-box;
    padding: 0.2rem 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .search_cont.on {
    opacity: 1;
    visibility: visible;
    top: calc(var(--top_h));
  }

  .search_cont form {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-color: #979797;
  }

  .search_ipt {
    font-size: 13px;
  }

  .search_btn {
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    height: 70%;
    padding-bottom: 0;
  }
  .top_language_btn::before {
    display: none;
  }
  .search_cont {
    --search_height: 0.34rem;
  }

  .search_cont {
    padding: 0.14rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .top_search_btn iconify-icon {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .search_cont.on {
    top: var(--top_h);
  }
}
@media screen and (max-width: 560px) {
  .search_cont.on {
    top: var(--header_height);
  }
}
.top_language {
  position: relative;
}

.top_language_btn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: var(--header_height);
  padding-right: 0.2rem;
  cursor: pointer;
  position: relative;
}

.top_language_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.05rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333; /* 颜色 */
  display: none;
}

.top_language_btn p {
  font-size: 18px;
  color: #333;
}

.top_language_btn img {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.05rem;
}

.language_list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(var(--header_height) + 0.2rem);
  right: 0;
  background: #fff;
  min-width: 1.2rem;
  z-index: 2016;
  box-shadow: 0 8px 0.1rem rgb(0 0 0 / 10%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.16rem 0.2rem;
  text-align: left;
}

.language_list.on {
  opacity: 1;
  visibility: visible;
  top: var(--header_height);
}

.language_list dt > h6 {
  margin-bottom: 0.08rem;
  font-size: 0.17rem;
  font-weight: bold;
  white-space: nowrap;
}

.curr_lang {
  margin-bottom: 0.12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #eee;
}

.lang_list a {
  display: block;
  padding: 0.06rem 0;
}

.lang_list span img {
  display: none;
}

.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;
  font-size: 14px;
  position: relative;
}

.lang_list .trp-ls-language-name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.18rem;
  height: 0.18rem;
  box-sizing: border-box;
  border: 1px solid #aaa;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.lang_list .trp-ls-language-name::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.06rem;
  width: 0.06rem;
  height: 0.06rem;
  background: #006bb8;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

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

.lang_list li:hover .trp-ls-language-name,
.curr_lang .trp-ls-language-name {
  color: #333;
}

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

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

@media screen and (max-width: 1200px) {
  .top_language_btn p {
    display: none;
  }
  .top_language_btn::before,
  .top_language_btn::after {
    display: none;
  }
  .top_language_btn img {
    width: 0.2rem;
    height: 0.2rem;
  }
}

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

  .language_list dt > h6 {
    font-size: 15px;
  }

  .lang_list a {
    padding: 2px 0;
  }

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

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

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

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

.full_header_height {
  display: none;
  height: var(--header_height);
}

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

/* -------------------------------------------footer------------------------------------- */
footer {
  padding: 0.6rem 0 0 0;
}

.footer_maxBox {
  height: 100%;
}

.footer_topMaxBox {
  background: #fff;
}
.ft_logo {
  padding-bottom: 0.3rem;
  border-bottom: #cf1e2c 2px solid;
}
.ft_logo span {
  position: relative;
  display: block;
  width: 55.7%;
}
.ft_logo span::before {
  content: "";
  display: block;
  padding-bottom: 8%;
}
.ft_logo span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_menu_maxbox {
  display: flex;
}

.fmm_max_ul {
  display: flex;
  padding: 0.4rem 0;
  width: 100%;
  gap: 0.8rem;
}
.fmm_max_ul > li:nth-child(1) {
  flex: 2;
}
.fmm_max_ul > li:nth-child(2),
.fmm_max_ul > li:nth-child(3) {
  flex: 1.5;
}
.fmm_max_ul > li:nth-child(4) {
  flex: 1;
}
.fmml_infoul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fmml_infoul li {
}
.fmml_infoul li a {
  display: flex;
  align-items: center;
  font-family: "Montserrat";
  font-size: 0.18rem;

  color: #333333;
}
.fmml_infoul li a img {
  width: 0.22rem;
  height: 0.22rem;
  object-fit: contain;
  margin-right: 0.08rem;
  transition: all 0.6s ease;
  transform-style: preserve-3d;
}
.fmml_infoul li a:hover {
  text-decoration: underline;
  color: var(--i_color);
}
.fmml_infoul li a:hover img {
  transform: rotateY(180deg);
}
.ft_media_li dl {
  display: flex;
  gap: 0.3rem;
}
.ft_media_li dl dt a {
  font-size: 0.27rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
}
.ft_media_li dl dt a iconify-icon {
  transition: all 0.6s ease;
  transform-style: preserve-3d;
}
.ft_media_li dl dt a:hover iconify-icon {
  transform: rotateY(180deg);
}
.ft_media_li dl dt:nth-child(1) a {
  background: #1874f1;
}
.ft_media_li dl dt:nth-child(2) a {
  background: #0162c9;
}
.ft_media_li dl dt:nth-child(3) a {
  background: #ff0000;
}
.ft_media_li dl dt:nth-child(4) a {
  background: #000000;
}

.fmm_max_ul li h3 {
  font-family: "Montserrat";
  font-size: 0.26rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.15rem;
}
.fmml_fonsize li a {
  text-transform: lowercase !important; /* 先把所有字母变小写 */
}
.fmml_fonsize li a::first-letter {
  text-transform: uppercase !important; /* 首字母大写 */
}
.fmml_menuul li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.fmml_menuul li a {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #333333;
  transition: all 0.35s ease;
}
.fmml_menuul li a:hover {
  text-decoration: underline;
  color: var(--i_color);
}
.footer_bottomMaxBox {
  padding: 0.2rem 0;
  background: var(--i_color);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 0.16rem;
}
.footer_bottomMaxBox .wrap a {
  color: #fff;
  cursor: pointer;
}
.footer_bottomMaxBox .wrap a:hover {
  text-decoration: underline;
}

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

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

@media screen and (max-width: 1024px) {
  .fmml_infoul li a {
    font-size: 0.16rem;
  }
  .ft_media_li dl dt a {
    font-size: 0.24rem;
    width: 0.35rem;
    height: 0.35rem;
  }
  .fmml_menuul li a {
    font-size: 0.16rem;
  }
  .fmm_max_ul li h3 {
    font-size: 0.22rem;
    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 768px) {
  .fmm_max_ul > li:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .ft_logo span {
    width: 85%;
  }
  .footer_bottomMaxBox {
    font-size: 0.12rem;
    padding: 0.1rem 0;
  }
  .fmm_max_ul > li:nth-child(2),
  .fmm_max_ul > li:nth-child(3),
  .fmm_max_ul > li:nth-child(4) {
    display: none;
  }
  .fmm_max_ul {
    flex-direction: column;
    padding: 0.2rem 0;
  }

  .ft_logo {
    padding-bottom: 0.1rem;
  }
  .fmml_infoul li a {
    font-size: 0.14rem;
  }
  .fmml_infoul li a img {
    width: 0.2rem;
    height: 0.2rem;
  }
  .ft_media_li dl dt a {
    font-size: 0.18rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .fmml_infoul {
    gap: 0.15rem;
  }
  footer {
    padding: 0.3rem 0 0 0;
  }
}

/* -----------------------------------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.23%;
  /* 设置比例 */
  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.12rem;
  height: 0.12rem;
  display: inline-block;
  margin: 0 0.06rem;
  background: #fff;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  outline: none;
  cursor: pointer;
  transition: width 0.5s ease;
  opacity: 1;
}

.banner-pagination .swiper-pagination-bullet-active {
  width: 0.35rem;
  background: url(https://lingjuimg.com/wp-content/uploads/ShangYi/2026/03/swiper-pagination-active.webp)
    no-repeat center;
  background-size: contain;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.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: 12.46%;
  left: 9%;
  z-index: 3;
  text-align: center;
  width: 41%;
}

.b_text1_text1 {
  font-family: "Outfit";
  font-size: 0.4rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0.25rem;
}
.b_text1_text2,
.b_text1_text3 {
  font-family: "Outfit";
  font-size: 0.36rem;
  color: #ffffff;
  text-align: left;
}
.b_text1_text2 {
  margin-bottom: 0.2rem;
}
.b_text1_text3 {
  margin-bottom: 0.5rem;
}
.b_text1_btn {
  display: flex;
}

.b_text2 {
  top: 23.7%;
}
.b_text2 .b_text1_text1 {
  margin-bottom: 0.15rem;
}
.b_text2 .b_text1_text2 {
  margin-bottom: 0.05rem;
}
.b_text2 .b_text1_text3 {
  width: 90%;
}
.b_text3 {
  position: absolute;
  width: 90%;
  top: 11.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
.b_text3_text1 {
  font-family: "Outfit";
  font-size: 0.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.b_text3_text2,
.b_text3_text3 {
  font-family: "Outfit";
  font-size: 0.36rem;
  color: #ffffff;
  font-weight: normal;
}
.b_text3_text2 {
  margin-bottom: 0.1rem;
}
.b_text3_text3 {
  margin-bottom: 0.4rem;
}
.b_text3_btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .b_text1_text1 {
    font-size: 0.3rem;
    margin-bottom: 0.18rem;
  }
  .b_text1_text2,
  .b_text1_text3 {
    font-family: "Outfit";
    font-size: 0.26rem;
  }
  .b_text1_text2 {
    margin-bottom: 0.18rem;
  }
  .b_text1_text3 {
    margin-bottom: 0.3rem;
  }
  .b_text3_text1 {
    font-size: 0.3rem;
    margin-bottom: 0.18rem;
  }
  .b_text3_text2,
  .b_text3_text3 {
    font-family: "Outfit";
    font-size: 0.26rem;
  }
  .b_text3_text3 {
    margin-bottom: 0.3rem;
  }
}

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

@media screen and (max-width: 1200px) {
  .b_text1_text1 {
    font-size: 0.28rem;
    margin-bottom: 0.15rem;
  }
  .b_text1_text2,
  .b_text1_text3 {
    font-size: 0.22rem;
  }
  .b_text1_text2 {
    margin-bottom: 0.18rem;
  }
  .b_text1_text3 {
    margin-bottom: 0.4rem;
  }
  .b_text3_text1 {
    font-size: 0.28rem;
    margin-bottom: 0.15rem;
  }
  .b_text3_text2,
  .b_text3_text3 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 1024px) {
  .banner-button-prev,
  .banner-button-next {
    display: none;
  }

  .banner-pagination {
    bottom: 0.1rem !important;
  }
  .b_text1 {
    width: 50%;
  }
  .b_text1_text1 {
    font-size: 0.26rem;
    margin-bottom: 0.1rem;
  }
  .b_text1_text2,
  .b_text1_text3 {
    font-size: 0.2rem;
  }
  .b_text1_text2 {
    margin-bottom: 0.12rem;
  }
  .b_text1_text3 {
    margin-bottom: 0.34rem;
  }
  .b_text2 {
    top: 15%;
  }
  .b_text3_text1 {
    font-size: 0.26rem;
    margin-bottom: 0.1rem;
  }
  .b_text3_text2,
  .b_text3_text3 {
    font-size: 0.2rem;
  }
  .b_text3_text2 {
    margin-bottom: 0.1rem;
  }
  .b_text3_text3 {
    margin-bottom: 0.15rem;
  }
}

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

  .banner-pagination .swiper-pagination-bullet-active {
    width: 0.3rem;
  }
  .b_text1_text1 {
    font-size: 0.18rem;
    margin-bottom: 0.06rem;
  }
  .b_text1_text2,
  .b_text1_text3 {
    font-size: 0.16rem;
  }
  .b_text1_text2 {
    margin-bottom: 0.1rem;
  }
  .b_text1_text3 {
    margin-bottom: 0.2rem;
  }
  .b_text3_text1 {
    font-size: 0.18rem;
    margin-bottom: 0.06rem;
  }
  .b_text3_text2 {
    margin-bottom: 0.05rem;
  }
  .b_text3_text2,
  .b_text3_text3 {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 560px) {
  .banner .swiper-slide {
    padding-bottom: 50%;
  }
  .b_text1 {
    top: 10%;
    left: 5%;
    width: 65%;
  }
  .b_text1_text1 {
    font-size: 0.15rem;
    margin-bottom: 0.06rem;
  }
  .b_text1_text2,
  .b_text1_text3 {
    font-size: 0.13rem;
  }
  .b_text1_text2 {
    margin-bottom: 0.05rem;
  }
  .b_text1_text3 {
    margin-bottom: 0.1rem;
  }
  .b_text2 .b_text1_text1 {
    margin-bottom: 0.1rem;
  }

  .b_text3_text1 {
    font-size: 0.15rem;
    margin-bottom: 0.06rem;
  }
  .b_text3_text2,
  .b_text3_text3 {
    font-size: 0.13rem;
  }
  .b_text3_btn {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .b_text3_text2,
  .b_text3_text3 {
    display: none;
  }
  .b_text1_btn {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  .b_text1_text3 {
    display: none;
  }
}

/* ------------------------------home_product_category---------------------------- */
.home_product_category {
  padding: 0.6rem 0;
  background: linear-gradient(0deg, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
}

.hpc_maxbox {
}
.hpcm_top {
  display: flex;
  margin-bottom: 0.4rem;
  justify-content: space-between;
  align-items: center;
}
.hpcm_top .public_title {
  align-items: flex-start;
}
.hpcm_contain {
  width: 100%;
}
.hpcm_contain ul {
  display: flex;
  gap: 0.11rem;
  width: 100%;
  flex-wrap: wrap;
}
.hpcm_contain ul li {
  width: calc((100% - 3 * 0.11rem) / 4);
  overflow: hidden;
}
.hpcm_contain ul li span {
  display: block;
  position: relative;
  width: 100%;
}
.hpcm_contain ul li span::before {
  content: "";
  display: block;
  padding-bottom: 158.6%;
}
.hpcm_contain ul li span .hpcmc_bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hpcm_contain ul li span p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-family: "Outfit";
  font-size: 0.32rem;
  font-weight: 600;
  line-height: 0.5rem;
  text-align: center;
  color: #ffffff;
  width: 90%;
  padding-bottom: 0.28rem;
  transition: all 0.55s ease;
  text-transform: uppercase;
}
.hpcmc_info {
  background: linear-gradient(
    0deg,
    rgba(13, 52, 91, 0.6) 0%,
    rgba(13, 52, 91, 0) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.4rem 0 0.18rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: all 0.55s ease;
  transform: translateY(50px);
}
.hpcmc_info h6 {
  font-family: "Outfit";
  font-size: 0.32rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  width: 90%;
  margin-bottom: 0.27rem;
  text-transform: uppercase;
}
.hpcmc_info i {
  border: 1px solid #ffffff;
  font-family: "Outfit";
  font-weight: normal;
  font-size: 0.18rem;
  padding: 0.16rem 0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  width: 90%;
}
.hpcmc_info i img {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
  margin-left: 0.4rem;
}
.hpcm_contain ul li:hover span p {
  opacity: 0;
}
.hpcm_contain ul li:hover .hpcmc_info {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1200px) {
  .hpcm_contain ul li span p {
    font-size: 0.26rem;
  }
  .hpcmc_info h6 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 1024px) {
  .hpcm_contain ul li span p {
    font-size: 0.24rem;
    line-height: 0.3rem;
  }
  .hpcmc_info h6 {
    font-size: 0.24rem;
    line-height: 0.3rem;
  }
  .hpcmc_info i {
    font-size: 0.16rem;
    padding: 0.1rem 0;
  }
  .hpcmc_info i img {
    width: 0.26rem;
    height: 0.26rem;
    margin-left: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hpcm_contain ul li {
    width: calc((100% - 2 * 0.11rem) / 3);
  }
  .hpcm_contain ul li span p {
    font-size: 0.2rem;
    line-height: 0.3rem;
  }
  .hpcmc_info h6 {
    font-size: 0.2rem;
    line-height: 0.3rem;
    margin-bottom: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .hpcm_contain ul li {
    width: calc((100% - 0.11rem) / 2);
  }
  .home_product_category {
    padding: 0.3rem 0;
  }
  .hpcm_top .public_title {
    align-items: center;
  }
  .hpcm_top .other_btn {
    display: none;
  }
  .hpcm_contain ul li span p {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }
  .hpcmc_info h6 {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }
  .hpcmc_info i img {
    width: 0.22rem;
    height: 0.22rem;
    margin-left: 0.2rem;
  }
  .hpcmc_info i {
    font-size: 0.14rem;
    padding: 0.06rem 0;
  }
  .hpcm_top {
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 375px) {
  .hpcm_contain ul li span p {
    font-size: 0.16rem;
    line-height: 0.26rem;
  }
  .hpcmc_info h6 {
    font-size: 0.16rem;
    line-height: 0.28rem;
    margin-bottom: 0.1rem;
  }
}
/* -----------------------------HOT SALE PRODUCTS----------------------------- */
.home_hot_sale_products {
  padding: 0.6rem 0;
  background: #fff;
}
.hhsp_maxbox {
  overflow: hidden;
}
.hhspm_top {
  margin-bottom: 0.5rem;
}

.hhspm_contain {
}
.hhspm_contain ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.11rem;
}
.hhspm_contain ul li {
  width: calc((100% - 3 * 0.11rem) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.hhspm_contain ul li a {
  width: 100%;
  display: block;
}
.hhspm_contain ul li span {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.hhspm_contain ul li span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.hhspm_contain ul li span img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.35s ease;
}
.hhspm_contain ul li p {
  margin-top: 0.09rem;
  font-family: "Montserrat";
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.28rem;
  text-align: center;
  color: #333333;
  width: 90%;
  transition: all 0.35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hhspm_contain ul li:hover p {
  color: var(--i_color);
}
.hhspm_contain ul li:hover span img {
  transform: scale(1.1);
}
.hhspm_btn {
  display: flex;
  justify-content: center;
  margin-top: 0.6rem;
}
@media screen and (max-width: 1024px) {
  .hhspm_contain ul li p {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .hhspm_contain ul {
    gap: 0.1rem 0.11rem;
  }
}
@media screen and (max-width: 768px) {
  .hhspm_contain ul li {
    width: calc((100% - 2 * 0.11rem) / 3);
  }
  .hhspm_contain ul li p {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }
  .hhspm_top {
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .hhspm_contain ul li {
    width: calc((100% - 0.11rem) / 2);
  }
  .home_hot_sale_products {
    padding: 0.3rem 0;
  }
  .hhspm_top {
    margin-bottom: 0.1rem;
  }
  .hhspm_btn {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .hhspm_contain ul li p {
    font-size: 0.12rem;
  }
}

/* --------------------------------home_about_us--------------- */
.home_about_us {
  padding: 0.6rem 0 2.88rem 0;
  background: linear-gradient(180deg, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
  position: relative;
}
.hau_map_bg {
  position: absolute;
  top: 12%;
  left: 8%;
  width: 44%;
  height: 70%;
  pointer-events: none;
}
.hau_map_bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hau_logo_bg {
  position: absolute;
  bottom: 6%;

  left: 0.24rem;
  width: 8.92rem;
  height: 1.73rem;
}
.hau_logo_bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hau_maxbox {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.haum_info {
  width: 46.53%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.haum_info h3 {
  font-family: "Outfit";
  font-size: 0.4rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.4rem;
  align-self: flex-start;
}
.haum_info h3 i {
  color: var(--i_color);
  margin-left: 0.05rem;
  font-weight: bold;
}
.haum_info h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.26rem;
  color: #333333;
  margin-bottom: 0.37rem;
}
.haum_btn {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  align-self: flex-start;
}
.haum_videobox {
  width: 2rem;
  height: 0.45rem;
  cursor: pointer;
}
.haum_videobox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.haum_pic {
  width: 53.22%;
  position: absolute;
  right: -0.84rem;
  top: 0.2rem;
}
.haum_pic span {
  display: block;
  position: relative;
  width: 100%;
}
.haum_pic span::before {
  content: "";
  display: block;
  padding-bottom: 94.2%;
}
.haum_pic span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.br-gap {
  display: block;
  height: 0.2rem;
}
@media screen and (max-width: 1440px) {
  .haum_pic {
    width: 49%;
    position: relative;
    right: 0;
    top: 0.5rem;
  }
  .hau_map_bg {
    position: absolute;
    top: 0%;
    left: 1%;
    width: 50%;
    height: 79%;
  }
  .hau_logo_bg {
    position: relative;

    width: 6.4rem;
    height: 1.3rem;
  }
  .home_about_us {
    padding: 0.6rem 0 1rem 0;
  }
  .haum_pic span::before {
    padding-bottom: 80.2%;
  }
}
@media screen and (max-width: 1366px) {
  .home_about_us {
    padding: 0.6rem 0;
  }

  .haum_info h3 {
    font-size: 0.35rem;

    margin-bottom: 0.2rem;
  }
  .haum_info h4 {
    font-size: 0.16rem;
    line-height: 0.24rem;
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .hau_logo_bg {
    margin-top: 0.3rem;
    width: 5rem;
    height: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .br-gap {
    height: 0.1rem;
  }
  .hau_logo_bg {
    display: none;
  }
  .hau_maxbox {
    flex-direction: column;
  }
  .haum_info {
    width: 100%;
    margin-bottom: 0.5rem;
    align-items: center;
  }
  .haum_pic {
    width: 95%;
    position: relative;
    right: 0;
  }
  .hau_map_bg {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
    width: 90%;
    height: 59%;
  }
  .haum_videobox {
    width: 1.5rem;
    height: 0.4rem;
  }
  .haum_pic {
    top: 0;
  }
}
@media screen and (max-width: 560px) {
  .br-gap {
    height: 0.05rem;
  }
  .home_about_us {
    padding: 0.3rem 0;
  }
  .haum_info h3 {
    font-size: 0.24rem;
    margin-bottom: 0.2rem;
  }
  .haum_info h4 {
    font-size: 0.14rem;
    line-height: 0.24rem;
    margin-bottom: 0.2rem;
  }
  .haum_videobox {
    width: 1.1rem;
    height: 0.4rem;
  }
  .haum_info {
    margin-bottom: 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;
  }
}

/* eject videos */
.vd_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}
.vd_box_area {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2014;
  width: 60%;
  max-height: 90%;
}
.vd_box_area::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.close_v {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--i_color);
  z-index: 2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.close_v::before {
  content: "+";
  position: absolute;
  top: 46%;
  left: 53%;
  font-size: 0.44rem;
  color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.vd_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .vd_box_area {
    width: 80%;
  }
  .close_v::before {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .vd_box_area {
    width: 88%;
  }
  .close_v {
    top: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}

/* home_why_choose_efirsty */

.home_why_choose_efirsty {
  padding: 0.6rem 0 1.4rem 0;
  background: url(https://lingjuimg.com/wp-content/uploads/ShangYi/2026/03/home_why_choose_efirsty_bg.webp)
    no-repeat center/cover;
}

.hwcem_top {
  margin-bottom: 0.6rem;
}
.hwcem_contain {
  position: relative;
}
/* .hwcem_list {
  position: relative;
  overflow: hidden;
  padding: 0;
} */
.hwceml_box {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hwceml_box .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  align-items: stretch;
  box-sizing: border-box;
}

.hwceml_box .swiper-slide {
  flex-shrink: 0;
  transition: box-shadow 0.35s ease;

  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: rgba(15, 52, 91, 0.5);
  padding: 0.3rem;
  box-sizing: border-box;
  display: flex;
  gap: 0.2rem;
  height: auto;
  display: flex;
  align-items: center;
}

.hwceml_box .swiper-slide span {
  width: 0.46rem;
  height: 0.46rem;
  display: block;
  flex-shrink: 0;
}
.hwceml_box .swiper-slide span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hwceml_box .swiper-slide h3 {
  font-family: "Montserrat";
  font-size: 0.2rem;
  font-weight: 100;
  color: #ffffff;
  line-height: 150%;
}

.hwcem_contain .hwcem_pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  cursor: pointer;
  display: inline-block;
  margin: 0 0.1rem;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
  background: var(--i_color) !important;
  opacity: 1;
}
.hwcem_contain .hwcem_pagination .swiper-pagination-bullet-active {
  position: relative;
  border: 1px solid var(--i_color2);
  background: var(--i_color2) !important;
}
.hwcem_contain .hwcem_pagination .swiper-pagination-bullet-active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  border-radius: 0;
  width: 0.16rem;
  height: 0.16rem;
  border: 1px solid var(--i_color2);
}
/* 指示器 */
.hwcem_contain .hwcem_pagination {
  width: fit-content;
  display: flex;
  align-items: center;
}
.hwcem_prev,
.hwcem_next {
  display: flex;
  align-items: center;
  width: 0.71rem;
  height: 0.17rem;
  cursor: pointer;
}
.hwcem_prev img,
.hwcem_next img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s ease;
}
.hwcem_prev:hover img,
.hwcem_next:hover img {
  transform: scale(1.1);
}
.hwcemc_bottombox {
  display: flex;
  position: absolute;
  bottom: -70%;
  right: 13%;
  gap: 0.2rem;
  align-items: center;
}

@media screen and (max-width: 1366px) {
  .hwcemc_bottombox {
    right: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .hwceml_box .swiper-slide h3 {
    font-size: 0.18rem;
  }
  .hwceml_box .swiper-slide {
    gap: 0.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .hwcem_top {
    margin-bottom: 0.3rem;
  }
  .hwceml_box .swiper-slide {
    padding: 0.2rem;

    gap: 0.2rem;
  }
  .hwceml_box .swiper-slide h3 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .hwcemc_bottombox {
    bottom: -70%;
    left: 50%;
    transform: translate(-50%);
  }
}
@media screen and (max-width: 560px) {
  .home_why_choose_efirsty {
    padding: 0.5rem 0 0.8rem 0;
  }
  .hwceml_box .swiper-slide {
    padding: 0.15rem;
  }
  .hwcem_prev,
  .hwcem_next {
    display: none;
  }
  .hwcemc_bottombox {
    justify-content: center;
    bottom: -50%;
  }
  .hwceml_box .swiper-slide h3 {
    font-size: 0.14rem;
  }
}

/* ---------------------------home_company_advantage--------------------- */
.home_company_advantage {
  padding: 0.6rem 0;
  background: linear-gradient(0deg, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
}

.hca_maxbox {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  overflow: hidden;
}
.hcam_picbox {
  width: 45.14%;
}
.hcam_picbox ul {
  display: flex;
  flex-direction: column;
  position: relative;
}
.hcam_picbox ul::before {
  content: "";
  display: block;
  padding-bottom: 109.2%;
}
.hcam_picbox ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.7s ease;
  transform: translateY(100%);
}
.hcam_picbox ul li.active {
  opacity: 1;
  pointer-events: none;
  transform: translateY(0);
}
.hcam_picbox ul li span {
  display: block;
  width: 100%;
}

.hcam_picbox ul li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hcamp_info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.3rem;
  box-sizing: border-box;
}

.hcamp_info h3 {
  font-family: "Outfit";
  font-size: 0.4rem;
  font-weight: 600;
  font-weight: normal;
  text-align: center;

  color: #ffffff;
  padding-bottom: 0.1rem;
  border-bottom: 3px solid #fff;
  margin-bottom: 0.16rem;
}
.hcamp_info h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.24rem;
  text-align: center;
  color: #ffffff;
}

.hcam_tabbox {
  width: 51.9%;
}
.hcam_tabbox ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.1rem;
}
.hcam_tabbox ul li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.26rem;
  box-sizing: border-box;
  background: #fff;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}
.hcam_tabbox ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--i_color);
  top: 0;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.7s ease;
  z-index: -1;
}
.hcamt_left {
  display: flex;
  align-items: center;
  font-family: "Outfit";

  font-size: 0.2rem;
  font-weight: 600;
  color: var(--i_color);
  transition: all 0.7s ease;
}
.hcamt_left img {
  width: 0.78rem;
  height: 0.78rem;
  object-fit: contain;
  margin-right: 0.2rem;
  transition: all 0.7s ease;
}
.hcam_tabbox ul li span {
  font-family: "Outfit";
  font-size: 0.46rem;
  font-weight: 600;
  color: var(--i_color2);
  transition: all 0.7s ease;
}
.hcam_tabbox ul li:hover .hcamt_left img {
  filter: brightness(0) invert(1);
}
.hcam_tabbox ul li:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.hcam_tabbox ul li:hover .hcamt_left {
  color: #fff;
}
.hcam_tabbox ul li:hover span {
  color: #fff;
}

.hcam_tabbox ul li.active .hcamt_left img {
  filter: brightness(0) invert(1);
}
.hcam_tabbox ul li.active::before {
  transform: scaleX(1);
  transform-origin: left;
}
.hcam_tabbox ul li.active .hcamt_left {
  color: #fff;
}
.hcam_tabbox ul li.active span {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .hcamp_info h3 {
    font-size: 0.3rem;
    padding-bottom: 0.1rem;
    margin-bottom: 0.16rem;
  }
  .hcamp_info h4 {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .hcamt_left img {
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 0.1rem;
  }
  .hcamp_info h3 {
    font-size: 0.26rem;
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
  .hcamp_info h4 {
    font-size: 0.14rem;
    line-height: 0.22rem;
  }
  .hcamp_info {
    padding: 0.2rem;
  }
  .hcamt_left {
    font-size: 0.16rem;
  }
  .hcam_tabbox ul li span {
    font-size: 0.35rem;
  }
}
@media screen and (max-width: 768px) {
  .hcamp_info h3 {
    font-size: 0.2rem;
  }
  .hcamp_info h4 {
    font-size: 0.13rem;
    line-height: 0.21rem;
  }
  .hcamt_left img {
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.1rem;
  }
  .hcam_tabbox ul li {
    padding: 0 0.15rem;
  }
  .hcamt_left {
    font-size: 0.15rem;
  }
  .hcam_tabbox ul li span {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 560px) {
  .home_company_advantage {
    padding: 0.3rem 0;
  }
  .hca_maxbox {
    flex-direction: column;
  }
  .hcam_tabbox {
    width: 100%;
  }
  .hcam_picbox {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .hcam_tabbox ul li {
    padding: 0.12rem;
  }
}

/* ---------------------------------home_news-------------------- */
.home_news {
  padding: 0.6rem 0;
  background: url(https://lingjuimg.com/wp-content/uploads/ShangYi/2026/03/home_news_bg.webp)
    no-repeat center/cover;
}
.hnmt_title {
  align-items: flex-start;
}
.hnmt_title h3 {
  text-align: left;
}
.hnmt_title h4 {
  text-align: left;
}
.hnm_top {
  margin-bottom: 0.5rem;
}

.hnm_contain {
  width: 65.8%;
}
.hc_top {
  background: #fff;
  display: flex;
  cursor: pointer;
  margin-bottom: 0.06rem;
}
.hc_top a {
  display: flex;
  width: 100%;
}
.hc_top a:hover .hct_info h4 {
  color: var(--i_color);
}
.hc_top a:hover span img {
  transform: scale(1.1);
}
.hc_top a:hover .hct_btn::before {
  transform: scaleX(1);
  transform-origin: left;
}
.hc_top a:hover .hct_btn {
  color: #fff;
}
.hc_top a:hover .hct_btn img {
  filter: brightness(0) invert(1);
}
.hc_top span {
  position: relative;
  width: 29.75%;
  flex-shrink: 0;
  overflow: hidden;
}
.hc_top span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.hc_top span .hc_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s ease;
}
.hct_info {
  padding: 0.35rem 0.4rem 0.36rem 0.35rem;
  box-sizing: border-box;
  width: 70.25%;
}
.hct_info h3 {
  font-family: "Montserrat";
  font-size: 0.16rem;

  color: #333333;
  padding-bottom: 0.1rem;
  border-bottom: 0.02rem solid #b2b1b1;
}
.hct_info h3 i {
  font-family: "Montserrat";
  font-size: 0.66rem;
  font-weight: 600;
  color: #333333;
  margin-right: 0.05rem;
}
.hct_info h4 {
  font-family: "Montserrat";
  font-size: 0.22rem;
  font-weight: 600;
  color: #333333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.2rem;
  transition: all 0.35s ease;
}
.hct_info h5 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.22rem;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}
.hct_btn {
  font-family: "Outfit";
  font-size: 0.18rem;
  font-weight: normal;
  color: var(--i_color2);
  padding: 0.1rem 0.2rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color2);
  width: fit-content;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hct_btn::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--i_color2);
  top: 0;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s ease;
  z-index: -1;
}
.hct_btn img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(86%) saturate(3464%)
    hue-rotate(340deg) brightness(94%) contrast(94%);
  margin-left: 0.1rem;
  transition: all 0.35s ease;
}
.hc_ulbox {
}
.hc_ulbox ul {
  display: flex;
  gap: 0.06rem;
}
.hc_ulbox ul li {
  width: calc((100% - 2 * 0.06rem) / 3);
  background: #fff;
}
.hc_ulbox ul li a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.3rem 0.35rem 0.2rem 0.26rem;
  box-sizing: border-box;
}
.hc_ulbox ul li h3 {
  font-family: "Montserrat";
  font-size: 0.16rem;

  color: #333333;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  margin-bottom: 0.18rem;
}
.hc_ulbox ul li h3 i {
  font-family: "Montserrat";
  font-size: 0.46rem;
  font-weight: 600;
  color: #333333;
  margin-right: 0.05rem;
}
.hc_ulbox ul li h4 {
  font-family: "Montserrat";
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 0.3rem;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.37rem;
  transition: all 0.35s ease;
}
.hcu_btnbox {
  padding: 0.05rem 0.2rem;
  box-sizing: border-box;
  border: 1px solid var(--i_color2);
  width: fit-content;
  border-radius: 0.04rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hcu_btnbox::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--i_color2);
  top: 0;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s ease;
  z-index: -1;
}
.hcu_btnbox img {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(86%) saturate(3464%)
    hue-rotate(340deg) brightness(94%) contrast(94%);
  transition: all 0.35s ease;
}
.hc_ulbox ul li:hover h4 {
  color: var(--i_color);
}
.hc_ulbox ul li:hover .hcu_btnbox::before {
  transform: scaleX(1);
  transform-origin: left;
}
.hc_ulbox ul li:hover .hcu_btnbox img {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 1200px) {
  .hct_info {
    padding: 0.3rem;
  }
  .hct_info h3 i {
    font-size: 0.4rem;
  }
  .hct_info h4 {
    font-size: 0.2rem;
    margin-top: 0.1rem;
  }
  .hct_info h5 {
    font-size: 0.16rem;
    line-height: 0.2rem;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
  }
  .hct_btn {
    font-size: 0.16rem;
    padding: 0.05rem 0.2rem;
  }
  .hc_ulbox ul li a {
    padding: 0.2rem;
  }
  .hc_ulbox ul li h3 i {
    font-size: 0.35rem;
    margin-right: 0.05rem;
  }
  .hc_ulbox ul li h3 {
    font-size: 0.16rem;
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
  .hc_ulbox ul li h4 {
    font-size: 0.18rem;
    line-height: 0.28rem;
    margin-bottom: 0.2rem;
  }
  .hcu_btnbox img {
    width: 0.24rem;
    height: 0.24rem;
  }
}
@media screen and (max-width: 1024px) {
  .home_news {
    padding: 0.6rem 0;
    background: none;
    background: #e1e0e6;
  }
  .hnmt_title {
    align-items: center;
  }
  .hnm_contain {
    width: 100%;
  }
  .hnm_top {
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .hct_info {
    padding: 0.2rem;
  }
  .hct_info h3 i {
    font-size: 0.3rem;
  }
  .hct_info h3 {
    font-size: 0.14rem;
    padding-bottom: 0.1rem;
  }
  .hct_info h4 {
    font-size: 0.16rem;
    margin-top: 0.08rem;
  }
  .hct_info h5 {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }
  .hct_btn {
    font-size: 0.14rem;
    padding: 0.05rem 0.1rem;
  }
  .hct_btn img {
    width: 0.25rem;
    height: 0.25rem;
  }
  .hc_ulbox ul li a {
    padding: 0.15rem;
  }
  .hc_ulbox ul li h3 i {
    font-size: 0.3rem;
  }
  .hc_ulbox ul li h3 {
    font-size: 0.14rem;
  }
  .hc_ulbox ul li h4 {
    font-size: 0.16rem;
    line-height: 0.26rem;
    margin-bottom: 0.1rem;
  }
  .hcu_btnbox img {
    width: 0.2rem;
    height: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .hc_ulbox ul {
    flex-wrap: wrap;
  }
  .hc_ulbox ul li {
    width: 100%;
  }
  .hct_info {
    padding: 0.12rem;
  }
  .hct_info h5 {
    font-size: 0.12rem;
    margin-top: 0.05rem;
  }
  .hct_info h4 {
    font-size: 0.14rem;
  }
  .hct_btn {
    font-size: 0.12rem;
    padding: 0.05rem 0.08rem;
  }
  .hct_btn img {
    width: 0.2rem;
    height: 0.2rem;
  }
  .home_news {
    padding: 0.3rem 0;
  }
}
/* ----------------------------home_our_partner_brands--------------------- */
.home_our_partner_brands {
  padding: 0.6rem 0;
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 100%);
}

.hmbm_contain {
  display: flex;
  flex-direction: column;
  padding: 0.1rem 0 0 0;
}
.hapm_list {
  position: relative;
  overflow: hidden;
  padding: 0.1rem 0 0 0;
  box-sizing: border-box;
}

.hapm_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  padding: 0.4rem 0;
}

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

.hapm_list li span {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hapm_list li span::before {
  content: "";
  display: block;
  padding-bottom: 39.5%;
}

.hapm_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;
}
.hapm_list_pagination {
  text-align: center;
  display: none;
}

/* 进度条容器 */
.hapm_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%);
}

/* 进度条填充 */
.partner_list_pagination .swiper-pagination-progressbar-fill {
  background: var(--i_color);
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .hapm_list_pagination {
    text-align: center;
    display: block;
  }
  .hapm_list {
    padding: 0.1rem 0 0.4rem 0;
  }
}
@media screen and (max-width: 1200px) {
  .hmbm_contain {
    padding: 0.3rem 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .hapm_list {
    padding: 0.1rem 0;
  }
  .hapm_list .swiper-wrapper {
    padding: 0.2rem 0;
  }
}
@media screen and (max-width: 560px) {
  .home_partner_brands {
    padding: 0.3rem 0 0 0;
  }
  .hpcm_top {
    display: block;
    margin-bottom: 0.3rem;
  }
  .hpcm_title {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .hpcm_btn {
    width: 100%;
  }
  .hmbm_contain {
    padding: 0.2rem 0 0 0;
  }
  .home_machinery_brand {
    padding: 0.3rem 0;
  }
  .home_our_partner_brands {
    padding: 0.3rem 0;
  }
  .hapm_list {
    padding: 0.1rem 0 0.2rem 0;
  }
}
/* ---------------------------------------products_banner--------------------------------------- */
.products_banner {
  width: 100%;
  position: relative;
}

.products_banner::before {
  content: "";
  display: block;
  padding-bottom: 28.8%;
}

.products_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .products_banner::before {
    content: "";
    display: block;
    padding-bottom: 36.5%;
  }
}
@media screen and (max-width: 425px) {
  .products_banner::before {
    content: "";
    display: block;
    padding-bottom: 59.5%;
  }
}
/* ---------------------------------------Breadcrumb--------------------------------------- */
.in_position {
  box-sizing: border-box;
  padding: 0.2rem 0;
  background: #f9f9f9;
  position: relative;
}

.in_position .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.in_position a {
  display: block;
  font-size: 0.16rem;
  color: #333333;
  position: relative;
  line-height: 0.2rem;
}

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

.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.18rem;
  height: 0.18rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}

.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}

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

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

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

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

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

  .in_position a {
    font-size: 13px;
  }
}
/* ---------------------------------------products.html--------------------------------- */
/* ---------------------------------------products--------------------------------------- */
.products_bac {
  box-sizing: border-box;
  background-color: #fff;
  padding: 0.6rem 0;
}

.products {
  display: flex;
  justify-content: space-between;
}

.products_left {
  width: 23%;
  box-sizing: border-box;
  flex-shrink: 0;

  box-sizing: border-box;
}

.products_left_all {
  background-color: transparent;
}

.products_left_h2 {
  font-family: "Montserrat";
  font-size: 0.24rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--i_color);
  padding: 0.17rem 0.12rem;
  box-sizing: border-box;
  margin-bottom: 0.1rem;
}

.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;
  background: #fff;
  /* border: 1px solid rgba(51, 51, 51, 0.2); */
  border-radius: 0.06rem;
  gap: 0.1rem;
}

.list li {
  position: relative;
  /* border-bottom: 1px solid rgba(51, 51, 51, 0.2); */
}
.list li:last-child {
  border-bottom: none;
}
/* .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 0.2rem 0.1rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0.06rem;
  background: #f4f4f4;
}

/* .list_a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--i_color);
  width: 0;
  height: 100%;
  transition: all 0.5s ease-in-out;
  z-index: -1;
} */

.list .list_a a {
  font-family: "Montserrat";
  font-size: 0.18rem;
  font-weight: 600;
  color: #333333;
  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.15rem 0 0.15rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  box-sizing: border-box;

  background: #fff;
}

.list_dl dt {
  box-sizing: border-box;
  padding: 0 0 0.1rem 0;
  border-radius: 0.06rem;
}

.list_dl dt a {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #666666;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  padding: 0rem 0.2rem;
}

.list_dl dt a::after {
  content: "";
  position: absolute;
  left: 0rem;
  top: 50%;
  width: 0.12rem;
  height: 0.02rem;
  background-color: var(--i_color);
  opacity: 0;
  transition: all 0.3s ease;
}

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

.list_active {
}

.list_active .list_a::after {
  width: 100%;
  left: 0;
  right: auto;
}

.list_active .list_a i iconify-icon {
  color: #333;
  transform: translate(-50%, -50%) rotate(180deg);
}

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

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

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

.list_dl dt a:hover {
  color: var(--i_color);
}
.list_dl_active {
  /* background: #f4f4f4; */
}
.list_dl_active a {
  color: var(--i_color) !important;
}

.list_active .list_dl {
}

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

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

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

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

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

  .products_left_h2 {
    color: #fff;
    background-color: var(--i_color);
    box-sizing: border-box;
    padding: 0.15rem 0;
  }

  .products_left_all {
    padding: 0.2rem;
  }
  .products {
    flex-direction: column;
  }
}

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

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

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

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

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

@media screen and (max-width: 425px) {
  .products_bac {
    box-sizing: border-box;
    background-color: #fff;
    padding: 0.3rem 0;
  }
}

.product_company_info {
  background: url(https://lingjuimg.com/wp-content/uploads/ShangYi/2026/03/product_info_bg.webp)
    no-repeat center/cover;
  padding: 0.44rem 0.2rem 0.6rem 0.2rem;
  box-sizing: border-box;
  margin-top: 0.1rem;
}
.product_company_info h3 {
  font-family: "Montserrat";
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 0.28rem;
  color: #ffffff;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.24rem;
}
.product_company_info h4 {
  font-family: "Montserrat";
  font-size: 0.16rem;

  color: #ffffff;
  margin-bottom: 0.4rem;
}
.product_company_info ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.product_company_info ul li a {
  display: flex;
  font-family: "Montserrat";
  font-size: 0.18rem;

  color: #ffffff;
  display: flex;
  align-items: center;
}
.product_company_info ul li a span {
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--i_color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_company_info ul li:hover a {
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  .product_company_info h3 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .product_company_info {
    display: none;
  }
}

.products_right {
  width: 75.1%;
}
.products_right_contain_excavatorList {
}
.products_right_contain_excavatorList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.11rem;
}
.products_right_contain_excavatorList ul li {
  width: calc((100% - 2 * 0.11rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.products_right_contain_excavatorList ul li a {
  width: 100%;
  display: block;
}
.products_right_contain_excavatorList ul li span {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.products_right_contain_excavatorList ul li span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.products_right_contain_excavatorList ul li span img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.35s ease;
}
.products_right_contain_excavatorList ul li p {
  margin-top: 0.09rem;
  font-family: "Montserrat";
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.28rem;
  text-align: center;
  color: #333333;
  width: 90%;
  transition: all 0.35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products_right_contain_excavatorList ul li:hover p {
  color: var(--i_color);
}
.products_right_contain_excavatorList ul li:hover span img {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .products_right_contain_excavatorList ul li p {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .products_right_contain_excavatorList ul {
    gap: 0.1rem 0.11rem;
  }
  .products_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .products_right_contain_excavatorList ul li p {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .products_right_contain_excavatorList ul li {
    width: calc((100% - 0.11rem) / 2);
  }
  .products_right {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 375px) {
  .products_right_contain_excavatorList ul li p {
    font-size: 0.12rem;
  }
}
/* ---------------------product_contact------------------------ */
.product_contact {
  padding: 0.6rem 0;
}
.pc_maxbox {
}
.pc_maxbox span {
  position: relative;
  display: block;
}
.pc_maxbox span::before {
  content: "";
  display: block;
  padding-bottom: 22.9%;
}
.pc_maxbox span .pcm_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc_maxbox span p {
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Outfit";
  font-size: 0.4rem;
  font-weight: 600;
  width: 80%;
  text-align: center;

  color: #ffffff;
}
.pcm_btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 55%;
}
@media screen and (max-width: 1024px) {
  .pc_maxbox span p {
    top: 27%;
    left: 50%;
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .pc_maxbox span p {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 560px) {
  .product_contact {
    display: none;
  }
}
/* -----------------------productsDetail.html---------------------- */
/* single_grid */
.single_grid_bac {
  box-sizing: border-box;
  padding: 0.4rem 0 0.8rem 0;
  background: linear-gradient(0deg, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
  border-bottom: var(--i_color2) 1px solid;
}
.single_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single_grid_left {
  width: 45.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 #d62b1e; */
}
.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
}

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

/* 轮播图 */
.in_grid_show_box {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--sm_pic_width) - 20px);
  height: 100%;
  box-sizing: border-box;
  padding: 0 0;
  margin: 0 auto;
}
.in_grid_show {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.in_grid_show .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.in_grid_show .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.in_grid_show .img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingrid-pagination {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(1, 167, 255, 0.15);
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.18rem;
  color: var(--i_color);
  display: none;
}
.ingrid-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 4px;
  background: #e5e5e5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  outline: none;
}
.ingrid-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

.in_grid_cont:before {
  display: none;
}
.in_grid_show_box {
  position: initial;
  width: 100%;
  border-radius: 0.04rem;
  overflow: hidden;
  border: 1px solid #d8d8d8;
}
.in_grid_show .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_show .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_grid_list_box {
  margin-top: 0.16rem;
  padding: 0 0;
  position: relative;
  width: 100%;
  height: initial;
}
.in_grid_list {
  width: 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;
}

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

/* 左右箭头 */

.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;
  top: 40%;
  width: 0.6rem;
  height: 0.6rem;
  z-index: 999;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: var(--i_color2) 1px solid;
  background: #fff;
}
.ingrid-button-prev img,
.ingrid-button-next img {
  width: 0.28rem;
  height: 0.28rem;
  object-fit: contain;
}
.ingrid-button-prev {
  left: 0%;
}

.ingrid-button-next {
  right: 0%;
}
.ingrid-button-prev:hover,
.ingrid-button-next:hover {
  background: var(--i_color2);
}
.ingrid-button-prev:hover img,
.ingrid-button-next:hover img {
  filter: brightness(0) invert(1);
}

.single_grid_right {
  width: 49.85%;
}
.single_grid_right h1 {
  font-family: "Montserrat";
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.28rem;
  color: var(--i_color);
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  margin-bottom: 0.25rem;
}
.pd_btnmaxbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
.sgr_artile {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.pd_left {
  display: flex;
  gap: 0.1rem;
}

.pd_right {
}
.pd_right ul {
  display: flex;
  gap: 0.2rem;
}
.pd_right ul li a {
  font-family: "Montserrat";
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 0.22rem;
  color: #333333;
}
.pd_right ul li a iconify-icon {
  font-size: 0.24rem;
}
.pd_right ul li a:hover iconify-icon {
  color: var(--i_color) !important;
}
@media screen and (max-width: 1024px) {
  .single_grid_right h1 {
    font-size: 0.18rem;

    line-height: 0.28rem;
  }
  .pd_btnmaxbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0.2rem;
  }
  .pd_left {
    margin-bottom: 0.2rem;
  }
  .pd_right {
    align-self: flex-end;
  }
  .ingrid-button-prev,
  .ingrid-button-next {
    width: 0.45rem;
    height: 0.45rem;
  }
  .ingrid-button-prev img,
  .ingrid-button-next img {
    width: 0.2rem;
    height: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .single_grid {
    flex-direction: column;
    align-items: center;
  }
  .single_grid_left {
    width: 95%;
    margin-bottom: 0.3rem;
  }
  .single_grid_right {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .single_grid_right h1 {
    font-size: 0.16rem;
    line-height: 0.26rem;
  }
  .pd_right ul {
    gap: 0.1rem;
  }
  .pd_right ul li a {
    font-size: 0.16rem;
  }
  .pd_right ul li a iconify-icon {
    font-size: 0.2rem;
  }
  .ingrid-button-prev,
  .ingrid-button-next {
    width: 0.3rem;
    height: 0.3rem;
  }
  .ingrid-button-prev img,
  .ingrid-button-next img {
    width: 0.16rem;
    height: 0.16rem;
  }
  .single_grid_bac {
    padding: 0.2rem 0 0.2rem 0;
  }
}

/* -----------------------------------production_description ---------------------------*/
.production_description {
  padding: 0.6rem 0;
}
.pdd_maxbox {
  display: flex;
  justify-content: space-between;
}
.pdd_contain {
  width: 74%;
}
.pdd_faq {
}
.pdd_contain h3 {
  font-family: "Montserrat";
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 0.32rem;
  color: #333333;
  padding-left: 0.15rem;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 0.3rem;
}
.pdd_contain h3::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: var(--i_color);
  border-radius: 50%;
}
.pdd_faq h3 {
  font-family: "Montserrat";
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 0.32rem;
  color: #333333;
  padding-left: 0.15rem;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 0.3rem;
}
.pdd_faq h3::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: var(--i_color);
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .pdd_maxbox .products_left {
    display: none;
  }
  .pdd_contain {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .pdd_faq h3 {
    margin-bottom: 0.1rem;
    font-size: 0.16rem;
  }
  .pdd_contain h3 {
    margin-bottom: 0.1rem;
    font-size: 0.16rem;
  }
}
/* -----------------------------------------faq------------------------------- */
.faq_bac {
  box-sizing: border-box;
  width: 100%;
}
.faq {
}

.faq_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.1rem;
}
.faq_ul li {
  position: relative;
  border-radius: 0.06rem;
  overflow: hidden;
}
.faq_ul li span {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 21%;
  opacity: 0;
  pointer-events: none;
}
.faq_ul li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq_q {
  background-color: #f7f7f7;
  padding: 0.1rem;
  border-radius: 0rem;
  display: flex;
  display: -webkit-flex;
  cursor: pointer;
  align-items: center;
}
.faq_q img {
  width: 0.5rem;
  height: 0.5rem;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  filter: brightness(0) saturate(100%) invert(20%);
}
.faq_ul i {
  border-radius: 0rem;
  display: block;
  color: #333333;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  font-size: 0.2rem;
  font-weight: bold;
}

.faq_q h2 {
  width: calc(100% - 0.72rem);
  box-sizing: border-box;
  font-family: "Montserrat";
  font-size: 0.2rem;
  font-weight: 600;
  color: #333333;
}
.faq_a {
  display: flex;
  display: -webkit-flex;
  box-sizing: border-box;
  padding: 0rem 0.3rem 0.2rem 0.5rem;

  background: #f7f7f7;
}

.faq_a p {
  width: 100%;
  font-family: "Montserrat";
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #666666;
}
.faq_ul li.on .faq_q img {
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(16%) sepia(38%) saturate(1086%)
    hue-rotate(179deg) brightness(94%) contrast(92%);
}
.faq_ul li.on .faq_q {
  background-color: #f7f7f7;
}

.faq_ul li.on .faq_q h2 {
  color: var(--i_color) !important;
}
.faq_ul li.on span {
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .faq_q h2 {
    font-size: 0.2rem;
    /* padding-left: 0.15rem; */
  }
  .faq_a p {
    /* padding-left: 0.15rem; */
    font-size: 0.14rem;
    line-height: 0.24rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .faq_q h2 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 768px) {
  .faq_q h2 {
    font-size: 0.18rem;
    /* padding-left: 0.1rem; */
  }
  .faq_a p {
    /* padding-left: 0.1rem; */
  }
  .faq_q img {
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .faq_a {
    padding: 0rem 0 0.1rem 0.3rem;
  }
  .faq_ul i {
    width: 0.3rem;
    height: 0.3rem;
  }
  .faq_q h2 {
    width: calc(100% - 0.3rem);
  }
  .faq_a p {
    width: calc(100% - 0.3rem);
  }

  .faq_ul {
    gap: 0.05rem;
  }
  .faq_q img {
    width: 0.3rem;
    height: 0.3rem;
  }
  .faq_q h2 {
    font-size: 0.14rem;
  }
  .faq_a p {
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
  .faq_q {
    padding: 0.1rem 0.1rem 0.05rem 0.1rem;
  }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------------------single_two------------------------------------------ */
.single_two_bac {
  background: #f7f7f7;
  box-sizing: border-box;
  padding: 0.3rem 0;
}

.single_two {
}

.bottom_single_tags {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  box-sizing: border-box;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.bottom_single_tags p {
  font-size: 0.18rem;
  color: #333333;
  font-family: "Montserrat";
  line-height: 0.42rem;
  font-weight: bold;
}

.bottom_single_tags a {
  font-family: "Montserrat";
  font-size: 0.16rem;
  line-height: 0.32rem;

  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-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.32rem;
  font-weight: 400;
  color: #333333;
}

.sx span {
  font-family: "Montserrat";
  font-size: 0.16rem;
  font-weight: 400;
  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;
  }
  .bottom_single_tags {
    gap: 0.1rem;
  }
}

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

@media screen and (max-width: 425px) {
  .bottom_single_tags {
    gap: 0;
    padding-bottom: 0.1rem;
    margin-bottom: 0.2rem;
  }
}

/* --------------------------------------products_hot_sale_products-------------------- */
.products_hot_sale_products {
  padding: 0.6rem 0;
  background: linear-gradient(0deg, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
}
.pdhsp_maxbox {
}
.pdhsp_top {
  margin-bottom: 0.5rem;
}
.pdhspm_contain {
  position: relative;
}

.pdhspm_list {
  position: relative;
  overflow: hidden;
}

.pdhspm_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;

  box-sizing: border-box;
}

.pdhspm_list .swiper-slide {
  flex-shrink: 0;
  transition: box-shadow 0.35s ease;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pdhspm_list ul li a {
  width: 100%;
  display: block;
}
.pdhspm_list ul li span {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.pdhspm_list ul li span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pdhspm_list ul li span img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.35s ease;
}
.pdhspm_list ul li p {
  margin-top: 0.09rem;
  font-family: "Montserrat";
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.28rem;
  text-align: center;
  color: #333333;
  width: 90%;
  transition: all 0.35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdhspm_list ul li:hover p {
  color: var(--i_color);
}
.pdhspm_list ul li:hover span img {
  transform: scale(1.1);
}

.pdhspm_contain .pdhspm_pagination {
  text-align: center;
  margin: 0.4rem auto 0;
  display: none;
}
.pdhspm_contain .pdhspm_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;
}
.pdhspm_contain .pdhspm_pagination .swiper-pagination-bullet-active {
  position: relative;
  border: 1px solid var(--i_color);
  background: var(--i_color);
}
.pdhspm_prev,
.pdhspm_next {
  position: absolute;
  top: 40%;
  width: 0.46rem;
  height: 0.46rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: var(--i_color2) 1px solid;
}
.pdhspm_prev {
  left: -0.63rem;
}
.pdhspm_next {
  right: -0.63rem;
}
.pdhspm_prev:hover,
.pdhspm_next:hover {
  background: var(--i_color2);
}
.pdhspm_prev:hover img,
.pdhspm_next:hover img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1440px) {
  .pdhspm_list {
    margin: 0 0.5rem;
  }
  .pdhspm_prev {
    left: -1%;
  }
  .pdhspm_next {
    right: -1%;
  }
}
@media screen and (max-width: 1024px) {
  .pdhspm_list ul li p {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }

  .products_right {
    width: 100%;
  }
  .pdhspm_prev,
  .pdhspm_next {
    width: 0.4rem;
    height: 0.4rem;
  }
  .pdhspm_prev img,
  .pdhspm_next img {
    width: 0.24rem;
    height: 0.24rem;
  }
}
@media screen and (max-width: 768px) {
  .pdhspm_list ul li p {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .products_right {
    margin-top: 0.2rem;
  }
  .pdhspm_prev,
  .pdhspm_next {
    width: 0.3rem;
    height: 0.3rem;
  }
  .pdhspm_prev img,
  .pdhspm_next img {
    width: 0.15rem;
    height: 0.15rem;
  }
  .pdhspm_prev {
    left: -0.5%;
  }
  .pdhspm_next {
    right: -0.5%;
  }
  .products_hot_sale_products {
    padding: 0.3rem 0;
  }
  .pdhsp_top {
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 375px) {
  .pdhspm_list ul li p {
    font-size: 0.12rem;
  }
}

/*----------------------------- customization.html----------------------- */
/* -------------------------CUSTOMIZED SERVICES---------------------- */
.customized_services {
  padding: 0.6rem 0;
  background: linear-gradient(0deg, #f4f4f4 0%, #f4f4f4 100%);
}
.cs_maxbox {
}
.csm_top {
  margin-bottom: 0.5rem;
}
.csm_contain {
  overflow: hidden;
}
.csmc_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.csmct_pic {
  position: relative;
  width: 44.5%;
}
.csmct_pic::before {
  content: "";
  display: block;
  padding-bottom: 57%;
  width: 100%;
}
.csmct_pic span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* transform: scale(1.05); */
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
}
.csmct_pic span.active {
  opacity: 1;
  /* transform: scale(1); */
}
.csmct_pic span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.csmct_tab {
  width: 53.28%;
}
.csmct_tab ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.1rem;
  padding: 0.12rem 0;
  box-sizing: border-box;
}
.csmct_tab ul li {
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0.15rem 0.2rem;
  box-sizing: border-box;
  cursor: pointer;
}
.csmct_tab ul li h3 {
  font-family: "Montserrat";
  font-size: 0.32rem;
  font-weight: 600;

  color: #666666;
  margin-right: 0.2rem;
}
.csmct_tab ul li h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.26rem;
  color: #333333;
}
.csmct_tab ul li.active {
  background: #fff;
}
.csmct_tab ul li.active h3 {
  color: var(--i_color);
}
.csmct_tab ul li.active h4 {
  color: var(--i_color);
}
.csmc_bottom {
  display: flex;
  justify-content: space-between;
}
.csmcb_tab {
}
.csmcb_pic {
}
.csmc_bottom .csmct_pic::before {
  padding-bottom: 40.75%;
}

@media screen and (max-width: 1024px) {
  .csmct_tab ul li h3 {
    font-size: 0.26rem;
    margin-right: 0.1rem;
  }
  .csmct_tab ul li h4 {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 768px) {
  .csmc_top {
    flex-direction: column-reverse;
  }
  .csm_top {
    margin-bottom: 0.2rem;
  }
  .csmct_tab {
    width: 100%;
    margin-bottom: 0.1rem;
  }
  .csmct_pic {
    width: 100%;
  }
  .csmc_bottom {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .customized_services {
    padding: 0.3rem 0;
  }
  .csmct_tab ul li h3 {
    font-size: 0.24rem;
    margin-right: 0.1rem;
  }
  .csmct_tab ul li h4 {
    font-size: 0.13rem;
    line-height: 0.24rem;
  }
  .csmct_tab ul li {
    padding: 0.1rem;
  }
  .csmc_top {
    margin-bottom: 0.1rem;
  }
}
/* ---------------------------our_customization_advantages--------------------- */
.our_customization_advantages {
  padding: 0.6rem 0;
  background: url(https://lingjuimg.com/wp-content/uploads/ShangYi/2026/03/our_customization_advantages_bg.webp)
    no-repeat center/cover;
}
.oca_maxbox {
}
.ocam_top {
  margin-bottom: 0.5rem;
}
.ocam_contain {
}
.ocam_contain ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.ocam_contain ul li {
  width: calc((100% - 0.1rem) / 2);
  padding: 0.1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);

  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.ocam_contain ul li span {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--i_color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.27rem;
  flex-shrink: 0;
}
.ocam_contain ul li span img {
  width: 68.34%;
  height: 68.34%;
  object-fit: contain;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.ocamc_info h3 {
  font-family: "Montserrat";
  font-size: 0.36rem;
  font-weight: 600;

  color: var(--i_color);
  margin-bottom: 0.1rem;
}
.ocamc_info h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #333333;
}
.ocam_contain ul li:hover span img {
  transform: rotateY(180deg);
}

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

    margin-bottom: 0.1rem;
  }
  .ocam_contain ul li span {
    width: 1rem;
    height: 1rem;
    margin-right: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .ocamc_info h3 {
    font-size: 0.24rem;
    margin-bottom: 0.06rem;
  }
  .ocamc_info h4 {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .ocam_contain ul li span {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .ocamc_info h3 {
    font-size: 0.2rem;
    margin-bottom: 0.06rem;
  }
  .ocamc_info h4 {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .our_customization_advantages {
    padding: 0.3rem 0;
  }
  .ocam_top {
    margin-bottom: 0.3rem;
  }
  .ocam_contain ul li {
    width: 100%;
  }
  .ocam_contain ul li span {
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.1rem;
  }
  .ocamc_info h4 {
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
}
/* -------------------------------customization_faq-------------------- */
.customization_faq {
  padding: 0.6rem 0;
}
.cmfm_top {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 560px) {
  .customization_faq {
    padding: 0.3rem 0;
  }
  .cmfm_top {
    margin-bottom: 0.2rem;
  }
}
/* ---------------------------sustainability.html------------------------- */
.sustainability_activerwear {
  padding: 0.6rem 0;
  background: linear-gradient(0deg, #f4f4f4 0%, rgba(244, 244, 244, 0) 100%);
}
.sa_maxbox {
}
.sam_top {
  margin-bottom: 0.5rem;
}
.samt_title {
  align-items: flex-start;
}
.samt_title h3 {
  text-align: left;
}
.samt_title h4 {
  text-align: left;
}

.sam_list {
  position: relative;
  overflow: hidden;
  height: 60vh;
}

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

.sam_list .swiper-slide {
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
}
.sam_list ul li {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sam_list ul li span {
  width: 1.74rem;
  height: 1.74rem;
  overflow: hidden;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 0.34rem;
}
.sam_list ul li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s ease;
}
.sam_info {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.sam_info h3 {
  font-family: "Montserrat";
  font-size: 0.28rem;
  font-weight: 600;

  color: var(--i_color);
  margin-bottom: 0.1rem;
}
.sam_info h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #333333;
}
.sam_list ul li:hover span img {
  transform: scale(1.1);
}
@media screen and (max-width: 1440px) {
  .sam_list {
    height: 65vh;
  }
}
@media screen and (max-width: 1200px) {
  .sam_list {
    height: 70vh;
  }
}
@media screen and (max-width: 1024px) {
  .sam_list ul li span {
    width: 1.3rem;
    height: 1.3rem;
    margin-right: 0.2rem;
  }
  .sam_info h3 {
    font-size: 0.23rem;
    margin-bottom: 0.1rem;
  }
  .sam_info h4 {
    font-size: 0.16rem;
    line-height: 0.26rem;
  }

  .sam_list {
    position: relative;
    overflow: hidden;
    height: 65vh;
  }
}
@media screen and (max-width: 768px) {
  .sam_list {
    height: 55vh;
  }
}
@media screen and (max-width: 560px) {
  .sustainability_activerwear {
    padding: 0.3rem 0;
  }
  .sam_list ul li span {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.1rem;
  }
  .sam_info h3 {
    font-size: 0.18rem;
    margin-bottom: 0.05rem;
  }
  .sam_info h4 {
    font-size: 0.14rem;
    line-height: 0.2rem;
  }
  .sam_list {
    height: 20vh;
  }
  .sam_top {
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 375px) {
  .sam_info h3 {
    font-size: 0.16rem;
  }
  .sam_info h4 {
    font-size: 0.11rem;
    line-height: 0.18rem;
  }
}

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

/* -------------------------About EFIRSTY------------------  */
.about_efirsty {
  padding: 0.6rem 0;
  position: relative;
}
.ae_maxbox {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.aem_info {
  width: 42%;
}

.aem_info h3 {
  font-family: "Outfit";
  font-size: 0.4rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.4rem;
}
.aem_info h3 i {
  color: var(--i_color);
  font-weight: bold;
}
.aem_info h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.26rem;
  color: #333333;
}
.aem_bg {
  position: absolute;
  bottom: 0;
  left: 4%;
  width: 34.47%;
  pointer-events: none;
}
.aem_bg span {
  position: relative;
  width: 100%;
  display: block;
}
.aem_bg span::before {
  content: "";
  display: block;
  padding-bottom: 68.5%;
}
.aem_bg span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aem_pic {
  width: 57%;
  position: relative;
}
.aem_pic::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.aem_pic span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.aem_pic span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

    margin-bottom: 0.2rem;
  }
  .aem_info h4 {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}

@media screen and (max-width: 1024px) {
  .ae_maxbox {
    flex-direction: column;
    align-items: center;
  }
  .aem_info {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .aem_pic {
    width: 80%;
    position: relative;
  }
  .aem_bg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .aem_info h3 {
    font-size: 0.26rem;
    margin-bottom: 0.15rem;
  }
  .aem_info h4 {
    font-size: 0.14rem;
    line-height: 0.22rem;
  }
}
@media screen and (max-width: 560px) {
  .about_efirsty {
    padding: 0.3rem 0;
  }
  .aem_pic {
    width: 98%;
  }
  .aem_info h3 {
    font-size: 0.22rem;
    margin-bottom: 0.1rem;
  }
  .aem_info h4 {
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
}
/* ------------------------------about_why_choose_efirsty-------------------------- */
.about_why_choose_efirsty {
  padding: 0.6rem 0;
}
.awce_maxbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.awcem_pic {
  width: 51.11%;
}
.awcem_pic span {
  position: relative;
}
.awcem_pic span::before {
  content: "";
  display: block;
  padding-bottom: 103.28%;
}
.awcem_pic span .awcemp_pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.awcem_btnbox {
  display: flex;
  position: absolute;
  bottom: 7%;
  right: 15.29%;
}
.awcem_btn a {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}
.awcem_btn a img {
  filter: brightness(0) invert(1);
}
.awcem_info {
  width: 44.14%;
  padding: 0.6rem 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.awcemi_top {
  margin-bottom: 0.3rem;
}
.awcemit_title {
  align-items: flex-start;
}
.awcemit_title h3 {
  text-align: left;
}
.awcemit_title h4 {
  text-align: left;
}
.awcemi_ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.1rem;
}
.awcemi_ul li {
  display: flex;
  align-items: center;
  background: rgba(15, 52, 91, 0.5);
  height: calc((100% - 3 * 0.1rem) / 4);
  padding: 0.3rem;
  box-sizing: border-box;
  cursor: pointer;
}
.awcemi_ul li span {
  margin-right: 0.24rem;
  width: 0.46rem;
  height: 0.46rem;
  display: block;
  flex-shrink: 0;
}
.awcemi_ul li span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.awcemi_ul li h3 {
  font-family: "Montserrat";
  font-size: 0.2rem;
  color: #ffffff;
  transition: all 0.35s ease;
  line-height: 130%;
}
.awcemi_ul li:hover span img {
  transform: rotateY(180deg);
}
.awcemi_ul li:hover h3 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .awce_maxbox {
    flex-direction: column;
  }
  .awcem_pic {
    width: 80%;
  }
  .awcem_info {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .awcemi_ul li span {
    margin-right: 0.2rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .awcemi_ul li h3 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .awcemi_ul li h3 {
    font-size: 0.16rem;
  }
  .awcemi_ul li {
    padding: 0.14rem;
  }
  .awcemi_ul li span {
    margin-right: 0.15rem;
    width: 0.26rem;
    height: 0.26rem;
  }
  .awcem_info {
    padding: 0.2rem 0 0 0;
  }
  .about_why_choose_efirsty {
    padding: 0.3rem 0;
  }
  .awcem_pic {
    width: 100%;
  }
  .awcemi_top {
    margin-bottom: 0.2rem;
  }
}

/* -------------------------------about_environments----------------------------------- */
.about_environments {
  padding: 0.6rem 0;
}
.aet_maxbox {
}
.gc_cont {
  display: none;
}

.gc_cont.active {
  display: block;
}
.aetm_top {
}
.aetm_top .aemt_title {
  margin-bottom: 0.3rem;
}
.aetm_top ul {
  display: flex;
  justify-content: center;
  gap: 0 0.6rem;
}
.aetm_top ul li:nth-child(2) {
  border-left: solid var(--i_color) 1px;
  border-right: solid var(--i_color) 1px;
  padding: 0 0.45rem;
  box-sizing: border-box;
}
.aetm_top ul li a {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.26rem;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.aetm_top ul li a:hover {
  color: var(--i_color2);
}
.aetm_top ul li.active a {
  color: var(--i_color2);
}
.gol_partner_box {
  margin-top: 0.4rem;
}

.gol_partner {
  position: relative;
}

.gol_partner_list {
  width: 100%;
  padding: 0 0 0.6rem 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gol_partner_list .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property:
    transform,
    -webkit-transform;
  display: flex;
}

.gol_partner_list li {
  width: 6.5rem;
  max-width: 80%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition-property: transform;
  border-radius: 0.05rem;
  /* overflow: hidden; */
}

.gol_partner_list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 3;
  transition: all 0.5s ease;
}

.gol_partner_list li.swiper-slide-active::after {
  background: rgba(255, 255, 255, 0);
  height: 0%;
}

.gol_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.gol_partner_list .img::after {
  content: "";
  display: block;
  padding-bottom: 66%;
}

.gol_partner_list .img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80%;
  object-fit: cover;
  transition: all 0.4s;
}

.gol_partner_list .swiper-slide-active .img img {
  width: 100%;
  height: 100%;
}

.gol_partner_list li p {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  box-sizing: border-box;
  padding: 0.1rem 4%;
  color: #333333;
  font-size: 0.24rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.4s;
  display: none;
}

.gol_partner_list .swiper-slide-active p {
  display: block;
}

/* 指示器 */
.gol_partner .pt-pagination {
  background: #666;
  position: relative;
  width: 2rem;
  height: 0.03rem;
  display: block;
  margin-top: 0.6rem;
  margin-left: auto;
  margin-right: auto;
}

.gol_partner .pt-pagination span {
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: -0.03rem;
  width: 100%;
  border-radius: 0.03rem;
  height: 0.08rem;
  transform: translate(0, -50%);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.gol_partner-prev,
.gol_partner-next {
  width: 0.36rem;
  height: 0.36rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.gol_partner-prev {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
}
.gol_partner-next {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}
.gol_partner-prev:hover,
.gol_partner-next:hover {
  background-color: var(--i_color);
}
.gol_partner-prev:hover img,
.gol_partner-next:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.gol_partner-prev img,
.gol_partner-next img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(67%) saturate(420%)
    hue-rotate(160deg) brightness(98%) contrast(96%);
  width: 0.18rem;
  height: 0.175rem;
}

.gol_pagination {
  display: block;
  text-align: center;
  bottom: 0.1rem !important;
  position: absolute;
  left: 50% !important;
  transform: translate(-50%, 0);
  z-index: 3;
}

.gol_partner .gol_pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  display: inline-block;
  margin: 0 0.06rem;
  background: #666666;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  outline: none;
  cursor: pointer;
  transition: width 0.5s ease;
  opacity: 1;
}

.gol_partner .gol_pagination .swiper-pagination-bullet-active {
  width: 0.35rem;
  background: url(https://lingjuimg.com/wp-content/uploads/ShangYi/2026/03/swiper-pagination-active.webp)
    no-repeat center;
  background-size: contain;
  -webkit-border-radius: 0;
  border-radius: 0;
}
@media screen and (max-width: 1440px) {
}

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

@media screen and (max-width: 1200px) {
  .gol_partner .pt-pagination {
    height: 0.03rem;
    margin-top: 0.4rem;
  }

  .gol_partner .pt-pagination span {
    top: -0.02rem;
    border-radius: 0.02rem;
    height: 0.06rem;
  }
}

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

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

@media screen and (max-width: 768px) {
  .gol_partner .pt-pagination {
    height: 0.01rem;
  }

  .gol_partner .pt-pagination span {
    top: -0.02rem;
    height: 0.04rem;
  }
}

@media screen and (max-width: 560px) {
  .gol_partner_list li p {
    padding: 0.05rem 0;
    font-size: 0.16rem;
    font-weight: 300;
  }

  .about_environments {
    padding: 0.3rem 0;
  }
  .aetm_top ul li a {
    font-size: 0.14rem;
  }
  .aetm_top ul {
    gap: 0 0.3rem;
  }
  .aetm_top ul li:nth-child(2) {
    padding: 0 0.2rem;
  }
  .aetm_top .aemt_title {
    margin-bottom: 0.1rem;
  }
}

/* ------------------------------------about_compliance_certificates------------------------- */
.about_compliance_certificates {
  padding: 1.22rem 0;
  background: url(https://lingjuimg.com/wp-content/uploads/ShangYi/2026/03/about_certificates_bg.webp)
    no-repeat center/cover;
}
.acc_maxbox {
  display: flex;
  justify-content: space-between;
}

.accm_info {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.accmi_title {
  align-items: flex-start;
}
.accmi_title h3 {
  color: #fff;
  border-bottom: #fff 0.03rem solid;
  margin-bottom: 0.7rem;
  text-align: left;
}
.accmi_title h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #ffffff;
  text-align: left;
}
.accmi_pic {
  width: 100%;
}
.gol_partner {
  position: relative;
}

.accmip_list {
  width: 100%;

  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.accmip_list .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property:
    transform,
    -webkit-transform;
  display: flex;
}

.accmip_list li {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.accmip_list li span {
  position: relative;
  width: 100%;
  display: block;
}
.accmip_list li span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.accmip_list li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accm_certificates {
  width: 23%;
  padding: 0 1rem;
  /* box-sizing: border-box; */
}
.accmc_contain {
  position: relative;
}
.accmc_list {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.accmc_list .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property:
    transform,
    -webkit-transform;
  display: flex;
}

.accmc_list li {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.accmc_list li span {
  position: relative;
  display: block;
  width: 100%;
}
.accmc_list li span::before {
  content: "";
  display: block;
  padding-bottom: 145.4%;
}
.accmc_list li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accmc_prev,
.accmc_next {
  position: absolute;
  width: 0.34rem;
  height: 0.29rem;
  top: 40%;
  cursor: pointer;
}
.accmc_prev img,
.accmc_next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.accmc_prev {
  left: -25%;
}
.accmc_next {
  right: -25%;
}
.accmc_prev:hover img,
.accmc_next:hover img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(92%) saturate(3182%)
    hue-rotate(343deg) brightness(92%) contrast(96%);
}

@media screen and (max-width: 1024px) {
  .accmi_title h3 {
    margin-bottom: 0.4rem;
  }
  .about_compliance_certificates {
    padding: 1rem 0;
  }
}

@media screen and (max-width: 768px) {
  .about_compliance_certificates {
    padding: 0.5rem 0;
  }
  .accm_certificates {
    width: 23%;
    padding: 0 0.7rem;
  }
  .accm_info {
    width: 50%;
  }
  .accmi_title h3 {
    margin-bottom: 0.2rem;
  }
  .accmc_prev {
    left: -33%;
  }
  .accmc_next {
    right: -33%;
  }
  .accmc_prev,
  .accmc_next {
    width: 0.3rem;
    height: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .acc_maxbox {
    flex-direction: column;
    align-items: center;
  }
  .accm_info {
    width: 100%;
  }
  .about_compliance_certificates {
    padding: 0.3rem 0;
  }
  .accmi_title h4 {
    margin-bottom: 0.3rem;
  }
  .accmi_title {
    align-items: center;
  }
  .accmi_title h4 {
    text-align: center;
  }
  .accm_info {
    margin-bottom: 0.3rem;
  }
  .accm_certificates {
    width: 42%;
    padding: 0;
  }
  .accmc_prev {
    left: -34%;
  }
  .accmc_next {
    right: -34%;
  }
}

/* -----------------------------------news.html--------------------------------- */
.news_maxbox {
  padding: 0.6rem 0;
}
.nm_box {
}

.nmb_ul ul {
  display: flex;
  gap: 2.2rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  justify-content: center;
  margin-bottom: 0.5rem;
}
.nmb_ul ul li {
}
.nmb_ul ul li a {
  font-family: "Outfit";
  font-size: 0.24rem;
  font-weight: 600;
  color: #333333;
  position: relative;
}
.nmb_ul ul li.active a {
  color: var(--i_color);
}
.nmb_ul ul li a::before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  bottom: -0.28rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s ease;
  background: var(--i_color);
  height: 0.02rem;
  opacity: 0;
}
.nmb_ul ul li.active a::before {
  opacity: 1;
  width: 100%;
}
.nmb_ul ul li a:hover::before {
  width: 100%;
  opacity: 1;
}
.nmb_contain {
}
.nmb_contain .nmbc_box ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nmb_contain .nmbc_box ul li {
  cursor: pointer;
}
.nmb_contain .nmbc_box ul li a {
  display: flex;
  border: 1px solid rgba(51, 51, 51, 0.2);
  justify-content: space-between;
  padding: 0 0.39rem 0 0;
  box-sizing: border-box;
}
.nmb_contain .nmbc_box ul li a .nmbcb_span {
  width: 23.85%;
  position: relative;
  overflow: hidden;
}
.nmb_contain .nmbc_box ul li a .nmbcb_span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.nmb_contain .nmbc_box ul li a:hover .nmbcb_span img {
  transform: scale(1.1);
}
.nmb_contain .nmbc_box ul li a .nmbcb_span .news_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
}
.nmbc_info {
  width: 71.57%;
  padding: 0.3rem 0;
  box-sizing: border-box;
  position: relative;
}
.nmbc_info h3 {
  font-family: "Montserrat";
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #333333;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.2rem;
  border-bottom: 0.02rem solid #b2b1b1;
  margin-bottom: 0.2rem;
}
.nmbc_info h3 i {
  font-family: "Montserrat";
  font-size: 0.66rem;
  font-weight: 600;
  color: #333333;
  display: block;
  line-height: 1;
  margin-right: 0.1rem;
}
.nmbc_info h4 {
  font-family: "Montserrat";
  font-size: 0.22rem;
  font-weight: 600;

  color: #333333;
  margin-bottom: 0.11rem;
  display: block; /* 建议加 */
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 超出隐藏 */
  text-overflow: ellipsis; /* 省略号 */
}
.nmb_contain .nmbc_box ul li a:hover .nmbc_info h4 {
  color: var(--i_color);
}
.nmbc_info h5 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.22rem;
  color: #666666;
  margin-bottom: 0.5rem;
  display: block; /* 建议加 */
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 超出隐藏 */
  text-overflow: ellipsis; /* 省略号 */
}
.nmbc_info .nmbc_btn {
  width: 0.69rem;
  height: 0.39rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--i_color2);
}
.nmbc_info .nmbc_btn img {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(92%) saturate(3182%)
    hue-rotate(343deg) brightness(92%) contrast(96%);
  transition: all 0.35s ease;
}
.nmb_contain .nmbc_box ul li a:hover .nmbc_info .nmbc_btn {
  background: var(--i_color2);
}
.nmb_contain .nmbc_box ul li a:hover .nmbc_info .nmbc_btn img {
  filter: brightness(0) invert(1);
}

.news_bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.35s ease;
  width: 41.35%;
}
.news_bg span {
  position: relative;
  width: 100%;
}
.news_bg span::before {
  content: "";
  display: block;
  padding-bottom: 68%;
}
.news_bg span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nmb_contain .nmbc_box ul li a:hover .news_bg {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .nmb_ul ul li a {
    font-size: 0.2rem;
  }
  .nmb_ul ul {
    padding-bottom: 0.2rem;
    margin-bottom: 0.3rem;
  }
  .nmb_ul ul li a::before {
    bottom: -0.2rem;
  }
  .nmbc_info h3 i {
    font-size: 0.4rem;
  }
  .nmbc_info h3 {
    font-size: 0.16rem;
    line-height: 0.24rem;
    padding-bottom: 0.1rem;
    margin-bottom: 0.1rem;
  }
  .nmbc_info h4 {
    font-size: 0.18rem;
  }
  .nmbc_info h5 {
    font-size: 0.16rem;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .nmb_ul ul li a {
    font-size: 0.18rem;
  }
  .nmbc_info {
    padding: 0.15rem 0;
  }
  .nmb_contain .nmbc_box ul li a {
    padding: 0 0.2rem 0 0;
  }
  .nmbc_info h3 i {
    font-size: 0.3rem;
  }
  .nmbc_info h3 {
    font-size: 0.14rem;
    line-height: 0.24rem;
    padding-bottom: 0.05rem;
    margin-bottom: 0.1rem;
    border-bottom: 0.01rem solid #b2b1b1;
  }
  .nmbc_info h4 {
    font-size: 0.16rem;
  }
  .nmbc_info h5 {
    font-size: 0.14rem;
    margin-bottom: 0.1rem;
  }
  .nmbc_info .nmbc_btn {
    width: 0.45rem;
    height: 0.25rem;
  }
  .nmbc_info .nmbc_btn img {
    width: 0.2rem;
    height: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .nmb_ul ul {
    gap: 0.2rem;
  }
  .news_maxbox {
    padding: 0.3rem 0;
  }
  .nmb_ul ul li a {
    font-size: 0.14rem;
  }
  .nmb_ul ul {
    margin-bottom: 0.15rem;
  }
  .nmb_contain .nmbc_box ul li a .nmbcb_span {
    width: 35%;
    flex-shrink: 0;
  }
  .nmbc_info {
    padding: 0.1rem 0;
  }
  .nmbc_info {
    width: 63%;
  }
  .nmb_contain .nmbc_box ul li a {
    padding: 0 0.05rem 0 0;
  }
  .nmbc_info h3 i {
    font-size: 0.24rem;
  }
  .nmbc_info h3 {
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
  .nmbc_info h4 {
    font-size: 0.14rem;
    margin-bottom: 0.06rem;
  }
  .nmbc_info h5 {
    font-size: 0.12rem;
    margin-bottom: 0.05rem;
  }
  .nmbc_info .nmbc_btn {
    width: 0.4rem;
    height: 0.2rem;
  }
  .nmbc_info .nmbc_btn img {
    width: 0.16rem;
    height: 0.16rem;
  }
  .news_bg {
    display: none;
  }
}

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

/* ---------------------WE ARE ACCESSIBLE ALL TIME-------------------------- */
.we_are_accessible_all_time {
  padding: 0.6rem 0;
}

.waaat_maxbox {
  overflow: hidden;
}
.watm_top {
  margin-bottom: 0.5rem;
}
.watm_contain {
  display: flex;
  justify-content: space-between;
}
.watmc_info {
  width: 49.28%;
  /* margin-bottom: 0.5rem; */
}
.watmci_img {
  position: relative;
  width: 100%;
  margin-bottom: 0.5rem;
  display: block;
}
.watmci_img::before {
  content: "";
  display: block;
  padding-bottom: 52.3%;
}

.watmci_img .watmcii_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.watmci_img .watmciib_tel {
  width: 0.68rem;
  height: 0.68rem;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5.2%;
}
.watmci_img p {
  position: absolute;
  left: 5.2%;
  top: 67.31%;
  width: 65.65%;
  font-family: "Montserrat";
  font-size: 0.16rem;
  line-height: 0.26rem;
  color: #ffffff;
}
.watmci_info h3 {
  font-family: "Montserrat";
  font-size: 0.24rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.3rem;
}
.watmci_info ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.4rem;
  border-bottom: #c3c3c3 1px solid;
  margin-bottom: 0.3rem;
}
.watmci_info ul li {
}
.watmci_info ul li a {
  display: flex;
  align-items: center;
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #333333;
  transition: all 0.35s ease;
}
.watmci_info ul li a img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
  margin-right: 0.1rem;
  transition: all 0.6s ease;
  transform-style: preserve-3d;
}
.watmci_info ul li a:hover {
  text-decoration: underline;
  color: var(--i_color);
}
.watmci_info ul li a:hover img {
  transform: rotateY(180deg);
}
.watmci_info dl {
  display: flex;
  gap: 0.3rem;
}
.watmci_info dl dt {
  width: 0.4rem;
  height: 0.4rem;
}
.watmci_info dl dt a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.watmci_info dl dt a iconify-icon {
  font-size: 0.27rem;
  transition: all 0.6s ease;
  transform-style: preserve-3d;
}
.watmci_info dl dt:nth-child(1) a,
.watmci_info dl dt:nth-child(2) a {
  background: #1874f1;
}
.watmci_info dl dt:nth-child(3) a {
  background: #ff0000;
}
.watmci_info dl dt:nth-child(4) a {
  background: #000000;
}
.watmci_info dl dt a:hover iconify-icon {
  transform: rotateY(180deg);
}

.watmc_form {
  width: 49.28%;
  border: 1px solid rgba(51, 51, 51, 0.2);
  padding: 0.6rem 0.42rem 0.3rem 0.42rem;
  box-sizing: border-box;
}
.watmc_form h3 {
  font-family: "Montserrat";
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 0.36rem;
  color: #333333;
  margin-bottom: 0.18rem;
}
.watmc_form h4 {
  font-family: "Montserrat";
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 1200px) {
  .watmci_img .watmciib_tel {
    width: 0.5rem;
    height: 0.5rem;

    left: 3.2%;
  }
  .watmci_img p {
    left: 3.2%;
    top: 62.31%;
  }
  .watm_top {
    margin-bottom: 0.3rem;
  }
  .watmci_img {
    margin-bottom: 0.3rem;
  }
  .watmci_info h3 {
    font-size: 0.24rem;
    margin-bottom: 0.15rem;
  }
  .watmci_info ul {
    gap: 0.15rem;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .watmc_form {
    padding: 0.3rem;
  }
  .watmc_form h3 {
    font-size: 0.2rem;
    line-height: 0.3rem;
    margin-bottom: 0.12rem;
  }
  .watmc_form h4 {
    font-size: 0.16rem;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .watmci_img .watmciib_tel {
    width: 0.35rem;
    height: 0.35rem;
    left: 3.2%;
  }
  .watmci_img p {
    width: 85%;
    font-size: 0.14rem;
    line-height: 0.24rem;
  }
  .watmci_img {
    margin-bottom: 0.15rem;
  }
  .watmci_info h3 {
    font-size: 0.2rem;
    margin-bottom: 0.15rem;
  }
  .watmci_info ul li a {
    font-size: 0.16rem;
    line-height: 0.26rem;
  }
  .watmci_info ul li a img {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.05rem;
  }
  .watmci_info dl dt {
    width: 0.35rem;
    height: 0.35rem;
  }
  .watmci_info dl dt a iconify-icon {
    font-size: 0.22rem;
  }
  .watmc_form {
    padding: 0.15rem;
  }
  .watmc_form h3 {
    font-size: 0.18rem;
    line-height: 0.28rem;
    margin-bottom: 0.1rem;
  }
  .watmc_form h4 {
    font-size: 0.14rem;
    line-height: 0.22rem;
  }
}
@media screen and (max-width: 768px) {
  .watm_contain {
    flex-direction: column;
  }
  .watmc_info {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .watmci_img p {
    top: 67.31%;
  }
  .watmci_img .watmciib_tel {
    top: 58%;
  }
  .watmc_form {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .we_are_accessible_all_time {
    padding: 0.3rem 0;
  }
  .watmci_img .watmciib_tel {
    top: 50%;
  }
  .watmci_img p {
    top: 62.31%;
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
  .watmci_info h3 {
    font-size: 0.18rem;
    margin-bottom: 0.1rem;
  }
  .watmci_info ul li a {
    font-size: 0.14rem;
    line-height: 0.24rem;
  }
  .watmci_info ul {
    margin-bottom: 0.1rem;
  }
  .watmc_form h3 {
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .watmc_form h4 {
    font-size: 0.12rem;
    line-height: 0.2rem;
  }
}
@media screen and (max-width: 375px) {
  .watmci_img .watmciib_tel {
    width: 0.3rem;
    height: 0.3rem;
  }
  .watmci_img .watmciib_tel {
    top: 39%;
  }
  .watmci_img p {
    top: 51.31%;
    font-size: 0.1rem;
    line-height: 0.16rem;
  }
}
/* ---------------------------------contact_map------------------------------- */
.contact_map_bac {
  box-sizing: border-box;
  margin-top: 0.6rem;
}

.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;
  }
  .contact_map_bac {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 425px) {
}
/* ---------------------contactUs表单-------------- */
#wpforms-175 {
  --wpforms_input_height: 50px;

  --wpforms_textarea_height: 120px;

  --wpforms_input_font_size: 16px;

  width: 100%;
}

#wpforms-175 {
  margin: 0;

  padding: 0;
}

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

  position: relative;
}
div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0px 0;
  clear: both;
}
/* 字段样式 */

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

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

  margin: 0 0 20px;

  overflow-x: initial !important;

  position: relative;
  background: transparent;
}

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

#wpforms-175-field_1::placeholder,
#wpforms-175-field_2::placeholder,
#wpforms-175-field_3::placeholder,
#wpforms-175-field_4::placeholder,
#wpforms-175-field_5::placeholder {
  color: #999999;
  opacity: 1;
}
#wpforms-175 .wpforms-field-container .wpforms-field > input,
#wpforms-175 .wpforms-field-container textarea {
  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  padding: 10px 0px !important;

  margin: 0 0;

  border: 1px solid transparent;

  background: transparent;

  font-size: var(--wpforms_input_font_size);

  line-height: 1.4;
  color: #222;
  border-radius: 0.05rem;
  font-family: Arial;
}

#wpforms-175 .wpforms-field-container .wpforms-field > input {
  height: var(--wpforms_input_height);
  background: transparent;
  border-bottom: #c4c4c4 1px solid;
  border-radius: 0;
}

#wpforms-175 .wpforms-field-container textarea {
  height: var(--wpforms_textarea_height);
  background: transparent;
  border-bottom: #c4c4c4 1px solid;
  border-radius: 0;
}

#wpforms-175 input::placeholder,
#wpforms-175 textarea::placeholder {
  color: #999;
  font-family: "Montserrat";
  font-size: 0.16rem;

  line-height: 1.4;
  font-family: "Montserrat";
}
#wpforms-175 .wpforms-form .wpforms-field-label {
  display: block;
  font-size: 20px;
  float: none;
  line-height: 1.3;
  margin: 0 0 4px 0;
  padding: 0;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 100;
  color: #333;
}
#wpforms-175 .wpforms-field-container .wpforms-field > input:hover,
#wpforms-175 .wpforms-field-container textarea:hover,
#wpforms-175 .wpforms-field-container .wpforms-field > input:focus,
#wpforms-175 .wpforms-field-container textarea:focus {
  /* border: transparent 1px solid; */
  outline: none;
  box-shadow: none;
}

/* 验证错误提示 */

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

  left: 0;

  bottom: 0;

  font-size: 13px;

  color: #d63637;
}

/* 隐藏 Label 标签 */

/* #wpforms-175 .wpforms-field-container .wpforms-field-label {
  height: 0;

  font-size: 0;

  margin: 0 0;
} */

#wpforms-175 .wpforms-field-container .wpforms-required-label {
  /* position: absolute; */

  top: 10px;

  left: 10px;

  font-size: 16px;

  font-weight: bold;
}

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

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

  flex-wrap: wrap;

  justify-content: space-between;
}

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

/* 提交按钮样式 */

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

  padding: 0 0;

  position: relative;

  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.6rem;
}

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

  height: 0.65rem;

  font-size: 0.2rem;

  color: #fff;
  font-weight: bold;
  background: var(--i_color);
  border: none;
  font-family: "Montserrat";
}

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

  top: 50%;

  transform: translate(0, -50%);

  right: 4px;

  z-index: 2;
}

#wpforms-175 .wpforms-submit-container button:hover {
  background: transparent;
  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-175 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 16px;

    width: 100%;
  }
  #wpforms-175 .wpforms-submit-container {
    margin: 0.2rem auto 0;
  }
  #wpforms-175-field_1-container,
  #wpforms-175-field_2-container,
  #wpforms-175-field_3-container,
  #wpforms-175-field_4-container {
    width: 100% !important;
  }

  .contact_our_team {
    padding: 0.3rem 0;
  }
  .cot_maxbox {
    flex-direction: column;
  }
  .cotm_title {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .cotmt_t h4 {
    margin-bottom: 0.2rem;
  }
  .cotm_form {
    width: 100%;
  }

  #wpforms-175 .wpforms-submit-container {
    margin-top: 0.3rem;
  }
}

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

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

@media screen and (max-width: 560px) {
  #wpforms-175-field_1-container,
  #wpforms-175-field_2-container,
  #wpforms-175-field_3-container,
  #wpforms-175-field_4-container {
    width: 100% !important;
  }
  #wpforms-175 .wpforms-submit-container button {
    width: 100%;
  }
  #wpforms-175 {
    --wpforms_input_height: 48px;

    --wpforms_textarea_height: 120px;

    --wpforms_input_font_size: 14px;

    width: 100%;
  }
  #wpforms-175 .wpforms-submit-container button {
    height: 0.4rem;
    font-size: 0.16rem;
  }
  #wpforms-175 .wpforms-submit-container {
    width: 100%;
  }
  #wpforms-175 .wpforms-submit-container {
    margin: 0 auto 0;
  }
  #wpforms-175 .wpforms-form .wpforms-field-label {
    font-size: 16px;
  }
}

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

.hide {
  display: none !important;
}
