/*
Theme Name: RuiLan
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: #12407c;

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

/* 通用 */

.btn_box {
  display: table;
}

.btn_a {
  width: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--i_color);
  border-radius: 5rem;
  color: #fff;
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  padding: 0.1rem 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn_a iconify-icon {
  font-size: 0.24rem;
  margin-left: 12%;
}

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

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

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

@media screen and (max-width: 1024px) {
  .btn_a {
    width: 1.2rem;
    padding: 0.05rem 0;
  }
  .btn_a span {
    font-size: 0.14rem;
  }
  .btn_a iconify-icon {
    font-size: 0.16rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 560px) {
  .btn_a {
    padding: 0.03rem 0;
  }
}

.title_box h3 {
  display: flex;
}
.title_box h3::before {
  content: "";
  display: block;
  width: 0.46rem;
  height: 0.46rem;
  background: url(static/imgs/titleIcon.webp) no-repeat center;
  background-size: cover;
  margin-top: 6px;
  margin-right: -0.18rem;
}

.title_box h6 {
  margin-top: 0.06rem;
}

@media screen and (max-width: 1024px) {
  .title_box h3 {
    align-items: center;
  }
  .title_box h3::before {
    width: 0.3rem;
    height: 0.3rem;
    margin-top: 0;
    margin-right: -1%;
  }
}
@media screen and (max-width: 560px) {
  .title_box h3 {
    font-size: 0.16rem;
  }
  .title_box h3::before {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: -2%;
  }
}

/* -------------------------- */
.i_pagination {
  position: relative;
  width: 53%;
  border-radius: 5rem;
  background: #ffffff;
  height: 3px;
  overflow: hidden;
}

.i_pagination span {
  border-radius: 5rem;
  background: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

/* --- --- */

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

.wrap_header {
  width: 94vw;
  max-width: 1730px;
  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;
  z-index: 2026;
  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%;
}
.logo p {
  margin-left: 0.07rem;
}

@media screen and (max-width: 1024px) {
  .logo img {
    max-height: 80%;
  }
  .logo p {
    display: none;
  }
}

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

  .i_nav > li {
    position: relative;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    color: #333;
    font-weight: bold;
    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 {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--i_color);
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translate(-50%, 0);
    transition: all 0.4s ease;
  }

  .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 {
    opacity: 1;
  }

  .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: 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 {
  /* 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: #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 {
  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 #000;
}
.top_language_btn p {
  font-size: 14px;
}
.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) {
}
@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_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.92%;
}
.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%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.i_banner-prev {
  left: 0;
}
.i_banner-next {
  right: 0;
}
.i_banner-prev iconify-icon,
.i_banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.i_banner_list .swiper-button-disabled {
  cursor: not-allowed;
}
.i_banner-prev:hover,
.i_banner-next:hover {
  background: var(--i_color);
}

/* -------------------------- */
.i_banner-pagination {
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
}
.i_banner-pagination .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.03rem;
  display: inline-block;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 5rem;
  border-radius: 5rem;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.i_banner-pagination .swiper-pagination-bullet-active {
  height: 0.05rem;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .i_banner-prev,
  .i_banner-next {
    display: none;
  }
  .i_banner-pagination .swiper-pagination-bullet {
    width: 0.3rem;
  }
  .i_banner-pagination .swiper-pagination-bullet-active {
    height: 0.03rem;
  }
}

/* 主页banner-文本 */
.ibTxt01 {
  position: absolute;
  left: 50%;
  top: 7%;
  transform: translateX(-50%);
}

.ibTxt01 h2 {
  font-weight: 900;
}

.ibTxt01 h3 {
  margin-bottom: 0.16rem;
}

@media screen and (max-width: 560px) {
  .ibTxt01 h2 {
    font-size: 0.14rem;
  }
  .ibTxt01 h3 {
    font-size: 0.12rem;
  }
}

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

.ibTxt02 {
  text-align: right;
}

.ibTxt02 h3 {
  width: 64%;
}

@media screen and (max-width: 1024px) {
  .ibTxt02 h3 {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 560px) {
  .ibTxt02 h2 {
    display: none;
  }
  .ibTxt02 h3 {
    width: 80%;
    font-size: 0.12rem;
    margin-top: 0;
    margin-bottom: 0.1rem;
  }
}

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

.ibTxt03 h3 {
  width: 44%;
}

@media screen and (max-width: 1024px) {
  .ibTxt03 h3 {
    width: 50%;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .ibTxt03 h2 {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 560px) {
  .ibTxt03 {
    top: 10%;
  }
  .ibTxt03 h2 {
    display: none;
  }
  .ibTxt03 h3 {
    width: 60%;
    font-size: 0.12rem;
    margin: 0 0 0.1rem 0;
  }

  .ibTxt01 .btn_box,
  .ibTxt02 .btn_box,
  .ibTxt03 .btn_box {
    display: none;
  }
}

/* footer */
footer {
  background: url(https://lingjuimg.com/wp-content/uploads/ruilan/2026/01/footerBa.webp)
    no-repeat center;
  background-size: cover;
}

.footer_top .wrap {
  position: relative;
}

.footer_top img {
  width: 86.32%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

@media screen and (max-width: 560px) {
  .footer_top img {
    width: 100%;
  }
  .footer_top h2 {
    font-size: 0.18rem;
    padding: 6% 0;
  }
}

.footer_middle .wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

.fm_left {
  width: 26.8%;
}

.fm_left > a img {
  width: 1.41rem;
}

.fm_info {
  display: flex;
  flex-direction: column;
  gap: 0.14rem 0;
}

.fm_info a {
  color: #fff;
  transition: all 0.3s ease;
}

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

.fm_right {
  width: 57.3%;
}

.fm_navigation {
  width: 84%;
  display: flex;
  justify-content: space-between;
}

.fTit {
  margin-bottom: 0.2rem;
  font-size: 0.24rem;
  color: #fff;
  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: rgb(255 255 255 / 60%);
  transition: all 0.3s ease;
}
.fNav li a:hover {
  color: #fff;
  text-decoration: underline;
}

.fm_c {
  width: 58%;
}

.fm_c_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
}
.fm_c_list li {
  width: 50%;
}
.fm_c_list a {
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  transition: all 0.3s ease;
}
.fm_c_list a:hover {
  color: #fff;
  text-decoration: underline;
}

.fMediaBox {
  width: max-content;
  margin-top: -15%;
}

.fMediaBox img {
  width: 31%;
  display: block;
  margin-left: auto;
}

.fMedia {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3rem;
}
.fMedia li {
}
.fMedia a {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: rgb(255 255 255 / 10%);
  border-radius: 6px;
  position: relative;
  transition: all 0.4s ease;
}
.fMedia iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #fff;
}

.fMedia li:hover a {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .fm_left {
    width: 100%;
  }
  .fm_navigation {
    display: none;
  }

  .fMediaBox {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
  .fMediaBox img {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .fm_left > a img {
    width: 1rem;
  }
  .fMedia a {
    width: 40px;
    height: 40px;
  }
  .fMedia iconify-icon {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .fm_left > a img {
    width: 0.8rem;
  }
  .fMedia {
    gap: 0 20px;
  }
  .fMedia a {
    width: 34px;
    height: 34px;
  }
  .fMedia iconify-icon {
    font-size: 18px;
  }
  .fm_right {
    width: 100%;
  }
  .fMediaBox {
    width: 100%;
    gap: 0 0.2rem;
    display: flex;
    align-items: baseline;
  }
  .fMediaBox img {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
  }
  .fMedia {
    flex-shrink: 0;
    order: -1;
  }
}

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

@media screen and (max-width: 560px) {
  .f_cr p,
  .f_cr a {
    font-size: 14px;
  }
}

/* 产品分类 */
.Product_Categories {
}

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

.Product_Categories .title_box {
  width: 65.82%;
}

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

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

.pc_list li {
  width: 32%;
  box-sizing: border-box;
}

.pc_list a {
  box-sizing: border-box;
  padding-left: 0.4rem;
  border-radius: 0.1rem;
  background: linear-gradient(270deg, rgba(240, 240, 240, 0) 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.PCL_txt {
  width: 38.136%;
}

.PCL_pic {
  width: 60.6%;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.11rem;
}
.PCL_pic::after {
  content: "";
  display: block;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(
    225deg,
    rgba(18, 64, 124, 0) 13%,
    rgba(18, 64, 124, 0.15) 82%
  );
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  opacity: 1;
}
.PCL_pic::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 79.4%;
}
.PCL_pic i {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(226deg, rgba(18, 64, 124, 0) 14%, #12407c 85%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  opacity: 0;
}
.PCL_pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.pc_list li:hover .PCL_pic::after {
  opacity: 0;
}
.pc_list li:hover .PCL_pic i {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .PCL_pic::after,
  .PCL_pic i {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 1366px) {
  .pc_list a {
    padding-left: 0.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .PCL_pic::after,
  .PCL_pic i {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .pc_list li {
    width: 49%;
  }
  .PCL_txt h3 {
    font-size: 0.16rem;
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .PCL_pic::after,
  .PCL_pic i {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 560px) {
  .pc_list {
    gap: 0.1rem 2%;
  }
  .PCL_txt h3 {
    font-size: 0.12rem;
    margin-bottom: 0;
  }
  .PCL_txt .btn_box {
    display: none;
  }
  .PCL_pic::after,
  .PCL_pic i {
    width: 20vw;
    height: 20vw;
  }
}

/* 关于公司 */

.homeAbout {
  padding-bottom: 2.53rem;
  background: url(https://lingjuimg.com/wp-content/uploads/ruilan/2026/01/home_about.webp)
    no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.homeAbout::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(1, 9, 20, 0.6);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
}

.homeAbout h2 {
  font-size: 0.56rem;
  position: relative;
  z-index: 10;
}

.homeAbout_cont {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 4%;
  align-items: center;
  position: relative;
  z-index: 10;
}

.homeAbout_cont .pic {
  flex-shrink: 0;
  width: 50%;
  position: relative;
  border-radius: 0.15rem;
  overflow: hidden;
}
.homeAbout_cont .pic::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 64%;
}
.homeAbout_cont .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.i_video {
  width: 1.23rem;
  height: 1.23rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.49);
  cursor: pointer;
}
.i_video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.16);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: pulseAnimation 3s infinite;
}
@keyframes pulseAnimation {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 136%;
    height: 136%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

.i_video iconify-icon {
  font-size: 0.5rem;
  color: var(--i_color);
  position: relative;
  z-index: 2;
}

.homeAbout_cont .txt {
  width: 100%;
}
.homeAbout_cont .txt h6 {
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homeAbout_cont .txt dl {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 4%;
}
.homeAbout_cont .txt dt {
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.homeAbout_cont .txt dt::before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.homeAbout_cont .txt dt img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.homeAbout_cont .txt dt:hover img {
  transform: scale(1.05, 1.05);
}

@media screen and (max-width: 1024px) {
  .homeAbout {
    padding-bottom: 1.5rem;
  }
  .homeAbout h2 {
    font-size: 0.3rem;
  }
  .i_video {
    width: 0.6rem;
    height: 0.6rem;
  }
  .i_video iconify-icon {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .homeAbout {
    padding: 0.4rem 0;
    border-radius: 0;
  }
  .homeAbout_cont {
    flex-wrap: wrap;
    gap: 24px 0;
  }

  .homeAbout_cont .pic {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .homeAbout h2 {
    font-size: 0.2rem;
  }
  .homeAbout_cont .txt dl {
    margin-bottom: 0;
  }
}

/* 宣传数据 */
.aboutList {
  margin-top: -1.3rem;
  display: flex;
  flex-wrap: nowrap;
  background: var(--i_color);
  position: relative;
  border-radius: 0.2rem;
  z-index: 20;
}
.aboutList dt {
  width: 100%;
  box-sizing: border-box;
  padding: 0.35rem;
  text-align: center;
  position: relative;
}
.aboutList dt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 1px;
  height: 90%;
  background: #fff;
}
.aboutList dt:first-child::before {
  display: none;
}
.aboutList img {
  width: 0.8rem;
  transition: all 0.4s ease;
}
.aboutList span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.aboutList dt:hover img {
  transform: rotateY(180deg);
}

@media screen and (max-width: 1024px) {
  .aboutList dt {
    padding: 20px 30px;
  }
  .aboutList img {
    width: 0.6rem;
  }
  .aboutList span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .aboutList {
    flex-wrap: wrap;
    margin-top: 0.2rem;
  }
  .aboutList dt {
    padding: 0.1rem 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 20px;
    text-align: left;
  }
  .aboutList dt::before {
    display: none;
  }
  .aboutList img {
    width: 0.4rem;
  }
  .aboutList span {
    margin: 0 0;
  }
}
@media screen and (max-width: 560px) {
  .aboutList dt {
    width: 50%;
    flex-direction: column;
  }
  .aboutList img {
    width: 0.3rem;
  }
}

/* 热门产品 */
.Popular_Products {
  background: url(https://lingjuimg.com/wp-content/uploads/ruilan/2026/01/Popular_ProductsBa.webp)
    no-repeat center;
  background-size: cover;
}

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

/* ****************** */
.pp_list li {
  padding: 0.2rem;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0.1rem;
  transition: all 0.3s;
}
.pp_list a {
  display: block;
}

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

.HP_text {
  box-sizing: border-box;
}
.HP_text h3 {
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.3s ease;
  margin: 0.2rem 0;
}

.HP_text_dl {
  position: relative;
  padding-bottom: 0.22rem;
}

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

.HP_text_dl dt {
  font-size: 0.16rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.HP_text_dl dt::before {
  content: "●";
  display: block;
  font-size: 0.2rem;
  margin-top: -0.05rem;
  color: #333;
  margin-right: 0.06rem;
}

.HP_text_dl dt span {
  font-size: 0.16rem;
  color: #ff0000;
}

.pr_btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0.1rem;
  margin-top: 0.2rem;
  border-radius: 5rem;
  transition: all 0.4s;
  color: var(--i_color);
}

.pr_btn p {
  font-size: 0.18rem;
}

.pr_btn iconify-icon {
  font-size: 0.25rem;
}

.pp_list li:hover a h3 {
  color: var(--i_color);
}
.pp_list li:hover .img img {
  transform: scale(1.05, 1.05);
}
.pp_list li:hover .HP_i {
  top: 50%;
  opacity: 1;
}

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

.pp_list li:hover .pr_btn p,
.pp_list li:hover .pr_btn iconify-icon {
  color: #fff;
}

@media screen and (max-width: 560px) {
  .pr_btn {
    display: none;
  }
  .HP_text h3 {
    font-size: 0.14rem;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
  }
  .HP_text_dl dt {
    font-size: 0.12rem;
  }
  .HP_text_dl dt::before {
    font-size: 0.1rem;
  }
}

/* 全球客户 */
.Global_customers {
  position: relative;
  overflow: hidden;
}

.Global_customers i {
  display: block;
  width: 100%;
  height: 3.8rem;
  position: absolute;
  left: 0;
  top: 0;
  background: url(https://lingjuimg.com/wp-content/uploads/ruilan/2026/01/Global_customersBa.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  border-radius: 0px 0px 50px 50px;
}

.gc_content {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.17rem 0.17rem 0.26rem 0.17rem;
  border-radius: 0.2rem;
}

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

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

.Global_txt {
  background: #f0f0f0;
  box-sizing: border-box;
  padding: 0.16rem 0.45rem;
}

.Global_txt::before {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--i_color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.Global_list .swiper-slide:hover {
  box-shadow: 0px 5px 10px 0px rgba(18, 64, 124, 0.3);
}
.Global_list .swiper-slide:hover .Global_img img {
  transform: scale(1.1, 1.1);
}
.Global_list .swiper-slide:hover .Global_txt {
  background-color: #fff;
  color: var(--i_color);
}
.Global_list .swiper-slide:hover .Global_txt::before {
  width: 100%;
}

.Global_list .i_pagination {
  background: #f0f0f0;
}

@media screen and (max-width: 1024px) {
  .Global_customers i {
    height: 2.8rem;
  }
}
@media screen and (max-width: 560px) {
  .Global_customers {
    padding-bottom: 0.2rem;
  }
  .Global_customers i {
    border-radius: 0px 0px 20px 20px;
  }
  .Global_txt {
    font-size: 0.12rem;
    padding: 0.1rem 0.2rem;
  }
}

/* 最新新闻 */

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

.homeNews_top {
  flex-shrink: 0;
  width: 46.25%;
}
.homeNews_top .coverPic {
  width: 100%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.homeNews_top .coverPic::before {
  content: "";
  display: block;
  padding-bottom: 65%;
}
.homeNews_top .coverPic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.homeNews_top .date {
  position: absolute;
  bottom: 0.2rem;
  left: 0.2rem;
  background: var(--i_color);
  border-radius: 6px;
  text-align: center;
  padding: 0.1rem;
}
.homeNews_top .date b {
  display: block;
  margin-bottom: 2px;
  font-size: 0.36rem;
  color: #fff;
}
.homeNews_top .date i {
  font-size: 18px;
  color: #fff;
}
.homeNews_top span {
  display: block;
  margin-top: 0.28rem;
}
.homeNews_top h6 {
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 1.4;
}
.homeNews_top p {
  margin-top: 0.07rem;
  font-size: 0.18rem;
  color: #666;
  line-height: 1.5;
}
.homeNews_top h6 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.homeNews_top p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.homeNews_top:hover img {
  transform: scale(1.05, 1.05);
}
.homeNews_top:hover h6 {
  color: var(--i_color);
}

.homeNews_list {
  width: 50%;
  box-sizing: border-box;
  padding-left: 0.6rem;
  border-left: 1px solid #d6d6d6;
  gap: 0.38rem 0;
}
.homeNews_list li {
  padding-bottom: 0.26rem;
  border-bottom: 1px solid #d6d6d6;
  transition: all 0.4s ease;
}
.homeNews_list li:last-child {
  margin-top: 0;
  padding-top: 0;
  border-bottom: none;
}
.homeNews_list a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.5rem;
  align-items: center;
}

.homeNews_list span {
  width: 100%;
}
.homeNews_list span h6 {
  font-size: 0.24rem;
  font-weight: bold;
}
.homeNews_list span p {
  margin: 0.1rem 0 0.16rem;
  font-size: 0.18rem;
  color: #666;
  line-height: 1.5;
}
.homeNews_list span h6,
.homeNews_list span p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.homeNews_list span i {
  font-size: 16px;
  color: #666;
}

.homeNews_list .coverPic {
  flex-shrink: 0;
  width: 30%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.homeNews_list .coverPic::before {
  content: "";
  display: block;
  padding-bottom: 65%;
}
.homeNews_list .coverPic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.homeNews_list li:hover {
  border-color: var(--i_color);
}
.homeNews_list li:hover h6 {
  color: var(--i_color);
}
.homeNews_list li:hover img {
  transform: scale(1.05, 1.05);
}

@media screen and (max-width: 1024px) {
  .homeNews_top {
    width: 100%;
  }
  .homeNews_list {
    width: 100%;
    margin: 36px 0 0;
    padding: 0 0;
    border: none;
  }
  .homeNews_list li:first-child {
    padding-top: 0.3rem;
    border-top: 1px solid #ddd;
  }

  .homeNews_top h6,
  .homeNews_list span h6 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .homeNews_top h6,
  .homeNews_list span h6 {
    font-size: 17px;
  }
  .homeNews_top p,
  .homeNews_list span p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .homeNews_top .date b {
    font-size: 20px;
  }
  .homeNews_list {
    margin-top: 20px;
  }
  .homeNews_top h6,
  .homeNews_list span h6 {
    font-size: 16px;
  }
  .homeNews_list a {
    gap: 0 26px;
  }
  .homeNews_list .coverPic {
    width: 34%;
  }
}

/* 合作伙伴 */

.homeBrands {
  background: url(https://lingjuimg.com/wp-content/uploads/ruilan/2026/01/PartnersBa.webp)
    no-repeat center;
  background-size: cover;
  padding-bottom: 1.7rem;
}
.homeBrands .wrap {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}

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

.homeBrands_t .btn_box {
  margin-top: 1.73rem;
}

.homeBrands_list {
  width: 52.75%;
  position: relative;
  overflow: hidden;
}
.homeBrands_list .swiper-wrapper {
  height: 3.6rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}
.homeBrands_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  background-color: #fff;
}
.homeBrands_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  object-fit: contain;
}

.homeBrands-pagination {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 2px;
  position: relative;
}
.homeBrands-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.homeBrands-pagination span {
  background: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

@media screen and (max-width: 1024px) {
  .homeBrands {
    padding-bottom: 0;
  }
  .homeBrands_t .btn_box {
    margin-top: 0.3rem;
  }
  .homeBrands .wrap {
    flex-wrap: wrap;
    padding-bottom: 50px;
  }
  .homeBrands_t,
  .homeBrands_list {
    width: 100%;
  }

  .homeBrands_list .swiper-slide img {
    width: 60%;
    height: 60%;
  }
}
@media screen and (max-width: 768px) {
  .homeBrands_list .swiper-wrapper {
    height: 240px;
  }
}
@media screen and (max-width: 560px) {
  .homeBrands .wrap {
    padding-bottom: 30px;
  }
  .homeBrands_list .swiper-wrapper {
    height: 180px;
  }
  .homeBrands_list .swiper-slide img {
    width: 100%;
    height: 100%;
  }
}

/* ==== 内页banner ==== */
.banner_box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner_box::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 28.74%;
}
.banner_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.153) 100%
  );
}
.banner_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Breadcrumb */
.in_position {
  padding: 0.2rem 0;
  background: #ecf0f5;
  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: 16px;
  height: 16px;
  background: url(static/imgs/home.webp) 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;
  }
}

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

.category_page {
}

.categoryBox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cat_nav {
  flex-shrink: 0;
  width: 21.25%;
  padding-right: 2.07%;
  position: relative;
}
.catList_show {
  width: 74.7%;
}

@media screen and (max-width: 1024px) {
  .catList_show {
    width: 100%;
    padding: 0 0;
    margin: 0 0;
  }
}
@media screen and (max-width: 560px) {
  .categoryBox {
    margin-bottom: 60px;
  }
}

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

.cat_nav_list {
  position: relative;
}
.cat_nav_list li {
  margin-bottom: 0.16rem;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.cat_nav_list li:last-child {
  border-bottom: none;
}

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  border-radius: 0.08rem;
}
.cat_fold_tit a {
  padding: 0.2rem 0;
  width: 100%;
  font-size: 0.18rem;
  font-weight: bold;
}
.cat_fold_tit iconify-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.24rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s 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.23rem 0.14rem 0.28rem 0.11rem;
}
.cat_fold_sub dt {
  padding: 0 0.24rem;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
}
.cat_fold_sub a {
  display: block;
  padding: 0.14rem 0;
  font-size: 0.18rem;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cat_fold_sub dt.active {
  background-color: #f1f1f1;
}
.cat_fold_sub dt:hover a {
  color: var(--i_color);
}
.cat_fold_sub dt.active a {
  color: var(--i_color);
  font-weight: bold;
}

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

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

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

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

  .cat_nav_list {
    padding: 0.1rem;
  }
  .cat_nav_list li {
    margin-bottom: 0;
  }
  .cat_fold_sub {
    padding: 0.1rem;
  }
  .cat_fold_tit a {
    font-size: 15px;
  }
  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }
  .cat_fold_sub a {
    font-size: 14px;
  }
}

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

.p_item {
  width: 32%;
}

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

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

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

/* atlas */
.p_atlas {
  flex-shrink: 0;
  width: 38.75%;
  box-sizing: border-box;
  position: relative;
}
.p_atlas_list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px solid #12407c;
  overflow: hidden;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.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: cover;
}

/* thumbnail */
.p_thumbnail_list {
  width: 100%;
  margin: 0.3rem 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.1rem;
  overflow: hidden;
  cursor: pointer;
}
.p_thumbnail_list figure {
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
  box-sizing: border-box;
  border: 1px solid rgba(18, 64, 124, 0.5);
  overflow: hidden;
}
.p_thumbnail_list figure::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}
.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: cover;
}

.p_thumbnail_list .swiper-slide-thumb-active figure {
  border-color: var(--i_color);
}
.p_thumbnail_list .swiper-slide-thumb-active figure::after {
  height: 0;
}

.thumbnail-pagination {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  text-align: center;
  padding: 2px 6px;
  z-index: 2;
}
.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_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: 57.13%;
}
.p_title h1 {
  padding: 0.23rem 0 0.27rem 0;
  position: relative;
  border-bottom: 1px solid #d6d6d6;
}
.p_title h1::before {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: -1px;
}

.p_des article table {
}

.pMenu {
  border-top: 1px solid #ddd;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

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

.p_share {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.p_share dd {
  font-size: 0.18rem;
  margin-right: 0.15rem;
}
.p_share dt {
}
.p_share iconify-icon {
  font-size: 0.28rem;
  color: var(--i_color);
  opacity: 0.2;
  transition: all 0.4s ease;
}
.p_share a:hover iconify-icon {
  opacity: 1;
}

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

@media screen and (max-width: 768px) {
  .pTag p,
  .pTag a {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .p_title h1 {
    padding: 0.1rem 0;
  }
  .pMenu {
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
  }
  .p_share {
    margin: 20px 0 0;
    width: 100%;
  }
  .p_share iconify-icon {
    font-size: 22px;
  }
}

/* 产品详情 */

.pd_info {
  background-color: #f6f6f6;
}

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

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

.info_details .cat_nav {
  padding-right: 0;
  border-radius: 5px;
  background: #fff;
  max-height: max-content;
}

.info_txt {
  width: 75.44%;
}

.info_txt h2 {
  padding: 0 0 0.2rem 0;
  position: relative;
  border-bottom: 1px solid #d6d6d6;
}
.info_txt h2::before {
  content: "";
  display: block;
  width: 11%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: -1px;
}

@media screen and (max-width: 1024px) {
  .info_details .cat_nav {
    background: transparent;
    padding-top: 0;
  }
  .info_txt {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

/* 操作 */

.p_tags {
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #cecece;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.16rem 0;
}
.p_tags > p {
  margin-right: 0.09rem;
  font-size: 0.18rem;
}
.p_tags a {
  margin-right: 0.26rem;
  font-size: 16px;
}
.p_tags a:hover {
  color: var(--i_color);
}
@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.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(18, 64, 124, 0.2);
  position: relative;
  transition: all 0.4s ease;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.24rem;
  color: #fff;
}
.p_view_other p {
  font-size: 0.16rem;
}
.p_view_other p b {
  font-size: 0.18rem;
  font-weight: bold;
}

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

@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 span iconify-icon {
    font-size: 16px;
  }
  .p_view_other p {
    font-size: 14px;
  }
  .p_view_other p b {
    font-size: 17px;
  }
}

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

/* 公司介绍 */
.Company_Introduction {
  padding-bottom: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f7f7f7 100%);
}

.ci_content {
  gap: 0.3rem 0;
}

.cic_left {
  width: 42.32%;
}

.cic_right {
  width: 52%;
  position: relative;
}
.cic_right::after {
  content: "";
  display: block;
  width: 0.61rem;
  height: 0.61rem;
  background-color: var(--i_color);
  border-radius: 50%;
  position: absolute;
  left: -3%;
  bottom: 25%;
}
.cic_right::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background-color: var(--i_color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -9%;
}

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

.video_about .i_video {
  width: 0.66rem;
  height: 0.66rem;
  background-color: #fff;
}

.video_about .i_video iconify-icon {
  font-size: 0.3rem;
}

.video_about .i_video::before {
  background: rgba(255, 255, 255, 0.3);
  border: none;
}

@media screen and (max-width: 1440px) {
  .cic_right::before {
    width: 2rem;
    height: 2rem;
    right: -5%;
  }
}
@media screen and (max-width: 1200px) {
  .cic_left {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 1024px) {
  .Company_Introduction {
    padding-bottom: 1.6rem;
  }
  .cic_left,
  .cic_right {
    width: 100%;
  }
  .cic_left {
    margin-top: 0;
  }
  .cic_right {
    padding-top: 0;
  }
  .cic_right::after,
  .cic_right::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .Company_Introduction {
    padding-bottom: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .Company_Introduction {
    padding-bottom: 0.3rem;
  }
  .cic_left {
    font-size: 0.15rem;
  }
  .video_about {
    border-radius: 0.2rem;
  }
  .video_about .i_video {
    width: 0.4rem;
    height: 0.4rem;
  }
  .video_about .i_video iconify-icon {
    font-size: 0.2rem;
  }
}

/* 品牌轮播 */
.brandC_list {
  position: relative;
  overflow: hidden;
}
.brandC_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.brandC_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
}
.brandC_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 44.2%;
}
.brandC_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 我们的优势 */
.Our_Advantages {
  background: url(https://lingjuimg.com/wp-content/uploads/ruilan/2026/01/Our_AdvantagesBa.webp)
    no-repeat center;
  background-size: cover;
}

.serve_switchb {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.ss_imgBox {
  width: 47.5%;
  position: relative;
  padding-bottom: 29.5%;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ss_imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 1s;
}

.ss_imgBox .switchimg {
  top: 50%;
  opacity: 1;
}

.ss_textBoxb {
  width: 48.88%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ss_textBoxb ul {
  border-bottom: 1px solid #bcbebe;
}
.ss_textBoxb ul.active {
  border-color: var(--i_color);
}

.ss_textBoxb li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.37rem 0 0.22rem 0;
  cursor: pointer;
  transition: all 0.4s;
}

.ss_textBoxb img {
  width: 0.46rem;
  height: 0.46rem;
  filter: invert(1) sepia(1) saturate(0) hue-rotate(0deg) brightness(0.6);
}

.ss_textBoxb span {
  color: #000000;
  font-size: 0.24rem;
  font-weight: bold;
}

.ss_textBoxb ul:first-child {
  border-top: 1px solid #bcbebe;
}

.switchtxt span {
  color: var(--i_color);
}
.switchtxt img {
  filter: none;
}

.ss_textBoxb ul > p {
  font-size: 0.18rem;
  color: #222222;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 2s ease, opacity 0.6s ease, transform 0.6s ease;
  line-height: 0.3rem;
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; */
}
.ss_textBoxb ul > p::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.28rem;
}
.ss_textBoxb li.switchtxt + p {
  max-height: 10rem;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1200px) {
  .ss_textBoxb ul > p::after {
    height: 0.1rem;
  }
  .ss_textBoxb .switchtxt {
    font-size: 0.24rem;
    padding: 0.15rem 0;
  }
  .ss_textBoxb ul > p {
    font-size: 0.16rem;
    line-height: 0.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .ss_textBoxb li {
    padding: 0.1rem 0 0 0;
  }
  .ss_textBoxb .switchtxt {
    padding: 0.1rem 0 0.1rem 0;
  }
  .serve_switchb {
    flex-wrap: wrap;
  }
  .ss_imgBox {
    width: 100%;
    padding-bottom: 45%;
  }
  .ss_textBoxb {
    width: 100%;
    margin-top: 0;
  }

  .ss_textBoxb img {
    width: 0.3rem;
    height: 0.3rem;
  }
  .ss_textBoxb span {
    font-size: 0.18rem;
  }
  .ss_textBoxb ul > p {
    padding-left: 0;
  }
}
@media screen and (max-width: 560px) {
  .ss_textBoxb .switchtxt {
    font-size: 0.18rem;
    padding: 0.1rem 0;
  }
  .ss_textBoxb li {
    font-size: 0.18rem;
  }
  .ss_textBoxb img {
    width: 0.3rem;
    height: 0.3rem;
  }
}

/* 环境展示 */
.Environmental_Display {
}

.aboutCE_list {
  position: relative;
  overflow: hidden;
}
.aboutCE_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.aboutCE_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.aboutCE_list .swiper-slide span {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.aboutCE_list .swiper-slide span::before {
  content: "";
  display: block;
  padding-bottom: 57.5%;
}
.aboutCE_list .swiper-slide span 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;
}

.aboutCE_control {
  position: relative;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.aboutCE-prev,
.aboutCE-next {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(18, 64, 124, 0.2);
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  transition: all 0.4s ease;
}
.aboutCE-prev iconify-icon,
.aboutCE-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3rem;
  color: #fff;
}
.aboutCE_control .swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.aboutCE-prev:hover,
.aboutCE-next:hover {
  background-color: var(--i_color);
}

.aboutCE-pagination {
  display: none;
}

.aboutCE_text {
  width: 54%;
  margin: 0 auto;
  text-align: center;
}
.aboutCE_text p {
  font-weight: bold;
}
.aboutCE_text h6 {
  margin-top: 0.14rem;
}

@media screen and (max-width: 1024px) {
  .aboutCE_control {
    flex-wrap: wrap;
  }
  .aboutCE-prev,
  .aboutCE-next {
    display: none;
  }
  .aboutCE-pagination {
    display: block;
  }
  .aboutCE_text {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .aboutCE_text p {
    font-size: 0.14rem;
  }
  .aboutCE_text h6 {
    font-size: 0.12rem;
    margin-top: 0.05rem;
  }
}

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

/* 服务内容 */
.Service_Content {
  background: #f6f6f6;
}

.serAdv_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 2%;
}
.serAdv_list dt {
  width: 32%;
  background: #fff;
  border-radius: 0.1rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.serAdv_list .coverPic {
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.serAdv_list .coverPic::before {
  content: "";
  display: block;
  padding-bottom: 61.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 var(--i_color);
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: bold;
}
.serAdv_list .text span {
  font-size: 0.16rem;
  line-height: 1.6;
}

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

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

/* 购买流程 */
.Purchase_process {
  background: url(https://lingjuimg.com/wp-content/uploads/ruilan/2026/01/Purchase_processBa.webp)
    no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

.numlist {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 10px 0;
}
.fz76 {
  font-size: 0.76rem;
}
.numlist p {
  font-style: italic;
  background: linear-gradient(to bottom, #fff 20%, transparent);
  -webkit-background-clip: text;
  color: transparent;
}

.numlist p i {
}

.numlist h6 {
}

.numlist li {
  width: 20%;
  box-sizing: border-box;
  text-align: center;
}

.numlist li p {
  margin-bottom: 0.1rem;
  position: relative;
}

.numlist li img {
  height: 0.84rem;
}

.numlist p::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -10px;
  width: 11%;
  height: 1px;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
}

@media screen and (max-width: 1440px) {
  .fz76 {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .fz76 {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .numlist {
    align-items: normal;
    gap: 0.2rem 2%;
  }
  .numlist li img {
    height: 0.4rem;
  }

  .fz76 {
    font-size: 0.3rem;
  }
  .numlist li {
    width: 49%;
    padding: 0.1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 38px 0px;
  }
}
@media screen and (max-width: 768px) {
  .fz76 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 560px) {
  .numlist {
    gap: 0.05rem 2%;
  }
  .numlist li img {
    height: 0.3rem;
  }
  .numlist h6 {
    font-size: 0.14rem;
    margin-bottom: 0.05rem;
  }
  .numlist span {
    font-size: 0.12rem;
  }
}

/* faq问答 */
.faqBox {
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 0.36rem 0;
}
.faq_list li {
}
.faq_q {
  box-sizing: border-box;
  padding: 0.22rem 0.28rem;
  background-color: rgba(18, 64, 124, 0.08);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}

.faq_a {
}
.faq_q em,
.faq_a em {
  display: table;
  margin-right: 0.14rem;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 0.44rem;
  height: 0.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.24rem;
  color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.faq_q em {
  background: var(--i_color);
}
.faq_a em {
  color: var(--i_color);
  border: 1px solid var(--i_color);
}
.faq_q p {
  width: 85%;
  font-size: 0.2rem;
  color: #333;
  font-weight: bold;
}

.faq_a {
  display: none;
  box-sizing: border-box;
  padding: 0.22rem 0.28rem;
  background: #f6f6f6;
}
.faq_a span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.faq_a p {
  font-size: 0.18rem;
  color: #333;
  line-height: 0.3rem;
}

@media screen and (max-width: 1024px) {
  .faq_list {
    gap: 0.2rem 0;
  }
  .faq_q p {
    font-size: 0.18rem;
  }
  .faq_q p {
    font-size: 0.17rem;
  }
  .faq_q em,
  .faq_a em {
    width: 0.35rem;
    height: 0.35rem;
    font-size: 0.18rem;
  }
  .faq_a p {
    font-size: 0.15rem;
    line-height: 0.26rem;
  }
}
@media screen and (max-width: 768px) {
  .faq_q,
  .faq_a {
    padding: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .faq_a span {
    align-items: stretch;
  }
  .faq_q em,
  .faq_a em {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 0.15rem;
    margin-right: 0.05rem;
  }
  .faq_q p {
    font-size: 0.14rem;
  }
  .faq_a p {
    font-size: 0.12rem;
    line-height: 0.22rem;
    color: #666;
  }
}

/* ------------------------  新闻列表页面 */
.New_Categories {
  background: rgba(18, 64, 124, 0.08);
}

.news_options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 6%;
  position: relative;
}

.news_options a {
  display: block;
  box-sizing: border-box;
  padding: 0 0.4rem 0.3rem 0.4rem;
  position: relative;
  transition: all 0.4s ease;
}
.news_options a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.news_options a:hover,
.news_options .active a {
  color: var(--i_color);
}
.news_options a:hover::before,
.news_options .active a::before {
  width: 100%;
}

@media screen and (max-width: 560px) {
  .news_options {
    padding-top: 0.1rem;
  }
  .news_options a {
    font-size: 0.16rem;
    padding: 0 0.2rem 0.1rem 0.2rem;
  }
}

/* 新闻列表 */
.News_List {
  gap: 0.44rem 0;
}

.new_item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.new_item a {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.1rem;
  overflow: hidden;
}

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

.new_text {
  width: 66.25%;
  box-sizing: border-box;
  padding: 0.48rem 0.58rem 0.41rem 0.47rem;
  background: #f7f7f7;
}

.new_text b {
  color: #4d4d4d;
}

.new_text i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--i_color);
}

.new_text .btn_wire {
  border: none;
}

.new_item:hover .new_img img {
  transform: scale(1.1);
}
.new_item:hover .new_text {
  background: rgba(18, 64, 124, 0.08);
}
.new_item:hover .new_text h3 {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .new_text {
    padding: 0.2rem 0.3rem;
  }
  .new_text h3 {
    margin: 0.1rem 0;
  }
  .new_text h4 {
    font-size: 0.17rem;
  }
  .new_text i {
    margin: 0.2rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .News_List {
    gap: 0.2rem 0;
  }
  .new_item {
    padding-bottom: 0.2rem;
  }
  .new_text b {
    font-size: 0.12rem;
  }
  .new_text h3 {
    font-size: 0.16rem;
  }
  .new_text h4 {
    font-size: 0.14rem;
  }
  .new_text i {
    display: none;
  }
  .new_text .btn_wire {
    margin-top: 0.1rem;
    border: 1px solid var(--i_color);
  }
}
@media screen and (max-width: 560px) {
  .new_text {
    padding: 0.1rem;
  }
  .new_text h3 {
    font-size: 0.14rem;
    margin: 0.02rem 0;
  }
  .new_text h4 {
    font-size: 0.12rem;
  }
  .new_text .btn_wire {
    display: none;
  }
}

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

.in_contact .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.in_contact .i_tit {
  width: 22%;
}
.in_contact .i_tit p {
  text-transform: initial;
}

.c_cont {
  margin-left: auto;
  width: 73%;
}

.c_list {
  margin-bottom: 0.6rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
}
.c_list dt {
  width: 100%;
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
  border-left: 1px solid var(--border_color);
  text-align: center;
}

.c_list dt:hover .img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.c_list dt:last-child {
  border-right: 1px solid var(--border_color);
}
.c_list .img {
  width: 58px;
  height: 58px;
  border-radius: 0.08rem;
  flex-shrink: 0;
  background: var(--i_color);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.c_list img {
  height: 100%;
}
.c_list h6 {
  margin: 0.2rem 0 0.12rem;
  font-size: 0.18rem;
  font-weight: bold;
}
.c_list a,
.c_list p {
  display: block;
  font-size: 0.16rem;
}

.c_list a:hover {
  color: var(--i_color);
}
.in_contact .tit h3 {
  text-align: start;
}
.in_contact .tit h3::before {
  content: none;
}

@media screen and (max-width: 1024px) {
  .c_list .img {
    height: 0.35rem;
    width: 0.35rem;
  }

  .in_contact .i_tit {
    width: 100%;
  }
  .c_cont {
    width: 100%;
    margin: 0.5rem 0 0;
  }

  .c_list {
    flex-wrap: wrap;
    gap: 0.3rem 4%;
  }
  .c_list dt {
    width: 48%;
    border: none !important;
    padding: 0 0;
  }

  .c_list h6 {
    font-size: 0.17rem;
  }
}
@media screen and (max-width: 768px) {
  .c_list h6 {
    font-size: 16px;
  }
  .c_list p,
  .c_list a {
    font-size: 14px;
  }

  .in_contact {
    margin: 0.4rem 0;
  }
}
@media screen and (max-width: 560px) {
  .in_contact {
    margin-bottom: 0.5rem;
  }
  .i_tit h6 {
    margin-top: 0.06rem;
  }
  .c_list {
    margin-bottom: 0.3rem;
  }
}

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

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

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

#wpforms-147 .wpforms-field-container .wpforms-field > input,
#wpforms-147 .wpforms-field-container textarea {
  background: #f3f3f3 !important;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#wpforms-147 .wpforms-form label.wpforms-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
}

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

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

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

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

@media screen and (max-width: 560px) {
  #wpforms-147 .wpforms-submit-container {
    width: 2rem;
  }
  #wpforms-147 .wpforms-submit-container button {
    font-size: 0.14rem;
  }
  #wpforms-147 .wpforms-submit-container {
    margin-top: 0;
  }
}
