/*
Theme Name: CleanDent
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: #2868c8;

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

  --header_top_height: 0.35rem;

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

/* 通用 */

/* button */

.btn_box {
  display: table;
  transition: all 0.4s ease;
}

.btn_box .btn,
.btn_box .btn02 {
  display: flex;
  align-items: center;
  border-radius: 5rem;
  background-color: var(--i_color);
  box-sizing: border-box;
  padding: 0.05rem 0.08rem 0.05rem 0.1rem;
}

.btn_box .btn02 {
  background: #fff;
}

.btn_box .btn iconify-icon,
.btn_box .btn02 iconify-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background-color: #fff;
  color: var(--i_color);
  font-size: 0.24rem;
  transition: all 0.6s ease;
}

.btn_box .btn02 iconify-icon {
  background: var(--i_color);
  color: #fff;
}

.btn_box .btn span,
.btn_box .btn02 span {
  color: #fff;
  margin-left: 0.16rem;
  margin-right: 0.3rem;
}

.btn_box .btn02 span {
  color: #333;
}

.btn_box:hover {
  transform: translateY(-0.05rem);
}

.btn_box:hover iconify-icon {
  transform: rotate(360deg);
}

@media screen and (max-width: 1024px) {
  .btn_box .btn iconify-icon,
  .btn_box .btn02 iconify-icon {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 0.18rem;
  }
  .btn_box .btn span,
  .btn_box .btn02 span {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .btn_box .btn,
  .btn_box .btn02 {
    padding: 0.04rem 0.06rem 0.04rem 0.03rem;
  }
  .btn_box .btn iconify-icon,
  .btn_box .btn02 iconify-icon {
    width: 0.22rem;
    height: 0.22rem;
    font-size: 0.14rem;
  }
  .btn_box .btn span,
  .btn_box .btn02 span {
    margin-left: 0.06rem;
    margin-right: 0.1rem;
  }
}

/* title */

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

/* --- --- */

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

.wrap_header {
  width: 94vw;
  max-width: 1600px;
  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%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 2014;
}

header.fixedHeader {
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}
header > .wrap_header {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  header {
    background: #fff;
  }
}

/* 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: 100%;
}
.logo img {
  max-height: 100%;
}

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

  .i_nav > li {
    position: relative;
  }
  .i_nav > li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 38%;
    width: 0;
    height: 1px;
    background-color: var(--i_color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: #333;
    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 {
    width: 100%;
    opacity: 1;
  }

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

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

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

  .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: 0.16rem;
    color: #666;
    line-height: 0.4rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }

  .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: var(--i_color);
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.54rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav {
    gap: 0 0.5rem;
  }
  .i_nav > li > a {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.4rem;
  }
  .i_nav > li > a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;
    position: fixed;
    top: calc(var(--header_height) + var(--header_top_height));
    left: 101%;
    width: 100%;
    width: 100vw;
    height: calc(100vh - var(--header_height)+ var(--header_top_height));
    background: #fff;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-top: 1px solid rgb(83, 134, 211, 0.3);
    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 #f8f8f8;
    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.14rem;
    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.13rem;
    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 {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

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

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

@media screen and (max-width: 1024px) {
  .nav_menu {
    width: 20px;
    height: 15px;
    display: block !important;
    margin-left: 0.15rem;
  }
  .nav_menu i {
    margin-top: -1px;
  }
}

.top_r {
  --size: 0.24rem;
}
.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.2rem;
  margin-left: 0.67rem;
}
@media screen and (max-width: 1024px) {
  .top_r {
    margin-left: auto;
    --size: 0.2rem;
  }
}

.search_cont,
.top_language {
  height: var(--header_height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  position: relative;
}
.top_search_ico iconify-icon,
.top_language_btn iconify-icon {
  font-size: var(--size);
  color: #333;
  cursor: pointer;
}

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

.top_language {
  position: relative;
}
.top_language_btn {
  position: relative;
  cursor: pointer;
}

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

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

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

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

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

/* @media screen and (max-width:1024px) {
	.language_list dt>h6{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.top_language_btn p{display: none;}
	.top_language_btn iconify-icon{display: block;}
	.language_list dt>h6{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.language_list dt>h6{font-size: 14px;}
	.language_list{-webkit-border-radius:6px; border-radius:6px;}
	.lang_list .trp-ls-language-name{font-size: 13px;}
} */
@media screen and (max-width: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

/* search */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: calc(var(--header_height) + 0.3rem);
  right: 0;
  width: 100%;
  padding: 0.2rem 0;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}
.top_search.on {
  visibility: visible;
  opacity: 1;
  top: calc(var(--header_height) + var(--header_top_height));
  box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
}
.top_search form {
  width: 90%;
  margin: 0 auto;
  max-width: 5rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  overflow: hidden;
}
.top_search_ipt {
  width: calc(100% - var(--search_height) * 2);
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0 0 0.12rem;
}
.top_search_btn {
  font-size: 0;
  color: #fff;
  width: calc(var(--search_height) * 2);
  height: var(--search_height);
  background: var(--i_color)
    url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="white" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: 0.24rem;
  cursor: pointer;
}

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

.full_header_height {
  height: calc(var(--header_height) + var(--header_top_height));
}

.header_top {
  height: var(--header_top_height);
  background-color: var(--i_color);
}

.header_top .wrap_header {
  height: var(--header_top_height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_up_left {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  height: 100%;
  gap: 0 0.37rem;
}
.top_up_left1 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.top_up_left1 iconify-icon {
  font-size: 0.2rem;
  object-fit: contain;
  margin-right: 0.05rem;
  color: #fff;
}
.top_up_left1 a {
  font-size: 0.14rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  color: #fff;
}
.top_up_left1 a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.top_up_left1 a:hover {
}
.top_up_left1 a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.footer_share {
  display: flex;
  display: -webkit-flex;
  gap: 0.13rem;
}
.footer_share dt {
}
.footer_share dt a {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 0.2rem;
  height: 0.2rem;
  background-color: #5386d3;
  border-radius: 0.02rem;
  transition: all 0.3s ease;
}
.footer_share dt a iconify-icon {
  font-size: 0.14rem;
  color: #fff;
  transition: all 0.3s ease;
}
.footer_share dt a:hover {
  background-color: #fff;
}
.footer_share dt a:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .top_up_left {
    display: none;
  }
  .footer_share {
    margin-left: auto;
    gap: 0 0.12rem;
  }
  .footer_share dt a {
    width: 0.2rem;
    height: 0.2rem;
  }
  .footer_share dt a iconify-icon {
    font-size: 0.1rem;
  }
}

/* banner */
.i_banner {
}

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

.slide01 {
  width: 40%;
  height: 46.5%;
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
}

.slide_text {
  height: 100%;
}

.slide_text img {
  width: 120%;
  object-fit: contain;
  position: absolute;
  left: -15%;
  top: -5%;
  z-index: -1;
}

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

.slide_text i {
  width: 76%;
  height: 0.04rem;
  display: block;
  background: linear-gradient(90deg, #2868c8 0%, transparent);
}

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

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

@media screen and (max-width: 1024px) {
  .slide01 {
    width: 50%;
    left: 5%;
  }
  .slide01 img {
    width: 80%;
    left: 0;
    top: 0;
  }
  .slide01 h2 {
    font-size: 0.16rem;
  }
  .slide01 p {
    font-size: 0.13rem;
  }
  .iba-prev,
  .iba-next {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .slide01 {
    width: 100%;
  }
  .slide01 h2 {
    font-size: 0.14rem;
  }

  .slide01 .btn_box {
    display: none;
  }
  .iba-pagination {
    bottom: 0.05rem;
  }
}

/* 产品类别 */
.Product_Categories {
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/Product_Categories_Ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.pc_top .title_box {
  width: 35%;
}

.pc_cont {
}

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

.pc_item {
  position: relative;
  display: block;
  width: 100%;
  background: url(static/imgs/Product_Category_item.webp) no-repeat center;
  background-size: cover;
  padding: 0.2rem 0.3rem 0.2rem 0.25rem;
  border-radius: 0.15rem;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.item_ {
  width: 24%;
}

.pc_item p {
}

.pc_btn {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-top: 1.1rem;
  transition: all 0.4s ease;
}

.pc_btn iconify-icon {
  color: #fff;
  font-size: 0.22rem;
  transition: all 0.3s ease;
}

.pc_pic {
  width: 50%;
  overflow: hidden;
}
.pc_pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

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

.pc_item:hover .pc_btn {
  background-color: #fff;
}

.pc_item:hover .pc_btn iconify-icon {
  color: var(--i_color);
}

/* -------------------------- */
.pc-pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
}
.pc-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.pc-pagination .swiper-pagination-bullet-active {
  width: 0.19rem;
  border-radius: 5rem;
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .pc_pic {
    width: 30%;
  }
  .pc_item p {
    width: 50%;
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 768px) {
  .pc_top .title_box {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .pc_item {
    padding: 0.2rem;
  }
  .pc_btn {
    width: 0.25rem;
    height: 0.25rem;
    margin-top: 0.2rem;
  }
  .pc_btn iconify-icon {
    font-size: 0.16rem;
  }
}

/* 热门产品 */
.hot_box {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.hot_box > li:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.hot_box > li:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.hot_box > li:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.hot_box > li:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.hot_box > li:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.hot_box li {
  background-color: #eef3fb;
  border-radius: 0.15rem;
  box-sizing: border-box;
  padding: 0.3rem;
}

.hot_box li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hot_pic {
  width: 72%;
  position: relative;
  overflow: hidden;
}

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

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

.hot_box p {
  transition: all 0.4s ease;
}

.hot_box li:hover .hot_pic img {
  transform: scale(1.1);
}
.hot_box li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .hot_box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 2%;
  }
  .hot_box li {
    width: 49%;
  }
  .hot_box > li:last-child {
    display: block;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .hot_box li {
    padding: 0.1rem;
  }
}

/* 关于我们 */
.About_Us {
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/i_about.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding: 1.92rem 0;
}

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

.i_abLeft {
  width: 51%;
}

.i_abLeft p {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i_Vbtn {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
}
.i_Vbtn .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;
}
.i_Vbtn 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: 1024px) {
  .About_Us {
    padding: 0.6rem 0;
  }
  .i_abLeft {
    width: 100%;
  }
  .i_Vbtn {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .About_Us {
    padding: 0.2rem 0;
  }
  .i_abLeft p {
    font-size: 0.13rem;
  }
}

/* 宣传数据 */
.i_data {
  width: 100%;
  background-color: var(--i_color);
}

.data_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.data_list li {
  display: flex;
  flex-direction: column;
}

.data_list li > div {
  display: flex;
  color: #fff;
  position: relative;
  align-items: center;
}

.data_list li > div::before {
  width: 2.3rem;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  bottom: -10%;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.data_list li > div img {
  width: 0.65rem;
}

.data_list li > div span {
  font-size: 0.66rem;
  margin-left: 0.1rem;
}

.data_list li > div i {
  font-size: 0.66rem;
}

.data_list li > P {
  color: #fff;
  margin-top: 0.2rem;
}

@media screen and (max-width: 1440px) {
  .data_list li > div::before {
    width: 2rem;
    bottom: -18%;
  }
  .data_list li > div span {
    font-size: 0.4rem;
  }
  .data_list li > div i {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .data_list li > div::before {
    width: 100%;
    bottom: -25%;
  }
  .data_list li > div img {
    width: 0.4rem;
  }
  .data_list li > div span {
    font-size: 0.3rem;
  }
  .data_list li > div i {
    font-size: 0.3rem;
  }
}

@media screen and (max-width: 768px) {
  .data_list {
    gap: 0.12rem 0;
  }
  .data_list li > div img {
    width: 0.25rem;
  }
  .data_list li > div span,
  .data_list li > div i {
    font-size: 0.2rem;
  }
  .data_list li > P {
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
}

/* 我们的优势 */
.i_advantages {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.about_advantage_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0.66rem 1.12rem 0.5rem 0.82rem;
  background: linear-gradient(to top, #e5f0ff, #f6faff);
  border-radius: 0.15rem 0.15rem 1.5rem 0.15rem;
  position: relative;
  z-index: 2;
}
.about_advantage_left {
  width: 56%;
}
.about_advantage_left img {
  width: 100%;
  height: auto;
}
.about_advantage_right {
  width: 40%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.about_advantage_right li {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.2rem 0.3rem;
  border-radius: 0.15rem;
  transition: all 0.4s ease;
}

.about_advantage_right img {
  width: 0.5rem;
}

.about_advantage_right h6 {
  transition: all 0.4s ease;
}

.about_advantage_right li:hover {
  box-shadow: 4px 4px 13px 9px rgba(40, 104, 200, 0.1);
}

.about_advantage_right li:hover h6 {
  color: var(--i_color);
}

.events_i {
  display: block;
  width: 30rem;
  height: 1.21rem;
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/event_bac.webp);
  background-size: contain;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .about_advantage_box {
    gap: 0.2rem 0;
    padding: 0.2rem;
    border-radius: 0.15rem;
  }
  .about_advantage_left,
  .about_advantage_right {
    width: 100%;
  }
  .about_advantage_right {
    order: -1;
    gap: 0.2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about_advantage_right li {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .about_advantage_right img {
    width: 0.3rem;
  }
  .about_advantage_right h6 {
    font-size: 0.15rem;
  }
  .about_advantage_right p {
    font-size: 0.13rem;
  }
}

/* 证书 */
.Certificate {
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/Certificate_Ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.certificate_pic {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 0.15rem;
  transition: all 0.4s ease;
}

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

.certificate_pic img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Certificate_list .swiper-slide p {
  transition: all 0.4s ease;
}

.Certificate_list .swiper-slide:hover {
  transform: translateY(-4%);
}
.Certificate_list .swiper-slide:hover .certificate_pic {
  box-shadow: 4px 4px 13px 9px rgba(40, 104, 200, 0.1);
}
.Certificate_list .swiper-slide:hover p {
  color: var(--i_color);
}

/* -------------------------- */
.Certificate-pagination {
  display: block;
  margin-top: 0.4rem;
  text-align: center;
}
.Certificate-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Certificate-pagination .swiper-pagination-bullet-active {
  width: 0.19rem;
  border-radius: 5rem;
  background: var(--i_color);
}

/* 主页新闻 */
.in_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.in_tab {
  display: flex;
  flex-wrap: wrap;
}

.in_tab li {
  margin-left: 0.3rem;
  background-color: #eef3fb;
  border-radius: 5rem;
  color: #333;
  cursor: pointer;
}

.in_tab li a {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0.1rem 0.5rem;
  transition: all 0.3s ease;
}

.in_tab li:hover {
  background-color: var(--i_color);
}

.in_tab li:hover a {
  color: #fff;
}

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

.in_box_left {
  width: 49%;
}
.in_box_left a {
  width: 100%;
  height: 100%;
  display: block;
}

.in_box_left img {
  width: 100%;
  border-radius: 0.15rem;
}

.in_box_left p {
  width: max-content;
  margin: 0.25rem 0;
  position: relative;
}

.in_box_left p::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  right: 0;
  bottom: -1px;
  transition: all 0.4s ease;
}

.in_box_left:hover p::before {
  width: 100%;
  left: 0;
  right: auto;
}

.in_box_right {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 0.74rem 0;
}

.in_box_right li {
}

.in_box_right li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.time {
  color: #c2c2c2;
}

.time h6 {
  text-align: right;
}

.Wire {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #d6d6d6;
  margin-left: 7%;
}

.in_box_right h5 {
  width: 69%;
}

.in_box_right h5 b {
  background: linear-gradient(to right, var(--i_color), var(--i_color))
    no-repeat;
  background-size: 0 2px;
  background-position: right bottom;
  transition: background-size 1.5s;
}

.in_cont .active {
  display: flex;
}

.in_box_right li:hover h5 {
  color: var(--i_color);
}

.in_box_right li:hover h5 b {
  background-position: left bottom;
  background-size: 100% 2px;
}

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

  .in_box_left {
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #d6d6d6;
  }

  .in_box_right {
    gap: 0.3rem 0;
  }

  .in_box_right h5 {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .in_top .title_box,
  .in_top .in_tab {
    width: 100%;
  }
  .in_top .in_tab {
    gap: 0.2rem 2%;
  }
  .in_tab li {
    margin-left: 0;
  }
}
@media screen and (max-width: 560px) {
  .in_tab li a {
    padding: 0.05rem 0.2rem;
    font-size: 0.14rem;
  }
  .time p,
  .time h6 {
    font-size: 0.13rem;
  }
  .in_box_right h5 {
    font-size: 0.15rem;
  }
  .Wire {
    display: none;
  }
}

/* 标准 */
.brand {
  position: relative;
}

.brand_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1%;
}

.brand_list li {
  width: 13.425%;
  position: relative;
}

.brand_list li::before {
  content: "";
  display: block;
  padding-bottom: 72%;
}

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

@media screen and (max-width: 1024px) {
  .brand_list li {
    width: 24.25%;
  }
}

@media screen and (max-width: 560px) {
  .brand_list {
    gap: 0.1rem 1%;
  }
  .brand_list li {
    width: 32.65%;
  }
}

/* 联系我们 */
.ic_box {
  background: url(static/imgs/i_connect_Ba.webp) no-repeat center;
  background-size: cover;
  border-radius: 0.15rem;
  box-sizing: border-box;
  padding: 0.72rem 0.55rem 0.79rem 0.82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.ic_box .title_box {
  width: 28.3%;
  color: #fff;
}
.ic_box .title_box p {
  color: #fff;
}

.ic_form {
  width: 63%;
}

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

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

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

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

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

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

#wpforms-98 .wpforms-field-container {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#wpforms-98-field_1-container,
#wpforms-98-field_2-container,
#wpforms-98-field_3-container,
#wpforms-98-field_4-container {
  width: 49% !important;
}

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

#wpforms-98 .wpforms-field-container .wpforms-field > input,
#wpforms-98 .wpforms-field-container textarea {
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
}

@media screen and (max-width: 1024px) {
  .ic_box {
    padding: 0.25rem;
  }
  .ic_box .title_box,
  .ic_form {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .ic_box {
    padding: 0.2rem;
  }
  #wpforms-98-field_1-container,
  #wpforms-98-field_2-container,
  #wpforms-98-field_3-container,
  #wpforms-98-field_4-container {
    width: 100% !important;
  }
}

/* footer */
.f_cont {
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/f_cont_bg.webp)
    no-repeat center;
  background-size: cover;
}

.f_nav {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0 0.2rem;
}
.f_nav dt {
}
.f_contact {
  flex-shrink: 0;
  width: 30%;
}

.f_contact img {
}

.f_contact span {
  display: block;
  padding: 6px 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.f_contact p,
.f_contact a {
  font-size: 0.16rem;
  color: var(--txt_color);
}

.f_nav h5 {
  margin-bottom: 0.16rem;
  font-size: 0.24rem;
  font-weight: bold;
}

.f_nav ul {
}
.f_nav li {
}
.f_nav li a {
  display: block;
  padding: 6px 0;
  font-size: 0.16rem;
  color: #59595b;
}

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

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

.f_cr .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0;
  align-items: center;
  padding: 0.2rem 0;
}

.f_cr p,
.f_cr a {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.f_cr a:hover {
  text-decoration: underline;
}

.fMedia {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.26rem;
}
.fMedia li {
  transition: all 0.5s ease;
}
.fMedia a {
  display: block;
  padding: 0 !important;
  width: 0.44rem;
  height: 0.44rem;
  background: #fff;
  border-radius: 0.1rem;
  position: relative;
  transition: all 0.5s ease;
}
.fMedia iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #a9c3e9;
}

.fMedia li:hover a {
  background: #d1def0;
}

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

@media screen and (max-width: 1024px) {
  .f_nav {
    margin: 30px 0 10px;
  }
  .f_nav h5 {
    margin-bottom: 16px;
  }
  .f_nav .item {
    display: none;
  }
  .f_contact {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .f_contact p,
  .f_contact a {
    font-size: 15px;
  }
  .fMedia a {
    width: 40px;
    height: 40px;
  }
  .fMedia iconify-icon {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .f_cont {
    padding-top: 0.3rem;
  }
  .f_contactBox .i_tit h3 {
    font-size: 16px;
  }
  .f_contactBox .i_more {
    margin-top: 20px;
  }

  .f_nav {
    margin: 0 0 30px;
  }
  .f_nav h5 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .f_contact span {
    padding: 4px 0;
  }
  .f_contact p,
  .f_contact a {
    font-size: 14px;
  }

  .f_cr p,
  .f_cr a {
    font-size: 14px;
  }
  .fMedia {
    gap: 0 20px;
  }
  .fMedia a {
    width: 34px;
    height: 34px;
  }
  .fMedia iconify-icon {
    font-size: 18px;
  }
}

.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.15rem 0;
  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:first-child {
}
/* .in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
} */
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}
.in_position a:last-child {
  color: var(--i_color) !important;
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}

/* ------------------------------- news页面 */
.news_main {
  position: relative;
  overflow: hidden;
}

.news_logobj {
  width: 40%;
  position: absolute;
  top: 0;
  right: -17%;
}

.news_Options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
  border-bottom: 1px solid #d6d6d6;
}

.news_Options a {
  padding: 0.13rem 0.26rem;
  background-color: #eef3fb;
  border-radius: 5rem;
  transition: all 0.4s ease;
}

.news_Options .active a {
  background-color: var(--i_color);
  color: #fff;
}

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

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

.news_list li a {
  width: 100%;
  height: 100%;
  display: block;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  transition: all 0.4s ease;
}

.new_time p,
.new_time h6 {
  color: #c2c2c2;
  transition: all 0.4s ease;
}

.new_time h6 {
  text-align: right;
}

.new_img {
  width: 22.7%;
  position: relative;
  margin-left: 4%;
  border-radius: 0.15rem;
  overflow: hidden;
}
.new_img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 61%;
}
.new_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.15rem;
  transition: all 0.4s ease;
}

.new_info {
  width: 62%;
}

.new_info span {
  background: linear-gradient(to right, var(--i_color), var(--i_color))
    no-repeat;
  background-size: 0 2px;
  background-position: right bottom;
  transition: background-size 1.5s;
}

.news_list li:hover a {
  border-color: #333333;
}
.news_list li:hover .new_time p,
.news_list li:hover .new_time h6 {
  color: #333;
}
.news_list li:hover .new_img img {
  transform: scale(1.1);
}
.news_list li:hover .new_info span {
  background-position: left bottom;
  background-size: 100% 2px;
}

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

@media screen and (max-width: 560px) {
  .news_Options a {
    padding: 0.06rem 0.16rem;
    font-size: 0.13rem;
  }
}

/* ------------------------------- contact页面 */
.Contact_Us {
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/Contact_UsBa.webp)
    no-repeat center;
  background-size: cover;
}

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

.contact_list li {
  width: 23%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0.15rem;
  padding: 0.38rem 0.1rem 0.24rem 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact_list img {
  width: 0.55rem;
}

.contact_list h6 {
  text-align: center;
}

.contact_list li:hover {
  box-shadow: 4px 4px 13px 9px rgba(40, 104, 200, 0.1);
}
.contact_list li:hover h6 a {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .contact_list li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .contact_list img {
    width: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .contact_list li {
    width: 100%;
  }
  .contact_list li p {
    margin-top: 0.2rem;
  }
  .contact_list h6 {
    font-size: 0.15rem;
  }
}

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

@media screen and (max-width: 1024px) {
  .map::before {
    padding-bottom: 44%;
  }
}
@media screen and (max-width: 560px) {
  .map::before {
    padding-bottom: 80%;
  }
}

/* ------------------------------- videos页面 */
/* video_youtube */
.video_youtube_bac {
  box-sizing: border-box;
  padding: 0.8rem 0;
}
.video_youtube {
}

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

.video_top .title_box {
  width: 50%;
}

.youtube_ul {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.youtube_ul li {
  width: calc((100% - 0.5rem) / 2);
}
.youtube_video {
  position: relative;
  overflow: hidden;
}
.youtube_video::after {
  content: "";
  display: block;
  padding-bottom: 56.64%;
}
.youtube_video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube_ul li p {
  font-size: 0.18rem;
  color: #333;
  box-sizing: border-box;
  padding: 0.25rem 4% 0 4%;
  text-align: center;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1200px) {
  .youtube_ul {
    gap: 0.4rem 0.2rem;
    margin-top: 0.6rem;
  }
  .youtube_ul li {
    width: calc((100% - 0.2rem) / 2);
  }
  .youtube_ul li p {
    font-size: 0.16rem;
  }
  .video_youtube_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .video_top .title_box {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
  .youtube_ul {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .youtube_ul {
    gap: 0.4rem;
  }
  .youtube_ul li {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
}

.video_list {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.video_list_box {
  position: relative;
  width: 4rem;
}
.video_list_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 0.15rem;
  cursor: pointer;
  height: 0.4rem;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.video_list_title p {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  box-sizing: border-box;
}

.video_list_title iconify-icon {
  font-size: 0.2rem;
  color: #333;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* 展开时旋转 180° */
.video_list_title.open iconify-icon {
  transform: rotate(180deg);
  color: var(--i_color);
}

.video_list_ul {
  position: absolute;
  top: 0.4rem;
  right: 0;
  width: 4rem;
  background-color: #eef3fb;
  box-sizing: border-box;
  border-radius: 0.15rem;
  padding: 0.2rem 0 0.3rem 0;
  z-index: 4;
}
.video_list_ul li {
}
.video_list_ul li a {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.12rem 6%;
  font-size: 0.16rem;
  color: #333;
  text-transform: capitalize;
  width: 100%;
  transition: all 0.3s ease;
}
.video_list_ul li a p {
  width: max-content;
  position: relative;
}
.video_list_ul li a p::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  transition: all 0.5s ease;
}

.video_list_ul li a:hover p::after {
  right: auto;
  left: 0;
  width: 100%;
}

#video_list_ul1 li .video_list_active p::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .video_list_box {
    width: 100%;
  }
  .video_list_ul {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .video_list_title p {
    font-size: 0.16rem;
    margin-right: 0.2rem;
  }
  .video_list_title iconify-icon {
    font-size: 0.18rem;
  }
  .video_list {
    width: 100%;
    gap: 0.4rem;
  }
}
@media screen and (max-width: 425px) {
}

/* ------------------------------- download页面 */
.download_content {
  background-color: #eef3fb;
}

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

.catList_aside {
  width: 29%;
  box-sizing: border-box;
  position: sticky;
  top: 1.6rem;
  align-self: flex-start;
}

@media screen and (max-width: 1024px) {
  .catList_aside {
    width: 100%;
    margin-bottom: 30px;
    background: none;
    position: relative;
    top: 0;
  }
}

.cat_nav {
  padding: 0.3rem 0.2rem 0.5rem 0.2rem;
  background: #fff;
  position: relative;
  border-radius: 0.15rem;
}
.cat_nav_tit {
  margin-bottom: 0.1rem;
}
.cat_nav_tit h4 {
  font-size: 0.28rem;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
}
.cat_nav_list li {
  position: relative;
  border-top: 1px solid #ddd;
}
.cat_nav_list li:last-child {
  border-bottom: 1px solid #ddd;
}
.cat_nav_list li.active {
  border-top: 1px solid var(--i_color);
}

.cat_fold_tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.cat_fold_tit a {
  padding: 0.16rem 0;
  width: 100%;
  font-size: 0.18rem;
}
.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;
}
.cat_fold_sub a {
  display: block;
  padding: 0.1rem 0;
  padding-left: 0.16rem;
  font-size: 0.16rem;
  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: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cccccc;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a p {
  width: max-content;
  position: relative;
}

.cat_fold_sub a:hover::before,
.cat_fold_sub .active a::before {
  background-color: var(--i_color);
}
.cat_fold_sub a:hover,
.cat_fold_sub .active a {
  color: var(--i_color);
  text-decoration: underline;
}

.cat_fold_sub .active a {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .cat_nav {
    width: 100%;
    padding: 0 0;
    background: none;
  }
  .cat_nav_tit {
    margin: 0;
    padding: 14px 28px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--i_color);
  }
  .cat_nav_tit h4 {
    padding: 0 0;
    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;
  }

  .cat_nav_list {
    display: none;
    box-sizing: border-box;
    padding: 14px 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;
  }
  .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: 14px 20px 24px;
  }
  .cat_fold_tit a {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .cat_nav_tit h4 {
    font-size: 16px;
  }

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

/* 下载列表 */
.catalog_box {
  width: 67%;
}

.catalog_us {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.28rem 0;
}
.catalog_us li {
  width: 100%;
}
.catalog_us li a {
  display: block;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.3rem;
  border-radius: 0.15rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.catalog_us li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.48rem;
  height: 2.48rem;
  object-fit: contain;
  transform: translate(-50%, -50%);
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/catalog_bac.webp)
    center no-repeat;
  background-size: contain;
  opacity: 0;
  transition: all 0.3s ease;
}
.catalog_img {
  position: relative;
}
.catalog_img img {
  width: 0.44rem;
  height: 0.5rem;
  object-fit: contain;
  transition: all 0.3s ease;
}
.catalog_img1 {
  opacity: 1;
}
.catalog_img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.catalog_us p {
  font-size: 0.2rem;
  color: #333;
  line-height: 150%;
  width: calc(100% - 0.84rem);
  box-sizing: border-box;
  padding: 0 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.3s ease;
}
.catalog_us iconify-icon {
  font-size: 0.4rem;
  color: var(--i_color);
  transition: all 0.3s ease;
}

.catalog_us li a:hover .catalog_img1 {
  opacity: 0;
}
.catalog_us li a:hover .catalog_img2 {
  opacity: 1;
}
.catalog_us li a:hover {
  background-color: var(--i_color);
}
.catalog_us li a:hover p {
  color: #fff;
}
.catalog_us li a:hover iconify-icon {
  color: #fff;
}
.catalog_us li a:hover::after {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .catalog_us p {
    font-size: 0.18rem;
  }
  .catalog_us {
    gap: 0.4rem 0.4rem;
  }
  .catalog_us li a::after {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .catalog_bac {
    padding-bottom: 0.6rem;
  }
  .catalog_us p {
    font-size: 0.16rem;
    width: calc(100% - 0.75rem);
  }
  .catalog_img img {
    width: 0.4rem;
    height: 0.45rem;
  }
  .catalog_us iconify-icon {
    font-size: 0.35rem;
  }
  .catalog_us {
    gap: 0.4rem 0.2rem;
  }
  /* .catalog_us li {
    width: calc((100% - 0.2rem) / 2);
  } */
  .catalog_us li a {
    padding: 0.25rem;
  }
  .catalog_us li a::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .catalog_box {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
  .search_for_box {
    width: 100%;
  }
  .catalog_title {
    gap: 0rem;
  }
  .catalog_title {
    padding: 0.4rem 0;
  }
  .catalog_us {
    gap: 0.2rem;
  }
  .catalog_us li {
    width: 100%;
  }
  .catalog_us li a {
    padding: 0.2rem;
  }
  .catalog_us li a::after {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .catalog_us p {
    font-size: 0.14rem;
    width: calc(100% - 0.6rem);
  }
  .catalog_img img {
    width: 0.3rem;
    height: 0.4rem;
  }
  .catalog_us iconify-icon {
    font-size: 0.3rem;
  }
  .catalog_us li a::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 425px) {
}

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

.about_box {
  position: relative;
  background-color: #eef3fb;
  overflow: hidden;
}

.about_bg {
  width: 40%;
  position: absolute;
  top: 0;
  right: -17%;
}

.about_content {
}

.big_logo {
  display: block;
  width: 84%;
  margin-top: -2%;
  margin-bottom: -10%;
}

.homeAbout_video {
  width: 100%;
  -webkit-border-radius: 0.2rem;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.homeAbout_video::before {
  content: "";
  display: block;
  padding-bottom: 31.25%;
}

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

.about_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
}
.about_btn .icon {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.about_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: 1024px) {
  .homeAbout_video {
    -webkit-border-radius: 14px;
    border-radius: 14px;
  }
  .about_btn {
    width: 120px;
    height: 120px;
  }
  .about_btn .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .homeAbout_video::before {
    padding-bottom: 48%;
  }
}
@media screen and (max-width: 560px) {
  .about_btn {
    width: 80px;
    height: 80px;
  }
  .about_btn .icon {
    width: 50px;
    height: 50px;
  }
  .about_btn iconify-icon {
    font-size: 30px;
  }
}

/* 企业文化 */

.CorporateCulture {
  background: url(https://lingjuimg.com/wp-content/uploads/kelindengte/2025/10/CorporateCulture_bj.webp)
    no-repeat center;
  background-size: cover;
  padding-bottom: 1.45rem;
}

.culture_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.culture_list li {
  width: 32%;
  box-sizing: border-box;
  border-radius: 0.15rem;
  border: 1px solid #fff;
  padding: 0.3rem 0.4rem;
  background: rgb(14, 47, 97, 0.3);
  position: relative;
  transition: all 0.6s ease;
}
.culture_list li::before {
  width: 0;
  height: 0;
  content: "";
  display: block;
  border-radius: 0.15rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--i_color);
  z-index: -1;
  transition: all 0.6s ease;
}

.culture_list img {
  width: 0.5rem;
}

.culture_list li:hover::before {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .culture_list li {
    width: 49%;
  }
}

@media screen and (max-width: 560px) {
  .culture_list li {
    width: 100%;
    padding: 0.2rem;
  }
  .culture_list img {
    width: 0.35rem;
  }
}

/* 证书 */
.ab_Certificate {
  background: #fff;
}

.ab_Certificate .certificate_pic {
  background-color: #eef3fb;
}

.ab_Certificate .swiper-slide:hover .certificate_pic {
  background-color: #fff;
}

/* 分销渠道 */
.DistributionChannels {
  background-color: #eef3fb;
}

.Material_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 2%;
}

.Material_list li {
  width: 15%;
  border-radius: 0.12rem;
}

.Material_img {
  width: 100%;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
}

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

.Material_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.12rem;
  transition: all 0.4s ease;
}

.Material_list p {
  margin-top: 0.17rem;
  transition: all 0.4s ease;
}

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

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

@media screen and (max-width: 1024px) {
  .Material_list {
    gap: 0.3rem 2%;
  }
  .Material_list li {
    width: 32%;
  }
}

@media screen and (max-width: 560px) {
  .Material_list {
    gap: 0.2rem 2%;
  }
  .Material_list li {
    width: 48%;
  }
  .Material_list p {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}

/* 环境 */
.Environment {
}

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

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

.environment_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.12rem;
}

.environment_list .swiper-slide::after {
  width: 100%;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(to bottom, transparent, rgb(0, 0, 0, 0.8));
  border-radius: 0.15rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.environment_list .swiper-slide p {
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: -5%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  transition: all 0.4s ease;
}

.environment_list .swiper-slide-active::after {
  opacity: 1;
  height: 30%;
}

.environment_list .swiper-slide-active p {
  opacity: 1;
  bottom: 5%;
}

/* -------------------------- */
.environment-pagination {
  display: block;
  margin-top: 0.6rem;
  text-align: center;
}
.environment-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.environment-pagination .swiper-pagination-bullet-active {
  width: 0.19rem;
  border-radius: 5rem;
  background: var(--i_color);
}

@media screen and (max-width: 560px) {
  .environment-pagination {
    margin-top: 0.3rem;
  }
  .environment_list .swiper-slide p {
    font-size: 0.14rem;
  }
}

/* ------------------------------- 产品列表页面 */
.product_list {
  position: relative;
  background-color: #eef3fb;
}

.pr_big {
  width: 22%;
  position: absolute;
  top: 0;
  right: 0;
}

.pr_cont {
  padding-bottom: 1.3rem;
}

.pr_cont .wrap {
  display: flex;
  flex-wrap: wrap;
}

.cat_show {
  margin-left: auto;
  width: 67.5%;
}

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

.cat_page_info h2 {
  margin-bottom: 0.1rem;
  font-weight: bold;
}
.cat_page_info span {
  color: #666;
}
@media screen and (max-width: 560px) {
  .cat_page_info {
    -webkit-border-radius: 20px;
    border-radius: 20px;
  }
}

.p_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.5%;
}

.p_list li {
  width: 31.66%;
}

.p_list .pic {
  width: 100%;
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 0.15rem;
  border-radius: 0.15rem;
  overflow: hidden;
  transition: all 0.4s ease;
}
.p_list .pic::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_list .pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p_list .tit {
  margin-top: 0.2rem;
  text-align: center;
}
.p_list .tit p {
  font-size: 0.16rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p_list a:hover .pic {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}
.p_list a:hover img {
  width: 104%;
  height: 104%;
}
.p_list a:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .p_list .tit p {
    font-size: 17px;
  }

  .pr_cont {
    padding-bottom: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p_list {
    gap: 40px 4%;
  }
  .p_list li {
    width: 48%;
  }
  .p_list .tit p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .pr_cont {
    padding-bottom: 0.3rem;
  }

  .p_list .pic {
    -webkit-border-radius: 16px;
    border-radius: 16px;
  }
  .p_list .tit p {
    font-size: 15px;
  }
}

/* 定制 */

.custom_made_cont {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.15rem;
}

.cmc_left {
  width: 42.5%;
  background-color: #eef3fb;
  position: relative;
  box-sizing: border-box;
  padding: 0.9rem 1rem 0.8rem 0.6rem;
  border-top-left-radius: 0.15rem;
  border-bottom-left-radius: 0.15rem;
  overflow: hidden;
}

.cmc_left img {
  width: 62%;
  position: absolute;
  bottom: -10%;
  right: -25%;
}

.cmc_right {
  width: 57.5%;
}
.cmc_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.15rem;
}

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

  .cmc_left {
    padding: 0.4rem;
    border-radius: 0.15rem;
    margin-bottom: 0.2rem;
  }
}

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

/* ------------------------------- 产品详情页面 */
.pd_Breadcrumb {
  background-color: #ebf1fe;
}

.pd_section {
  background-color: #ebf1fe;
}

.p_data {
  background: #ffffff;
  box-sizing: border-box;
  padding: 0.25rem 0.35rem 0.45rem 0.22rem;
  border-radius: 0.15rem;
}
.p_data_box {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}

.pGallery {
  flex-shrink: 0;
  width: 46%;
  position: relative;
}

.pGallery_list {
  position: relative;
  width: 100%;
  border-radius: 0.1rem;
  border: 1px solid #c2c3c6;
  box-sizing: border-box;
  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: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

/* -------------------------- */
.pGallery-pagination {
  display: block;
  margin-top: 0.4rem;
  text-align: center;
}
.pGallery-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.pGallery-pagination .swiper-pagination-bullet-active {
  width: 0.19rem;
  border-radius: 5rem;
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .p_data_box {
    flex-wrap: wrap;
    gap: 0 0;
  }
  .pGallery {
    width: 100%;
  }

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

.pTit {
  margin-bottom: 0.2rem;
  color: #004195;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .pTit {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  .pTit {
    margin-bottom: 14px;
    font-size: 17px;
  }
}

.p_info {
  width: 49.5%;
  box-sizing: border-box;
}

.pName {
  padding-bottom: 0.16rem;
  border-bottom: 1px solid var(--i_color);
  margin: 0.12rem 0 0.3rem;
  position: relative;
  font-weight: bold;
  position: relative;
}

.pName::before {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background-color: #d6d6d6;
  position: absolute;
  right: 0;
  bottom: -1px;
}

.pDes {
  position: relative;
}
.pDes article {
}

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

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

.pShare {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2rem;
}
.pShare dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.15rem;
}
.pShare dt a {
  display: block;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 0.1rem;
  position: relative;
}
.pShare dt iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #a9c3e9;
}
.pShare dt a:hover {
  background: #dfe9f7;
}
.pShare dt a:hover iconify-icon {
  color: #2868c8;
}

@media screen and (max-width: 768px) {
  .pShare {
    margin: 20px 0 0;
    width: 100%;
  }
  .pShare dt a {
    width: 30px;
    height: 30px;
  }
  .pShare dt iconify-icon {
    font-size: 18px;
  }
}

/* 产品优势 */
.advantage_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.37rem 3%;
}

.advantage_list li {
  width: 31.33%;
  box-sizing: border-box;
  border-radius: 0.15rem;
  background-color: #fff;
  padding: 0.32rem 0.3rem;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.Serial_number {
  flex-shrink: 0;
  width: 0.72rem;
  position: relative;
  margin-right: 0.19rem;
}
.Serial_number::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.Serial_number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.number02 {
  display: none;
}

.Serial_number b {
  color: #2868c8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.advantage_list li:hover {
  box-shadow: 4px 4px 13px 9px rgba(40, 104, 200, 0.1);
}
.advantage_list li:hover .number01 {
  display: none;
}
.advantage_list li:hover .number02 {
  display: block;
}
.advantage_list li:hover .Serial_number b {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .advantage_list li {
    width: 48.5%;
  }
}
@media screen and (max-width: 768px) {
  .Serial_number {
    width: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .advantage_list li {
    padding: 0.2rem 0.1rem;
    width: 100%;
  }
}

/* 产品详情 */
.description_box {
  display: flex;
  flex-wrap: wrap;
}

.des_left {
  width: 69%;
  background-color: #fff;
  border-radius: 0.15rem;
  box-sizing: border-box;
  padding: 0.33rem 0.48rem 0.82rem 0.48rem;
}

.pContentNav {
  background: #ebf1fe;
  display: flex;
  flex-wrap: nowrap;
  border-radius: 5rem;
}
.pContentNav li {
  position: relative;
}

.pContentNav li p {
  padding: 0.13rem 0.27rem;
  font-size: 0.18rem;
}

.pContentNav .active {
  background: #2868c8;
  color: #fff;
  border-radius: 5rem;
}

@media screen and (max-width: 1200px) {
  .pContentBox {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .des_left {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .pDet .cat_nav {
    display: none;
  }
  .pContentBox {
    width: 100%;
  }

  .pContentNav li p {
    padding: 14px 40px;
  }
}
@media screen and (max-width: 560px) {
  .des_left {
    padding: 0.2rem;
  }
  .pContentNav li p {
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* tags */
.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #c6cbd5;
  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.2rem;
  font-weight: bold;
}
.p_tags a {
  margin-right: 0.3rem;
  padding: 0.08rem 0.1rem;
  font-size: 14px;
  background: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.p_tags a:hover {
  background: var(--i_color);
  color: #fff;
}
@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: 13px;
  }
}

.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;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  position: relative;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: var(--i_color);
}
.p_view_other p {
  font-size: 0.16rem;
}
.p_view_other p b {
  font-size: 0.18rem;
  font-weight: bold;
}

.p_view_other li:hover span {
  background: var(--i_color);
}
.p_view_other li:hover span iconify-icon {
  color: #fff;
}
.p_view_other a:hover p {
  color: var(--i_color);
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .p_view_other span {
    width: 30px;
    height: 30px;
  }
  .p_view_other span iconify-icon {
    font-size: 20px;
  }
  .p_view_other p {
    font-size: 15px;
  }
}
@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 {
    font-size: 14px;
  }
  .p_view_other p b {
    font-size: 17px;
  }
}

/* faq */
.faq_box {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.faq_box > img {
  width: 30%;
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translate(0, -50%);
}

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

.faq_left {
  width: 28%;
}

.faq_right {
  width: 60%;
}

.faq_list {
}
.faq_list li {
  margin-bottom: 0.2rem;
  border-bottom: 2px solid var(--border_color);
}
.faq_q {
  margin-bottom: 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}

.faq_q p {
  width: 85%;
}
.faq_q i {
  margin-left: auto;
}
.faq_q i::before {
  content: "+";
  display: block;
  font-size: 0.3rem;
  color: var(--i_color);
}

.faq_a {
  display: none;
  margin-bottom: 0.2rem;
}
.faq_a span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.faq_a p {
  font-size: 0.17rem;
  color: #333;
  line-height: 0.3rem;
}

.faq_list .curr {
  font-weight: bold;
}

.faq_list .curr i::before {
  content: "－";
  display: block;
  font-size: 0.3rem;
}

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

/* 相关产品 */
.Related_products {
  background-color: #ebf1fe;
}

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

.R_pro_item {
  width: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  border-radius: 0.15rem;
  transition: all 0.4s ease;
}
.R_pro_item::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.R_pro_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.Related_list .swiper-slide p {
  margin-top: 0.25rem;
  transition: all 0.4s ease;
}

.Related_list .swiper-slide:hover .R_pro_item {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}

.Related_list .swiper-slide:hover .R_pro_item img {
  transform: translate(-50%, -50%) scale(1.1);
}

.Related_list .swiper-slide:hover p {
  color: var(--i_color);
}

/* -------------------------- */
.Related-pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
}
.Related-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.Related-pagination .swiper-pagination-bullet-active {
  width: 0.19rem;
  border-radius: 5rem;
  background: var(--i_color);
}
