/*
Theme Name: DeBo
Version: 1.0
Description: Anhui Lingju Digital, as a core partner of Google China, owns the only Google Overseas Experience Center in Anhui Province, providing one-stop services for localized foreign trade enterprises in Anhui to go overseas - website construction, Google SEO optimization, Google bidding, Google SNS social media marketing, etc.
Author: Copyright: Anhui Lingju
*/
@charset "utf-8";

:root {
  /* Global Color */
  --i_color: #0159a0;

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

  /* Default Border Color */
  --border_color: rgba(0, 0, 0, 0.1);
  /* txt color */
  --txt_color: #333;
}
@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.6rem;
    --header_top_height: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

/* 通用 */

.f550 {
  font-weight: 550;
}

.btn_box {
  display: table;
}
.btn_aaa {
  box-sizing: border-box;
  padding: 0.07rem 0.12rem 0.07rem 0.23rem;
  display: flex;
  align-items: center;
  gap: 0 0.3rem;
  background-color: var(--i_color);
  position: relative;
}
.btn_aaa iconify-icon {
  font-size: 0.26rem;
  color: var(--i_color);
  position: relative;
  z-index: 10;
  transition: all 0.5s ease;
}
.btn_aaa::before {
  content: "";
  display: block;
  width: 29%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
  transition: all 0.5s ease;
}
.btn_aaa:hover::before {
  width: 0%;
}
.btn_aaa:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .btn_aaa {
    padding: 5px 0.15rem;
  }
  .btn_aaa span {
    font-size: 0.16rem;
  }
  .btn_aaa::before {
    width: 35%;
  }
}
@media screen and (max-width: 560px) {
  .btn_aaa {
    padding: 5px 0.1rem;
  }
}

/* --- --- */

.wrap {
  width: 94vw;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

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

header {
  width: 100%;
  height: var(--header_height);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.4s ease;
}
header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  height: var(--header_height);
}
.logo img {
  width: 100%;
  display: block;
}

/* 导航栏 */
.nav {
  margin-left: 4.5vw;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.6rem;
}

.nav li {
  display: flex;
  align-items: center;
  position: relative;
}

.nav .menu > li > a {
  text-transform: uppercase;
  font-size: 0.18rem;
  cursor: pointer;
  line-height: var(--header_height);
  position: relative;
  display: flex;
  align-items: center;
}

.index_down {
  font-size: 0.12rem;
  padding-top: 0.05rem;
  padding-left: 0.02rem;
}

.nav .sub-menu {
  white-space: nowrap;
  min-width: max-content;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* 添加此代码：鼠标悬停时显示子菜单 */
.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .menu > li > a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  bottom: 33%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

/* 鼠标 hover 时显示伪元素 */
.nav .menu > li:hover > a::before {
  width: 100%;
}
.nav .menu > li:hover > a::before,
.nav .menu > li:hover > a::after {
  opacity: 1;
  visibility: visible;
}

.nav .sub-menu li {
  border-bottom: 1px solid #eee;
  position: relative;
}
.nav .sub-menu li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--i_color);
  transition: all 0.5s ease;
}
.nav .sub-menu a {
  line-height: 0.4rem;
  padding: 0 0.2rem 0 0.1rem;
  font-size: 0.16rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav .sub-menu > li:hover::before {
  width: 100%;
}
.nav .sub-menu > li:hover a {
  color: #fff;
}

.menu > .current-menu-item > a,
.menu > .current-category-ancestor > a,
.menu > .current-post-ancestor > a,
.menu > .current-menu-ancestor > a,
.menu > .current-menu-parent > a,
.menu > li.active > a {
  color: var(--i_color);
  font-weight: bold;
}
.nav .menu > .current-menu-item > a::before,
.nav .menu > .current-category-ancestor > a::before,
.nav .menu > .current-post-ancestor > a::before,
.nav .menu > .current-menu-ancestor > a::before,
.nav .menu > .current-menu-parent > a::before,
.nav .menu > li:hover > a::before,
.nav .menu > li.active > a::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

/* 右边操作栏 */
.header-menu {
  height: 100%;
  position: relative;
  margin-left: auto;
}

.header-right {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.header-menu .header-right .more {
  display: none;
}
.header-right .more iconify-icon {
  cursor: pointer;
  font-size: 0.35rem;
  color: #333333;
}

/* 导航栏下面的语言选择 */
.top_language {
  position: relative;
  width: 1.5rem;
  height: var(--header_height);
}
.top_language_btn {
  width: 1.5rem;
  height: 50%;
  border-radius: 0.5rem;
  background-color: #e6e6e6;
  cursor: pointer;
}
.top_language_btn p {
  font-size: 0.16rem;
}
.top_language_btn iconify-icon {
  font-size: 0.14rem;
  margin-left: 5px;
}

.top_language_list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 0.16rem);
  right: 0;
  min-width: 1.6rem;
  background: #fff;
  box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  padding: 0.14rem 0.18rem 0.1rem;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_language_list.on {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.top_language_list h6 {
  font-family: Arial;
  margin-bottom: 0.14rem;
  font-size: 0.16rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

.top_language_list ul {
  overflow: hidden;
}
.top_language_list li {
  position: relative;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_language_list a > span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 8px;
  box-sizing: border-box;
  overflow: hidden;
}
.top_language_list .trp-ls-language-name {
  font-size: 15px;
  color: #666;
  line-height: 0.3rem;
}

.top_language_list li:hover {
  left: 4px;
}
.top_language_list li:hover .trp-ls-language-name {
  color: var(--i_color);
}

/* 搜索栏 */
.search {
  width: 1.5rem;
  height: 50%;
  border-radius: 0.5rem;
  background-color: #e6e6e6;
}
.search_box {
  height: 100%;
}
#searchform {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top_search_ipt::placeholder {
  font-size: 0.16rem;
  color: #333;
}
.top_search_ipt {
  width: 50%;
  height: 100%;
  margin-left: 0.2rem;
  background-color: transparent;
}
.top_search_btn {
  width: 18%;
  height: 50%;
  margin-right: 0.15rem;
  background-color: transparent;
  background: url(static/imgs/search.webp) no-repeat center;
  background-size: contain;
  cursor: pointer;
}

/* 侧边栏 */
.sidebar {
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(to right, #80afff, #ffffff);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.sidebar a {
  font-size: 0.3rem;
  color: #fff;
  padding-left: 0.2rem;
}

@media screen and (max-width: 1200px) {
  .menu {
    gap: 0 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: var(--header_height);
    left: 50em;
    width: 100%;
    height: calc(100% - var(--header_height));
    z-index: 999;
    transition: all 0.3s ease;
    background-color: #fff;
    margin: 0;
  }
  .nav .menu-item-has-children {
    position: relative;
  }
  .nav .menu-item-has-children .jia {
    width: 0.35rem;
    height: 0.35rem;
    font-size: 0.25rem;
    border-radius: 50%;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0.1rem;
    right: 0;
    border: 1px solid #ccc;
    cursor: pointer;
  }
  .nav > ul {
    height: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0 3%;
  }
  .nav li {
    width: 100%;
    display: block;
  }
  .nav a {
    display: block;
    width: 100%;
    line-height: 2;
  }
  .nav .menu > li > a::before {
    display: none;
  }

  .nav .sub-menu {
    all: unset;
    display: none;
  }

  .header-menu {
    margin-left: auto;
  }
  .header-menu .header-right .more {
    display: flex;
    height: 100%;
    margin-left: 10px;
  }
  .header-menu .header-right .more iconify-icon {
    font-size: 0.3rem;
  }
  .top_search_btn {
    width: 15%;
    height: 80%;
  }
  .index_down {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .search,
  .top_language {
    width: 1rem;
  }
  .top_search_ipt::placeholder,
  .top_language_btn p {
    font-size: 0.12rem;
  }

  .header-menu .header-right .more iconify-icon {
    font-size: 0.24rem;
  }
}
.TopHeader {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.full_header_height {
  height: var(--header_height);
}

footer {
  background: url(static/imgs/footer_ba.webp) no-repeat center;
  background-size: cover;
}

.f_top .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.44rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_logo img {
  width: 1.65rem;
  display: block;
}

.f_cont {
  position: relative;
  overflow: hidden;
}
.f_cont .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.f_tit {
  margin-bottom: 0.12rem;
  font-weight: bold;
  color: #fff;
}

.footer_mail {
  color: #fff;
  transition: all 0.4s ease;
  display: block;
  margin-bottom: 0.18rem;
}
.footer_mail:hover {
  color: var(--i_color);
}

.f_contact {
  flex-shrink: 0;
  width: 30.2%;
}
.f_contact_list {
}
.f_contact_list dt {
  margin-bottom: 0.18rem;
  display: flex;
}
.f_contact_list dt h4 {
  width: 0.98rem;
  flex-shrink: 0;
  color: rgb(255, 255, 255, 0.6);
}
.f_contact_list dt,
.f_contact_list a {
  font-size: 0.18rem;
  font-weight: 550;
  color: #fff;
  transition: all 0.4s ease;
}
.f_contact_list a:hover {
  color: var(--i_color);
}

.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
  margin-left: 0.98rem;
}
.f_media li {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.f_media a {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: #666;
  position: relative;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.f_media iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.18rem;
  color: #fff;
}
.f_media a:hover {
  background: var(--i_color);
}

.f_nav {
}
.f_nav ul {
}
.f_nav li {
}
.f_nav li a {
  display: block;
  font-size: 0.18rem;
  color: rgb(255, 255, 255, 0.7);
  line-height: 2.2;
}
.f_nav li a:hover {
  color: #fff;
  text-decoration: underline;
}

.f_nav_advantages {
  width: 31%;
}
.f_nav_advantages h6 {
  color: rgb(255, 255, 255, 0.7);
}

.f_cr {
  padding: 0.2rem 0;
  background: var(--i_color);
  border-radius: 0.5rem 0.5rem 0px 0px;
}
.f_cr p,
.f_cr a {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.7);
}
.f_cr a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .footer_logo img {
    width: 1rem;
  }
  .f_contact_list dt h4 {
    width: auto;
    margin-right: 0.1rem;
  }
  .f_media {
    margin-left: 0;
  }
  .f_cont::before {
    top: 50%;
    transform: translate(0, -50%);
    height: 60%;
  }
  .f_contact {
    width: 100%;
  }
  .f_contact_list a {
    font-size: 16px;
  }
  .f_nav {
    display: none;
  }
  .f_cr {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .f_contact_list dt {
    margin-bottom: 6px;
  }
  .f_contact_list dt,
  .f_contact_list a {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .footer_logo img {
    width: 0.6rem;
  }
  .f_cont::before {
    bottom: -20px;
    width: 260px;
    height: 260px;
  }
  .f_tit {
    margin-bottom: 20px;
  }
  .f_contact_list dt,
  .f_contact_list a {
    font-size: 15px;
  }

  .f_cr {
    padding: 20px 0;
  }
  .f_cr p,
  .f_cr a {
    font-size: 13px;
  }
}

/* banner */
.home_banner {
}

.home_banner_list {
  position: relative;
  overflow: hidden;
}
.home_banner_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.home_banner_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.home_banner_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 45.5%;
}
.home_banner_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.h_a_box {
  position: absolute;
  left: 50%;
  top: 9.2%;
  transform: translateX(-50%);
}

/* -------------------------- */
.home_banner-prev,
.home_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;
}
.home_banner-prev {
  left: 0;
}
.home_banner-next {
  right: 0;
}
.home_banner-prev iconify-icon,
.home_banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.home_banner_list .swiper-button-disabled {
  cursor: not-allowed;
}
.home_banner-prev:hover,
.home_banner-next:hover {
  background: var(--i_color);
}

/* -------------------------- */
.home_banner-pagination {
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
}
.home_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;
}
.home_banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

.h_b_box h3 {
  width: 49%;
}

@media screen and (max-width: 1024px) {
  .home_banner-prev,
  .home_banner-next {
    display: none;
  }
  .h_b_box h3 {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .h_a_box h2 {
    font-size: 0.14rem;
  }
  .h_a_box h3 {
    font-size: 0.12rem;
    margin: 0.1rem 0;
  }
  .h_a_box .btn_box {
    display: none;
  }
}

/* 产品类别 */
.Product_Category {
  position: relative;
}
.Product_Category::before {
  content: "";
  display: block;
  width: 100%;
  height: 64.68%;
  background: url(https://lingjuimg.com/wp-content/uploads/debo/2026/08/Product_Category_Ba.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.Pc_Options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.12rem;
}

.Pc_Options li {
  box-sizing: border-box;
  padding: 0.08rem 0.2rem;
  border: 1px solid #d6d6d6;
  cursor: pointer;
  transition: all 0.6s ease;
}

.Pc_Options li.active,
.Pc_Options li:hover {
  border-radius: 0px 15px 0px 0px;
  background-color: var(--i_color);
  border-color: var(--i_color);
  color: #fff;
}

.Pc_box {
  display: none;
  position: relative;
}
.Pc_box.active {
  display: block;
}

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

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

.product_item_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product_item_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.product_item_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #0159a000 0%, #0159a0 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}
.product_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.product_item_text h2 {
  margin: 0.12rem 0 0.06rem 0;
}

.product_item_parameter {
  box-sizing: border-box;
  padding-top: 0.12rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.product_item_price b {
  color: #ed4141;
  font-weight: 550;
}

.product_item:hover .product_item_img img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.product_item:hover .product_item_img::after {
  height: 32%;
}
.product_item:hover .product_item_text h2 {
  color: var(--i_color);
}

.Pc_box_list .swiper-slide:nth-child(even) {
  margin-top: 0.4rem;
}

/* -------------------------- */
.Pc_box-prev,
.Pc_box-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.6rem;
  height: 0.6rem;
  box-sizing: border-box;
  border: 1px solid #666;
  font-size: 0.26rem;
  color: #666;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.Pc_box-prev {
  left: -5vw;
}
.Pc_box-next {
  right: -5vw;
}
.Pc_box-prev iconify-icon,
.Pc_box-next iconify-icon {
}
.Pc_box_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Pc_box-prev:hover,
.Pc_box-next:hover {
  background: var(--i_color);
  color: #fff;
  border-color: var(--i_color);
}

@media screen and (max-width: 1440px) {
  .Pc_box-prev,
  .Pc_box-next {
    width: 0.4rem;
    height: 0.4rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 0.2rem;
  }
  .Pc_box-prev {
    left: 0;
  }
  .Pc_box-next {
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .Pc_Options li {
    font-size: 0.16rem;
    padding: 0.05rem 0.1rem;
  }
  .Pc_box_list .swiper-slide:nth-child(even) {
    margin-top: 0;
  }
  .Pc_box-prev,
  .Pc_box-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .Pc_Options li {
    font-size: 0.14rem;
  }
  .product_item_text h2 {
    font-size: 0.16rem;
  }
}

/* 热门类别 */
.Popular_Categories {
  position: relative;
}

.Popular_Categories_imgs img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 1.6rem 0px 0px 0px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.4s ease;
  opacity: 0;
}
.Popular_Categories_imgs img.active {
  opacity: 1;
}

.Popular_Categories_titile {
  position: relative;
}

.Popular_Categories_titile h2 {
  font-size: 1.2rem;
  color: transparent;
  -webkit-text-stroke: 1px #c1e1f6;
  text-stroke: 1px #c1e1f6;
}

.Popular_Categories_titile p {
  position: absolute;
  left: 0;
  bottom: 20%;
}

.Popular_Categories_box {
  border-radius: 0px 1.2rem 0px 0px;
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  margin-top: 20.85vw;
}

.Popular_Categories_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

.Popular_Categories_list {
  width: 81%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem 3%;
}

.Popular_Categories_item {
  width: 31.33%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0 1vw;
  cursor: pointer;
}

.Popular_Categories_icon {
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.Popular_Categories_icon img {
  width: 0.6rem;
  height: 0.6rem;
  opacity: 0.5;
}

.Popular_Categories_item span {
  color: rgb(255, 255, 255, 0.5);
}

.Popular_Categories_item.active .Popular_Categories_icon img {
  opacity: 1;
}
.Popular_Categories_item.active span {
  color: #fff;
}

.Popular_Categories_more {
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  cursor: pointer;
}
.Popular_Categories_more::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(static/imgs/Popular_Categories_more_Ba.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  animation: spin 30s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pcm_info {
  width: 69%;
  height: 69%;
  background-color: #fff;
  border-radius: 50%;
  font-size: 0.36rem;
  color: var(--i_color);
  transition: all 0.6s ease;
}

.Popular_Categories_more:hover .pcm_info {
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .Popular_Categories_more {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .Popular_Categories_imgs img {
    border-radius: 0;
  }
  .Popular_Categories_titile h2 {
    font-size: 0.6rem;
  }
  .Popular_Categories_icon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .Popular_Categories_icon img {
    width: 0.4rem;
    height: auto;
  }
  .Popular_Categories_item span {
    font-size: 0.16rem;
  }

  .Popular_Categories_more {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .Popular_Categories_box h3 {
    font-size: 0.16rem;
  }
  .Popular_Categories_more {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .Popular_Categories_titile h2 {
    font-size: 0.4rem;
  }
  .Popular_Categories_box {
    margin-top: 1vw;
  }
  .Popular_Categories_list {
    width: 100%;
    gap: 0.15rem 3%;
  }
  .Popular_Categories_item {
    width: 48.5%;
  }
  .Popular_Categories_icon {
    width: 0.4rem;
    height: 0.4rem;
  }
  .Popular_Categories_icon img {
    width: 0.3rem;
  }
  .Popular_Categories_item span {
    font-size: 0.14rem;
  }
  .Popular_Categories_more {
    width: 0.8rem;
    height: 0.8rem;
  }
  .pcm_info {
    font-size: 0.24rem;
  }
}

/* 关于公司 */
.About_Company {
  background: url(https://lingjuimg.com/wp-content/uploads/debo/2026/08/About_Company_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.About_Company_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.About_Company_left {
  width: 45.54%;
}

.About_Company_right {
  width: 47.6%;
  height: max-content;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.About_Company_right li {
  width: 48%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
}

@media screen and (max-width: 1024px) {
  .About_Company_left,
  .About_Company_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .About_Company_right p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .About_Company_right li {
    gap: 0 0.1rem;
  }
  .About_Company_right p {
    font-size: 0.12rem;
  }
}

/* 我们的优势 */
.Our_Advantages {
}

.Our_Advantages_box {
  position: relative;
}

.Our_Advantages_box .wrap_r {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0;
  position: relative;
  padding-bottom: 12vw;
}
.Our_Advantages_box .wrap_r::before {
  content: "";
  display: block;
  width: 38%;
  height: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/debo/2026/08/Our_Advantages_Ba.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.Oa_left {
  width: 55%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: -1;
}
.Oa_left::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 66.5%;
}
.Oa_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.Oa_right {
  width: 47.23%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.Oar_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.37rem;
}

.Oar_icon {
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid var(--i_color);
  transition: all 0.4s ease;
}

.Oar_icon img {
  width: 0.42rem;
  display: block;
}

.Oar_item p {
  width: 66.75%;
}

.Oar_item:nth-child(2) {
  margin-left: 4vw;
}
.Oar_item:nth-child(3) {
  margin-left: 8vw;
}
.Oar_item:nth-child(4) {
  margin-left: 12vw;
}

.Oar_item:hover .Oar_icon {
  background-color: var(--i_color);
}
.Oar_item:hover .Oar_icon img {
  filter: invert(1) sepia(1) saturate(0) hue-rotate(0deg) brightness(2);
}

@media screen and (max-width: 1440px) {
  .Our_Advantages_box .wrap_r {
    padding-bottom: 7vw;
  }
}
@media screen and (max-width: 1200px) {
  .Our_Advantages_box .wrap_r {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .Our_Advantages_box .wrap_r {
    padding-left: 3vw;
  }
  .Our_Advantages_box .wrap_r::before {
    display: none;
  }
  .Oa_left {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    order: 2;
  }
  .Oa_right {
    width: 100%;
    gap: 0.2rem 0;
  }
  .Oar_item p {
    width: 80%;
    font-size: 0.16rem;
  }
  .Oar_item:nth-child(2),
  .Oar_item:nth-child(3),
  .Oar_item:nth-child(4) {
    margin-left: 0;
  }
  .Oar_icon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .Oar_icon img {
    width: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .Oar_item {
    gap: 0.2rem 0.1rem;
  }
  .Oar_icon {
    width: 0.4rem;
    height: 0.4rem;
  }
  .Oar_icon img {
    width: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .Oar_item p {
    font-size: 0.14rem;
  }
}

/* 合作伙伴 */
.Partners {
  background: url(https://lingjuimg.com/wp-content/uploads/debo/2026/08/Partners_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.Partners_scroll {
  position: relative;
}

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

.Brands_list_box {
  display: flex;
  will-change: transform;
  gap: 0 4%;
}

.Brands_img {
  width: 13.9%;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0px 10px 20px 0px rgba(27, 56, 132, 0.2);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.Brands_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 36%;
}

.Brands_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.Brands_img:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (max-width: 1024px) {
  .Brands_img::before {
    padding-bottom: 45%;
  }
}
@media screen and (max-width: 768px) {
  .Brands_list {
    padding: 0.1rem 0;
  }
  .Brands_img {
    width: 20%;
    border: 1px solid #ddd;
    box-shadow: none;
  }
}
@media screen and (max-width: 560px) {
  .Brands_img {
    width: 30%;
  }
}

/* 主页新闻 */
.Homepage_News {
}

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

.Homepage_News_left {
  width: 26.34%;
  box-sizing: border-box;
}

.Homepage_News_Switch {
  display: flex;
  gap: 0 2vw;
}

.Homepage_News_right {
  width: 71.4%;
  box-sizing: border-box;
}

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

.new_item a {
  display: block;
}

.Hn_img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.Hn_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 67%;
}
.Hn_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.Hn_info {
  box-sizing: border-box;
  padding: 0.4rem 0.2rem;
  border: 1px solid #eeeeee;
  border-top: none;
  transition: all 0.4s ease;
  position: relative;
}

.Hn_time {
  box-sizing: border-box;
  padding: 0.1rem;
  background-color: var(--i_color);
  position: absolute;
  top: -12%;
  right: 5%;
}

.Hn_more {
  padding: 0.1rem 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--i_color);
  color: #fff;
  opacity: 0;
  transition: all 0.4s ease;
}

.Hn_more iconify-icon {
  font-size: 0.24rem;
}

.new_item:hover {
  box-shadow: 0px 15px 17px 0px rgba(27, 27, 27, 0.13);
}
.new_item:hover .Hn_info {
  background-color: #fff;
  border-color: transparent;
}
.new_item:hover .Hn_more {
  opacity: 1;
}

/* -------------------------- */
.Homepage_News-prev,
.Homepage_News-next {
  position: static;
  left: auto;
  top: auto;
  transform: none;
}

/* -------------------------- */
.Homepage_News-pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
  display: none;
}
.Homepage_News-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;
}
.Homepage_News-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .Homepage_News_left,
  .Homepage_News_right {
    width: 100%;
  }
  .Hn_more {
    opacity: 1;
  }
  .Homepage_News-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .Hn_info {
    padding: 0.2rem 0.1rem;
  }
  .Hn_time {
    position: relative;
    right: auto;
    top: auto;
    padding: 0;
    background-color: transparent;
    color: #333;
    margin-top: 0.1rem;
  }
}

/*  page banner */
.page_banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.page_banner::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 27.17%;
}
.page_banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(90deg, #000000 0%, #00000099 50%, #00000033 99%);
  position: absolute;
  top: 0;
  left: 0;
}
.page_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page_banner_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Breadcrumb */
.in_position {
  position: relative;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 0.16rem;
  color: #fff;
  position: relative;
  line-height: 20px;
  transition: all 0.4s ease;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #fff;
}
.in_position a:last-child {
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .page_banner::before {
    padding-bottom: 35%;
  }
  .in_position a {
    font-size: 13px;
  }
}

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

/* 产品列表 */
.Product_List_Section {
  background-color: #f4f4f4;
}

.catList_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
}

.catList_aside {
  width: 25%;
  box-sizing: border-box;
  padding-right: 0.3rem;
  position: relative;
}

.catList_show {
  width: 72%;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .catList_aside {
    width: 100%;
    padding-right: 0;
    background: none;
  }

  .catList_show {
    width: 100%;
  }
}

.cat_nav {
  position: relative;
}
.cat_nav_tit {
  margin-bottom: 0.2rem;
  display: none;
}
.cat_nav_tit h4 {
  text-align: center;
  font-size: 1.8vw;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
}
.cat_nav_list li {
  position: relative;
}
.cat_nav_list li.active {
  border-color: transparent;
}

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  background-color: #fff;
  border-radius: 4px;
}
.cat_fold_tit a {
  padding: 0.14rem 0;
  width: 100%;
  font-size: 0.2rem;
  font-weight: bold;
}
.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 {
  border-radius: 0;
  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;
  background-color: #fff;
}
.cat_fold_sub a {
  display: block;
  padding: 0.1rem 0;
  font-size: 0.16rem;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0;
  height: 0.2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230553b0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 12h16m-7-7l7 7l-7 7'/%3E%3C/svg%3E")
    no-repeat center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a:hover::before,
.cat_fold_sub .active a::before {
  width: 0.2rem;
}
.cat_fold_sub a:hover,
.cat_fold_sub .active a {
  padding-left: 0.26rem;
  color: var(--i_color);
}

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

  .active .cat_fold_tit {
    background: none;
  }
  .active .cat_fold_tit a {
    color: var(--i_color);
  }
  .active .cat_fold_tit iconify-icon {
    color: var(--i_color);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .cat_fold_sub {
    padding: 0 20px;
    background-color: transparent;
  }

  .cat_nav_list {
    display: none;
    box-sizing: border-box;
    padding: 30px 30px 30px;
    background: rgb(0 88 167 / 5%);
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  }
  .cat_nav_list li {
    border-top: none;
    border-bottom: 1px solid rgb(0 88 167 / 10%);
  }
  .cat_nav_list li.active {
    border-color: rgb(0 88 167 / 10%);
  }
  .cat_fold_tit {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 0;
    background-color: transparent;
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub p {
    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_nav_list {
    padding: 20px 30px;
  }
  .cat_fold_tit a {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .cat_nav_tit h4 {
    font-size: 16px;
  }
  .cat_fold_sub {
    padding: 0 0.1rem;
  }
  .cat_fold_tit a {
    font-size: 15px;
  }
  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }
  .cat_fold_sub a {
    font-size: 14px;
  }
}

.cat_info {
}

.cat_info > span {
  display: block;
  margin-top: 0.16rem;
  color: #666;
}

.productsList {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 2%;
}

.productsList .product_item {
  width: 32%;
}
.productsList .product_item .product_item_text {
  background-color: #fff;
  padding: 0.2rem;
}

@media screen and (max-width: 768px) {
  .productsList {
    gap: 0.2rem 2%;
  }
  .productsList .product_item {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .productsList .product_item {
    width: 100%;
  }
}

/* ---------------------------------------------------  产品详情页面 */

.Product_Details_navigation {
  padding: 0.17rem 0;
  background-color: #f4f4f4;
}
.Product_Details_navigation .wrap {
  position: relative;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.Product_Details_navigation a {
  color: #333333;
}
.Product_Details_navigation a:not(:last-child):after {
  color: #333;
}
.Product_Details_navigation a:last-child {
  color: var(--i_color) !important;
}
.Product_Details_navigation a:hover {
  color: var(--i_color);
}

/* 产品简述 */
.Product_Overview {
}

.Product_Overview .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.Overview_left {
  width: 43%;
  box-sizing: border-box;
}

.in_grid_cont {
  --sm_pic_width: 17%;
}
.in_grid_cont {
  position: relative;
  overflow: hidden;
}
.in_grid_cont:before {
  content: "";
  display: block;
  padding-bottom: 80.4%;
}

/* 缂╃暐鍥� */
.in_grid_list_box {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sm_pic_width);
  height: 100%;
  box-sizing: border-box;
  padding: 40px 0;
}
.in_grid_list {
  height: 100%;
  overflow: hidden;
}
.in_grid_list .swiper-slide {
  cursor: pointer;
}

.in_grid_list .img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  position: relative;
  overflow: hidden;
}
.in_grid_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_grid_list .swiper-slide-thumb-active .img {
  border: 2px solid var(--i_color);
}
.in_grid_list .swiper-slide-thumb-active img {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
}

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

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

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

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

.in_grid_cont:before {
  display: none;
}
.in_grid_show_box {
  position: initial;
  width: 100%;
  overflow: hidden;
}
.in_grid_show .img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.in_grid_show .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_show .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.in_grid_list_box {
  margin-top: 0.3rem;
  padding: 0 0;
  position: relative;
  width: 100%;
  height: initial;
}
.in_grid_list {
  width: calc(100% - 1rem);
  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%;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.in_grid_list .img {
  height: auto;
}
.in_grid_list .img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.in_grid_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.in_grid_list .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.swiper-slide-thumb-active .img::after {
  height: 0;
}

.in_grid_list .swiper-slide-thumb-active {
  opacity: 1;
}

/* 左右箭头 */

.ingrid-button-prev,
.ingrid-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #666666;
  z-index: 999;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.ingrid-button-prev iconify-icon,
.ingrid-button-next iconify-icon {
  font-size: 0.2rem;
  color: #333;
  transition: all 0.3s ease;
}
.ingrid-button-prev {
  left: 0%;
}

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

.ingrid-button-prev:hover,
.ingrid-button-next:hover {
  background-color: var(--i_color);
  border: var(--i_color);
}
.ingrid-button-prev:hover iconify-icon,
.ingrid-button-next:hover iconify-icon {
  color: #fff;
}

.Overview_right {
  width: 52.6%;
  box-sizing: border-box;
}

.Overview_share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  align-items: center;
  justify-content: space-between;
}

.Details_share {
  display: flex;
  align-items: flex-end;
}

.Overview_share a {
  width: 0.3rem;
  height: 0.3rem;
  background-color: #b3b3b3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.16rem;
  color: #fff;
  margin-left: 0.1rem;
  transition: all 0.4s ease;
}

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

.Overview_info {
  border-top: 2px solid var(--i_color);
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.Overview_merit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.1rem 0;
}

.om_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.om_icon {
  width: 0.57rem;
  height: 0.57rem;
  background-color: #999999;
  transition: all 0.4s ease;
}
.om_icon img {
  width: 60%;
}
.om_item:hover .om_icon {
  background-color: var(--i_color);
}

.Overview_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2vw;
}
.Overview_btns .btn_aaa {
  background-color: #333333;
  padding: 0.14rem 0.15rem;
  transition: all 0.4s ease;
}
.Overview_btns .btn_aaa::before {
  display: none;
}
.Overview_btns .btn_aaa iconify-icon {
  color: #fff;
}
.Overview_btns .btn_aaa:hover {
  background-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .Overview_left,
  .Overview_right {
    width: 100%;
  }
  .ingrid-pagination {
    z-index: 10;
  }
}
@media screen and (max-width: 768px) {
  .ingrid-button-prev,
  .ingrid-button-next {
    display: none;
  }
  .in_grid_list {
    width: 100%;
  }

  .Overview_btns .btn_aaa {
    padding: 0.1rem 0.12rem;
  }
}
@media screen and (max-width: 560px) {
  .om_item {
    width: 50%;
  }
  .Overview_btns .btn_aaa {
    padding: 0.05rem 0.1rem;
  }
}

/* 产品详情 */
.Product_Details {
  background-color: #f4f4f4;
}

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

.Details_left {
  width: 72.21%;
  box-sizing: border-box;
}

.Product_Details_tit {
}

.Product_Details_tit i {
  display: block;
  width: max-content;
  padding: 0.1rem 0.3rem;
  background-color: #fff;
  position: relative;
  color: var(--i_color);
}

.Product_Details_tit i::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
}

.Product_Details_tit i::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.Product_Details_info {
  box-sizing: border-box;
  padding: 0.4rem;
  background-color: #fff;
}

.Details_right {
  width: 23.27%;
}

.Details_right_list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem 0;
}

.Details_right_list .product_item .product_item_text h4 {
  display: none;
}
.Details_right_list .product_item_parameter {
  border-top: none;
}
.Details_right_list .product_item_parameter .product_item_price,
.Details_right_list .product_item_price b,
.Details_right_list .product_item_price i,
.Details_right_list .product_item_parameter p,
.Details_right_list .product_item_parameter p i {
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  .Details_left {
    width: 100%;
  }
  .Details_right {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .Product_Details_info {
    padding: 0.2rem;
  }
}

/* tags+view_other */
.pBottom {
  background-color: var(--i_color);
}

.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16rem 0;
}
.p_tags > p {
  margin-right: 0.14rem;
  font-size: 0.18rem;
  font-weight: 550;
  color: #fff;
}
.p_tags a {
  display: block;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  color: #fff;
  transition: all 0.4s ease;
}
.p_tags a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p_tags {
    gap: 12px 0;
  }
  .p_tags > p {
    font-size: 17px;
  }
  .p_tags a {
    margin-right: 16px;
    font-size: 14px;
  }
}

.p_view_other {
  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 a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_view_other span {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  box-sizing: border-box;
  border: 1px solid #fff;
  background-color: #fff;
  position: relative;
  transition: all 0.4s ease;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: var(--i_color);
  transition: all 0.4s ease;
}
.p_view_other p {
  font-size: 0.16rem;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
}
.p_view_other p b {
  font-size: 0.18rem;
  color: #fff;
}

.p_view_other li:hover span {
  background-color: transparent;
}
.p_view_other li:hover span iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .p_view_other p,
  .p_view_other p b {
    font-size: 15px;
    font-weight: 300;
  }
}
@media screen and (max-width: 768px) {
  .p_view_other {
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .p_view_other li {
    max-width: 100%;
  }
  .p_view_other span {
    order: -1;
  }
  .p_view_other p,
  .p_view_other p b {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .p_view_other span {
    width: 24px;
    height: 24px;
  }
  .p_view_other span iconify-icon {
    font-size: 24px;
  }
  .p_view_other p,
  .p_view_other p b {
    font-size: 14px;
  }
}

/* 相关产品 */
.Related_products {
}

.Related_products .Pc_box_list .swiper-slide:nth-child(even) {
  margin-top: 0;
}

.Related-pagination {
  width: 13%;
  position: relative;
  background: #999999;
  height: 4px;
  border-radius: 5rem;
}

.Related-pagination span {
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
  height: 8px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  border-radius: 3px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .Related-pagination {
    width: 20%;
  }
}

/* ---------------------------------------------------  关于我们页面 */

/* 关于我们 */
.About_Us_Section {
  background-color: #f7f7f7;
}

.About_tit {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
}
.About_tit::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 8px;
  background-color: var(--i_color);
  margin-right: 0.3rem;
}

.About_Us_Section .wrap_r {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  position: relative;
}

.About_Us_video {
  width: 39%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  overflow: hidden;
  border-bottom: 0.1rem solid var(--i_color);
}
.About_Us_video::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 73.41%;
}
.About_Us_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.About_Us_video iconify-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.About_Us_video iconify-icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.About_Us_right {
  width: 63.05%;
  box-sizing: border-box;
  padding: 0.42rem 0.5rem 0.78rem 1.83rem;
  background-color: #fff;
}

.aur_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}

.aur_top h2 {
  width: 69.5%;
}

.aur_top img {
  display: block;
  width: 19%;
}

.aur_text {
  border-top: 1px solid #d8d8d8;
  color: rgba(34, 34, 34, 0.6);
}

.aur_imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 4%;
}

.aur_imgs li {
  width: 30.66%;
  box-sizing: border-box;
  position: relative;
}
.aur_imgs li::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 78.6%;
}
.aur_imgs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1440px) {
  .About_Us_right {
    padding: 0.4rem 0.4rem 0.4rem 6vw;
  }
}
@media screen and (max-width: 1366px) {
  .About_tit {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .About_tit {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .About_Us_Section {
    padding-bottom: 4vw;
  }
  .About_tit {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
  .About_tit::before {
    height: 4px;
  }
  .About_Us_Section .wrap_r {
    padding-left: 3vw;
  }
  .About_Us_video {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: 2;
  }
  .About_Us_right {
    width: 100%;
    padding: 0.3rem;
  }
  .aur_top img {
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  .About_tit {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 560px) {
  .About_Us_Section {
    padding-bottom: 6vw;
  }
  .About_tit {
    font-size: 0.2rem;
  }
  .About_tit::before {
    width: 0.4rem;
    height: 2px;
    margin-right: 0.1rem;
  }
  .About_Us_right {
    padding: 0.3rem 0.2rem;
  }
  .aur_top h2 {
    width: 100%;
  }
  .aur_top img {
    width: 30%;
  }
}

/* 公司优势 */
.Company_Advantages {
  background: linear-gradient(180deg, #f8fcff00 0%, #edf7ff 46%);
}

.Advantages_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 2%;
}

.Advantages_item {
  position: relative;
  width: auto;
  flex: 1;
  height: 6.2rem;
  transition: all 0.6s ease;
  overflow: hidden;
}
.Advantages_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0000004d 0%, #00000000 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.6s ease;
}
.Advantages_item::after {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #00000000 0%, #0159a0 123%);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.6s ease;
}
.Advantages_item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.Advantages_name {
  width: 88.5%;
  position: absolute;
  left: 50%;
  bottom: 6.5%;
  transform: translateX(-50%);
  transition: all 0.6s ease;
  z-index: 2;
}

.Advantages_text {
  width: 86.5%;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  transition: all 0.6s ease;
  opacity: 0;
  z-index: 2;
}

.Advantages_item.active {
  flex: 3;
}
.Advantages_item.active::before {
  opacity: 0;
}
.Advantages_item.active::after {
  height: 35%;
}
.Advantages_item.active .Advantages_name {
  opacity: 0;
}
.Advantages_item.active .Advantages_text {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .Advantages_item {
    height: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .Advantages_item {
    height: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .Advantages_item {
    height: 3rem;
  }
  .Advantages_name {
    width: 95%;
    font-size: 0.15rem;
  }
  .Advantages_text {
    width: 95%;
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 560px) {
  .Advantages_item {
    flex: auto;
    width: 100%;
  }
}

/* 全球客户 */
.Global_customers {
}

/*  */
.gol_partner_box {
}

.gol_partner {
  position: relative;
}
.gol_partner_list {
  width: 100%;
  padding: 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;
  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;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gol_partner_list li p {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.15rem 4%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.16rem;
  color: #333;
  opacity: 0;
  transition: all 0.4s ease;
}

.gol_partner_list .swiper-slide-active p {
  opacity: 1;
}

@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1200px) {
  .global_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
  .gol_partner_list li p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

/* 指示器 */
.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;
  display: none;
}
.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;
}

@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 .pt-pagination {
    display: block;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .gol_partner .pt-pagination {
    height: 0.01rem;
  }
  .gol_partner .pt-pagination span {
    top: -0.02rem;
    height: 0.04rem;
  }
}
@media screen and (max-width: 560px) {
}

/* 荣誉证书 */
.Certificate_Honor {
  position: relative;
  overflow: hidden;
}

.Certificate_Honor .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.Honor_left {
  width: 36%;
}

.Honor_left .title_box p {
  color: rgba(34, 34, 34, 0.6);
}

.Honor_right {
  width: 59%;
  position: relative;
}

.Honor_list {
  position: relative;
  overflow: hidden;
  width: 81.36%;
}
.Honor_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Honor_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  background-color: #f3f3f3;
}
.Honor_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 83.75%;
}
.Honor_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

.Honor_img {
  width: 33%;
  position: absolute;
  left: -9.7%;
  bottom: -13%;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .Honor_left,
  .Honor_right {
    width: 100%;
  }
  .Honor_left {
    margin-top: 0;
  }
  .Honor-prev,
  .Honor-next {
    display: none;
  }
  .Honor_list {
    width: 100%;
  }
}

/* 环境展示 */
.Environmental_Display {
  background: url(https://lingjuimg.com/wp-content/uploads/debo/2026/08/Environmental_Display_Ba.webp)
    no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.Environmental_Display_box {
  width: 78.125%;
  margin: 0 auto;
}

.Environmental_Display_list {
  padding-bottom: 10px;
  position: relative;
}
.Environmental_Display_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Environmental_Display_list .swiper-slide {
  opacity: 0.2;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.Environmental_Display_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 61%;
}
.Environmental_Display_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Environmental_Display_list .swiper-slide-active,
.Environmental_Display_list .swiper-slide-next {
  opacity: 1;
}

.Environmental_Display-prev,
.Environmental_Display-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.44rem;
  height: 0.44rem;
  background: var(--i_color);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.Environmental_Display-prev {
  left: -0.22rem;
}
.Environmental_Display-next {
  right: -0.22rem;
}
.Environmental_Display-prev iconify-icon,
.Environmental_Display-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.22rem;
  color: #fff;
}
.Environmental_Display_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Environmental_Display-prev:hover,
.Environmental_Display-next:hover {
  background: var(--i_color);
}

.Environmental_Display-pagination {
  background: #666;
  position: relative;
  width: 2rem;
  height: 3px;
  display: block;
  margin-top: 0.6rem;
  margin-left: auto;
  margin-right: auto;
}
.Environmental_Display-pagination span {
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: -3px;
  width: 100%;
  border-radius: 6px;
  height: 9px;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

@media screen and (max-width: 1200px) {
  .Environmental_Display_box {
    width: 90%;
  }
  .Environmental_Display_list {
    overflow: hidden;
  }
  .Environmental_Display-prev,
  .Environmental_Display-next {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .Environmental_Display-pagination {
    height: 2px;
  }
  .Environmental_Display-pagination span {
    top: -1px;
    height: 4px;
  }
}
@media screen and (max-width: 768px) {
  .Environmental_Display-pagination {
    margin-top: 40px;
  }
}

/* ---------------------------------------------------  服务页面 */

/* 我们的服务 */
.Our_Services {
  background: url(https://lingjuimg.com/wp-content/uploads/debo/2026/08/Our_Services_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.Our_Services_Box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.osb_left {
  width: 38%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}

.osb_item {
  box-sizing: border-box;
  padding-left: 0.3rem;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
}
.osb_item::before {
  content: "";
  display: block;
  width: 6px;
  height: 0;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}
.osb_item.active {
  color: #333;
}
.osb_item.active::before {
  height: 100%;
}

.osb_right {
  width: 53%;
  position: relative;
  overflow: hidden;
}
.osb_right::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 65.41%;
}
.osb_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 2%;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
.osb_right img.active {
  opacity: 1;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .osb_left {
    gap: 0.3rem 0;
  }
  .osb_item {
    font-size: 0.18rem;
  }
  .osb_item::before {
    width: 4px;
  }
}
@media screen and (max-width: 768px) {
  .osb_left,
  .osb_right {
    width: 100%;
  }
  .osb_item {
    font-size: 0.16rem;
    padding-left: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .osb_left {
    gap: 0.2rem 0;
  }
  .osb_item {
    font-size: 0.14rem;
  }
}

/* 服务优势 */
.Service_advantages {
}

.serAdv_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 2%;
}
.serAdv_list dt {
  width: 32%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.serAdv_list .coverPic {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.serAdv_list .coverPic::before {
  content: "";
  display: block;
  padding-bottom: 65.42%;
}
.serAdv_list .coverPic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.serAdv_list .text {
  padding: 0.2rem;
}
.serAdv_list .text h6 {
  padding-bottom: 0.14rem;
  margin-bottom: 0.1rem;
  border-bottom: 1px solid #666;
  font-size: 0.2rem;
  font-weight: bold;
  transition: all 0.4s ease;
}
.serAdv_list .text span {
  font-size: 0.16rem;
  line-height: 1.6;
}

.serAdv_list dt:nth-child(3n + 2) .text {
  order: -1;
}

.serAdv_list dt:hover .text h6 {
  color: var(--i_color);
  border-color: var(--i_color);
}

@media screen and (max-width: 1366px) {
  .serAdv_list .text h6 {
    font-size: 0.18rem;
  }
  .serAdv_list .text span {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 1024px) {
  .serAdv_list {
    gap: 36px 0;
  }
  .serAdv_list dt {
    width: 100%;
    flex-wrap: nowrap;
    gap: 0 3%;
    flex-direction: initial;
    align-items: center;
    background: none;
  }
  .serAdv_list .coverPic {
    order: -2;
    flex-shrink: 0;
    width: 30%;
  }
  .serAdv_list .text {
    width: 100%;
    padding: 0 0;
  }
  .serAdv_list .text h6 {
    font-size: 16px;
  }
  .serAdv_list .text span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .serAdv_list dt {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .serAdv_list .coverPic {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .serAdv_list .text h6 {
    padding-bottom: 10px;
    margin-bottom: 8px;
    font-size: 15px;
  }
}

/* 购买流程 */
.Purchase_process {
  background: url(https://lingjuimg.com/wp-content/uploads/debo/2026/08/Purchase_process_Ba.webp)
    no-repeat center;
  background-size: cover;
}

.buy_ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin: 3rem 0;
  position: relative;
  z-index: 3;
}
.buy_ul::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
  height: 1px;
  border-bottom: 1px dashed #999;
  z-index: -1;
}
.buy_ul li {
  width: calc(100% / 6);
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  position: relative;
}
.buy_ul li::before {
  content: "";
  display: block;
  width: 0;
  border-bottom: 1px dashed var(--i_color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.4s ease;
}
.buy_ul li h3 {
  font-size: 0.3rem;
  color: #999;
  font-weight: bold;
  transition: all 0.3s ease;
}
.buy_ul li h4 {
  font-size: 0.24rem;
  color: #999;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 0.1rem;
  transition: all 0.3s ease;
}
.buy_ul li h5 {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #999;
  height: 0.96rem;
  overflow: auto;
  box-sizing: border-box;
  padding-right: 0.05rem;
}
/*滚动条*/
.buy_ul li h5::-webkit-scrollbar {
  width: 1px;
  height: 8px;
}
.buy_ul li h5::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--i_color);
}
.buy_ul li h5::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: #f1f1f1;
}
.buy_ul li p {
  width: 0.16rem;
  height: 0.16rem;
  background-color: #999;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.buy_ul li p::after {
  width: 0.34rem;
  height: 0.34rem;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  border-radius: 50%;
  background: rgba(33, 75, 151, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
}
.buy_odd {
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 100%;
  box-sizing: border-box;
  padding-right: 2%;
}
.buy_even {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 100%;
  box-sizing: border-box;
  padding-right: 2%;
}

.buy_ul li:hover::before {
  width: 100%;
}
.buy_ul li:hover h3 {
  color: var(--i_color);
}
.buy_ul li:hover h4 {
  color: var(--i_color);
}
.buy_ul li:hover p {
  background-color: var(--i_color);
}
.buy_ul li:hover p::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width: 1200px) {
  .buy_ul li h4 {
    font-size: 0.2rem;
  }
  .buy_ul li h5 {
    font-size: 0.14rem;
    line-height: 0.2rem;
    height: 0.8rem;
  }
  .buy_bac {
    border-radius: 0 0 0 0.6rem;
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
  .buy_odd {
    position: relative;
    left: 0;
    bottom: 0;
  }
  .buy_even {
    position: relative;
    left: 0;
    top: 0rem;
  }
  .buy_ul li p {
    display: none;
  }
  .buy_ul li {
    width: calc((100% - 0.4rem) / 3);
  }
  .buy_ul {
    gap: 0.2rem;
    margin: 0.6rem 0 0 0;
  }
  .buy_ul li h5 {
    height: unset;
  }
  .buy_ul::after,
  .buy_ul li::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .buy_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
  .buy_bac {
    border-radius: 0 0 0 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .buy_ul {
    margin: 0.4rem 0 0 0;
  }
}
@media screen and (max-width: 425px) {
}

/* ---------------------------------------------------  新闻列表页面 */

.News_Categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.3rem;
}

.Nc_item a {
  display: block;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  color: var(--i_color);
  padding: 0.15rem 0.4rem;
  transition: all 0.4s ease;
}

.Nc_item.active a {
  background-color: var(--i_color);
  color: #fff;
  font-weight: 550;
}

.Nc_item a:hover {
  background-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .Nc_item a {
    padding: 0.1rem 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .News_Categories {
    gap: 0.1rem;
  }
  .Nc_item a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .Nc_item a {
    font-size: 0.14rem;
    padding: 0.1rem;
  }
}

.News_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 2%;
}

.News_list .new_item {
  width: 32%;
}

@media screen and (max-width: 1024px) {
  .News_list .new_item {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .News_list {
    gap: 0.3rem 0;
  }
}
@media screen and (max-width: 560px) {
  .News_list .new_item {
    width: 100%;
  }
}

/* ---------------------------------------------------  联系我们页面 */

/* 联系信息 */
.contact_information {
}

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

.contact_left {
  width: 40.67%;
  box-sizing: border-box;
  background-color: #f8f9fd;
  padding-left: 3.15vw;
  padding-right: 2.1vw;
}

.contact_way {
  display: flex;
  flex-direction: column;
  gap: 0.6rem 0;
}

.contact_way_item {
  height: max-content;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.1rem 0;
}

.cwi_icon {
  box-sizing: border-box;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid #333;
  transition: all 0.4s ease;
  font-size: 0.24rem;
}

.cwi_text {
  width: 82%;
}

.cwi_text a,
.cwi_text h6 {
  font-size: 0.2rem;
  transition: all 0.4s ease;
}
.cwi_text a:hover {
  color: var(--i_color);
}

.contact_follow {
  border-top: 1px solid #d4d4d4;
}

.contact_follow .f_media {
  margin-left: 0;
}
.contact_follow .f_media a {
  background-color: #727272;
}
.contact_follow .f_media a:hover {
  background-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .contact_left {
    width: 100%;
  }
  .contact_left {
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
  }
  .contact_way {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.3rem 2%;
  }
  .contact_way_item {
    width: 49%;
  }
  .cwi_icon {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.2rem;
  }
  .cwi_text {
    width: 85%;
  }
  .cwi_text span,
  .cwi_text a,
  .cwi_text h6 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .contact_way_item {
    width: 100%;
  }
}

.contact_right {
  width: 52.67%;
  box-sizing: border-box;
}

.cr_form {
}

#wpforms-155 {
  --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-155 {
  margin: 0;
  padding: 0;
}
#wpforms-form-155 {
  width: 100%;
  position: relative;
}

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

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

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

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

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

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

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

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

/* 合作展示 */
.Collaboratio_Showcase {
  background-color: var(--i_color);
}

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

.Collaboratio_list_box {
  display: flex;
  gap: 0 0.6rem;
  will-change: transform;
}

.Collaboratio_img {
  width: 14%;
  flex-shrink: 0;
  position: relative;
  background-color: #fff;
}
.Collaboratio_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 36.6%;
}

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

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