/*
Theme Name: SanKang
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: #004183;

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

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

/* 通用 */
.f100 {
  font-weight: 100;
}
.fmib {
  font-weight: 450;
}
.f800 {
  font-weight: 800;
}

.btn_Box {
  display: table;
}

.btn_a {
  text-align: center;
  display: block;
  box-sizing: border-box;
  padding: 0.11rem 0.33rem;
  border-radius: 0.06rem;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.4s ease;
}

.btn_a:hover {
  background-color: var(--i_color);
  border-color: var(--i_color);
}

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

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

.btn_Box .btn_z {
  background-color: #e56226;
  border: 1px solid #e56226;
}
.btn_z:hover {
  background-color: transparent;
  color: #e56226;
}

.btn_Box .btn_f {
}
.btn_f:hover {
  background-color: #fff;
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .btn_a {
    padding: 0.05rem 0.15rem;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .btn_a {
    padding: 0.02rem 0.1rem;
    font-size: 0.12rem;
  }
}

/* --- --- */

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

.wrap_header {
  width: 94vw;
  max-width: 1785px;
  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: #fff;
  box-shadow: var(--boxShadow);
  z-index: 2014;
  transition: all 0.4s ease;
}

.TopHeader {
  box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
}

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

.top {
  background: #fff;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* 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 (max-width: 1024px) {
  .logo img {
    max-height: 80%;
  }
}

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

  .i_nav > li {
    position: relative;
  }

  .i_nav > li::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 35%;
    width: 0;
    height: 2px;
    background: var(--i_color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .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 {
    right: initial;
    left: 0;
    width: 100%;
  }

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

  .i_nav .sub-menu {
    display: none;
    position: absolute;
    left: -0.2rem;
    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;
  }

  .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.15rem;
    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 {
    margin-left: 0.8rem;
    gap: 0 0.44rem;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    margin-left: 0.6rem;
    gap: 0 0.3rem;
  }
}

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

  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 8px;
    right: 20px;
    width: 30px;
    height: 30px;
    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: 20px;
  }
  .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: 20px;
  }

  .i_nav > li > a {
    padding: 0 20px;
    font-size: 14px;
    color: #222;
    line-height: 44px;
    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 40px;
    font-size: 13px;
    color: #555;
    line-height: 40px;
    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: 40px;
    height: 40px;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 16px;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;
    background-size: 16px;
  }

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

  .i_nav .sub-menu .sub-menu a {
    padding: 0 60px;
    font-size: 13px;
    color: #888;
    line-height: 36px;
    position: relative;
  }

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

/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}

.nav_menu.on i {
  opacity: 0;
}

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

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

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

.top_r {
  --size: 0.2rem;
}
.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.5rem;
}
@media screen and (max-width: 1024px) {
  .top_r {
    --size: 0.2rem;
  }
  .top_r {
    margin-left: auto;
    gap: 0 20px;
    margin-right: 4px;
  }
}

.top_search_ico {
  position: relative;
  font-size: 0;
  cursor: pointer;
}
.top_search_ico::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -0.25rem;
  width: 1px;
  height: 0.2rem;
  background: #000;
}
.top_search_ico iconify-icon {
  font-size: var(--size);
  color: #222;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_search_ico.on iconify-icon {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .top_search_ico::before {
    display: none;
  }
}

.top_language {
  position: relative;
}
.top_language_btn {
  padding-right: 0.22rem;
  height: var(--header_height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.top_language_btn::before {
  content: "";
  position: absolute;
  top: 48%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #222;
}
.top_language_btn p {
  font-size: 18px;
  color: #222;
}
.top_language_btn.on p {
  color: var(--i_color);
}

.top_language_list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 0.16rem);
  right: 0;
  min-width: 1.6rem;
  background: #fff;
  box-sizing: border-box;
  box-shadow: var(--boxShadow);
  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);
}

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

/* search */
.top_search {
  --search_height: 0.38rem;
}
.top_search {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: calc(var(--header_height) + 0.3rem);
  left: 0;
  width: 100%;
  padding: 0.16rem 0;
  border-top: 1px solid rgb(0 0 0 / 10%);
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}
.top_search.on {
  visibility: visible;
  opacity: 1;
  top: var(--header_height);
  box-shadow: var(--boxShadow);
}
.top_search form {
  width: 80%;
  margin: 0 auto;
  max-width: 5rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
.top_search_ipt {
  width: 100%;
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0 0.12rem;
}
.top_search_btn {
  flex-shrink: 0;
  font-size: 0;
  color: #fff;
  width: calc(var(--search_height) * 1.5);
  height: var(--search_height);
  background: var(--i_color)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23FFF' d='m11.271 11.978l3.872 3.873a.5.5 0 0 0 .708 0a.5.5 0 0 0 0-.708l-3.565-3.564c2.38-2.747 2.267-6.923-.342-9.532c-2.73-2.73-7.17-2.73-9.898 0s-2.728 7.17 0 9.9a6.96 6.96 0 0 0 4.949 2.05a.5.5 0 0 0 0-1a5.96 5.96 0 0 1-4.242-1.757a6.01 6.01 0 0 1 0-8.486a6.004 6.004 0 0 1 8.484 0a6.01 6.01 0 0 1 0 8.486a.5.5 0 0 0 .034.738'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 0.2rem;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .top_search {
    --search_height: 34px;
  }
  .top_search {
    padding: 12px 0;
  }
}
@media screen and (max-width: 560px) {
  .top_search form {
    width: 94%;
  }
}

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

/* ----------- banner */
.i_banner {
}

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

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

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

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

.ib_txt01 h2 {
  width: 50%;
  font-weight: 450;
}

.ib_txt01 h3 {
  width: 40%;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 0.14rem 0 0.14rem 0.13rem;
  background: linear-gradient(90deg, #004183 0%, rgba(0, 65, 131, 0) 100%);
}

@media screen and (max-width: 1024px) {
  .ib_txt01 h2,
  .ib_txt01 h3 {
    width: 70%;
  }
  .ib_txt01 h3 {
    font-size: 0.14rem;
    padding: 0.1rem 0 0.1rem 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .ib_txt01 {
    top: 10%;
  }
  .ib_txt01 h2 {
    font-size: 0.14rem;
  }
  .ib_txt01 h3 {
    width: 100%;
    font-size: 0.1rem;
    margin-top: 0.1rem;
    padding: 0.02rem 0 0.02rem 0.1rem;
  }
  .ib_txt01 .btn_Box {
    margin-top: 0.15rem;
  }
}
@media screen and (max-width: 320px) {
  .ib_txt01 .btn_Box {
    display: none;
  }
}

/* ------------------ footer */
footer {
  background-color: #f4f4f4;
}

.footerTop .wrap {
  padding-top: 0.25rem;
  border-bottom: 1px solid #cdcdcd;
}

.footerTop img {
  width: 100%;
}

.ft_nav {
  display: flex;
  justify-content: flex-end;
  gap: 0 0.5rem;
}

.ft_nav li a {
  font-size: 0.18rem;
  color: #333;
  position: relative;
  transition: all 0.4s ease;
}
.ft_nav li a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.ft_nav li a:hover {
  color: var(--i_color);
}
.ft_nav li a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .footerTop img {
    width: 65%;
  }
  .ft_nav {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .footerTop img {
    width: 40%;
  }
}

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

.f_tit {
  font-weight: 450;
}

.f_contact {
  flex-shrink: 0;
  width: 23%;
}
.f_contact_list {
}
.f_contact_list dt {
  margin-bottom: 0.18rem;
  display: flex;
  gap: 0 0.09rem;
}
.f_contact_list dt,
.f_contact_list a {
  font-size: 0.16rem;
  color: #666;
  transition: all 0.3s ease;
}
.f_contact_list iconify-icon {
  height: max-content;
  font-size: 0.18rem;
  color: var(--i_color);
  margin-top: 3px;
}
.f_contact_list .f_contact_mail iconify-icon {
  font-size: 0.2rem;
}
.f_contact_list a:hover {
  color: var(--i_color);
}

.f_media {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
}
.f_media li {
}
.f_media a {
  display: block;
}
.f_media icon {
  font-size: 0.3rem;
  color: #bebebe;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.f_cont .f_nav:nth-child(2) {
}

.f_cont .f_nav:nth-child(3) {
  width: 16%;
}

.f_cont .f_nav:nth-child(4) {
}

.f_nav {
}
.f_nav ul {
}
.f_nav li {
}
.f_nav li a {
  display: block;
  font-size: 0.18rem;
  line-height: 2.2;
  color: #666;
}
.f_nav li a:hover {
  color: var(--i_color);
}

.f_cr {
  padding: 0.2rem 0;
  background: #015197;
}
.f_cr p,
.f_cr a {
  font-size: 0.16rem;
  color: #fff;
}
.f_cr a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .f_contact {
    width: 100%;
  }
  .f_contact_list a {
    font-size: 16px;
  }
  .f_nav {
    display: none;
  }
}
@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) {
  .slogan h5 {
    font-size: 15px;
    line-height: 1.3;
  }
  .f_tit {
    margin-bottom: 20px;
  }
  .f_contact_list dt,
  .f_contact_list a {
    font-size: 15px;
  }
  .f_media icon {
    font-size: 0.24rem;
  }

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

/* 优势展示 */
.Advantages_Showcase {
  position: absolute;
  left: 50%;
  bottom: -2vw;
  transform: translateX(-50%);
}

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

.Advantages_list li {
  width: 32.31%;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  padding: 0.25rem 0.25rem 0.35rem 0.25rem;
}
.Advantages_list li::before {
  content: "";
  display: block;
  width: 0.06rem;
  height: 0.26rem;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 11%;
}

.Advantages_list img {
  display: block;
  margin-left: auto;
  width: 13.6%;
}

.Advantages_list li:hover {
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
}
.Advantages_list li:hover h6 {
  color: var(--i_color);
}

@media screen and (max-width: 1366px) {
  .Advantages_Showcase {
    bottom: 1vw;
  }
}
@media screen and (max-width: 1200px) {
  .Advantages_Showcase {
    bottom: 6vw;
  }
}
@media screen and (max-width: 1024px) {
  .Advantages_Showcase {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .Advantages_Showcase {
    padding: 0.3rem 0;
  }
  .Advantages_list li {
    width: 100%;
    border: 1px solid #e5e5e5;
  }
  .Advantages_list img {
    width: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .Advantages_list li {
    padding: 0.2rem;
  }
  .Advantages_list li h6 {
    margin-top: 0.1rem;
  }
  .Advantages_list img {
    width: 0.3rem;
  }
}

/* 解决方案 */
.i_Solution {
  padding-top: 2rem;
  background-color: #f4f4f4;
}

.titleBox h2 {
  font-weight: 450;
}
.titleBox i {
  display: block;
  width: 0.7rem;
  height: 3px;
  background-color: var(--i_color);
  margin-bottom: 0.13rem;
}

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

.Solution_item {
  width: 32%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.Solution_item::after {
  content: "";
  display: block;
  width: 100%;
  height: 35%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 65, 131, 0) 0%, #000000 100%);
  transition: all 0.4s ease;
}
.Solution_item::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 102.5%;
}
.Solution_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.Solution_item h6 {
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  z-index: 2;
}

.Solution_txt {
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
}

.Solution_txt span {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.p_more iconify-icon {
  color: #fff;
  font-size: 0.24rem;
}

.Solution_item i {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 65, 131, 0) 0%, #004183 90%);
  transition: all 0.4s ease;
  opacity: 0;
}

.Solution_item:hover::after {
  height: 0;
  opacity: 0;
}
.Solution_item:hover h6 {
  bottom: 0;
  opacity: 0;
}
.Solution_item:hover i {
  height: 100%;
  opacity: 1;
}
.Solution_item:hover .Solution_txt {
  bottom: 4%;
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .i_Solution {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .i_Solution {
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_Solution {
    padding-top: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .is_list {
    gap: 0.15rem 2%;
  }
  .Solution_item {
    width: 49%;
  }
  .Solution_item::before {
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 560px) {
  .i_Solution {
    padding-top: 0.4rem;
  }
  .is_list {
    gap: 0.1rem 2%;
  }
  .Solution_item h6 {
    font-size: 0.12rem;
  }
}

/* 特色产品 */

.fp_list {
  width: 100%;
  display: grid;
  grid-template-columns: 1.31fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.fp_list li:nth-child(1) {
  grid-row: 1 / 3;
}

.fp_list li {
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
}

.fp_list a {
  width: 100%;
  background-color: #f4f4f4;
  display: block;
  position: relative;
}

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

.fp_name {
  width: 100%;
  box-sizing: border-box;
  padding: 0 0.3rem;
  transition: all 0.4s ease;
}

.fp_text {
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
}

.fp_text span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.fp_list i {
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 65, 131, 0) 0%,
    rgba(0, 65, 131, 0.15) 30%,
    #004183 100%
  );
  z-index: 2;
  transition: all 0.4s ease;
  opacity: 0;
}

.fp_list li:hover .fp_name {
  opacity: 0;
}
.fp_list li:hover .fp_text {
  opacity: 1;
  bottom: 2%;
}
.fp_list li:hover i {
  opacity: 1;
  height: 80%;
}

@media screen and (min-width: 1025px) {
  .fp_list li:nth-child(1) a {
    padding-bottom: 0.32rem;
  }
  .fp_list li:nth-child(1) .fp_img {
    margin-top: 0.53rem;
  }
  .fp_list li:nth-child(1) .fp_name {
    margin-top: 0.6rem;
  }

  .fp_list li:not(:first-child) .fp_img {
    width: 68.4%;
  }
  .fp_list li:not(:first-child) a {
    height: 100%;
  }
  .fp_list li:not(:first-child) .fp_text {
    bottom: 4%;
  }
}

@media screen and (max-width: 1024px) {
  .fp_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 2%;
  }
  .fp_list li {
    width: 49%;
  }
  .fp_list a {
    padding-bottom: 0.2rem;
  }
  .fp_name {
    padding: 0 0.2rem;
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .fp_list {
    gap: 0.05rem 2%;
  }
  .fp_list a {
    padding-bottom: 0.1rem;
  }
  .fp_name {
    font-size: 0.12rem;
    padding: 0 0.1rem;
  }
  .fp_text .p_more {
    margin-top: 0.05rem;
  }
}

/* 关于公司 */
.About_Company {
  background: linear-gradient(180deg, #ebf1f9 0%, rgba(235, 241, 249, 0) 100%);
  overflow: hidden;
}

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

.acb_left {
  width: 38.5%;
  height: max-content;
  position: relative;
}

.acb_left::before {
  content: "";
  display: block;
  width: 14%;
  height: 3px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.acb_right {
  width: 56.62%;
}

@media screen and (max-width: 1024px) {
  .acb_left {
    padding-bottom: 0.1rem;
  }
  .acb_left,
  .acb_right {
    width: 100%;
  }
}

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

.v_btn {
  width: 0.68rem;
  height: 0.68rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgb(0, 65, 131, 0.6);
  cursor: pointer;
}
.v_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgb(0, 65, 131, 0.3);
  box-sizing: border-box;
  animation: pulseAnimation 3s infinite;
  z-index: -1;
}
@keyframes pulseAnimation {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 136%;
    height: 136%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

.v_btn iconify-icon {
  font-size: 0.26rem;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .v_btn {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .v_btn {
    width: 0.4rem;
    height: 0.4rem;
  }
  .v_btn iconify-icon {
    font-size: 0.18rem;
  }
}

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

.ac_list li {
  width: 30%;
  box-sizing: border-box;
  border-top: 3px solid #666;
}

.ac_list p {
  margin-top: 0.15rem;
}

.ac_list li:hover {
  border-color: var(--i_color);
}
.ac_list li:hover h6,
.ac_list li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 768px) {
  .ac_list li {
    width: 48%;
  }
}
@media screen and (max-width: 560px) {
  .ac_list {
    gap: 0.2rem 0;
  }
  .ac_list li {
    width: 100%;
    border-top: 1px solid #e1e1e1;
  }
}

/* 选择我们 */
.Choose_us {
  background-color: #f4f4f4;
}

.Certificate {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.57rem 0.24rem 0.87rem 0.68rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.Certificate_left {
  width: 32%;
}

.Certificate_left p {
  margin-top: 0.15rem;
}

.Certificate_right {
  width: 58.03%;
  position: relative;
}

.Cr_Carousel {
  width: 82.03%;
}

.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;
  cursor: pointer;
  background-color: #f4f4f4;
}
.Certificate_list .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 65, 131, 0) 0%,
    rgba(0, 65, 131, 0.1) 25%,
    rgba(0, 65, 131, 0.9) 98%
  );
  transition: all 0.4s ease;
  opacity: 0;
}
.Certificate_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 141%;
}
.Certificate_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

.Certificate_list .swiper-slide:hover::after {
  height: 30%;
  opacity: 1;
}
.Certificate_list .swiper-slide:hover p {
  opacity: 1;
  bottom: 4%;
}

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

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

@media screen and (max-width: 1024px) {
  .Certificate {
    padding: 0.4rem 0.3rem;
  }
  .Certificate_left,
  .Certificate_right,
  .Cr_Carousel {
    width: 100%;
  }
  .Certificate-prev,
  .Certificate-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .Certificate {
    padding: 0.3rem 0.2rem;
  }
}

/* 能力 */
.ability {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  overflow: hidden;
}

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

.ability_left h6 {
  position: absolute;
  left: 50%;
  top: 7.5%;
  transform: translateX(-50%);
}

.Promotional_data {
  width: 82.2%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}

.Promotional_data img {
  width: 0.36rem;
}

.ability_right {
  width: 49.24%;
  position: relative;
  background-color: #fff;
}

.ability_right h6 {
  position: absolute;
  left: 50%;
  top: 7.5%;
  transform: translateX(-50%);
}

.customize {
  width: 59.06%;
  box-sizing: border-box;
}

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

/* -------------------------- */
.customize-pagination {
  display: block;
  text-align: center;
  margin-top: 0.1rem;
}
.customize-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 6px;
  background: rgb(0, 65, 131, 0.5);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.customize-pagination .swiper-pagination-bullet-active {
  background: transparent;
  border: 1px solid var(--i_color);
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
  .ability_left h6,
  .ability_right h6 {
    top: 4%;
  }
}

@media screen and (max-width: 1024px) {
  .ability {
    gap: 0.2rem 0;
  }
  .ability_left,
  .ability_right {
    width: 100%;
  }
  .customize {
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .Promotional_data {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  .ability_left h6,
  .ability_right h6 {
    width: 90%;
    text-align: center;
  }
  .Promotional_data img {
    width: 0.25rem;
  }
  .Promotional_data span {
    font-size: 0.16rem;
  }
  .Promotional_data h5 {
    font-size: 0.12rem;
  }

  .customize {
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
  }
}

/* 交付 */
.deliver {
  box-sizing: border-box;
  background-color: #fff;
  padding: 0.24rem 0.18rem 0.26rem 0.68rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  justify-content: space-between;
}

.deliver_left {
  width: 25%;
}

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

@media screen and (max-width: 1024px) {
  .deliver {
    padding: 0.4rem 0.3rem;
  }
  .deliver_left,
  .deliver_right {
    width: 100%;
  }
}

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

/* 质量保障 */
.Quality_Assurance {
  background: url(https://lingjuimg.com/wp-content/uploads/sankang/2026/01/Quality_Assurance.webp)
    no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.Quality_Assurance h6 {
  width: 51%;
  margin-top: 0.14rem;
}

.qa_btns {
  gap: 0.2rem 0.26rem;
}

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

/* 主页新闻 */
.Hn_content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.hn_left {
  width: 50%;
  box-sizing: border-box;
}

.hn_left a {
  display: block;
  position: relative;
  overflow: hidden;
}
.hn_left a::after {
  content: "";
  display: block;
  width: 100%;
  height: 32%;
  background: linear-gradient(180deg, rgba(0, 65, 131, 0) 0%, #004183 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.hn_left a::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 75.3%;
}

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

.hn_left_text {
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  z-index: 2;
}

.hn_left_text span {
  opacity: 0.8;
}

.hn_left_text p {
  width: 80%;
}

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

.hn_right {
  width: 50%;
  box-sizing: border-box;
  background-color: #f4f4f4;
  padding: 0.4rem 0.26rem 0.4rem 0.56rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem 0;
}

.hnr_item a {
  display: block;
  box-sizing: border-box;
  border-bottom: 1px solid #cdcdcd;
}

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

.hnr_item_txt p {
  width: 78%;
  transition: all 0.4s ease;
}

.hnr_item_txt iconify-icon {
  font-size: 0.3rem;
  color: #666;
  transition: all 0.4s ease;
}

.hnr_item:hover p,
.hnr_item:hover iconify-icon {
  color: var(--i_color);
}

@media screen and (max-width: 1366px) {
  .hn_right {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .hnr_item_txt {
    margin-top: 0.05rem;
  }
  .hnr_item_txt p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .hn_left,
  .hn_right {
    width: 100%;
  }
  .hn_left_text p {
    width: 100%;
  }
  .hn_right {
    gap: 0.2rem 0;
  }
  .hnr_item a {
    padding-bottom: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .hn_right {
    padding: 0.3rem 0.2rem;
  }
  .hn_left_text p {
    font-size: 0.13rem;
  }
  .hnr_item_txt p {
    width: 85%;
    font-size: 0.12rem;
  }
}

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

.banner_page h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #333;
}
.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;
  }
}

/* ****  **** */

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

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

.pb_left {
  flex-shrink: 0;
  width: 28.39%;
}

.cat_nav {
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  padding: 0.3rem 0.2rem 0.6rem 0.27rem;
}

.cat_nav_tit {
  margin-bottom: 0.2rem;
  position: relative;
}
.cat_nav_tit h4 {
  font-size: 0.3rem;
  color: #333;
  font-weight: 450;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  position: relative;
}
.cat_nav_list li {
  position: relative;
  border-bottom: 1px solid #ddd;
}

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  border-radius: 6px;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.cat_fold_tit a {
  padding: 0.2rem 0;
  width: 100%;
  font-size: 0.18rem;
  font-weight: 450;
}
.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.19rem 0;
}
.cat_fold_sub dt {
  box-sizing: border-box;
  border-radius: 6px;
}
.cat_fold_sub a {
  display: block;
  padding: 0.1rem 0.1rem;
  font-size: 0.16rem;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub dt:hover,
.cat_fold_sub dt.active {
  background: #f4f4f4;
}
.cat_fold_sub dt:hover a,
.cat_fold_sub dt.active a {
  color: var(--i_color);
}

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

  .cat_nav_list {
    display: none;
    box-sizing: border-box;
    padding: 30px 30px;
  }
  .cat_nav_list li {
    border-top: none;
    border-bottom: 1px solid rgb(0 88 167 / 10%);
    background: #fff;
  }
  .cat_nav_list li.active {
    border-color: rgb(0 88 167 / 10%);
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub a {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .cat_nav_tit {
    padding: 12px 20px;
  }
  .cat_nav_tit h4 {
    font-size: 18px;
  }
  .cat_nav_tit iconify-icon {
    font-size: 22px;
  }

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

  .cat_nav_list {
    padding: 0.3rem 0.2rem;
  }

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

.product_connect {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--i_color);
  padding: 0.36rem 0.3rem 0.47rem 0.3rem;
}

.product_connect h6 {
  margin-top: 0.07rem;
  color: rgba(255, 255, 255, 0.8);
}

.pc_mail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.13rem;
}

.pcm_icon {
  width: 0.3rem;
  height: 0.3rem;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 50%;
}

.pcm_icon iconify-icon {
  color: #fff;
  font-size: 0.16rem;
}

.pcm_info {
}

.pcm_info a {
  font-size: 0.18rem;
  color: #fff;
}

@media screen and (max-width: 560px) {
  .product_connect {
    padding: 0.3rem 0.2rem;
  }
  .pcm_info a {
    font-size: 0.16rem;
  }
}

/* 产品列表 */
.pb_right {
  width: 69%;
  box-sizing: border-box;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.39rem 3%;
}

.pl_item {
  width: 31.33%;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.pl_item a {
  display: block;
  box-sizing: border-box;
  background-color: #fff;
}

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

.pl_info {
  box-sizing: border-box;
  padding: 0 0.15rem 0.17rem 0.21rem;
}

.pl_info b {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d6d6d6;
  margin: 0.13rem 0;
  transition: all 0.4s ease;
}

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

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

.pl_item:hover {
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
}
.pl_item:hover img {
  transform: scale(1.1);
}
.pl_item:hover h3 {
  color: var(--i_color);
}
.pl_item:hover b {
  background-color: var(--i_color);
}
.pl_item:hover .pl_more {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .pb_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .product_list {
    gap: 0.2rem 3%;
  }
  .pl_item {
    width: 48.5%;
  }
}
@media screen and (max-width: 560px) {
  .pl_info {
    padding: 0 0.1rem 0.1rem 0.1rem;
  }
}

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

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

.is_left {
  width: 46.47%;
  box-sizing: border-box;
}

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

/* -------------------------- */
.Summary-prev,
.Summary-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Summary-prev {
  left: 0;
}
.Summary-next {
  right: 0;
}
.Summary-prev iconify-icon,
.Summary-next iconify-icon {
  font-size: 0.3rem;
  color: #666;
  transition: all 0.3s ease;
}
.Summary_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Summary-prev:hover iconify-icon,
.Summary-next:hover iconify-icon {
  color: var(--i_color);
}

/* -------------------------- */
.Summary-pagination {
  display: block;
  margin-top: 0.17rem;
  text-align: center;
}
.Summary-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 6px;
  background: rgb(0, 65, 131, 0.5);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Summary-pagination .swiper-pagination-bullet-active {
  background: transparent;
  border: 1px solid var(--i_color);
}

.is_right {
  width: 48%;
  box-sizing: border-box;
}

.Summary_info {
  padding-top: 0.18rem;
  padding-bottom: 0.37rem;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}

.Summary_info text {
  display: block;
}

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

.pd_share .f_media {
  margin-left: 0.09rem;
  gap: 0 0.22rem;
}

.pd_btns {
  display: flex;
  gap: 0 0.3rem;
}

@media screen and (max-width: 1024px) {
  .is_left,
  .is_right {
    width: 100%;
  }
  .Summary-prev,
  .Summary-next {
    display: none;
  }
  .is_right {
    margin-top: 0;
  }
}

/* 信息详情 */
.Information_Details .wrap {
  max-width: 1100px;
}

.pr_title {
  width: 100%;
  position: relative;
}
.pr_title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #d6d6d6;
}

.pr_title h3 {
  width: max-content;
  padding: 0.1rem 2%;
  font-weight: 450;
  border-radius: 0.06rem;
  color: #fff;
  background: var(--i_color);
}

.Description_txt h6 {
  margin-bottom: 0.15rem;
}

/* faq */

.fold_list {
  display: flex;
  flex-direction: column;
  gap: 0.24rem 0;
}
.fold_list li {
  position: relative;
}

.fold_list .tit {
  padding: 0.2rem 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.14rem;
  align-items: center;
  position: relative;
  cursor: pointer;
  background-color: #f4f4f4;
}

.fold_list .tit span {
  display: block;
  margin-left: auto;
  width: 0.25rem;
  height: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fold_list .tit span::before {
  content: "+";
  display: block;
  color: #333;
  font-size: 0.26rem;
  transition: all 0.3s ease;
}

.fold_list .qa {
  flex-shrink: 0;
  display: block;
  width: 0.33rem;
  height: 0.36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  color: var(--i_color);
  background: #fff;
}
.fold_list .tit .qa {
  background: var(--i_color);
  color: #fff;
}

.fold_list .tit p {
}

.fold_list .tit.active .qa {
  background: #fff;
  color: var(--i_color);
}
.fold_list .tit.active {
  background: var(--i_color);
}
.fold_list .tit.active span::before {
  content: "—";
  color: #fff;
  font-size: 0.16rem;
}
.fold_list .tit.active p {
  color: #fff;
}

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

@media screen and (max-width: 768px) {
  .fold_list .qa {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .fold_list .tit {
    padding: 0.14rem 0.2rem;
  }
  .fold_list .qa {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 14px;
  }
}

/* 操作 */

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

.p_tags {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.08rem 0;
}
.p_tags > p {
  margin-right: 9px;
  font-size: 0.18rem;
  font-weight: 450;
  color: #fff;
}
.p_tags a {
  padding: 8px 16px;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  background: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.p_tags a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 768px) {
  .p_tags > p {
    font-size: 15px;
  }
  .p_tags a {
    font-size: 13px;
  }
}

.p_view_other {
  padding-top: 0.2rem;
  border-top: 1px solid #33679c;
  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 i {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  box-sizing: border-box;
  position: relative;
}
.p_view_other iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.p_view_other a {
  font-size: 0.16rem;
  color: #fff;
}
.p_view_other a b {
  font-weight: 450;
}
.p_view_other .next {
  text-align: right;
}
.p_view_other li:hover i {
  background: var(--i_color);
}
.p_view_other li:hover iconify-icon {
  color: #fff;
}
.p_view_other a:hover {
  text-decoration: underline;
}

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

/* 获取价格 */
.Get_Price {
  background: linear-gradient(0deg, #ebf1f9 0%, rgba(235, 241, 249, 0) 100%);
}

.gp_form {
}

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

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

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

#wpforms-140 .wpforms-field-container .wpforms-field > input,
#wpforms-140 .wpforms-field-container textarea {
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
}
#wpforms-140 .wpforms-form label.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
}

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

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

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

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

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

/* 相关产品 */
.Related_products .titleBox a {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  color: var(--i_color);
  font-size: 0.16rem;
  position: relative;
}
.Related_products .titleBox a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  position: absolute;
  bottom: -1px;
  right: 0;
  transition: all 0.4s;
}
.Related_products .titleBox a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.rp_box {
}

.Related_list {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0.1rem 0.1rem 0 0.1rem;
}
.Related_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Related_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
}

/* -------------------------- */
.Related-pagination {
  display: block;
  text-align: center;
}
.Related-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 6px;
  background: rgb(0, 65, 131, 0.5);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.Related-pagination .swiper-pagination-bullet-active {
  background: transparent;
  border: 1px solid var(--i_color);
}

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

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

/* 公司宣传 */
.Company_promotion {
  background-color: #f4f4f4;
}

.Company_promotion .wrap {
  gap: 0.3rem 0;
}

.promotion_left {
  width: 33%;
}

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

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

/* 证书认证 */
.Authentication_Carousel {
  width: 94vw;
  max-width: 1463px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.Authentication_list {
  position: relative;
  overflow: hidden;
}
.Authentication_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.Authentication_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  background-color: #f4f4f4;
}

.Authentication_list .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 65, 131, 0) 0%,
    rgba(0, 65, 131, 0.1) 25%,
    rgba(0, 65, 131, 0.9) 98%
  );
  transition: all 0.4s ease;
  opacity: 0;
}
.Authentication_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 141%;
}
.Authentication_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

.Authentication_list .swiper-slide:hover::after {
  height: 30%;
  opacity: 1;
}
.Authentication_list .swiper-slide:hover p {
  opacity: 1;
  bottom: 4%;
}

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

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

@media screen and (max-width: 1440px) {
  .Authentication-prev,
  .Authentication-next {
    background-color: rgb(0, 0, 0, 0.5);
  }
  .Authentication-prev {
    left: 0;
  }
  .Authentication-next {
    right: 0;
  }
  .Authentication-prev iconify-icon,
  .Authentication-next iconify-icon {
    color: #fff;
  }
}

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

/* 我们的承诺 */
.Our_Commitment {
  background: linear-gradient(180deg, #ebf1f9 0%, rgba(235, 241, 249, 0) 100%);
}

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

.Commitment_content li {
  width: 32%;
  box-sizing: border-box;
  border-top: 1px solid #cbced3;
  border-bottom: 1px solid #cbced3;
  position: relative;
  transition: all 0.3s ease;
}
.Commitment_box {
  box-sizing: border-box;
  padding-right: 0.3rem;
  border-right: 1px solid #cbced3;
}

.Commitment_box h2 {
  margin-bottom: 0.16rem;
}

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

.Commitment_content li:hover {
  border-color: var(--i_color);
}
.Commitment_content li:hover h2 {
  color: var(--i_color);
}

.Commitment_content li:last-child .Commitment_box {
  border-right: none;
}

@media screen and (max-width: 1024px) {
  .Commitment_content li {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  .Commitment_box {
    padding-right: 0;
    border: none;
  }
}
@media screen and (max-width: 560px) {
  .Commitment_box h2 {
    margin-bottom: 0.02rem;
  }
}

/* 合作原因 */
.Reasons_cooperation {
  background: url(https://lingjuimg.com/wp-content/uploads/sankang/2026/01/Reasons_cooperationBa.webp)
    no-repeat center;
  background-size: cover;
}

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

.Reasons_left {
  width: 40.6%;
}

.Reasons_right {
  width: 54.85%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}

.Reasons_right li {
  box-sizing: border-box;
  padding: 0.19rem 0.18rem 0.17rem 0.26rem;
  gap: 0.1rem 0;
}

.Reasons_icon {
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  background-color: #f4f4f4;
}

.Reasons_icon img {
  width: 0.5rem;
}

.Reasons_txt {
  width: 84%;
}

.Reasons_right li:hover {
  background-color: #fff;
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
}
.Reasons_right li:hover .Reasons_icon {
  background-color: var(--i_color);
}
.Reasons_right li:hover .Reasons_icon img {
  filter: brightness(0) invert(1);
}
.Reasons_right li:hover h3 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .Reasons_left,
  .Reasons_right {
    width: 100%;
  }
  .Reasons_right li {
    background-color: #fff;
    box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
    padding: 0.3rem 0.2rem;
  }
  .Reasons_icon {
    width: 0.5rem;
    height: 0.5rem;
  }
  .Reasons_icon img {
    width: 0.3rem;
  }
  .Reasons_txt {
    width: 92%;
  }
}

@media screen and (max-width: 560px) {
  .Reasons_right {
    gap: 0.2rem 0;
  }
  .Reasons_icon {
    width: 0.4rem;
    height: 0.4rem;
  }
  .Reasons_icon img {
    width: 0.2rem;
  }
  .Reasons_txt {
    width: 100%;
  }
}

/* 生态系统 */
.ecosystem {
}

.ecosystem_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  border-bottom: 2px solid var(--i_color);
}

.et_left {
  width: 42%;
}

.et_right {
  width: 52%;
  margin-top: 0.17rem;
}

@media screen and (max-width: 1024px) {
  .et_left,
  .et_right {
    width: 100%;
  }
  .et_right {
    margin-top: 0;
  }
}
@media screen and (max-width: 560px) {
  .ecosystem_top {
    gap: 0.1rem 0;
    padding-bottom: 0.2rem;
  }
}

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

.ecosystem_list li {
  width: 49%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.ecosystem_list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 34%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 65, 131, 0) 0%,
    rgba(0, 65, 131, 0.105) 30%,
    rgba(0, 65, 131, 0.7) 100%
  );
  z-index: 2;
}
.ecosystem_list li::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 55%;
}
.ecosystem_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.ecosystem_list li i {
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 65, 131, 0) 0%, #000000 100%);
  z-index: 2;
}

.ecosystem_list h6 {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 3;
  box-sizing: border-box;
  padding: 0 0.32rem 0.23rem 0.32rem;
}

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

@media screen and (max-width: 768px) {
  .ecosystem_list {
    gap: 0.15rem 2%;
  }
  .ecosystem_list h6 {
    font-size: 0.14rem;
    padding: 0 0.16rem 0.1rem 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .ecosystem_list li {
    width: 100%;
  }
}

/* 您的成功 */
.Your_success {
  background-color: #f4f4f4;
}

.serAdv_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 2%;
}
.serAdv_list dt {
  width: 32%;
  background: #fff;
  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: 75.5%;
}
.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 #d6d6d6;
  font-size: 0.2rem;
  color: #333;
  font-weight: 450;
  transition: all 0.4s ease;
}
.serAdv_list .text span {
  font-size: 0.16rem;
  line-height: 1.6;
  color: #666;
}

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

.serAdv_list dt:hover .coverPic img {
  transform: scale(1.1);
}
.serAdv_list dt:hover 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;
  }
}

/* 防护需求 */
.protection_needs {
  background: url(static/imgs/protection_needsBa.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

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

.needs_left {
  width: 44%;
}

.needs_right {
  margin-top: 0.15rem;
}

@media screen and (max-width: 1024px) {
  .needs_left {
    width: 100%;
  }
  .needs_right {
    margin-top: 0;
  }
}
@media screen and (max-width: 560px) {
  .needs_right .btn_Box:nth-child(2) {
    margin-top: 0.15rem;
  }
}

/* ---------------------------  解决方案页面 */
.solutions_text {
  background-color: #f4f4f4;
}

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

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

.st_info {
  width: 43.61%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 0 0.97rem 0 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st_info .btn_Box {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .st_info {
    padding: 0 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .st_pic,
  .st_info {
    width: 100%;
  }
  .st_info {
    order: -1;
    padding: 0.3rem 0.2rem;
  }
}

/* 信任基础 */
.Trust_Foundation {
  background: linear-gradient(0deg, rgba(235, 241, 249, 0) 0%, #ebf1f9 100%);
}

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

.Trust_list li {
  width: 32%;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
  padding: 0.29rem 0.6rem 0.4rem 0.3rem;
  position: relative;
}
.Trust_list li::before {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: var(--i_color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.Trust_list img {
  width: 0.9rem;
  transition: all 0.4s ease;
}

.Trust_list p {
  margin-top: 0.15rem;
}

.Trust_list li:hover {
  box-shadow: none;
}
.Trust_list li:hover::before {
  width: 100%;
}
.Trust_list li:hover img {
  transform: scaleX(-1);
}

@media screen and (max-width: 1200px) {
  .Trust_list img {
    width: 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .Trust_list li {
    padding: 0.3rem 0.2rem;
  }
  .Trust_list img {
    width: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .Trust_list li {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .Trust_list {
    gap: 0.2rem 0;
  }
  .Trust_list li {
    width: 100%;
  }
  .Trust_list img {
    width: 0.35rem;
  }
  .Trust_list h3 {
    margin-top: 0.15rem;
  }
}

/* 推荐方案 */
.Recommended_solution {
  background: url(https://lingjuimg.com/wp-content/uploads/sankang/2026/01/Recommended_solution.webp)
    no-repeat center;
  background-size: cover;
}

/* ---------------------------  解决方案详情页面 */

/* 解决方案详情banner */
.solution_details_banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.solution_details_banner::before {
  content: "";
  display: block;
  padding-bottom: 39.185%;
}
/* .solution_details_banner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 78.32%;
  height: 100%;
  background: linear-gradient(to left, transparent, var(--i_color));
} */
.solution_details_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.solution_details_banner i {
  width: 21.64%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--i_color);
}
.solution_details_banner i::before {
  content: "";
  display: block;
  width: 260.52%;
  height: 100%;
  position: absolute;
  left: 100%;
  bottom: 0;
  background: linear-gradient(
    90deg,
    #004183 0%,
    rgba(0, 65, 131, 0.63) 32%,
    rgba(0, 65, 131, 0) 88%
  );
}

.sdb_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sdb_text h2,
.sdb_text h3 {
  width: 38%;
}

@media screen and (max-width: 1024px) {
  .sdb_text h2,
  .sdb_text h3 {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .sdb_text h2 {
    font-size: 0.14rem;
  }
  .sdb_text h3 {
    font-size: 0.12rem;
    margin-top: 0.1rem;
  }
  .sdb_text .btn_Box {
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .solution_details_banner i::before {
    width: 360%;
  }
  .sdb_text h2,
  .sdb_text h3 {
    width: 100%;
  }
  .sdb_text .btn_Box {
    display: none;
  }
}

/* 面临挑战 */
.Facing_challenges {
}

.challenges_list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.challenges_list li {
  width: 33.33%;
  box-sizing: border-box;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  border-right: 1px solid #d6d6d6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.challenges_icon {
  width: 0.98rem;
  height: 0.98rem;
  background-color: #f4f4f4;
  border-radius: 50%;
}
.challenges_icon img {
  width: 0.5rem;
  transition: all 0.4s ease;
}

.challenges_list li:hover img {
  transform: scaleX(-1);
}

.challenges_list li:last-child {
  border-right: none;
}

@media screen and (max-width: 1024px) {
  .challenges_icon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .challenges_icon img {
    width: 0.3rem;
  }
  .challenges_list h4 {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 768px) {
  .challenges_list {
    border: none;
    gap: 0.2rem 0;
  }
  .challenges_list li {
    width: 100%;
    border: 1px solid #d6d6d6 !important;
  }
}
@media screen and (max-width: 560px) {
  .challenges_list h4 {
    font-size: 0.15rem;
  }
}

/* 生产力 */
.prolificacy {
  background: linear-gradient(0deg, rgba(235, 241, 249, 0.06) 0%, #ebf1f9 100%);
}

.prolificacy_list {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.35rem 0.87rem 0.65rem 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 0.39rem 0;
}

.prolificacy_list li {
  box-sizing: border-box;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  align-items: center;
  gap: 0.2rem 0.33rem;
}

.prolificacy_icon {
  flex-shrink: 0;
  width: 0.98rem;
  height: 0.98rem;
  background-color: #f4f4f4;
  border-radius: 50%;
}
.prolificacy_icon img {
  width: 0.6rem;
  transition: all 0.4s ease;
}

.prolificacy_list li:hover {
  border-color: var(--i_color);
}
.prolificacy_list li:hover img {
  transform: scaleX(-1);
}
.prolificacy_list li:hover h4 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .prolificacy_list {
    gap: 0.2rem 0;
    padding: 0.3rem 0.2rem;
  }
  .prolificacy_list li {
    gap: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .prolificacy_icon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .prolificacy_icon img {
    width: 0.3rem;
  }
}
@media screen and (max-width: 560px) {
  .prolificacy_icon {
    width: 0.4rem;
    height: 0.4rem;
  }
  .prolificacy_icon img {
    width: 0.2rem;
  }
  .prolificacy_txt h4 {
    font-size: 0.14rem;
  }
  .prolificacy_txt p {
    font-size: 0.12rem;
    margin-top: 0.05rem;
  }
}

/* 工作原理 */
.Working_principle {
  background-color: #f4f4f4;
}

.principle_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.principle_list li {
  width: 25%;
  box-sizing: border-box;
  border-bottom: 1px dashed #a6a6a6;
  position: relative;
}
.principle_list li::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 0.19rem;
  height: 0.19rem;
  border-radius: 50%;
  background-color: #f4f4f4;
  border: 2px solid #999;
  position: absolute;
  left: 0;
  bottom: -0.095rem;
  transition: all 0.4s ease;
}

.principle_list h3,
.principle_list p {
  width: 80%;
}

.principle_list li:hover {
  border-color: var(--i_color);
}
.principle_list li:hover::before {
  background-color: var(--i_color);
  border-color: var(--i_color);
}
.principle_list li:hover span {
  color: var(--i_color);
}
.principle_list li:hover h3 {
  color: #333;
}

@media screen and (max-width: 1024px) {
  .principle_list {
    gap: 0.3rem 2%;
  }
  .principle_list li {
    width: 49%;
  }
  .principle_list li::before {
    display: none;
  }
  .principle_list h3,
  .principle_list p {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .principle_list {
    gap: 0.1rem 2%;
  }
  .principle_list li {
    width: 100%;
    padding-bottom: 0.1rem;
  }
  .principle_list h3 {
    font-size: 0.14rem;
    color: #333;
  }
  .principle_list p {
    font-size: 0.12rem;
  }
}

/* 编辑器 */
.editorBox {
  background: linear-gradient(
    180deg,
    rgba(235, 241, 249, 0.06) 0%,
    #ebf1f9 100%
  );
}

/* 精选产品 */
.Selected_list {
  gap: 0.3rem 2%;
}
.Selected_list .pl_item {
  width: 23.5%;
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
}

@media screen and (max-width: 1024px) {
  .Selected_list .pl_item {
    width: 49%;
  }
}
@media screen and (max-width: 560px) {
  .Selected_list {
    gap: 0.1rem 2%;
  }
}

/* 呼吸安全 */
.Respiratory_safety {
  background: url(https://lingjuimg.com/wp-content/uploads/sankang/2026/01/Respiratory_safety.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

/* ---------------------------  目录页面 */
.catalog_content .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.catalog_left {
  width: 28.39%;
}

.catalog_left .cat_nav {
  background-color: #f4f4f4;
}

.catalog_left .cat_fold_tit a {
  font-size: 0.16rem;
}

.catalog_right {
  width: 68.85%;
  box-sizing: border-box;
}

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

  .catalog_left .cat_fold_sub {
    padding: 0.19rem 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .catalog_left .cat_fold_tit a {
    font-size: 0.14rem;
  }
}

/* 目录列表 */
.downloads_right_ul {
  display: flex;
  gap: 0.24rem;
  flex-wrap: wrap;
}
.downloads_right_ul li {
  width: 100%;
}
.downloads_right_ul li a {
  display: block;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(51, 51, 51, 0.2);
  align-items: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.downloads_right_ul li a h4 {
  width: calc(100% - 1.3rem);
  font-size: 0.16rem;
  color: #333;
  box-sizing: border-box;
  padding: 0.2rem 2%;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.downlaod_i {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.3rem;
  background-color: #f0f0f0;
  box-sizing: border-box;
  padding: 0.15rem 0.1rem;
  transition: all 0.3s ease;
}
.downlaod_i iconify-icon {
  color: #666;
  font-size: 0.3rem;
  transition: all 0.3s ease;
}
.downlaod_i p {
  font-size: 0.16rem;
  color: #333;
  margin-top: 0.05rem;
  transition: all 0.3s ease;
}
.downloads_right_ul li a:hover {
  border: 1px solid #fff;
  background-color: #f4f4f4;
}
.downloads_right_ul li a:hover h4 {
  color: var(--i_color);
}
.downloads_right_ul li a:hover i {
  background-color: var(--i_color);
  border-radius: 0px 4px 4px 0px;
}
.downloads_right_ul li a:hover i iconify-icon {
  color: #fff;
}
.downloads_right_ul li a:hover i p {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .downloads_right_ul li a h4 {
    font-size: 0.16rem;
  }
  .downlaod_i p {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 1024px) {
  .catalog_right {
    width: 100%;
  }
  .downloads_right {
    width: 100%;
    padding-left: 0%;
    margin-top: 0.4rem;
  }
  .downloads_right_ul {
    gap: 0.2rem;
  }
}

@media screen and (max-width: 767px) {
  .downlaod_i iconify-icon {
    font-size: 0.25rem;
  }
  .downloads_right_ul {
    gap: 0.2rem;
  }
  .downlaod_i {
    width: 1rem;
    padding: 0.1rem 0.05rem;
  }
  .downloads_right_ul li a h4 {
    width: calc(100% - 1rem);
    font-size: 0.14rem;
  }
}

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

/* 新闻切换选项卡 */
.news_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(51, 51, 51, 0.2);
  gap: 0 1.97rem;
}

.news_top p {
}

.nt_options {
  flex-wrap: wrap;
  gap: 0.2rem 0.64rem;
}

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

.news_top .nt_active {
  position: relative;
}

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

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

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

@media screen and (max-width: 1024px) {
  .nt_options {
    justify-content: normal;
  }
  .news_top {
    gap: 0 0.8rem;
  }
  .news_top p {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .nt_options {
    gap: 0.1rem 0.2rem;
  }
  .news_top li {
    padding-bottom: 0.1rem;
    font-size: 0.14rem;
  }
}

/* 新闻列表 */

.news_list {
  display: flex;
  flex-direction: column;
  gap: 0.48rem 0;
}

.news_list li {
  width: 100%;
}

.news_list li a {
  display: block;
  border: 1px solid #d6d6d6;
  padding: 0.29rem 0.58rem 0.31rem 0.27rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem 0;
  transition: all 0.4s ease;
}

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

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

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

.news_list .news_txt {
  width: 75.4%;
  box-sizing: border-box;
}

.news_list .news_txt h3 {
  width: 100%;
  font-size: 0.4rem;
  font-weight: 450;
  color: #999999;
  position: relative;
  transition: all 0.4s ease;
}

.news_list .news_txt h3::before {
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  background-color: rgb(51, 51, 51, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
}

.news_list .news_txt h3 i {
  font-size: 0.16rem;
}

.new_info {
  margin-top: 0.16rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.new_info div {
  width: 88%;
}

.new_info h6 {
  width: 0.3rem;
  height: 0.3rem;
  font-size: 0.24rem;
}

.news_list .news_txt p {
  margin-bottom: 0.06rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.news_list .news_txt span {
  color: #666;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.news_list li:hover a {
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}
.news_list li:hover .news_img img {
  transform: scale(1.1);
}
.news_list li:hover .news_txt h3 {
  color: #333;
}
.news_list li:hover .news_txt h3::before {
  background-color: var(--i_color);
}
.news_list li:hover .news_txt p {
  color: var(--i_color);
}
.news_list li:hover iconify-icon {
  color: var(--i_color);
}

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

  .news_list .news_txt h3 i {
    margin-left: 0;
  }

  .news_list .news_txt icon {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .news_list li a {
    padding: 0.3rem 0.2rem;
  }
  .news_list .news_txt h3 {
    padding-bottom: 0.1rem;
  }
  .new_info {
    margin-top: 0.1rem;
  }
  .news_list .news_txt h3 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .news_list li a {
    padding: 0.2rem;
  }
  .news_list .news_txt p {
    font-size: 0.16rem;
  }
  .news_list .news_txt span {
    font-size: 0.15rem;
  }
  .news_list .news_txt icon {
    font-size: 0.26rem;
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .news_list {
    gap: 0.2rem 0;
  }
  .news_list li a {
    flex-wrap: wrap;
    gap: 0.2rem 0;
  }
  .news_list .news_img {
    width: 35%;
  }
  .news_list .news_txt {
    width: 100%;
  }
}

/* ---------------------------  联系我们页面 */
.contact_form {
  background-color: #f4f4f4;
}

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

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

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

#wpforms-158 .wpforms-field-container .wpforms-field > input,
#wpforms-158 .wpforms-field-container textarea {
  box-shadow: 1px 5px 18px -2px rgba(0, 65, 131, 0.18);
}
#wpforms-158 .wpforms-form label.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
}

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

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

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

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

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

/* 联系方式 */

.c_info_list {
  transform: translateY(50%);
  margin-top: -0.8rem;
  background: url(https://lingjuimg.com/wp-content/uploads/sankang/2026/01/Contact_information.webp)
    no-repeat center;
  background-size: cover;
  padding: 0.5rem 0.6rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  position: relative;
  z-index: 10;
}
.c_info_list li {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c_info_list .ico {
  width: 0.8rem;
  height: 0.8rem;
  font-size: 0.3rem;
  background: #fff;
  color: var(--i_color);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.c_info_list p {
  font-size: 0.18rem;
  margin: 0.1rem 0;
  color: #fff;
}
.c_info_list a {
  font-size: 0.22rem;
  color: #fff;
}
.c_info_list li,
.c_info_list iconify-icon {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c_info_list li:hover iconify-icon {
  transform: rotateY(180deg);
}
.c_info_list li:hover {
  transform: translateY(-6px);
}
.c_info_list a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1440px) {
  .c_info_list {
    padding: 0.4rem 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .c_info_list {
    padding: 0.3rem 0.4rem;
  }
  .c_info_list a {
    font-size: 0.2rem;
  }
  .c_info_list p {
    font-size: 0.18rem;
  }
  .c_info_list .ico {
    width: 0.6rem;
    height: 0.6rem;
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 560px) {
  .c_info_list {
    padding: 0.2rem;
    transform: translateY(0);
    margin: 0.3rem 0;
  }
  .c_info_list li {
    width: 100%;
  }
  .c_info_list .ico {
    width: 0.4rem;
    height: 0.4rem;
  }
  .c_info_list p {
    font-size: 0.16rem;
  }
  .c_info_list a {
    font-size: 0.14rem;
  }
}
