/*
Theme Name: TianMa
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: #0a3c84;

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

  /* Default Border Color */
  --border_color: rgba(0, 0, 0, 0.1);
  /* txt color */
  --txt_color: #333;

  --boxShadow: 0 2px 10px rgb(0 88 167 / 20%);
}
@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);
  }
}

/* 通用 */
.btnBox {
  display: table;
  cursor: pointer;
}

.btn_a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-radius: 5rem;
  border: 1px solid var(--i_color);
  padding: 0.14rem 0.26rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.btn_a::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(102deg, #00b7ff 4%, #0a3c84 104%);
  transition: all 0.4s;
}

.btn_a p {
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.btn_a iconify-icon {
  font-size: 0.26rem;
  color: #dd7c17;
  margin-left: 0.19rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.btnBox:hover .btn_a {
  border-color: transparent;
}
.btnBox:hover .btn_a::before {
  width: 100%;
}
.btnBox:hover .btn_a p,
.btnBox:hover .btn_a iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .btn_a {
    padding: 0.1rem 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .btn_a {
    padding: 0.05rem 0.1rem;
  }
  .btn_a iconify-icon {
    margin-left: 0.05rem;
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .btn_a {
    padding: 0.02rem 0.1rem;
  }
}

/* --- --- */

.wrap {
  width: 94vw;
  max-width: 1400px;
  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;
  }
}

.wrap2 {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 20251212;
  transition: all 0.4s ease;
}

.header__ {
  box-shadow: var(--boxShadow);
  transition: all 0.4s ease;
}

@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: 75%;
}
@media screen and (max-width: 1200px) {
  .logo img {
    max-height: 50%;
  }
}

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

  .i_nav > li {
    position: relative;
    box-sizing: border-box;
  }
  .i_nav > li::before {
    content: "";
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 100%;
    background-color: var(--i_color);
    clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    font-weight: bold;
    color: #222;
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
    transition: all 0.4s ease;
  }
  .i_nav > li:hover > a {
    color: var(--i_color);
  }

  .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 {
    display: block;
  }
  .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: #fff !important;
  }

  .nav_products .sub-menu {
    display: none !important;
  }

  .i_nav .sub-menu {
    display: none;
    position: fixed;
    left: 0;
    top: var(--header_height);
    width: 100%;
    box-sizing: border-box;
    padding: 0.4rem 0;
    background: #fff;
    border-top: 1px solid rgb(0 0 0 / 10%);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 10px rgb(0 88 167 / 10%);
    font-size: 0;
  }

  .i_nav .sub-menu li {
    display: inline-block;
    margin: 0 0.3rem;
    position: relative;
    text-align: center;
  }
  .i_nav .sub-menu a {
    display: block;
    font-size: 0.16rem;
    color: #555;
    line-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    transition: all 0.4s ease;
  }
  .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;
  }
  .i_nav > li > a {
    font-size: 0.18rem;
  }
  .i_nav .sub-menu a {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    margin-left: 0.6rem;
    gap: 0 0.3rem;
  }
  .i_nav > li > a {
    font-size: 0.17rem;
  }
}

@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: 16px;
    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: 15px;
    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_products {
  display: none;
  position: fixed;
  top: var(--header_height);
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgb(0 0 0 / 10%);
  box-shadow: 0 8px 10px rgb(0 88 167 / 10%);
  z-index: 2014;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}

.nav_menu_products dl {
  padding: 0.5rem 0 0.4rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 3%;
  position: relative;
}
.nav_menu_products dt {
  width: 100%;
}
.nav_menu_products dt > a {
  display: block;
  padding-left: 8px;
  font-size: 18px;
  font-weight: bold;
}
.nav_menu_products ul {
  margin-top: 0.12rem;
  padding-top: 0.12rem;
  border-top: 1px solid #ddd;
}
.nav_menu_products li {
}
.nav_menu_products li a {
  display: block;
  padding: 6px 0 6px 14px;
  font-size: 15px;
  color: #666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.nav_menu_products li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #ccc;
}

.nav_menu_products dt > a:hover {
  color: var(--i_color);
}
.nav_menu_products li a:hover {
  color: var(--i_color);
}
.nav_menu_products li a:hover::before {
  background: rgb(0 88 167 / 50%);
}

@media screen and (max-width: 1440px) {
  .nav_menu_products dt > a {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .nav_menu_products dt > a {
    font-size: 15px;
  }
  .nav_menu_products li a {
    font-size: 14px;
  }
  .nav_menu_products li a::before {
    top: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .nav_menu_products {
    display: none !important;
  }
}

/* 移动端导航按钮 */
.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.24rem;
}
.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 30px;
    margin-right: 14px;
  }
}

.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: #333;
  -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 {
  height: var(--header_height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.top_language_btn iconify-icon {
  font-size: var(--size);
  color: #555;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_language_btn.on iconify-icon {
  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);
}

/* 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 {
  width: 100%;
  position: relative;
}

.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;
  padding-bottom: 38.09%;
}
.i_banner_list .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.i_banner02 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0 0.29rem;
}

.i_banner02_yeas {
  height: max-content;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0px 0px 60px 0px;
  position: relative;
  padding: 0.12rem 0.27rem 0.15rem 0.29rem;
}
.i_banner02_yeas::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 60px 0px;
  background-color: #dd7c17;
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: -1;
}

.i_banner02_yeas p {
  font-size: 0.48rem;
  color: #dd7c17;
}

.i_banner02_yeas h6 {
  color: #dd7c17;
  font-weight: 550;
}

.i_banner02_txt > p {
  width: 55%;
}

@media screen and (max-width: 1024px) {
  .i_banner02_yeas {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .i_banner02_txt > p {
    display: none;
  }
  .i_banner02_txt h2 {
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .i_banner02_txt h2 {
    font-size: 0.16rem;
  }
}

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

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

/* -------------------------- */
.i_banner-pagination {
  display: none;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
}
.i_banner-pagination .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.02rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  cursor: pointer;
}
.i_banner-pagination .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.7);
}

/* footer */
footer {
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/footer_ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.fLeft {
  flex-shrink: 0;
  width: 30.15%;
}
.fLogo img {
  height: 0.83rem;
}
.fLeft > p {
  margin-top: 0.46rem;
  font-size: 0.16rem;
  color: #222;
  line-height: 1.8;
}

.fMedia {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.06rem;
}
.fMedia li {
  transition: all 0.5s ease;
}
.fMedia a {
  display: block;
  width: 0.38rem;
  height: 0.38rem;
  box-sizing: border-box;
  position: relative;
}
.fMedia img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.fMedia li:hover {
  transform: translate(0, -6px);
}

.fTit {
  margin-bottom: 0.26rem;
  font-size: 0.3rem;
  font-weight: bold;
}

.fNav ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
}
.fNav li {
}
.fNav li a {
  display: block;
  font-size: 0.18rem;
  color: #666;
  transition: all 0.4s ease;
  position: relative;
}

.fNav li a::before {
  content: "▶";
  height: 100%;
  display: block;
  font-size: 0.05rem;
  color: #dd7c17;
  position: absolute;
  top: 55%;
  left: -6px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.fNav li a:hover {
  color: #dd7c17;
  text-decoration: underline;
}
.fNav li a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.fNav li a:hover::before {
  opacity: 1;
  left: -13px;
}

.f_contact {
  width: 22%;
}
.f_contact dl {
}
.f_contact dt {
  margin-bottom: 0.16rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.1rem;
}
.f_contact dt:last-child {
  margin-bottom: 0;
}
.f_contact a,
.f_contact p {
  font-size: 0.18rem;
  line-height: 1.5;
  transition: all 0.4s ease;
}
.f_contact iconify-icon {
  font-size: 0.24rem;
  color: #dd7c17;
}
.f_contact a:hover {
  color: #dd7c17;
}

.fCont .fNav:nth-of-type(3) {
  width: 17.5%;
}

.fCont .fNav:nth-of-type(3) a {
  font-size: 0.16rem;
}

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

.f_cr .wrap {
}
.f_cr p,
.f_cr a {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  transition: all 0.4s ease;
}
.f_cr a {
  margin-left: 0.1rem;
}
.f_cr a:hover {
  color: #dd7c17;
}

@media screen and (max-width: 1200px) {
  .f_contact a,
  .f_contact p {
    font-size: 0.16rem;
  }
  .fLeft > p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .f_contact dl {
    flex-wrap: wrap;
    gap: 24px 4%;
  }
  .f_contact dt {
    width: 100%;
  }
  .f_contact i {
    width: 44px;
    height: 44px;
  }
  .f_contact iconify-icon {
    font-size: 22px;
  }

  .fLeft,
  .f_contact {
    width: 100%;
  }
  .fLogo img {
    height: 70px;
  }
  .fNav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .f_contact a,
  .f_contact p {
    font-size: 15px;
  }

  .fMedia a {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 560px) {
  .fTit {
    font-size: 0.22rem;
  }
  .f_contact dl {
    gap: 20px 0;
  }
  .f_contact dt {
    width: 100%;
  }
  .f_contact i {
    width: 20px;
    height: 20px;
    border: none;
  }
  .f_contact iconify-icon {
    font-size: 20px;
  }
  .f_contact h6 {
    font-size: 13px;
  }

  .fLogo img {
    height: 50px;
  }
  .fLeft > p {
    font-size: 14px;
    line-height: 1.5;
  }
  .fMedia {
    gap: 0 0.1rem;
  }
  .fMedia a {
    width: 0.25rem;
    height: 0.25rem;
  }

  .f_cr p,
  .f_cr a {
    font-size: 14px;
  }
}

/* 产品类别 */
.Product_Category {
  background: #fafafa;
}

.Product_Category_top {
  gap: 0.2rem 0;
}

.Product_Category_top .titBox {
  width: 54%;
}

.Product_Category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 3%;
}

.Product_Category_list li {
  width: 48.5%;
  box-sizing: border-box;
}

.Product_Category_list a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0.12rem;
  overflow: hidden;
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/Product_Category_Ba.webp)
    no-repeat center;
  background-size: cover;
  padding: 0.5rem 0.4rem 0.56rem 0.4rem;
  position: relative;
}

.pc_txt {
  width: 59%;
}

.pc_txt h5 {
  transition: all 0.4s ease;
}

.pc_txt h6 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.Product_Category_list a img {
  width: 21%;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 10%;
}

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

  .Product_Category_list {
    gap: 0.25rem 3%;
  }
  .Product_Category_list a {
    padding: 0.2rem;
  }
  .pc_txt {
    width: 100%;
  }
  .pc_txt h6 {
    margin: 0.1rem 0;
  }
  .pc_txt .btnBox {
    display: none;
  }
  .Product_Category_list a img {
    position: relative;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .Product_Category_list li {
    width: 100%;
  }
}

/* 关于公司 */
.About_Company_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.act_left {
  width: 36.22%;
  position: relative;
}

.act_left > img {
  width: 136.3%;
  position: absolute;
  left: -28%;
  top: 29%;
  z-index: -1;
}

.act_left h3 {
  font-size: 1rem;
  font-weight: bold;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #efefef;
  margin-bottom: -10%;
}

.act_left h4 {
  position: relative;
}

.act_left h4 b {
  color: #dd7c17;
}

.act_right {
  width: 62%;
}

.act_right h6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

@media screen and (max-width: 1024px) {
  .act_left,
  .act_right {
    width: 100%;
  }
  .act_left h3 {
    font-size: 0.32rem;
    margin-bottom: 0;
  }
  .act_left > img {
    width: 100%;
    top: 0;
    left: 0;
  }

  .act_right {
    margin-top: 0;
  }
}

/* 公司宣传 */
.Company_promotion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.Company_promotion_left {
  width: 66.5%;
  position: relative;
}
.Company_promotion_left::before {
  content: "";
  display: block;
  padding-bottom: 63%;
}

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

.v_btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.v_btn::before {
  content: "";
  display: block;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.v_btn iconify-icon {
  font-size: 0.24rem;
  color: var(--i_color);
  position: relative;
  z-index: 10;
  transition: all 0.4s;
}

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

.Company_promotion_right {
  width: 30.36%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.4rem 0;
}

.Company_promotion_right li {
  padding-bottom: 0.12rem;
  position: relative;
  text-align: right;
}
.Company_promotion_right li::after {
  content: "";
  display: block;
  width: 41%;
  height: 1px;
  background: var(--i_color);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}
.Company_promotion_right li::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #d6d6d6;
  position: absolute;
  right: 0;
  bottom: 0;
}

.Company_promotion_right li:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Company_promotion_left,
  .Company_promotion_right {
    width: 100%;
  }
  .Company_promotion_right {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.2rem 0;
  }
  .Company_promotion_right li {
    width: 50%;
    text-align: center;
  }
  .Company_promotion_right li::after,
  .Company_promotion_right li::before {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .v_btn {
    width: 0.5rem;
    height: 0.5rem;
  }
  .v_btn iconify-icon {
    font-size: 0.18rem;
  }
}

/* 应用领域 */
.application_box {
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/application_ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.application_list {
  width: 38.36%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.application_list li {
  width: 47.5%;
  height: max-content;
  padding-bottom: 0.08rem;
  border-bottom: 1px solid #d9d9d9;
  transition: all 0.4s ease;
  cursor: pointer;
}

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

.application_list .active,
.application_list li:hover {
  border-color: #dd7c17;
}

.application_list .active p,
.application_list li:hover p {
  color: var(--i_color);
}

/* 应用展示 */
.application_exhibit {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}

.application_exhibit.active {
  display: flex;
  align-items: center;
}

.application_exhibit_left {
  width: 41.36%;
  scrollbar-width: thin;
  scrollbar-color: #888 #eee;
}

.application_advantage {
  display: flex;
  flex-direction: column;
  gap: 0.24rem 0;
}

.application_advantage li {
  display: flex;
  align-items: center;
}
.application_advantage li::before {
  content: "";
  display: block;
  width: 0.16rem;
  height: 3px;
  background-color: #dd7c17;
  margin-right: 0.16rem;
}

.application_exhibit_left .btn_a {
  padding: 0;
  border: none;
}
.application_exhibit_left .btn_a::before {
  display: none;
}
.application_exhibit_left .btn_a:hover p,
.application_exhibit_left .btn_a:hover iconify-icon {
  color: var(--i_color);
}

.application_exhibit_right {
  width: 54.3%;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}

.application_exhibit_right::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 61.9%;
}
.application_exhibit_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) {
  .application_list {
    width: 100%;
  }
  .application_exhibit {
    /* display: flex; */
    margin-top: 0.4rem;
  }
  .application_exhibit_left,
  .application_exhibit_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .application_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .application_advantage {
    gap: 0.15rem 0;
  }
  .application_advantage li::before {
    display: none;
  }
}

/* 公司优势 */
.Company_Advantages {
}

.home_advantage_ul {
  display: flex;
  gap: 0.24rem;
}
.home_advantage_ul li {
  width: 15%;
  flex-grow: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.home_advantage_active::after,
.home_advantage_active::before {
  width: 100% !important;
  opacity: 1 !important;
}

.home_advantage_active {
  flex-grow: 1000 !important;
}
.home_advantage_img {
  position: relative;
}
.home_advantage_img img {
  display: block;
  width: 100%;
  height: 6.1rem;
  object-fit: cover;
}
.home_advantage_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
.home_advantage_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.45rem 4% 0.7rem 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  justify-content: space-between;
}
.home_advantage_area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(240, 240, 240, 1),
    rgba(255, 255, 255, 1),
    rgba(240, 240, 240, 1)
  );
  z-index: -1;
  opacity: 1;
  transition: all 0.8s ease;
}
.home_advantage_area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 1;
  background: linear-gradient(
    to top,
    rgba(240, 240, 240, 1),
    rgba(255, 255, 255, 1),
    rgba(240, 240, 240, 1)
  );
  z-index: -1;
  transition: all 0.8s ease;
}
.home_advantage_area h3 {
  font-family: 600;
  font-size: 0.24rem;
  color: #666;
  box-sizing: border-box;
  padding: 0.6rem 0;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}
.home_advantage_area h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.02rem;
  height: 0.5rem;
  background: rgba(51, 51, 51, 0.3);
  transition: all 0.3s ease;
}
.home_advantage_area h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.02rem;
  height: 0.5rem;
  background: rgba(51, 51, 51, 0.3);
  transition: all 0.3s ease;
}
.home_advantage_area h4 {
  color: #333;
  font-size: 0.2rem;
  line-height: 1.5;
  text-align: center;
  transition: all 0.3s ease;
}
.home_advantage_i {
  display: block;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(313deg, #0a3c84 10%, #00b5fd 86%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.home_advantage_i img {
  width: 0.55rem;
  height: 0.55rem;
  object-fit: contain;
}
.home_advantage_text {
  position: absolute;
  bottom: -2.1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  box-sizing: border-box;
  padding: 0 4% 0.9rem 4%;
  background: linear-gradient(180deg, rgba(10, 60, 132, 0) 0%, #0a3c84 100%);
  transition: all 0.7s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home_advantage_text img {
  width: 0.4rem;
  height: 0.4rem;
}

.home_advantage_text h5 {
  font-weight: bold;
  font-size: 0.28rem;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
}

.home_advantage_active .home_advantage_area h3 {
  color: #fff !important;
  top: 15%;
}
.home_advantage_active .home_advantage_area h3::after,
.home_advantage_active .home_advantage_area h3::before {
  background: rgba(255, 255, 255, 0.3) !important;
}

.home_advantage_active .home_advantage_area::after,
.home_advantage_active .home_advantage_area::before {
  width: 0;
  opacity: 0;
}
.home_advantage_active .home_advantage_area h4,
.home_advantage_active .home_advantage_area i {
  opacity: 0;
}
.home_advantage_active .home_advantage_text {
  bottom: 0 !important;
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .home_advantage_area h4 {
    font-size: 0.26rem;
  }
  .home_advantage_i img {
    width: 0.5rem;
    height: 0.5rem;
  }
  .home_advantage_i {
    width: 0.8rem;
    height: 0.8rem;
  }
  .home_advantage_img img {
    height: 5.8rem;
  }
  .home_advantage_text h6 {
    font-size: 0.16rem;
    width: 47vw;
  }
  .home_advantage_text h5 {
    font-size: 0.28rem;
    width: 47vw;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .home_advantage_area h4 {
    font-size: 0.24rem;
    width: 17vw;
  }
  .home_advantage_i img {
    width: 0.4rem;
    height: 0.4rem;
  }
  .home_advantage_i {
    width: 0.7rem;
    height: 0.7rem;
  }
  .home_advantage_img img {
    height: 5.2rem;
  }
  .home_advantage_text h5 {
    font-size: 0.24rem;
    width: 47vw;
  }
  .home_advantage_bac {
    padding: 0.6rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .home_advantage_area h4 {
    font-size: 0.22rem;
  }
  .home_advantage_i img {
    width: 0.35rem;
    height: 0.35rem;
  }
  .home_advantage_i {
    width: 0.6rem;
    height: 0.6rem;
  }
  .home_advantage_img img {
    height: 4.8rem;
  }
  .home_advantage_text h5 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 960px) {
  .home_advantage_area h4 {
    font-size: 0.2rem;
  }
  .home_advantage_img img {
    height: 4.4rem;
  }
}
@media screen and (max-width: 767px) {
  .home_advantage_img img {
    height: 4rem;
  }
  .home_advantage_ul {
    flex-wrap: wrap;
  }
  .home_advantage_ul li {
    width: 100% !important;
  }
  .home_advantage_area h3 {
    font-size: 0.2rem;
    padding: 0.4rem 0;
  }
  .home_advantage_area h3::after,
  .home_advantage_area h3::before {
    width: 1px;
    height: 0.3rem;
  }
  .home_advantage_text h6 {
    width: 87vw;
  }
  .home_advantage_text h5 {
    width: 87vw;
  }
  .home_advantage_text h5 {
    font-size: 0.2rem;
  }
  .home_advantage_area h4 {
    width: 87vw;
  }

  .home_advantage_area {
    padding: 0.4rem 4%;
  }
}
@media screen and (max-width: 560px) {
  .home_advantage_img img {
    height: 3.5rem;
  }
  .home_advantage_text h6 {
    font-size: 0.14rem;
  }

  .home_advantage_active .home_advantage_area h3::after,
  .home_advantage_active .home_advantage_area h3::before {
    display: none;
  }
}
@media screen and (max-width: 425px) {
}

/* 客户服务 */
.Customer_Service {
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/Customer_Service_Ba.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.Customer_Service::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(114, 132, 150, 0.8);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
}

.Customer_Service .titBox {
  position: relative;
  z-index: 10;
}

.cs_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0;
  position: relative;
  z-index: 10;
}

.cs_list li {
  width: 19.58%;
}

.cs_list img {
  width: 0.64rem;
  height: 0.64rem;
  transition: all 0.4s ease;
}

.cs_list li:hover img {
  transform: rotateY(180deg);
}

@media screen and (max-width: 1024px) {
  .cs_list li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .cs_list img {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .cs_list li {
    width: 100%;
  }
  .cs_list img {
    width: 0.3rem;
    height: 0.3rem;
  }
}

/* 荣誉证书 */
.Certificate_Honor_box {
  position: relative;
}

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

/* -------------------------- */
.Honor-prev,
.Honor-next,
.Related-prev,
.Related-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
}
.Honor-prev,
.Related-prev {
  left: -6%;
}
.Honor-next,
.Related-next {
  right: -6%;
}

.Honor-prev iconify-icon,
.Honor-next iconify-icon,
.Related-prev iconify-icon,
.Related-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #dd7c17;
}
.Honor_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Honor-prev:hover,
.Honor-next:hover,
.Related-prev:hover,
.Related-next:hover {
  background: linear-gradient(143deg, #00b5fd 15%, #0a3c84 84%);
  border: none;
}
.Honor-prev:hover iconify-icon,
.Honor-next:hover iconify-icon,
.Related-prev:hover iconify-icon,
.Related-next:hover iconify-icon {
  color: #fff;
}

.Honor_box {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.Honor_box::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 94%;
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/Honor_Ba01.webp)
    no-repeat center;
  background-size: cover;
  transition: all 0.4s ease;
}
.Honor_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/Honor_Ba02.webp)
    no-repeat center;
  background-size: cover;
  transition: all 0.4s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.Honor_box img {
  width: 50.5%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 2;
}

.Honor_list .swiper-slide:hover .Honor_box::after {
  opacity: 1;
}
.Honor_list .swiper-slide:hover .Honor_box::before {
  opacity: 0;
}

@media screen and (max-width: 1440px) {
  .Honor-prev,
  .Related-prev {
    left: 0;
  }
  .Honor-next,
  .Related-next {
    right: 0;
  }
}

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

/* 主页新闻 */
.i_News {
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/i_newsBa.webp)
    no-repeat center;
  background-size: cover;
}

.i_News_top .titBox {
  width: 50%;
}

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

.i_news_left {
  width: 48.847%;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 3px 3px 10px 3px rgba(0, 65, 131, 0.1);
}

.i_news_left a {
  display: block;
  position: relative;
}

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

.i_news_left_txt {
  height: 100%;
  box-sizing: border-box;
  padding: 0.2rem 0.36rem;
  background-color: #fff;
}

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

.i_news_left:hover .i_news_left_pic img {
  transform: scale(1.1);
}
.i_news_left:hover h6 {
  color: var(--i_color);
}

.i_news_right {
  width: 46.847%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
  box-sizing: border-box;
  justify-content: space-between;
}

.i_news_right li {
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  padding: 0.36rem 0.19rem 0.29rem 0.39rem;
  transition: all 0.4s ease;
}

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

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

.i_news_right h6 span {
  width: 90%;
}
.i_news_right h6 iconify-icon {
  font-size: 0.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.inew_info {
  margin-top: 0.17rem;
  display: none;
}
.inew_info h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.li_item_btn:hover,
.li_item_btn:hover a {
  color: var(--i_color);
}

.i_news_right .active {
  border-radius: 0px 0.25rem 0px 0px;
}
.i_news_right .active::before {
  height: 100%;
}
.i_news_right .active h6 span {
  color: var(--i_color);
}
.i_news_right .active .i_news_icon {
  transform: rotate(180deg);
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .i_news_left,
  .i_news_right {
    width: 100%;
  }
  .inew_info {
    display: block;
  }
  .i_news_icon {
    display: none;
  }
  .i_news_right h6 span {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .i_news_right li,
  .i_news_left_txt {
    padding: 0.2rem;
  }
}

/* ===================================================== */

.banner__ {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner__ img {
  width: 100vw;
  display: block;
}

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #f9fcff;
  position: relative;
}
.in_position .wrap {
  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 {
  padding-left: 0.26rem;
}
.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='576' height='512' viewBox='0 0 576 512'%3E%3Cpath fill='%235BB530' d='M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0M571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
} */
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}
.in_position a:last-child {
  color: var(--i_color) !important;
}
.in_position a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position {
    padding: 0.16rem 0;
  }
  .in_position a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position {
    padding: 0.12rem 0;
  }
  .in_position a {
    font-size: 13px;
  }
}

/* -------------------------------  产品列表页面 */
.products_main {
  background: linear-gradient(180deg, #f9fcff 93%, rgba(249, 252, 255, 0) 101%);
}

.cat_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.cat_nav {
  width: 28.93%;
  box-sizing: border-box;
  padding: 0.3rem;
  background: var(--i_color2);
  -webkit-border-radius: 0.12rem;
  border-radius: 0.12rem;
  background-color: #fff;
}
.cat_nav_tit {
  margin-bottom: 0.2rem;
}
.cat_nav_tit h4 {
  font-size: 0.28rem;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
  border-top: 1px solid #d6d6d6;
}
.cat_nav_list li {
  position: relative;
}
.cat_nav_list li::before,
.cat_nav_list li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  height: 1px;
}
.cat_nav_list li::before {
  width: 100%;
  background: #d6d6d6;
}
.cat_nav_list li::after {
  width: 0;
  background: var(--i_color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_nav_list li:hover::after,
.cat_nav_list li.active::after {
  width: 100%;
}

.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;
  color: #222;
}
.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 iconify-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cat_fold_sub {
  display: none;
  padding-bottom: 0.1rem;
}
.cat_fold_sub a {
  display: flex;
  align-items: center;
  padding: 0.06rem 0;
  font-size: 0.16rem;
  color: #666;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 8px;
  height: 8px;
  background: #cccccc;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_sub a:hover::before,
.cat_fold_sub .active a::before {
  width: 0.08rem;
  background: var(--i_color);
}
.cat_fold_sub a:hover,
.cat_fold_sub .active a {
  color: var(--i_color);
}

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

  .cat_nav_list {
    display: none;
    box-sizing: border-box;
    padding: 20px 30px 30px;
    background: rgba(30, 74, 179, 0.06);
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  }
  .cat_fold_tit {
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .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_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;
  }
}

.cat_post_show {
  width: 66.79%;
  margin-left: auto;
}

.p__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 3%;
}

.p__list li {
  width: 31.33%;
  box-sizing: border-box;
}

.Pitem_pic {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 0.12rem;
  box-sizing: border-box;
  border: 2px solid #fff;
  overflow: hidden;
  transition: all 0.4s ease;
}
.Pitem_pic::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.Pitem_pic .p_pic {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.4s ease;
}

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

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

.p__list li:hover .Pitem_pic {
  border-color: var(--i_color);
}
.p__list li:hover .b_logo {
  opacity: 1;
}
.p__list li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .cat_post_show {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p__list {
    gap: 0.2rem 3%;
  }
  .p__list li {
    width: 48.5%;
  }
}
@media screen and (max-width: 560px) {
  .p__list p {
    font-size: 0.14rem;
  }
}

/* ------------------------------  产品详情页面 */
.product_detailsMain {
  background: #f9fcff;
}

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

/* atlas */
.p_atlas {
  flex-shrink: 0;
  width: 41.43%;
  box-sizing: border-box;
  position: relative;
}
.p_atlas_list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
  border: 2px solid var(--i_color);
  border-radius: 0.12rem;
  overflow: hidden;
}
.p_atlas_list::after {
  content: "";
  display: block;
  width: 152%;
  height: 89.5%;
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/pd_item.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  z-index: 2;
}
.p_atlas_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_atlas_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* thumbnail */
.p_thumbnail_list {
  width: 100%;
  margin: 0.2rem auto 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_thumbnail_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  cursor: pointer;
}

.p_thumbnail_list .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(static/imgs/p_item.webp) no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: all 0.4s ease;
}

.p_thumbnail_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: all 0.4s ease;
}

.p_thumbnail_list figure {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_thumbnail_list figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}

.p_thumbnail_list .swiper-slide-thumb-active::after {
  opacity: 1;
}
.p_thumbnail_list .swiper-slide-thumb-active::before {
  height: 0;
}

.p_thumbnail_list .swiper-slide-thumb-active figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0.12rem;
  border: 2px solid var(--i_color);
}

.thumbnail-pagination {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  text-align: center;
  padding: 2px 6px;
  z-index: 2;
  display: none;
}
.thumbnail-pagination,
.thumbnail-pagination span {
  font-size: 14px;
  color: #fff;
}
.thumbnail-pagination .swiper-pagination-current {
  font-size: 0.22rem;
  color: var(--i_color2);
}

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

  .p_atlas {
    width: 100%;
    max-width: 6rem;
    margin: 0 auto 0.46rem;
  }

  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .p_atlas_list {
    width: 100%;
  }
}

.p_title {
  width: 54.3%;
}
.p_title h1 {
  color: #222;
  font-weight: bold;
}

.p_des article table {
  /* border-top: 2px solid var(--i_color); */
}

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

.p_btn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.3rem;
}

.p_share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.p_share dd {
  font-size: 0.18rem;
}
.p_share a {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.p_share iconify-icon {
  font-size: 0.2rem;
  color: #9db1ce;
  transition: all 0.4s ease;
}

.p_share a:hover {
  background-color: #9db1ce;
}
.p_share a:hover iconify-icon {
  color: var(--i_color);
}

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

/* 产品详情 */

.product_detailsBox {
}

.Product_Description_left {
  width: 100%;
  box-sizing: border-box;
}

.pc_left {
}

.pc_left .xxk {
  margin: 0 auto;
}

.pc_left .tab-list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.pc_left .tab {
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #666;
  border-radius: 0.12rem;
}

.pc_left .tab.active {
  background-color: var(--i_color);
  color: #fff;
}

.pc_left .tab-content {
}

.pc_left .content {
  display: none;
}

.pc_left .content.active {
  display: block;
}

/* 操作菜单 + 相关产品 */
.hub {
  background: linear-gradient(180deg, #f9fcff 85%, rgba(249, 252, 255, 0) 104%);
}

.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ddd;
  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: 16px;
  background: #fff;
  -webkit-border-radius: 0.12rem;
  border-radius: 0.12rem;
}
.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%;
  background: #fff;
  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.24rem;
  color: #dd7c17;
}
.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: linear-gradient(143deg, #00b5fd 15%, #0a3c84 84%);
  border: none;
}
.p_view_other li:hover span iconify-icon {
  color: #fff;
}
.p_view_other a:hover p {
  color: var(--i_color);
}

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

/* 相关产品 */
.Related_Box {
  position: relative;
}

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

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

.Related_list li:hover .Pitem_pic {
  border-color: var(--i_color);
}
.Related_list li:hover .b_logo {
  opacity: 1;
}
.Related_list li:hover p {
  color: var(--i_color);
}

/* ------------------------------  关于我们页面 */
.aboutBox .wrap {
  gap: 0.3rem 0;
}

.aboutBox_left {
  width: 37.65%;
}

.aboutBox_left h4 {
  font-size: 0.86rem;
  font-weight: bold;
  background: linear-gradient(
    to bottom,
    rgba #ffffffe6 (255, 255, 255, 0.9),
    transparent
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #666666;
}

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

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

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

@media screen and (max-width: 1024px) {
  .video_btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
  }
  .video_btn .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 560px) {
  .video_btn {
    width: 80px;
    height: 80px;
  }
  .video_btn .icon {
    width: 50px;
    height: 50px;
  }
  .video_btn iconify-icon {
    font-size: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .aboutBox_left,
  .aboutBox_right {
    width: 100%;
  }
  .aboutBox_left h4 {
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 560px) {
  .aboutBox_left h4 {
    font-size: 0.34rem;
  }
}

/* 公司优势 */
.Co_Advantages {
  background: #f9fcff;
}

.Co_Advantages_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem 3%;
}

.Co_Advantages_list li {
  width: 48.5%;
  box-sizing: border-box;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
}

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

.Co_Advantages_list p {
  width: 100%;
  position: absolute;
  padding: 0.2rem 0;
  left: 0;
  bottom: 0;
  border-radius: 0px 60px 12px 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

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

@media screen and (max-width: 1024px) {
  .Co_Advantages_list {
    gap: 0.3rem 3%;
  }
}
@media screen and (max-width: 768px) {
  .Co_Advantages_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .Co_Advantages_list p {
    font-size: 0.12rem;
    padding: 0.1rem 0;
  }
}

/* 工厂环境 */
.Environment_pics {
  position: relative;
}

/*  */
.gol_partner_box {
}

.gol_partner {
  position: relative;
}
.gol_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.gol_partner_list .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property: transform, -webkit-transform;
  display: flex;
}
.gol_partner_list li {
  width: 6.5rem;
  max-width: 80%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition-property: transform;
  border-radius: 0.12rem;
  overflow: hidden;
}
.gol_partner_list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  z-index: 3;
  transition: all 0.5s ease;
}

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

.gol_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.gol_partner_list .img::after {
  content: "";
  display: block;
  padding-bottom: 66%;
}
.gol_partner_list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1200px) {
  .global_bac {
    padding: 0.6rem 0;
  }
}

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

.Environment-prev,
.Environment-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
}
.Environment-prev {
  left: -6%;
}
.Environment-next {
  right: -6%;
}

.Environment-prev iconify-icon,
.Environment-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #dd7c17;
}
.Environment_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Environment-prev:hover,
.Environment-next:hover {
  background: linear-gradient(143deg, #00b5fd 15%, #0a3c84 84%);
  border: none;
}
.Environment-prev:hover iconify-icon,
.Environment-next:hover iconify-icon {
  color: #fff;
}

/* 指示器 */
.gol_partner .pt-pagination {
  background: #666;
  position: relative;
  width: 2rem;
  height: 0.03rem;
  display: none;
  margin-top: 0.6rem;
  margin-left: auto;
  margin-right: auto;
}
.gol_partner .pt-pagination span {
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: -0.03rem;
  width: 100%;
  border-radius: 0.03rem;
  height: 0.08rem;
  transform: translate(0, -50%);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

@media screen and (max-width: 1440px) {
  .Environment-prev {
    left: 0;
  }
  .Environment-next {
    right: 0;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .gol_partner .pt-pagination {
    height: 0.03rem;
    margin-top: 0.4rem;
  }
  .gol_partner .pt-pagination span {
    top: -0.02rem;
    border-radius: 0.02rem;
    height: 0.06rem;
  }
}
@media screen and (max-width: 1024px) {
  .Environment-prev,
  .Environment-next {
    display: none;
  }
  .gol_partner .pt-pagination {
    display: block;
  }
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 767px) {
  .gol_partner .pt-pagination {
    height: 0.01rem;
  }
  .gol_partner .pt-pagination span {
    top: -0.02rem;
    height: 0.04rem;
  }
}
@media screen and (max-width: 560px) {
}

/* 全球客户 */
.Global_customers {
  background: linear-gradient(180deg, #f9fcff 93%, rgba(249, 252, 255, 0) 100%);
}

.explore_list {
  position: relative;
  overflow: hidden;
}
.explore_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.explore_list .swiper-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 0.3rem;
}

.explore_list .swiper-slide .img {
  width: 100%;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
}
.explore_list .swiper-slide .img::before {
  content: "";
  display: block;
  padding-bottom: 90%;
}
.explore_list .swiper-slide .img > 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;
}

.explore_list .swiper-slide .txt {
  background: #fff;
  padding: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  border-radius: 0.12rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.explore_list .swiper-slide .txt p {
  display: flex;
  align-items: center;
  gap: 0 4%;
}

.explore_list .swiper-slide .txt h6 {
}

.explore_list .swiper-slide:hover img {
}
.explore_list .swiper-slide:hover .txt {
  opacity: 1;
}

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

/* -------------------------- */
.explore-pagination {
  display: none;
  text-align: center;
}
.explore-pagination .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.01rem;
  display: inline-block;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.explore-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .explore-prev,
  .explore-next {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .explore_list .swiper-slide .txt {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .explore-pagination .swiper-pagination-bullet {
    width: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .explore-pagination .swiper-pagination-bullet {
    width: 0.25rem;
  }
}

/* -------------------------------  应用案例页面 */
.applicationBox {
}

.Application_list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}

.Application_item {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.4rem;
}

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

.Application_txt {
  width: 55.89%;
  overflow-y: auto;
  position: relative;
  max-height: 4rem;
  box-sizing: border-box;
  padding: 0.4rem 0.6rem 0.75rem 0.4rem;
  border-radius: 0.12rem;
  background-color: #f9fcff;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* 滚动条样式 */
.Application_txt::-webkit-scrollbar {
  width: 0.03rem;
}

.Application_txt::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 0.2rem;
}

.Application_txt::-webkit-scrollbar-track {
  background: #eaeaea;
  border-radius: 0.2rem;
}

.Application_txt img {
  width: 56.5%;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.App_a {
  display: flex;
  flex-direction: column;
  gap: 0.1rem 0;
}

.Application_btn {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.Application_btn span {
  font-size: 0.17rem;
  color: var(--i_color);
  font-weight: bold;
  margin-right: 0.2rem;
}

.Application_btn iconify-icon {
  font-size: 0.2rem;
  color: var(--i_color);
}

.Application_txt:hover img {
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  .Application_item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .Application_item:nth-child(even) .Application_txt {
    right: auto;
    left: 0;
  }

  .Application_item:nth-child(even) .Application_txt img {
    right: auto;
    left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .Application_pic {
    width: 100%;
  }
  .Application_txt {
    width: 70%;
    max-height: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .Application_item {
    padding-bottom: 1rem;
  }
  .Application_txt {
    width: 95%;
    max-height: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .Application_txt {
    padding: 0.2rem;
    max-height: 1.5rem;
  }
}

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

.Service_Content {
  background-color: #f9fcff;
}

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

.sc_list li {
  width: 23.5%;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 0.12rem;
  border: 1px solid #cccccc;
  padding: 0.4rem 0.29rem;
  position: relative;
  overflow: hidden;
}
.sc_list li::before {
  content: "";
  display: block;
  width: 135%;
  height: 77%;
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/pd_item.webp)
    no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: -12%;
  opacity: 0;
  transition: all 0.4s ease;
}

.sc_list li:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .sc_list li {
    width: 49%;
  }
  .sc_list li::before {
    width: 100%;
    height: 100%;
    bottom: 0;
  }
}

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

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

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

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

.sa_txtBox {
  width: 48%;
  border-radius: 0.12rem;
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(3, 17, 36, 0.13);
  box-sizing: border-box;
  position: absolute;
  right: 0;
  top: 8%;
  padding: 0.48rem 0.7rem 0.7rem 0.99rem;
}

.sa_txt {
  width: 100%;
  height: 100%;
  position: relative;
}
.sa_txt::before {
  content: "";
  display: block;
  width: 15.35%;
  height: 0.16rem;
  background-color: var(--i_color);
  position: absolute;
  left: -28%;
  top: 5%;
}

@media screen and (max-width: 1024px) {
  .sa_img {
    width: 100%;
  }
  .sa_txtBox {
    width: 100%;
    position: relative;
    padding: 0.2rem;
  }
  .sa_txt::before {
    display: none;
  }
}

.Purchase_process {
  background-color: #f9fcff;
}

.pp_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 9.63%;
}

.pp_list li {
  width: 12.29%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.24rem 0;
}

.Purchase_img {
  width: 1.72rem;
  height: 1.72rem;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}

.Purchase_img::after {
  content: "";
  display: block;
  width: 46%;
  height: 0.2rem;
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/arrow.webp)
    no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -60%;
  transform: translate(0, -50%);
}

.pp_list li:last-child .Purchase_img::after {
  display: none;
}

.Purchase_img::before {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 1px dashed #cccccc;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.Purchase_img img {
  width: 37.21%;
}

.Purchase_img span {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #dd7c17;
  font-size: 0.14rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  right: 5%;
  top: 5%;
}

.pp_list li:hover .Purchase_img::before {
  border-color: var(--i_color);
}
.pp_list li:hover h6 {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .pp_list li {
    gap: 0.15rem 0;
  }
  .Purchase_img {
    width: 1rem;
    height: 1rem;
  }
  .Purchase_img::after {
    display: none;
  }
  .pp_list h6 {
    font-size: 0.14rem;
    font-weight: normal;
  }
}

@media screen and (max-width: 560px) {
  .pp_list li {
    width: 45.18%;
  }
  .Purchase_img {
    width: 0.8rem;
    height: 0.8rem;
  }
}

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

.faq_box > img {
  width: 48.7%;
  position: absolute;
  left: -22.5%;
  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%;
  }
}

/* -------------------------------  新闻列表页面 */
.newsBox {
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 3%;
}

.newsList li {
  width: 31.33%;
  box-sizing: border-box;
}

.newsList a {
  display: block;
  border-bottom: 4px solid transparent;
  transition: all 0.4s ease;
}

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

.new_txt {
  box-sizing: border-box;
  padding: 0.16rem;
}

.new_txt h3 {
  transition: all 0.4s ease;
}

.newsList li:hover a {
  border-bottom-color: var(--i_color);
}
.newsList li:hover img {
  transform: scale(1.1);
}
.newsList li:hover h3 {
  color: var(--i_color);
}

@media screen and (max-width: 768px) {
  .newsList li {
    width: 48.5%;
  }
}
@media screen and (max-width: 560px) {
  .newsList {
    gap: 0.25rem 3%;
  }
  .newsList li {
    width: 100%;
  }
}

/* -------------------------------  联系我们页面 */
.contactBox {
  background: url(https://lingjuimg.com/wp-content/uploads/TianMa/2025/12/contactBox.webp)
    no-repeat center;
  background-size: cover;
}

.c_form {
}

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

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

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

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

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

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

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

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

/* 联系我们 */

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

.Contact_Us .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.cu_left {
  width: 45.72%;
}

.cu_left img {
  width: 100%;
  display: block;
  border-radius: 0.12rem;
}

.cu_right {
  width: 49.72%;
  box-sizing: border-box;
}

.cu_right > p {
  color: #666;
}

.cu_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
  z-index: 10;
  position: relative;
}

.cu_info li {
  width: 100%;
}

.cu_info .ci_top {
  display: flex;
  gap: 0 1%;
  position: relative;
  align-items: flex-end;
  padding-bottom: 0.2rem;
}

.cu_info .ci_top::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: 1;
}

.cu_info .ci_top::before {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background: var(--i_color);
  position: absolute;
  bottom: 10%;
  left: 0;
  transition: all 0.6s;
  z-index: 2;
}

.cu_info .ci_top .ct_img {
  width: 0.37rem;
  height: 0.3rem;
  position: relative;
}

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

.cu_info .ci_top span {
  color: #333;
}

.cu_info li .info {
  font-family: Arial;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.6s;
}

.cu_info li:hover .ci_top::before {
  width: 100%;
}

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

@media screen and (max-width: 1200px) {
  .cu_info li a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .Contact_Us .wrap {
    gap: 0.3rem 0;
  }
  .cu_left {
    width: 100%;
  }
  .cu_right {
    width: 100%;
    padding: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .cu_right > p {
    margin-bottom: 0.2rem;
  }
  .cu_info .ci_top span {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 560px) {
  .cu_right {
    padding: 0;
  }
  .cu_info .ci_top .ct_img {
    width: 0.3rem;
    height: 0.2rem;
  }
  .cu_info {
    gap: 0.12rem 0;
  }
  .cu_info li .info {
    font-size: 0.14rem;
  }
  .cu_info li a {
    font-size: 0.14rem;
  }
}
