/*
Theme Name: tuomei
Version: 1.0
Description: 安徽领聚数字作为Google中国区核心合作伙伴,拥有安徽省唯一的一家Google出海体验中心,为安徽本土化外贸企业出海提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：安徽领聚
*/
@charset "utf-8";

:root {
  /* Global Color */
  --i_color: #0087d7;

  --i_color2: #ebf1fe;

  /* txt color */
  --txt_color: #333333;

  /* Head height */
  --header_height: 0.85rem;

  /* Search height */
  --search_height: 0.4rem;

  /* Default Border Color */
  --border_color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

/* 通用 */

/* 按钮 */
.btn_box {
  display: table;
  cursor: pointer;
}

.btn__ {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--i_color);
  border: 1px solid var(--i_color);
  border-radius: 5rem;
  padding: 0.12rem 0.23rem;
  color: #fff;
  transition: all 0.5s ease;
}

.btn__ iconify-icon {
  font-size: 0.26rem;
  margin-left: 0.27rem;
  transform: rotate(-45deg);
}

.btn__:hover {
  background-color: transparent;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .btn__ {
    padding: 0.06rem 0.18rem;
  }
  .btn__ iconify-icon {
    margin-left: 0.12rem;
  }
}

@media screen and (max-width: 560px) {
  .btn__ {
    padding: 0.01rem 0.14rem;
  }
  .btn__ p {
    font-size: 0.14rem;
  }
  .btn__ iconify-icon {
    font-size: 0.2rem;
    margin-left: 0.06rem;
  }
}

/* title */

.tit_box {
}

.tit_box h2 {
  width: max-content;
  color: var(--txt_color);
  font-size: 0.46rem;
  display: flex;
  align-items: center;
}

.tit_box h2::before {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.24rem;
  background: url(static/imgs/tit_left.webp) no-repeat center;
  background-size: cover;
}

.tit_box h2::after {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.24rem;
  background: url(static/imgs/tit_right.webp) no-repeat center;
  background-size: cover;
}

.tit_box p {
  color: #666;
}

@media screen and (max-width: 1024px) {
  .tit_box h2 {
    font-size: 0.3rem;
  }
  .tit_box h2::before,
  .tit_box h2::after {
    width: 0.3rem;
    height: 0.18rem;
  }
}

@media screen and (max-width: 560px) {
  .tit_box h2 {
    font-size: 0.2rem;
    margin-bottom: 0.1rem;
  }
}

/* 内页banner */

.banner__ {
  width: 100%;
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.banner__ > img {
  width: 100vw;
  max-height: 550px;
  object-fit: cover;
}

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #f5f5f5;
  position: relative;
}
.in_position .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #333;
  position: relative;
  line-height: 20px;
}

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

/* ------- end */

.wrap {
  width: 94vw;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.wrap2 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.wrap_l {
  box-sizing: border-box;
  padding-left: 8.2vw;
}
.wrap_r {
  box-sizing: border-box;
  padding-right: 8.2vw;
}
@media screen and (max-width: 1440px) {
  .wrap_l {
    padding-left: 3vw;
  }
  .wrap_r {
    padding-right: 3vw;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20250729;
  background-color: #fff;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 20%);
}
header.fixedHeader {
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}
header .wrap2 {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}

.header_h {
  height: var(--header_height);
}

@media screen and (max-width: 1024px) {
  header {
    /* background: #223769; */
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  }
}

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 70%;
}
.logo img {
  max-height: 100%;
}
@media screen and (max-width: 1366px) {
  .logo a {
    height: 50%;
  }
}

/* 导航 */
@media screen and (min-width: 1025px) {
  .i_nav {
    margin-left: 8%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 0.6rem;
    position: relative;
    z-index: 2014;
  }

  .i_nav > li {
    position: relative;
  }
  .i_nav > li::before {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0.1rem;
    width: 0;
    height: 0;
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent #f69a2b transparent;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: var(--txt_color);
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
  }

  .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 > li.active::before {
    /* right: initial;
    left: 0;
    width: 100%; */
    opacity: 1;
    bottom: 0.25rem;
  }

  .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 > li.active > a {
    color: var(--i_color);
  }

  .i_nav .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    top: var(--header_height);
    transform: translate(-50%, 0);
    min-width: 1.4rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
    font-size: 0;
  }

  .i_nav .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    height: 1px;
    background: #eee;
  }
  .i_nav .sub-menu a {
    display: block;
    padding: 0 0.2rem;
    font-size: 14px;
    color: var(--txt_color);
    line-height: 0.34rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    transition: all 0.6s ease;
  }

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

  .i_nav .sub-menu li:hover a {
    color: #fff;
    background-color: var(--i_color);
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.4rem;
  }
  .i_nav > li > a {
    font-size: 15.5px;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav {
    margin-left: 2%;
  }
  .i_nav > li > a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;
    position: fixed;
    top: var(--header_height);
    left: 101%;
    width: 100%;
    width: 100vw;
    height: calc(100vh - var(--header_height));
    margin: 0 0;
    background: #fff;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 9999;
  }
  .i_nav.active {
    opacity: 1;
    left: 0;
  }
  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 8px;
    right: 0.2rem;
    width: 0.3rem;
    height: 0.3rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }
  .i_nav > .menu-item-has-children span.on {
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }

  .i_nav > li > a {
    padding: 0 0.2rem;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }
  .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 {
    color: var(--i_color) !important;
  }

  .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: 0.15rem;
    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: 0.13rem;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }

  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* 移动端导航按钮 */
.nav_menu {
  display: none;
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--txt_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--txt_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}
.nav_menu.on i {
  opacity: 0;
}
.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}
.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
    margin-left: 0.2rem;
  }
}

.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.44rem;
}
.search_cont form {
  width: 1.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  background-color: #e6e6e6;
  border-radius: 5rem;
  overflow: hidden;
}
.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: 14px;
  color: var(--txt_color);
}
.search_btn {
  font-size: 0;
  color: var(--txt_color);
  width: var(--search_height);
  height: var(--search_height);
  background: url(static/imgs/magnifier.webp) no-repeat center;
  background-size: 0.26rem;
  cursor: pointer;
}

.search_ipt::placeholder {
  color: var(--txt_color);
  opacity: 1;
}

@media screen and (max-width: 1366px) {
  .search_cont form {
    width: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .top_search_btn {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: var(--header_height);
    cursor: pointer;
    position: relative;
  }
  .top_search_btn iconify-icon {
    font-size: 0.24rem;
    color: var(--txt_color);
  }

  .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: #f9f9f9;
    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: var(--header_height);
  }
  .search_cont form {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-color: var(--i_color);
  }
  .search_ipt {
    font-size: 13px;
  }
  .search_btn {
    /* background-color: var(--i_color); */
  }
}
@media screen and (max-width: 1024px) {
  .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;
  }
}

.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_box {
  height: var(--search_height);
  width: 1.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  background-color: #e6e6e6;
  border-radius: 5rem;
  overflow: hidden;
}

.top_language_btn p {
  font-size: 14px;
  color: var(--txt_color);
  position: relative;
  margin-left: 0.19rem;
}

.top_language_btn p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -0.4rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--txt_color);
}

.top_language_btn iconify-icon {
  display: none;
}

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

.language_list dt > h6 {
  margin-bottom: 0.08rem;
  font-size: 0.17rem;
  font-weight: bold;
  white-space: nowrap;
}
.curr_lang {
  margin-bottom: 0.12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #eee;
}

.lang_list a {
  display: block;
  padding: 0.06rem 0;
}
.lang_list span img {
  display: none;
}
.lang_list .trp-ls-language-name {
  padding-left: 0.3rem;
  font-size: 14px;
  position: relative;
}
.lang_list .trp-ls-language-name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.18rem;
  height: 0.18rem;
  box-sizing: border-box;
  border: 1px solid #aaa;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.lang_list .trp-ls-language-name::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.06rem;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--i_color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

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

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .top_language_box {
    width: max-content;
    background-color: transparent;
  }
  .top_language_btn p {
    display: none;
  }
  .top_language_btn iconify-icon {
    display: block;
    font-size: 0.24rem;
    color: var(--txt_color);
  }
}
@media screen and (max-width: 1024px) {
  .top_language_btn iconify-icon {
    font-size: 22px;
  }

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

/* ----------------------------- banner */

.banner {
}

.i_banner_list {
  position: relative;
  overflow: hidden;
}
.i_banner_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.i_banner_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.i_banner01,
.i_banner02,
.i_banner03 {
  width: 100%;
  position: relative;
}

.i_banner01::before,
.i_banner02::before,
.i_banner03::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 40%;
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/banner01.webp)
    no-repeat center;
  background-size: cover;
}

.ib01_txt {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  transform: translateX(-50%);
}

.ib01_txt h2 {
  font-size: 0.46rem;
  color: var(--txt_color);
}

.ib01_txt p {
  width: max-content;
  background-color: var(--i_color);
  color: #fff;
  box-sizing: border-box;
  padding: 0 0.37rem;
  margin-top: 0.12rem;
  margin-bottom: 0.12rem;
}

.ib01_txt h3 {
  color: var(--txt_color);
  margin-bottom: 0.1rem;
}

.ib01_txt img {
  width: 100%;
  display: block;
}

.i_banner01 .i_banner01_img {
  width: 81%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1440px) {
  .i_banner01 .i_banner01_img {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) {
  .ib01_txt {
    top: 0.25rem;
  }
  .ib01_txt h2 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .ib01_txt {
    width: 85%;
    z-index: 20;
  }
  .ib01_txt h2 {
    font-size: 0.26rem;
  }
  .ib01_txt img {
    display: none;
  }
  .ib01_txt h3 {
    width: 100%;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .i_banner01::before,
  .i_banner02::before,
  .i_banner03::before {
    padding-bottom: 50%;
  }
}
@media screen and (max-width: 560px) {
  .i_banner01::before,
  .i_banner02::before,
  .i_banner03::before {
    padding-bottom: 56%;
  }
  .ib01_txt h2 {
    font-size: 0.16rem;
  }
  .ib01_txt h3 {
    padding: 0.05rem 0;
    font-size: 0.11rem;
    background: linear-gradient(
      to right,
      transparent,
      var(--i_color) 50%,
      transparent
    );
    color: #fff;
  }
  .i_banner01 .i_banner01_img {
    width: 80%;
  }
}

@media screen and (max-width: 375px) {
  .i_banner01::before,
  .i_banner02::before,
  .i_banner03::before {
    padding-bottom: 60%;
  }
}

@media screen and (max-width: 320px) {
  .i_banner01::before,
  .i_banner02::before,
  .i_banner03::before {
    padding-bottom: 80%;
  }
}

.i_banner02::before {
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/banner02.webp)
    no-repeat center;
  background-size: cover;
}

.ib02_txt {
  position: absolute;
  top: 0.42rem;
  left: 33vh;
}

.ib02_txt h2 {
  font-size: 0.46rem;
  color: var(--i_color);
  position: relative;
  padding-bottom: 0.2rem;
}

.ib02_txt h2::before {
  content: "";
  display: block;
  width: 42%;
  height: 9px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.ib02_txt h2::after {
  content: "";
  display: block;
  width: 58%;
  height: 4px;
  background-color: #fcb80d;
  position: absolute;
  right: 0;
  bottom: 0;
}

.ib02_list {
  width: 77%;
  margin-top: 0.26rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem 0;
}

.ib02_list li {
  display: flex;
}

.ib02_list li::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  background-color: var(--i_color);
  border-radius: 50%;
  margin-top: 0.08rem;
  margin-right: 0.12rem;
}

@media screen and (max-width: 1440px) {
  .ib02_txt {
    left: 7%;
  }
}
@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1200px) {
  .ib02_txt {
    top: 0.25rem;
  }
  .ib02_txt h2 {
    font-size: 0.3rem;
  }
  .ib02_txt {
    left: 6%;
  }
}
@media screen and (max-width: 1024px) {
  .ib02_txt h2 {
    font-size: 0.26rem;
  }
  .ib02_txt h2::before,
  .ib02_txt h2::after {
    display: none;
  }
  .ib02_list {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.2rem;
    background: linear-gradient(to left, transparent, var(--i_color));
    color: #fff;
    padding: 0.1rem 0 0.1rem 0.1rem;
    gap: 0.05rem 0;
  }
  .ib02_list li::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .ib02_txt h2 {
    font-size: 0.16rem;
    padding-bottom: 0.1rem;
  }
  .ib02_list {
    width: 92%;
  }
  .ib02_list li {
    font-size: 0.11rem;
  }

  .i_banner02 .btn_box {
    display: none;
  }
}

.i_banner03::before {
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/banner03.webp)
    no-repeat center;
  background-size: cover;
}

.ib02_txt h3 {
  width: max-content;
  color: #fff;
  font-size: 0.46rem;
  position: relative;
  padding-top: 0.5rem;
}

.ib02_txt h3 i {
  position: relative;
  z-index: 10;
}

.ib02_txt h3::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/banner03_txtimg.webp)
    no-repeat center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ib02_txt h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.ib02_txt h4 {
  width: 85%;
  color: #fff;
  margin-top: 0.17rem;
  position: relative;
  padding-bottom: 0.13rem;
}

.ib02_txt h4::before {
  content: "";
  display: block;
  width: 112%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.ib03_img {
  width: 58%;
  display: block;
  margin-top: 0.7rem;
}

@media screen and (max-width: 1440px) {
  .ib03_img {
    width: 40%;
  }
}
@media screen and (max-width: 1200px) {
  .ib02_txt h3 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .ib02_txt h3 {
    padding-top: 0;
    font-size: 0.26rem;
  }
  .ib02_txt h3::before,
  .ib02_txt h4::before {
    display: none;
  }
  .ib02_txt h4 {
    margin-top: 0.1rem;
  }
  .ib03_img {
    width: 30%;
    margin-top: 0.45rem;
  }
}
@media screen and (max-width: 560px) {
  .ib02_txt h3 {
    font-size: 0.16rem;
  }
  .ib02_txt h3::after {
    display: none;
  }
  .ib02_txt h4 {
    font-size: 0.12rem;
  }
  .ib03_img {
    margin-top: 0.2rem;
  }
}

/* -------------------------- */
.i_banner-prev,
.i_banner-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(0 0 0 / 60%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.i_banner-prev {
  left: 0;
}
.i_banner-next {
  right: 0;
}
.i_banner-prev iconify-icon,
.i_banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.i_banner_list .swiper-button-disabled {
  cursor: not-allowed;
}
.i_banner-prev:hover,
.i_banner-next:hover {
  background: var(--i_color);
}

/* -------------------------- */
.i_banner-pagination {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.i_banner-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.i_banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

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

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

/* footer  */

.footer_p {
  width: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/footer_img-1.webp)
    no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  box-sizing: border-box;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.footer_p::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 80%);
}

.footer_p h2,
.footer_p > p {
  color: #fff;
  z-index: 10;
  position: relative;
}

.footer_p .btn_box {
  z-index: 10;
  position: relative;
}

.footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ft_nav {
  display: flex;
  align-items: center;
}

.ft_nav li {
  margin-left: 0.7rem;
  font-size: 0.2rem;
  color: var(--txt_color);
}

.ft_nav li a:hover {
  color: var(--i_color);
  text-decoration: underline;
}

.f_infoBox {
  border-top: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
  position: relative;
}

.f_infoBox > img {
  width: 54%;
  position: absolute;
  bottom: 0;
  right: 7.8%;
}

.f_info {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.f_contact {
  flex-shrink: 0;
  width: 40%;
}

.f_contact h4 {
  color: var(--txt_color);
}

.f_contact dl {
}
.f_contact dt {
  margin: 15px 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.1rem;
}
.f_contact dt iconify-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.2rem;
  color: var(--i_color);
}
.f_contact dt p,
.f_contact dt a {
  font-size: 0.18rem;
}
.f_contact dt b {
  color: #333;
}
.f_contact dt a:hover {
  color: var(--i_color);
}

.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 1%;
  z-index: 20;
  position: relative;
}
.f_media li {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_media a {
  display: block;
  width: 44px;
  height: 44px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.f_media iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.26rem;
  color: #777;
}

.f_media a:hover iconify-icon {
  color: var(--i_color);
}

.f_nav {
}
.f_nav h5 {
  margin-bottom: 0.16rem;
  color: var(--i_color);
}
.f_nav ul {
}
.f_nav li {
}
.f_nav a {
  display: block;
  padding: 10px 0;
  font-size: 0.16rem;
  color: #333;
  position: relative;
  z-index: 20;
}
.f_nav a:hover {
  color: var(--i_color);
  text-decoration: underline;
}

.f_nav01 {
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
  padding: 0 1.05rem;
  padding-bottom: 1.6rem;
}

.f_crBox {
  background-color: #f6f6f6;
}

.f_cr {
}
.f_cr a:hover {
  color: var(--i_color);
  text-decoration: underline;
}

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

  .f_contact {
    width: 100%;
  }
  .f_nav {
    display: none;
  }
  .f_contact dt p,
  .f_contact dt a {
    font-size: 16px;
  }

  .f_cr {
    padding: 10px 0;
  }
}
@media screen and (max-width: 560px) {
  .f_infoBox > img {
    right: 0;
  }
  .f_contact dt {
    margin: 10px 0;
  }
  .f_contact dt iconify-icon {
    font-size: 18px;
  }
  .f_contact dt p,
  .f_contact dt a {
    font-size: 15px;
  }

  .f_media a {
    width: 36px;
    height: 36px;
  }
  .f_media iconify-icon {
    font-size: 18px;
  }
}

/* 产品系列 */
.Product_Series {
}

.ps_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 2%;
}

.ps_cont li {
  width: 32%;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 0.15rem;
  transition: all 0.6s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ps_cont li a {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
  position: relative;
}

.ps_cont li::before {
  content: "";
  display: block;
  width: 85%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 135, 215, 0) 0%,
    rgba(0, 135, 215, 0.1) 100%
  );
  position: absolute;
  left: -10%;
  bottom: -10%;
  clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
  transition: all 0.6s ease;
  z-index: 2;
}

.ps_cont li h2 {
  color: var(--i_color);
  box-sizing: border-box;
  transition: all 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps_img {
  width: 100%;
  position: relative;
}

.ps_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}

.ps_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ps_cont .btn__ {
  background-color: transparent;
  color: var(--i_color);
  z-index: 20;
  position: relative;
}

.ps_cont .btn__ iconify-icon {
  transform: rotate(0);
  transition: all 0.4s ease;
}

.ps_cont li:hover {
  background-color: #0076bd;
}

.ps_cont li:hover h2 {
  color: #fff;
}

.ps_cont li:hover::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.ps_cont li:hover .btn__ {
  color: #fff;
  background-color: #0087d7;
  border-color: #fff;
}

.ps_cont li:hover .btn__ iconify-icon {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .ps_cont {
    gap: 0.15rem 2%;
  }
  .ps_cont li {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .ps_cont li {
    width: 100%;
  }
}

/* 热门产品 */

.Hot_Products {
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/Hot_ProductsBa.webp)
    no-repeat center;
  background-size: cover;
}

.Hot_Products .Rp_list li:hover .hplogo02 {
  opacity: 1;
  left: -6%;
  top: -2.5%;
}

/* .hp_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 2%;
}

.hp_cont li {
  width: 23.5%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hp_cont li a {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0.2rem;
  position: relative;
  background-color: #fff;
}

.hplogo01,
.hplogo02 {
  width: 0.25rem;
  position: absolute;
  left: 4%;
  top: 4%;
  z-index: 2;
  transition: all 0.4s ease;
}

.hplogo02 {
  width: 0.63rem;
  opacity: 0;
}

.hp_img {
  position: relative;
  width: 100%;
}

.hp_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.hp_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hp_cont li p {
  color: var(--txt_color);
  transition: all 0.4s ease;
}

.hp_cont li:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}

.hp_cont li:hover .hplogo01 {
  opacity: 0;
  left: 0;
  top: 0;
}

.hp_cont li:hover .hplogo02 {
  opacity: 1;
  left: -6%;
  top: -3%;
}

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

@media screen and (max-width: 1024px) {
  .hp_cont li {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .hp_cont {
    gap: 0.15rem 2%;
  }
  .hp_cont li {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .hp_cont li {
    width: 100%;
  }
} */

.i_transition {
  width: 100%;
}

/* 关于公司 */
.i_about {
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/i_aboutBa.webp)
    no-repeat;
  background-size: cover;
  background-position: 0 3.3rem;
}

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

.ib_left {
  width: 48%;
}

.ib_left h3 {
  color: var(--txt_color);
  margin-bottom: 0.28rem;
  font-size: 0.36rem;
}

.ib_left > article {
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ib_right {
  width: 36%;
  height: max-content;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgb(51, 51, 51, 20%);
  border-bottom: 1px solid rgb(51, 51, 51, 20%);
  margin-top: 0.26rem;
}

.ib_right li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ib_right li:nth-child(2) {
  border-top: 1px solid rgb(51, 51, 51, 20%);
  border-bottom: 1px solid rgb(51, 51, 51, 20%);
}

.ib_right li span {
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.ib_right li p {
  color: #666666;
}

.ib_right li:hover span {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .i_about {
    background-position: center center;
  }
  .ib_left h3 {
    margin-bottom: 0.15rem;
  }
  .ib_left > p {
    margin-bottom: 0.2rem;
  }
  .ib_left {
    width: 100%;
  }
  .ib_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ib_right li {
    padding: 0.15rem 0;
  }
}
@media screen and (max-width: 560px) {
  .ib_right li {
    padding: 0.08rem 0;
  }
}

/* 公司优势 */

.i_advantages {
  background: url(static/imgs/i_aboutBa.webp) no-repeat;
  background-size: cover;
  background-position: 0 -1.72rem;
}

.company_adv_ul {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #d6d6d6;
  margin-top: 0.6rem;
}
.company_adv_ul li {
  width: 25%;
  box-sizing: border-box;
  padding: 0.4rem 0.2rem 0.6rem 0.2rem;
  position: relative;
  overflow: hidden;
}
.company_adv_ul li:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
.company_adv_text {
}
.company_adv_text h3 {
  font-size: 0.4rem;
  color: #a4a4a4;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  padding: 0.7rem 0;
  position: relative;
  margin-bottom: 0.4rem;
}
.company_adv_text h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.02rem;
  height: 0.58rem;
  background-color: #d8d8d8;
}
.company_adv_text h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.02rem;
  height: 0.58rem;
  background-color: #d8d8d8;
}
.company_adv_text h4 {
  font-size: 0.22rem;
  color: #333;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 0.6rem;
}
.company_adv_text img {
  width: 0.64rem;
  height: 0.64rem;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.company_adv_flex {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.7s ease;
}
.company_adv_flex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company_adv_flex p {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 94%;
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #fff;
  box-sizing: border-box;
  overflow: auto;
  height: 2.1rem;
}
/*滚动条*/
.company_adv_flex p::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.company_adv_flex p::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--i_color);
}
.company_adv_flex p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: #f1f1f1;
}

.company_adv_ul li:hover .company_adv_flex {
  top: 0;
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .company_adv_text h3 {
    font-size: 0.35rem;
    padding: 0.6rem 0;
  }
  .company_adv_text h4 {
    font-size: 0.22rem;
    margin-bottom: 0.4rem;
  }
  .company_adv_text img {
    width: 0.6rem;
    height: 0.6rem;
  }
  .company_adv_ul li {
    padding: 0.4rem 0.2rem 0.5rem 0.2rem;
  }
  .company_adv_text h3::before,
  .company_adv_text h3::after {
    height: 0.5rem;
  }
  .company_adv_flex p {
    font-size: 0.16rem;
    line-height: 0.25rem;
    height: 2rem;
  }
  .company_adv_bac {
    padding: 1.1rem 0 0.8rem 0;
  }
}
@media screen and (max-width: 1200px) {
  .company_adv_text h4 {
    font-size: 0.2rem;
  }
  .company_adv_text img {
    width: 0.55rem;
    height: 0.55rem;
  }
  .company_adv_text h3 {
    font-size: 0.3rem;
  }
  .company_adv_ul li {
    padding: 0.4rem 0.2rem;
  }
  .company_adv_text h4 {
    margin-bottom: 0.3rem;
  }
  .company_adv_ul {
    margin-top: 0.4rem;
  }
  .company_adv_bac {
    padding: 0.9rem 0 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .i_advantages {
    background-size: contain;
    background-position: center top;
  }
  .company_adv_ul {
    border: none;
    gap: 0.2rem 0;
  }
  .company_adv_ul li {
    width: 50%;
    border: 1px solid #d6d6d6;
  }
  .company_adv_text img {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .company_adv_ul li {
    width: 50%;
  }
  .company_adv_bacImg {
    top: 0%;
  }
}
@media screen and (max-width: 560px) {
  .company_adv_ul li {
    width: 100%;
  }
}

/* 置顶新闻 */

.in_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.in_top .btn__ {
  background-color: transparent;
  color: var(--i_color);
  z-index: 20;
  position: relative;
}

.in_top .btn__ iconify-icon {
  transform: rotate(0);
  transition: all 0.4s ease;
}

.in_top .btn__:hover {
  color: #fff;
  background-color: #0087d7;
  border-color: #fff;
}

.in_top .btn__:hover iconify-icon {
  transform: rotate(-45deg);
}

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

.inc_01 {
  width: 49%;
}

.inc_01 a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0.18rem 0.18rem 0.35rem 0.18rem;
  background-color: #f5f5f5;
}

.inc_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.inc_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}

.inc_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}

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

.inc_text > p {
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--i_color);
  color: #fff;
  position: relative;
  padding: 0.04rem 0.18rem;
}

.inc_text > p::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background-color: #fcb80d;
  position: absolute;
  top: 0;
  right: 0;
}

.inc_text > p i {
  margin-top: -0.1rem;
}

.inc_txt {
  width: 85%;
}

.inc_txt p {
  color: var(--txt_color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.inc_txt span {
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.inc_01:hover .inc_txt p {
  color: var(--i_color);
}

.inc_02 {
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inc_02 li a {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.18rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  transition: all 0.6s ease;
}

.inc02_img {
  width: 38.5%;
  position: relative;
  overflow: hidden;
}

.inc02_img::before {
  width: 100%;
  padding-bottom: 70%;
  content: "";
  display: block;
}

.inc02_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}

.inc02_text {
  width: 57%;
}

.inc02_text h3 {
  color: var(--txt_color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.inc02_text p {
  color: #999;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inc02_text span {
  background-color: #fff;
  color: #999;
  padding: 0.06rem;
  transition: all 0.4s ease;
}

.inc_02 li a:hover {
  background-color: #fff;
  box-shadow: 0 0 0.1rem 0.05rem rgba(0, 0, 0, 0.1);
}

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

.inc_02 li a:hover .inc02_text span {
  color: var(--i_color);
  background-color: #e5f3fb;
}

@media screen and (max-width: 1024px) {
  .i_news .tit_box {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .in_cont {
    gap: 0.2rem 0;
  }
  .inc_01 {
    width: 100%;
  }
  .inc_02 {
    width: 100%;
    gap: 0.2rem 0;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .inc_text {
    gap: 0.15rem 0;
  }
  .inc_txt {
    width: 100%;
  }
  .inc_02 li a {
    gap: 0.15rem 0;
  }
  .inc02_text {
    width: 100%;
  }

  .inc02_text p {
    margin: 0.1rem 0;
  }
}

/* 合作品牌 */
.Partner_Brands {
}

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

.partner_list::before {
  width: 20%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-linear-gradient(right, transparent, #fff);
  z-index: 100;
}

.partner_list::after {
  width: 20%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: -webkit-linear-gradient(left, transparent, #fff);
  z-index: 100;
}

.partner_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.partner_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.partner_list .swiper-slide::before {
  width: 100%;
  content: "";
  display: block;
  padding-bottom: 70%;
}

.partner_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* -------------------------- */
.partner-pagination {
  display: block;
  width: 10%;
  height: 5px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
}
.partner-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5rem;
}
.partner-pagination span {
  background: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  border-radius: 5rem;
}

@media screen and (max-width: 1024px) {
  .partner_list::before,
  .partner_list::after {
    display: none;
  }
  .partner-pagination {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .partner-pagination {
    width: 25%;
    margin-top: 0.15rem;
  }
}

/* ------------------------------------ contact us 页面*/

.ContactBox {
}

.ContactList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 4%;
}

.ContactList li {
  width: 48%;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 0.3rem 0.36rem 0.57rem 0.36rem;
  position: relative;
  transition: all 0.6s ease;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.ContactList li::before {
  content: "";
  display: block;
  height: 3px;
  background-color: var(--i_color);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: all 0.4s ease;
}

.ContactList li > img {
  max-width: 1.9rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  opacity: 0;
  transition: all 0.5s ease;
}

.ContactList li p {
  color: #666;
}

.ContactList li a {
  color: var(--txt_color);
  display: block;
}

.ContactList li iconify-icon {
  flex-shrink: 0;
  width: 0.77rem;
  height: 0.77rem;
  border-radius: 50%;
  font-size: 0.45rem;
  color: var(--i_color);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.ContactList li:hover {
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.ContactList li:hover::before {
  width: 100%;
}

.ContactList li:hover > img {
  opacity: 1;
  left: 0;
}

.ContactList li:hover iconify-icon {
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .ContactList li iconify-icon {
    width: 0.6rem;
    height: 0.6rem;
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .ContactList {
    gap: 0.2rem 0;
  }
  .ContactList li {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.15rem 0;
  }
}
@media screen and (max-width: 560px) {
  .ContactList li {
    padding: 0.2rem;
  }
  .ContactList li > div {
    width: 100%;
  }
  .ContactList li iconify-icon {
    width: 0.42rem;
    height: 0.42rem;
    font-size: 0.22rem;
    order: -1;
  }
}

/* 地图+表单 */

.mapBox {
  background: url(https://lingjuimg.com/wp-content/uploads/tuomei/2025/08/contactBa.webp)
    no-repeat center center;
  background-size: cover;
}

.m_cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0.56rem 0.28rem;
  background-color: #fff;
}

.map {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.map::before {
  content: "";
  display: block;
  padding-bottom: 109%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m_form {
  width: 47%;
}

#wpforms-132 {
  --wpforms-field-size-input-height: 50px;
  --wpforms-field-border-size: 0;
  --wpforms-button-background-color: var(--i_color);
  --wpforms-button-border-color: var(--i_color);
  --wpforms-page-break-color: var(--i_color);
  --wpforms-label-error-color: #d63637;
}
#wpforms-132 {
  margin: 0;
  padding: 0;
}
#wpforms-form-132 {
  width: 100%;
  position: relative;
}

#wpforms-132 .wpforms-field-container {
}
#wpforms-132 .wpforms-field-container > .wpforms-field {
  width: 100%;
  padding: 0 1px 20px;
  margin: 0 0 10px;
  overflow-x: initial !important;
}

#wpforms-132 .wpforms-field-container .wpforms-field-label {
  height: 0;
  font-size: 0;
  margin: 0 0;
}
#wpforms-132 .wpforms-field-container .wpforms-required-label {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 15px;
  color: #f00;
  font-weight: bold;
}

#wpforms-132 .wpforms-field-container .wpforms-field > input,
#wpforms-132 .wpforms-field-container textarea {
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#wpforms-132 .wpforms-form label.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
}

#wpforms-132 .wpforms-field-container .wpforms-field > input,
#wpforms-132 .wpforms-field-container textarea,
#wpforms-132 .wpforms-field-container select,
#wpforms-132 .wpforms-field-container .choices {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0;
}
#wpforms-132 .wpforms-field-container .wpforms-field > input,
#wpforms-132 .wpforms-field-container textarea,
#wpforms-132 .wpforms-field-container select {
  padding-left: 14px;
  padding-right: 14px;
}
#wpforms-132 .wpforms-field-container textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}
#wpforms-132 .wpforms-field-container fieldset ul {
  padding: 0 2px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
#wpforms-132 .wpforms-field-container select {
  cursor: pointer;
}
#wpforms-132 .wpforms-field-container .wpforms-datepicker-wrap {
  width: 310px;
}
#wpforms-132 .wpforms-field-container .wpforms-datepicker-wrap input {
  width: 100%;
  max-width: 100%;
}
#wpforms-132 .wpforms-field-container .wpforms-datepicker-clear {
  right: 10px;
}
#wpforms-132 .wpforms-field-container em.wpforms-error,
#wpforms-132 .wpforms-field-container .mailcheck-error {
  position: absolute;
  margin: 0 0;
  bottom: -2px;
}

/* #wpforms-132 input::placeholder, #wpforms-132 textarea::placeholder{color:#333;font-size:16px} */

/* #wpforms-132 .wpforms-field-container{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-132-field_1-container,
#wpforms-132-field_2-container
{width: 48% !important;} */

#wpforms-132 .wpforms-submit-container {
  width: 100%;
  padding: 0 0;
}
#wpforms-132 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: var(--i_color);
  border-radius: 5rem;
}
#wpforms-132 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-132 .wpforms-submit-container button:hover {
  background: #000;
}

@media screen and (max-width: 1024px) {
  .map {
    width: 100%;
  }
  .map::before {
    padding-bottom: 50%;
  }
  .m_form {
    width: 100%;
    order: -1;
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .m_cont {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 560px) {
  .map::before {
    padding-bottom: 85%;
  }
}

/* ------------------------------------ news 页面*/

/* 新闻切换选项卡 */
.news_top {
  border-bottom: 1px solid rgb(51, 51, 51, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.63rem;
}

.news_top li {
  padding-bottom: 0.2rem;
  cursor: pointer;
}

.news_top .nt_active {
  position: relative;
}

.news_top .nt_active a {
  color: var(--i_color);
}

.news_top .nt_active::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: -1px;
}

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

@media screen and (max-width: 1024px) {
  .news_top {
    gap: 0 0.8rem;
  }
}

/* 新闻列表 */
.news_list {
  display: flex;
  flex-direction: column;
  gap: 0.48rem 0;
}

.news_list li {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
}

.news_list li a {
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 2%;
  padding: 0.46rem 0;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e5e5;
}

.news_list .news_img {
  width: 33%;
  position: relative;
  overflow: hidden;
}

.news_list .news_img::before {
  content: "";
  display: block;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56%;
}

.news_list .news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.news_list .news_txt {
  width: 61%;
}

.news_list .news_txt > p {
  color: #222;
  transition: all 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.news_list .news_txt > span {
  color: #666;
  margin: 0.27rem 0 0.45rem 0;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_list .btn__ {
  background-color: transparent;
  color: var(--i_color);
  z-index: 20;
  position: relative;
}

.news_list .btn__ iconify-icon {
  transform: rotate(0);
  transition: all 0.4s ease;
}

.news_list .btn__:hover {
  color: #fff;
  background-color: #0087d7;
  border-color: #fff;
}

.news_list .btn__:hover iconify-icon {
  transform: rotate(-45deg);
}

.news_btn i {
  color: #9f9f9f;
}

.news_list li:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.news_list li:hover .news_txt > p {
  color: var(--i_color);
}

.news_list li:hover .news_img img {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .news_list li a {
    padding: 0.2rem 0;
    gap: 0.3rem 0;
    flex-wrap: wrap;
  }
  .news_list .news_txt {
    width: 100%;
  }
  .news_list .news_txt > span {
    margin: 0.2rem 0 0.3rem 0;
  }
}

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

/* ------------------------------------ cases 页面*/

.cases_con {
}

.cases_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem 3%;
}

.cases_list li {
  width: 48.5%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cases_list li a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0.14rem 0.12rem 0.25rem 0.12rem;
  position: relative;
}

.cases_list li a::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.6s ease;
}

.cases_list li a > img {
  max-width: 1.9rem;
  position: absolute;
  right: 0;
  bottom: -1.2rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.casesL_img {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.casesL_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 57%;
}

.casesL_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.cases_list li:hover {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

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

.cases_list li a:hover > img {
  opacity: 1;
}

.cases_list li a:hover .casesL_img img {
  transform: scale(1.1);
}

/* 更多显示按钮 */

.expand_btn {
  display: flex;
  flex-direction: column;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.expand_btn p {
  font-size: 0.24rem;
  color: var(--i_color);
  font-weight: bold;
  margin-top: 0.15rem;
}

.e_bottom {
  width: 0.86rem;
  height: 0.86rem;
  background-color: #ebf6fc;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.e_bottom .eb_x {
  width: 0.58rem;
  height: 0.58rem;
  background-color: var(--i_color);
  border-radius: 50%;
}
.e_bottom .eb_x iconify-icon {
  font-size: 0.3rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .cases_list {
    gap: 0.2rem 0;
  }
  .cases_list li {
    width: 100%;
  }
  .cases_list li a::before {
    width: 100%;
  }
  .cases_list li a > img {
    max-width: 1rem;
    bottom: 0;
  }
}
@media screen and (max-width: 560px) {
  .cases_list li {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  }
  .cases_list li a {
    padding: 0.15rem;
  }
  .casesL_img {
    margin-bottom: 0.15rem;
  }

  .e_bottom {
    width: 0.6rem;
    height: 0.6rem;
  }
  .e_bottom .eb_x {
    width: 0.35rem;
    height: 0.35rem;
  }
  .e_bottom .eb_x iconify-icon {
    font-size: 0.2rem;
  }
  .expand_btn p {
    font-size: 0.2rem;
    margin-top: 0.1rem;
  }
}

/* ------------------------------------ service 页面*/

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

.sa_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.sa_list li {
  width: 32%;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sa_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sa_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 60%;
}

.sa_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.sa_text {
  box-sizing: border-box;
  padding: 0 0.2rem 0.3rem 0.2rem;
}

.sa_text p {
  color: var(--i_color);
  padding-bottom: 0.18rem;
  position: relative;
}

.sa_text p::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.sa_text h4 {
  color: #666;
  margin-top: 0.13rem;
}

ul.sa_list > li:nth-child(2) .sa_text {
  order: -1;
}

@media screen and (max-width: 1024px) {
  .sa_list li {
    width: 100%;
  }
  ul.sa_list > li:nth-child(2) .sa_text {
    order: 0;
  }
}

/* FAQ */

.faq_box {
}

.faq_box .tit_box a {
  color: var(--i_color);
}

.fold_list {
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem 0;
}
.fold_list li {
  position: relative;
  background-color: #f6f6f6;
  overflow: hidden;
}

.fold_list li > img {
  width: 36%;
  object-fit: contain;
  position: absolute;
  bottom: -150%;
  right: 5%;
}

.fold_list .tit {
  padding: 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.14rem;
  cursor: pointer;
}

.fold_list .qa {
  flex-shrink: 0;
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.18rem;
  color: #fff;
}
.fold_list .qa {
  background: var(--i_color);
}

.fold_list .tit p {
  color: var(--txt_color);
}

.fold_list .tit.active {
  background: var(--i_color);
}

.fold_list .tit.active p {
  color: #fff;
}

.fold_list .tit.active .qa {
  background: #fff;
  color: var(--i_color);
}

.fold_list .tit b {
  width: 0.26rem;
  height: 0.26rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 13H5v-2h6V5h2v6h6v2h-6v6h-2z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
  margin-left: auto;
  position: relative;
  z-index: 20;
}
.fold_list .tit.active b {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19 12.998H5v-2h14z'/%3E%3C/svg%3E")
    no-repeat center;
  position: relative;
  z-index: 20;
}

.fold_list .txt {
  display: none;
  padding: 0 0.2rem 0.75rem 0.2rem;
  background-color: var(--i_color);
  color: #fff;
}
.fold_list .txt span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.14rem;
  align-items: baseline;
}

.fold_list .txt span .qa {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .fold_list li > img {
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .fold_list .tit {
    gap: 0.15rem 0;
  }
  .fold_list .tit > .qa {
    margin-right: 90%;
  }
  .fold_list .txt span .qa {
    display: none;
  }
}

/* ------------------------------------ about 页面*/

.about_cont {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: 16.1vw;
}

.ac_txt {
  width: 37%;
  position: relative;
  padding-right: 0.6rem;
  box-sizing: border-box;
}

.ac_txt::before {
  content: "";
  display: block;
  width: 1px;
  height: 81%;
  background-color: #f0f1f3;
  position: absolute;
  top: 0.2rem;
  right: 0;
}

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

.ac_txt article {
  color: #666;
}

.about_box .btn__ {
  background-color: transparent;
  color: var(--i_color);
  z-index: 20;
  position: relative;
}

.about_box .btn__ iconify-icon {
  transform: rotate(0);
  transition: all 0.4s ease;
}

.about_box .btn__:hover {
  color: #fff;
  background-color: #0087d7;
  border-color: #fff;
}

.about_box .btn__:hover iconify-icon {
  transform: rotate(-45deg);
}

.ac_img {
  font-size: 0;
  position: relative;
  width: 59%;
  height: max-content;
}

.ac_img img {
  width: 100%;
}

.video_btn {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  height: 1.4rem;
}
.video_btn .icon {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  background: rgb(255 255 255 / 80%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.video_btn iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.36rem;
  color: var(--i_color);
}

.o_line::before,
.o_line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 100%);
  border-radius: 50%;
  opacity: 0;
  animation: serv_one_border 1.6s 0s ease infinite;
}
.o_line:before {
  width: 50%;
  height: 50%;
}
.o_line:after {
  width: 60%;
  height: 60%;
}
@keyframes serv_one_border {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
    -ms-transform: translate(-50%, -50%) scale(1.5);
    -o-transform: translate(-50%, -50%) scale(1.5);
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    -moz-transform: translate(-50%, -50%) scale(1.5);
  }
}

@media screen and (max-width: 1440px) {
  .about_cont {
    margin-left: 5.1vw;
  }
}
@media screen and (max-width: 1366px) {
  .about_cont {
    margin-left: 3.1vw;
  }
}

@media screen and (max-width: 1024px) {
  .about_cont {
    margin-left: 0;
    width: 94vw;
    margin-left: auto;
    margin-right: auto;
    gap: 0.3rem 0;
  }
  .ac_txt {
    width: 100%;
    padding-right: 0;
  }
  .ac_txt::before {
    display: none;
  }
  .ac_img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .video_btn {
    width: 1rem;
    height: 1rem;
  }
  .video_btn .icon {
    width: 0.5rem;
    height: 0.5rem;
  }
  .video_btn iconify-icon {
    font-size: 0.3rem;
  }
}

/* 宣传数据 */

.au_box {
  background-color: var(--i_color);
}

.au_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.au_list li {
  width: 33.33%;
  box-sizing: border-box;
  position: relative;
}

.au_list li::before {
  width: 2px;
  height: 100%;
  content: "";
  display: block;
  background-color: #168fd7;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.au_list li::after {
  width: 2px;
  height: 100%;
  content: "";
  display: block;
  background-color: #168fd7;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.au_list li > div {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.au_list li p {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 0.56rem;
  color: #fff;
  font-weight: bold;
  transition: all 0.4s ease;
}

.au_list li p i {
  /* margin-left: 0.06rem; */
}

.a_num {
  display: flex;
  align-items: center;
}

.abicon img {
  max-width: 0.44rem;
  margin-left: 0.6rem;
}

.au_list li span {
  color: #80c3eb;
}

.au_list li:nth-child(2)::before,
.au_list li:nth-child(2)::after {
  display: none;
}

@media screen and (max-width: 1440px) {
  .au_box {
    margin-top: 0.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .au_list li p {
    font-size: 0.34rem;
  }
  .abicon img {
    max-width: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .au_list li {
    padding: 0.2rem 0;
  }
  .au_list li > div {
    align-items: center;
  }
  .au_list li p {
    font-size: 0.3rem;
  }
  .abicon img {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .au_list li {
    width: 100%;
  }
  .au_list li::before,
  .au_list li::after {
    display: none;
  }
  .au_list li p {
    font-size: 0.18rem;
  }
}

/* 公司优势 */
.a_advantages {
  background: none;
  background-color: #fafafa;
}

/* 环境 */

.environment {
}

.e_buttoms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.e_buttoms p {
  width: 1px;
  background-color: #d8d8d8;
  margin: 0 0.48rem;
}

.e_buttoms li {
  padding: 0.17rem 0;
  color: #666;
  cursor: pointer;
}

.e_buttoms .active {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .e_buttoms p {
    display: none;
  }
  .e_buttoms li {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .e_buttoms li {
    padding: 0.06rem 0;
  }
}

.e_box {
}

.e_block01,
.e_block02 {
  display: none;
}

.e_box .active {
  display: block;
}

.ed_list {
  position: relative;
  overflow: hidden;
}
.ed_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}

.ed_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
}

.ed_list .swiper-slide div {
  width: 100%;
  position: relative;
}

.ed_list .swiper-slide div::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.ed_list .swiper-slide div::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}

.ed_list .swiper-slide div img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.6s;
}

.ed_list .swiper-slide-active {
  overflow: hidden;
}

.ed_list .swiper-slide-active div::after {
  height: 0;
}

.ed_list .swiper-slide-active div img {
  height: 100%;
  transition: all 0.6s;
}

/* -------------------------- */
.ed-prev,
.ed-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 50%;
  border: 1px solid var(--i_color);
}
.ed-prev {
  left: 10%;
}
.ed-next {
  right: 10%;
}
.ed-prev iconify-icon,
.ed-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: var(--i_color);
}
.ed_list .swiper-button-disabled {
  cursor: not-allowed;
}
.ed-prev:hover,
.ed-next:hover {
  background: var(--i_color);
}

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

/* -------------------------- */
.ed-pagination {
  display: none;
  width: 10%;
  height: 5px;
  position: relative;
  margin-top: 0.2rem;
}
.ed-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 3px;
  background: #ddd;
}
.ed-pagination span {
  background: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  border-radius: 0.1rem;
}

@media screen and (max-width: 768px) {
  .ed-prev,
  .ed-next {
    display: none;
  }
  .ed-pagination {
    display: block;
  }
}

/* ------------------------------------ 产品列表页面*/

.main_bg {
  background: #f5f5f5;
}

.category_page {
}

.categoryBox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 4%;
}
.cat_nav {
  flex-shrink: 0;
  width: 28.5%;
  box-sizing: border-box;
  padding-right: 2.5%;
  position: relative;
}
.catList_show {
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .cat_nav {
    width: 28%;
  }
}
@media screen and (max-width: 1024px) {
  .categoryBox {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .catList_show {
    width: 100%;
    padding: 0 0;
    margin: 0 0;
  }
}
@media screen and (max-width: 560px) {
  .categoryBox {
    margin-bottom: 60px;
  }
}

.cat_nav::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50rem;
  height: 100%;
  background: #fff;
}
.cat_nav_tit {
  margin-bottom: 0.2rem;
  position: relative;
}
.cat_nav_tit h4 {
  font-size: 0.33rem;
  color: #333;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  position: relative;
}
.cat_nav_list li {
  /* margin-bottom: 0.16rem; */
  position: relative;
  /* background: #f4f4f4; */
  border-bottom: 1px solid #d6d6d6;
}

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  /* background: #f4f4f4; */
}
.cat_fold_tit a {
  padding: 0.18rem 0;
  width: 100%;
  font-size: 0.18rem;
  font-weight: bold;
  color: var(--txt_color);
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.24rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_tit a:hover,
.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: var(--i_color);
}
.active .cat_fold_tit {
  background: var(--i_color);
}
.active .cat_fold_tit a {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  color: #fff;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cat_fold_sub {
  display: none;
  padding: 0.1rem 0.2rem;
}
.cat_fold_sub dt {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.cat_fold_sub dt a {
  color: #666;
}

.cat_fold_sub dt::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  top: 50%;
  left: -20%;
  transform: translate(0, -50%);
  transition: all 0.5s ease;
}

.cat_fold_sub a {
  display: block;
  padding: 0.14rem 0;
  font-size: 0.18rem;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cat_fold_sub dt:hover::before {
  left: 0;
}

.cat_fold_sub dt:hover a {
  margin-left: 0.24rem;
}

.cat_fold_sub dt.active::before {
  left: 0;
}

.cat_fold_sub dt.active a {
  margin-left: 0.24rem;
}

.cat_fold_sub dt:hover a,
.cat_fold_sub dt.active a {
  color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .cat_nav_tit h4 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .cat_nav_tit h4 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 1024px) {
  .cat_nav::before {
    display: none;
  }

  .cat_nav {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    background: none;
  }
  .cat_nav_tit {
    padding: 14px 28px;
    margin: 0 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--i_color);
    border-radius: 8px;
  }
  .cat_nav_tit h4 {
    font-size: 20px;
    color: #fff;
  }
  .cat_nav_tit iconify-icon {
    display: block;
    margin-left: auto;
    font-size: 26px;
    color: #fff;
  }

  .cat_nav_list {
    display: none;
    margin-top: -10px;
    box-sizing: border-box;
    padding: 40px 30px 24px;
    background: #fff;
    border-radius: 0 0 10px 10px;
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub a {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .cat_nav_tit {
    padding: 12px 20px;
  }
  .cat_nav_tit h4 {
    font-size: 18px;
  }
  .cat_nav_tit iconify-icon {
    font-size: 22px;
  }

  .cat_fold_tit a {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .cat_nav_tit h4 {
    font-size: 16px;
  }

  .cat_nav_list {
    padding: 30px 20px 10px;
  }

  .cat_fold_tit a {
    font-size: 15px;
  }
  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }
  .cat_fold_sub a {
    font-size: 14px;
  }
}

.category_des {
}
.category_name {
  margin-bottom: 0.1rem;
  position: relative;
}
.category_name h2 {
  font-weight: bold;
  position: relative;
  line-height: 1.4;
  color: var(--txt_color);
}
.category_des span {
  color: #666;
}

.pList {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 3%;
}
.pList li {
  width: 31.33%;
  background: #fff;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}

.pList li a {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0.2rem;
  position: relative;
  background-color: #fff;
}

.pList .hplogo01,
.pList .hplogo02 {
  width: 0.25rem;
  position: absolute;
  left: 4%;
  top: 4%;
  z-index: 2;
  transition: all 0.4s ease;
}

.pList .hplogo02 {
  width: 0.63rem;
  opacity: 0;
}

.pList .hp_img {
  position: relative;
  width: 100%;
}

.pList .hp_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.pList .hp_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pList li p {
  color: var(--txt_color);
  transition: all 0.4s ease;
}

.pList li:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}

.pList li:hover .hplogo01 {
  opacity: 0;
  left: 0;
  top: 0;
}

.pList li:hover .hplogo02 {
  opacity: 1;
  left: -6%;
  top: -3%;
}

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

@media screen and (max-width: 560px) {
  .pList {
    gap: 0.15rem 3%;
  }
  .pList li {
    width: 48.5%;
  }
}

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

/* ------------------------------------ 产品详情页面*/
.p_data {
}
.p_data .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 4%;
}

.pGallery {
  flex-shrink: 0;
  width: 45%;
}

.pGallery_list {
  position: relative;
  width: 100%;
  border: 1px solid var(--i_color);
  overflow: hidden;
}
.pGallery_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.pGallery_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.pGallery_list .swiper-slide span {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pGallery_list .swiper-slide span::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pGallery_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 100%;
  object-fit: contain;
}

.public-pagination {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.public-pagination .swiper-pagination-bullet {
  margin: 0 6px;
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #ccc;
  outline: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-pagination .swiper-pagination-bullet::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}
.public-pagination .swiper-pagination-bullet-active::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .public-pagination .swiper-pagination-bullet::before {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .p_data .wrap {
    flex-wrap: wrap;
    gap: 38px 0;
  }

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

.p_info {
  width: 100%;
}
.p_info > p {
  color: var(--i_color);
}

.pName {
  padding-bottom: 0.16rem;
  margin: 0.1rem 0 0.3rem;
  position: relative;
}
.pName::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.pName::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 2px;
  background: var(--i_color);
}
.pName h1 {
  font-weight: bold;
  color: var(--txt_color);
}

.pDes {
  border-bottom: 1px solid #ddd;
  position: relative;
  margin-bottom: 0.18rem;
}
.pDes article {
  font-size: 0.16rem;
  line-height: 1.8;
}
.pMenu {
  /* display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center; */
}

.pBtn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.24rem;
  margin-top: 0.26rem;
}

.pBtn .btn__ {
  background-color: transparent;
  color: var(--i_color);
  z-index: 20;
  position: relative;
}

.pBtn .btn__ iconify-icon {
  transform: rotate(0);
  transition: all 0.4s ease;
}

.pBtn .btn__:hover {
  color: #fff;
  background-color: #0087d7;
  border-color: #fff;
}

.pBtn .btn__:hover iconify-icon {
  transform: rotate(-45deg);
}

.pShare {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}

.pShare p {
  color: var(--txt_color);
  font-size: 0.18rem;
}

.pShare dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.pShare dt iconify-icon {
  font-size: 0.26rem;
  color: #ccd9eb;
}
.pShare dt a:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 560px) {
  .pName {
    padding-bottom: 10px;
    margin: 10px 0 20px;
  }

  .pShare {
    width: 100%;
    margin: 20px 0 0;
  }

  .pBtn {
    margin-top: 0.16rem;
  }
}

/* 产品详情 */

.Product_Details {
  background-color: #f5f5f5;
}

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

.pd_box .cat_nav {
  width: 33%;
  background-color: #fff;
  padding: 0.53rem 0.29rem 0.77rem 0.29rem;
}

.pd_box .cat_nav::before {
  display: none;
}

.pd_box .cat_nav_tit h4 {
  font-size: 0.3rem;
}

.details {
  width: 63%;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .pd_box {
    gap: 0.4rem 0;
  }
  .pd_box .cat_nav {
    width: 100%;
    padding: 0;
  }

  .details {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pd_box .cat_nav_tit h4 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
}

/* tag */

.p_tags {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.06rem 0;
}
.p_tags > p {
  margin-right: 0.4rem;
  font-size: 0.18rem;
  font-weight: bold;
}
.p_tags a {
  margin-right: 0.26rem;
  font-size: 0.16rem;
}
.p_tags a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 768px) {
  .p_tags > p {
    font-size: 15px;
  }
  .p_tags a {
    font-size: 13px;
  }
}

.p_view_other {
  padding-top: 0.2rem;
  border-top: 1px solid #ddd;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 4%;
}
.p_view_other li {
  max-width: 46%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.14rem;
  align-items: center;
}
.p_view_other .arrow_btn {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.p_view_other .arrow_btn iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #666666;
}
.p_view_other a {
  font-size: 0.16rem;
}
.p_view_other a b {
}
.p_view_other .next {
  text-align: right;
}
.p_view_other li:hover .arrow_btn {
  border-color: var(--i_color);
  background: var(--i_color);
}
.p_view_other li:hover .arrow_btn iconify-icon {
  color: #fff;
}
.p_view_other a:hover {
  color: var(--i_color);
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .p_view_other a {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p_view_other {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .p_view_other li {
    width: 100%;
    max-width: 100%;
  }
  .p_view_other .arrow_btn {
    width: 30px;
    height: 30px;
  }
  .p_view_other .arrow_btn iconify-icon {
    font-size: 20px;
  }
  .p_view_other .next .arrow_btn {
    order: -1;
  }
}

@media screen and (max-width: 560px) {
  .p_tags > p {
    margin-right: 0.2rem;
  }
  .p_view_other .arrow_btn,
  .p_view_other .next .arrow_btn {
    display: none;
  }

  .p_view_other a {
    font-size: 0.14rem;
  }
}

/* 热销产品 */

.Rp_list {
  position: relative;
  overflow: hidden;
  padding-top: 0.3rem;
}
.Rp_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Rp_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.Rp_list .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0.2rem;
  position: relative;
  background-color: #fff;
}

.Rp_list .hplogo01,
.Rp_list .hplogo02 {
  width: 0.25rem;
  position: absolute;
  left: 4%;
  top: 4%;
  z-index: 2;
  transition: all 0.4s ease;
}

.Rp_list .hplogo02 {
  width: 0.63rem;
  opacity: 0;
}

.Rp_list .hp_img {
  position: relative;
  width: 100%;
}

.Rp_list .hp_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 125%;
}

.Rp_list .hp_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Rp_list li p {
  color: var(--txt_color);
  transition: all 0.4s ease;
}

.Rp_list li:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}

.Rp_list li:hover .hplogo01 {
  opacity: 0;
  left: 0;
  top: 0;
}

.Rp_list li:hover .hplogo02 {
  opacity: 1;
  left: -6%;
  top: 2.5%;
}

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

/* -------------------------- */
.Rp-prev,
.Rp-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: rgb(0 0 0 / 60%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.Rp-prev {
  left: 0;
}
.Rp-next {
  right: 0;
}
.Rp-prev iconify-icon,
.Rp-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.Rp_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Rp-prev:hover,
.Rp-next:hover {
  background: var(--i_color);
}

/* -------------------------- */
.Rp-pagination {
  width: 10%;
  height: 5px;
  position: relative;
}
.Rp-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 3px;
  background: #ddd;
}
.Rp-pagination span {
  background: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
  border-radius: 0.1rem;
}

/* -------------------------- */
