/*
Theme Name: DaYi
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: #f38a25;

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

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

/* 通用 */

/* --- 标题 --- */
.titleBox h2 {
  width: max-content;
  display: flex;
  align-items: center;
}
.titleBox h2::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/title_img.webp)
    no-repeat center center;
  background-size: contain;
  margin-right: 0.16rem;
}

.titleBox h2 span {
  display: block;
  margin-left: 0.1rem;
  position: relative;
}
.titleBox h2 span::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--i_color);
  position: absolute;
  bottom: 3px;
  right: 0;
}

@media screen and (max-width: 560px) {
  .titleBox h2::before {
    width: 0.32rem;
    height: 0.32rem;
  }
}

/* --- 按钮 --- */
.btn__ {
  display: table;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn__a {
  display: flex;
  align-items: center;
  gap: 0 0.22rem;
  background: linear-gradient(88deg, #e1562b 0%, #ff9528 105%);
  border-radius: 5rem;
  box-sizing: border-box;
  padding: 0.13rem 0.29rem;
  transition: all 0.4s ease;
  color: #fff;
}
.btn__a p {
  font-weight: bold;
}
.btn__a iconify-icon {
  font-size: 0.3rem;
}
.btn__:hover {
  transform: translateY(-0.03rem);
}
.btn__:hover .btn__a {
  box-shadow: 0 0.06rem 0.12rem rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1024px) {
  .btn__a {
    padding: 0.05rem 0.2rem;
    gap: 0.1rem;
  }
  .btn__a p {
    font-size: 0.16rem;
  }
  .btn__a iconify-icon {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .btn__a {
    padding: 0.05rem 0.1rem;
  }
  .btn__a p {
    font-size: 0.14rem;
  }
  .btn__a iconify-icon {
    font-size: 0.17rem;
  }
}

/* ---** end **--- */

.wrap {
  width: 94vw;
  max-width: 1500px;
  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_h {
  width: 100%;
  height: var(--header_height);
  display: none;
}
@media screen and (max-width: 1024px) {
  .header_h {
    display: block;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20251127;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
header .wrap {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}

header::before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 20%);
}

header.fixedHeader,
.Header__ {
  background: #000;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}

@media screen and (max-width: 1024px) {
  .header__ {
    display: none;
  }
  header {
    background: #000;
  }
}

/* logo */
.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 0.58rem;
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo img {
  max-height: 100%;
}
@media screen and (max-width: 1366px) {
  .logo a {
    height: 50%;
  }
}

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

  .i_nav > li {
    position: relative;
  }
  .i_nav > li::before {
    display: none;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #333;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    font-weight: bold;
    color: #fff;
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
  }

  .i_nav > li > a:before {
    display: block;
    content: "";
    position: absolute;
    right: 50%;
    bottom: 38%;
    transform: translateX(50%);
    width: 0;
    height: 1px;
    background: var(--i_color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  /* .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > li.active::before {
    right: initial;
    left: 0;
    width: 100%;
  } */

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

  .i_nav > .current-menu-item > a::before,
  .i_nav > .current-category-ancestor > a::before,
  .i_nav > .current-post-ancestor > a::before,
  .i_nav > .current-menu-ancestor > a::before,
  .i_nav > .current-menu-parent > a::before,
  .i_nav > li:hover > a::before,
  .i_nav > li.active > a::before {
    width: 100%;
  }

  .i_nav > li > .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    min-width: 1.6rem;
    background: #fff;
    box-shadow: 0 0.06rem 0.1rem rgb(0 0 0 / 8%);
    font-size: 0;
  }
  .nav_dropdown_menu1 > .sub-menu,
  .nav_dropdown_menu2 > .sub-menu,
  .nav_dropdown_menu3 > .sub-menu,
  .nav_dropdown_menu4 > .sub-menu {
    display: none !important;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav > li > .sub-menu li::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-color: var(--i_color);
    transition: all 0.5s ease;
  }
  .i_nav > li > .sub-menu a {
    display: block;
    padding: 0 0.16rem;
    font-size: 0.15rem;
    color: #333;
    line-height: 0.36rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }
  .i_nav > li > .sub-menu > li:hover::before {
    width: 100%;
  }
  .i_nav .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--i_color);
    min-width: 1.4rem;
  }
  .i_nav .sub-menu .sub-menu li {
    border-bottom-color: rgb(255 255 255 / 15%);
  }
  .i_nav .sub-menu .sub-menu a {
    font-size: 14px;
    color: #fff;
  }
  .i_nav .sub-menu .sub-menu li:hover {
    background: rgb(255 255 255 / 15%);
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.4rem;
  }
  .i_nav > li > a {
    font-size: 15.5px;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav > li > a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: fixed;
    top: var(--header_height);
    left: 0;
    width: 100%;
    width: 100vw;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
    z-index: 2;
  }
  /*滚动条*/
  .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: 0;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.24rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);
    background-size: 0.24rem;
  }
  .i_nav > li > a {
    padding: 0 3%;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }
  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 16px;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  /* .i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	} */
  .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav .sub-menu .sub-menu {
    display: none;
  }
  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 15px;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }
  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}
.nav_menu.on i {
  opacity: 0;
}
.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}
.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
  }
}
/* 导航下拉 */
.nav_dropdown {
  position: fixed;
  top: var(--top_h);
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2013;
}
.nav_dropdown_item {
  display: none;
  padding: 0.4rem 0;
}
.nav_dropdown_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 3%;
}
.nav_dropdown_list dt {
  width: 100%;
  max-width: 3.8rem;
}
.nav_p_cat_name a {
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 900;
}
.nav_dropdown_list ul {
  margin-top: 0.2rem;
}
.nav_dropdown_list li {
  position: relative;
  padding-left: 0.24rem;
}
.nav_dropdown_list li::before {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 24 24"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M24 0v24H0V0h24ZM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018Zm.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022Zm-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01l-.184-.092Z"%2F%3E%3Cpath fill="currentColor" d="M15.707 11.293a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 1 1-1.414-1.414l4.95-4.95l-4.95-4.95a1 1 0 0 1 1.414-1.414l5.657 5.657Z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}
.nav_dropdown_list li a {
  display: block;
  padding: 0.06rem 0;
  font-size: 0.15rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_dropdown_list li:hover a {
  margin-left: 8px;
  color: var(--i_color);
}

.top_r {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: auto;
  gap: 0 0.3rem;
}

/* search */
.top_search_btn {
  display: none;
}

.search_cont {
  --search_height: 0.32rem;
}
.search_cont form {
  width: 2.1rem;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  box-sizing: border-box;
  border: 1px solid #cecece;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
.search_ipt {
  width: calc(100% - var(--search_height));
  height: var(--search_height);
  box-sizing: border-box;
  padding: 0.2rem 0.1rem 0.2rem 0.12rem;
  background: none;
  font-size: 14px;
  color: #fff;
}

.search_ipt::placeholder {
  color: white;
  opacity: 1;
}

.search_btn {
  font-size: 0;
  color: #fff;
  width: var(--search_height);
  height: var(--search_height);
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="white" d="M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3ZM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8Z"%2F%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: 0.28rem;
  cursor: pointer;
  margin-right: 0.2rem;
}

@media screen and (max-width: 1366px) {
  .search_cont form {
    width: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .top_search_btn {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: var(--header_height);
    cursor: pointer;
    position: relative;
  }
  .top_search_btn iconify-icon {
    font-size: 0.24rem;
    color: #fff;
  }

  .search_cont {
    --search_height: 0.4rem;
  }
  .search_cont {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: calc(var(--header_height) + 0.2rem);
    left: 0;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 0.2rem 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .search_cont.on {
    opacity: 1;
    visibility: visible;
    top: var(--header_height);
  }
  .search_cont form {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-color: var(--i_color);
  }
  .search_ipt {
    font-size: 13px;
  }
  .search_btn {
    background-color: var(--i_color);
  }
}
@media screen and (max-width: 1024px) {
  .search_cont {
    --search_height: 0.34rem;
  }
  .search_cont {
    padding: 0.14rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .top_search_btn iconify-icon {
    font-size: 20px;
  }
}

.top_language {
  position: relative;
}

.top_language_btn {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: var(--header_height);
  padding-right: 0.2rem;
  cursor: pointer;
  position: relative;
}

.top_language_btn .icon-quanqiu {
  font-size: 0.32rem;
  color: #fff;
  margin-right: 0.06rem;
}

.top_language_btn p {
  font-size: 0.18rem;
  color: #fff;
}

.top_language_btn .icon-xiala {
  font-size: 0.22rem;
  color: #fff;
}

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

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

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

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

@media screen and (max-width: 1200px) {
  .top_language_btn p {
    display: none;
  }
  .top_language_btn iconify-icon {
    display: block;
    font-size: 0.24rem;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .top_language_btn iconify-icon {
    font-size: 22px;
  }

  .top_language_btn .icon-quanqiu {
    font-size: 0.28rem;
  }
  .search_ipt {
    color: #333;
  }

  .language_list dt > h6 {
    font-size: 15px;
  }
  .lang_list a {
    padding: 2px 0;
  }
  .lang_list .trp-ls-language-name {
    padding-left: 20px;
  }
  .lang_list .trp-ls-language-name::before {
    width: 14px;
    height: 14px;
  }
  .lang_list .trp-ls-language-name::after {
    left: 4px;
  }
}
@media screen and (max-width: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

@media screen and (max-width: 560px) {
  header .wrap {
    gap: 0;
  }
  .top_r {
    gap: 0 0.15rem;
    margin-right: 0.15rem;
  }
  .top_language_btn .icon-quanqiu {
    margin-right: 0;
  }
  .top_language_btn .icon-xiala {
    display: none;
  }
  .top_language_btn {
    padding-right: 0;
  }
}

.full_header_height {
  display: none;
  height: var(--header_height);
}
@media screen and (max-width: 1024px) {
  .full_header_height {
    display: block;
  }
}

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

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

.i_banner01 h2 {
  color: #fff;
  font-weight: bold;
  font-size: 0.62rem;
}

.i_banner01 h3 {
  width: max-content;
  color: #fff;
  box-sizing: border-box;
  padding: 0.09rem 0.25rem;
  font-size: 0.24rem;
  margin-top: 0.16rem;
  background-color: var(--i_color);
}

.i_banner01 h3 i {
  font-size: 0.32rem;
  font-weight: bold;
}

/* -------------------------- */
.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;
  display: none;
}
.i_banner-prev {
  left: 0;
}
.i_banner-next {
  right: 0;
}
.i_banner-prev iconify-icon,
.i_banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.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: none;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
}
.i_banner-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin: 0 4px;
}
.i_banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .i_banner01 h2 {
    font-size: 0.5rem;
  }
  .i_banner01 h3 {
    font-size: 0.22rem;
  }
  .i_banner01 h3 i {
    font-size: 0.28rem;
  }
}
@media screen and (max-width: 1024px) {
  .i_banner-prev,
  .i_banner-next {
    display: none;
  }
  .i_banner01 h2 {
    font-size: 0.32rem;
  }
  .i_banner01 h3,
  .i_banner01 h3 i {
    width: 100%;
    font-size: 0.18rem;
    font-weight: normal;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .i_banner01 {
    top: 15%;
  }
  .i_banner01 h2 {
    font-size: 0.16rem;
    font-weight: normal;
  }
  .i_banner01 h3,
  .i_banner01 h3 i {
    font-size: 0.1rem;
  }
}

/* 产品类别 */

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

.Product_Category_box .wrap {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
}

/* 类别选项 */
.Category_Options {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
  position: absolute;
  left: 0;
  bottom: 5%;
}

.Category_Options li {
  width: 18.4%;
  box-sizing: border-box;
  border-radius: 8px 8px 0px 0px;
  background: #ffffff;
  position: relative;
  padding: 0.17rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.17rem;
  cursor: pointer;
}
.Category_Options li::before {
  content: "";
  display: block;
  width: 0;
  height: 0.04rem;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.Category_Options img {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
  display: block;
}
.Category_Options .Category_Options_n {
  display: none;
}

.Category_Options li:hover::before {
  width: 100%;
}

.Category_Options .active .Category_Options_b {
  display: none;
}
.Category_Options .active .Category_Options_n {
  display: block;
}
.Category_Options .active p {
  color: var(--i_color);
}
.Category_Options .active::before {
  width: 100%;
}

.Category_Introduction {
  width: 38.54%;
  position: absolute;
  left: 0;
  bottom: 25%;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0.4rem 0.36rem 0.55rem 0.36rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  transition: all 0.4s;
}
.Category_Introduction.active {
  display: block;
}

.Category_Introduction > p {
  margin: 0.15rem 0 0.24rem 0;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
  .Category_Introduction {
    width: 42%;
  }
}
@media screen and (max-width: 1200px) {
  .Category_Introduction {
    width: 55%;
  }
}
@media screen and (max-width: 1024px) {
  .Product_Category_box {
    padding: 0.4rem 0;
  }
  .Product_Category_box .wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    height: auto;
  }
  .Product_Category_box::before {
    display: none;
  }

  .Category_Introduction {
    width: 100%;
    position: relative;
    top: 0;
    padding: 0.2rem;
    margin-top: 0.3rem;
  }
  .Category_Options {
    position: relative;
    bottom: 0;
    gap: 0.1rem 2%;
  }

  .Category_Options li {
    padding: 0.04rem 0;
  }
  .Category_Options img {
    width: 0.35rem;
    height: 0.35rem;
  }
  .Category_Options li::before {
    height: 2px;
  }

  .Category_Options p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .Category_Options li {
    width: 32%;
  }
}
@media screen and (max-width: 560px) {
  .Category_Options li {
    width: 48%;
  }
  .Category_Options img {
    width: 0.25rem;
    height: 0.25rem;
  }
  .Category_Options p {
    font-size: 0.14rem;
  }
}

/* 热门产品 */
.Popular_Products {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(243, 138, 37, 0.05) 27%
  );
}

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

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

.hot_products_a {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.hot_products_img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.hot_products_img::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.hot_products_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.hot_products_text {
  box-sizing: border-box;
  padding: 0.2rem 0.15rem;
  background-color: #fff;
}
.hot_products_text h3 {
  font-size: 0.16rem;
  color: #666;
  margin-bottom: 0.24rem;
}
.hot_products_text h4 {
  font-size: 0.2rem;
  color: #333;
  font-weight: bold;
  line-height: 0.23rem;
  height: 0.46rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0.19rem;
  transition: all 0.3s ease;
  position: relative;
}

.hot_products_text h5:first-of-type {
  border-top: 1px solid #e0e0e0;
  padding-top: 0.1rem;
}

.hot_products_text h5 {
  font-size: 0.18rem;
  color: #666;
  box-sizing: border-box;
  margin-top: 0.1rem;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  transition: all 0.3s ease;
}

.hot_products_text h5 span {
  font-size: 0.2rem;
  color: red;
  font-weight: bold;
}
.hot_products_text h5 i {
  color: #333;
}

.hot_products_a:hover img {
  width: 110%;
  height: 110%;
}
.hot_products_a:hover h4 {
  color: var(--i_color);
}

.hot_products_dl {
  overflow: hidden;
}
.hot_products_dl dt {
  animation: slideInRight 1s ease;
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .hot_products_text h4 {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 560px) {
  .hot_products_text h3 {
    margin-bottom: 0.1rem;
  }
  .hot_products_text h4 {
    font-size: 0.16rem;
    margin-bottom: 0.1rem;
  }
  .hot_products_text h5,
  .hot_products_text h5 span {
    font-size: 0.14rem;
  }

  .Popular_Products-pagination {
    margin-top: 0.2rem;
  }
}

/* 关于公司 */
.About_Company {
  position: relative;
}
.About_Company::before {
  content: "";
  display: block;
  width: 69.4%;
  height: 94.8%;
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/About_CompanyLeftBa.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.About_Company::after {
  content: "";
  display: block;
  width: 55.65%;
  height: 16.8%;
  background-color: var(--i_color);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

.About_Company_left {
  width: 47.5%;
}

.About_Company_right {
  width: 50%;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
}

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

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

.i_video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.3rem;
  height: 1.3rem;
}
.i_video_btn .icon {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.74rem;
  height: 0.74rem;
  background: rgba(255, 255, 255, 0.49);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.i_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 {
  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) {
  .i_video_btn {
    width: 120px;
    height: 120px;
  }
  .i_video_btn .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .i_video_btn {
    width: 80px;
    height: 80px;
  }
  .i_video_btn .icon {
    width: 50px;
    height: 50px;
  }
  .i_video_btn iconify-icon {
    font-size: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .About_Company::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .About_Company::before {
    width: 100%;
    height: 50%;
  }
  .About_Company_left,
  .About_Company_right {
    width: 100%;
  }
}

/* 宣传数据 */
.Promotional_data {
  position: relative;
  overflow: hidden;
}
.Promotional_data::before {
  content: "";
  display: block;
  width: 100%;
  height: 4.7rem;
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/Wire.webp)
    no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -30%;
  z-index: -1;
}

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

.Promotional_data_list li {
  position: relative;
  box-sizing: border-box;
}

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

.p_num h6 {
  font-size: 0.86rem;
  background: linear-gradient(180deg, #e45d2b 0%, #f38a25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}
.p_num h6::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: border-box;
  border: 6px solid rgba(243, 138, 37, 0.1);
  border-radius: 50%;
  position: absolute;
  top: -0.3rem;
  left: -0.22rem;
}

.Promotional_data_list p {
  display: flex;
  align-items: center;
  margin-left: 0.27rem;
  margin-top: 0.12rem;
}
.Promotional_data_list p::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.04rem;
  background-color: var(--i_color);
  margin-right: 0.08rem;
}

.Promotional_data_list li:nth-child(1) {
  margin-top: 0.59rem;
}
.Promotional_data_list li:nth-child(2) {
  margin-top: 1.24rem;
}
.Promotional_data_list li:nth-child(3) {
  margin-top: 1.29rem;
}
.Promotional_data_list li:nth-child(4) {
}

@media screen and (max-width: 1366px) {
  .Promotional_data::before {
    top: -40%;
  }
}
@media screen and (max-width: 1200px) {
  .Promotional_data::before {
    top: -50%;
  }
  .p_num h6 {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .Promotional_data::before,
  .p_num h6::before,
  .Promotional_data_list p::before {
    display: none;
  }
  .Promotional_data_list li {
    width: 25%;
    margin-top: 0 !important;
  }
  .p_num h6 {
    font-size: 0.4rem;
  }
  .Promotional_data_list p {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .Promotional_data_list li {
    width: 50%;
  }
}
@media screen and (max-width: 560px) {
  .p_num {
    justify-content: center;
  }
  .p_num h6 {
    font-size: 0.24rem;
  }
  .p_num h5 {
    font-size: 0.14rem;
  }
  .Promotional_data_list p {
    width: 100%;
    justify-content: center;
    font-size: 0.14rem;
  }
}

/* 应用领域 */
.Application_areas {
  overflow: hidden;
  background: rgba(200, 190, 180, 0.102);
}

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

.Application_areas_left {
  width: 50.14%;
}

.Application_areas_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16rem 2%;
}

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

@media screen and (min-width: 1025px) {
  .Application_areas_list li:nth-child(3n - 1) {
    transform: translateY(0.16rem);
  }
}

.Application_areas_right {
  width: 45.74%;
  position: relative;
  padding-bottom: 1.35rem;
}

.Application_areas_right > img {
  width: 48.1%;
  position: absolute;
  bottom: 0;
  right: -9%;
}

.Application_areas_form {
  box-sizing: border-box;
  padding: 0.24rem 0.32rem 0.4rem 0.32rem;
  background-color: var(--i_color);
  border-radius: 8px;
}

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

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

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

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

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

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

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

#wpforms-82 .wpforms-submit-container {
  width: 160px;
  padding: 0 0;
  position: absolute;
  left: 50%;
  bottom: -15%;
  transform: translateX(-50%);
}
#wpforms-82 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #333;
  font-weight: bold;
  background: #ffd118;
  border-radius: 5rem;
}
#wpforms-82 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-82 .wpforms-submit-container button:hover {
  transform: translateY(-4px);
}

@media screen and (max-width: 1440px) {
  #wpforms-82 .wpforms-submit-container {
    bottom: -13%;
  }
}

@media screen and (max-width: 1024px) {
  .Application_areas_left,
  .Application_areas_right {
    width: 100%;
  }
  .Application_areas_right {
    padding-bottom: 0.3rem;
  }
  .Application_areas_right > img {
    display: none;
  }

  #wpforms-82 .wpforms-submit-container {
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}

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

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

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

.adv_service_ul {
  display: flex;
  gap: 0.12rem;
  margin-top: 0.6rem;
  overflow: hidden;
}

.adv_service_ul li {
  flex-grow: 1;
  width: 20%;
  height: 6.2rem;
  position: relative;
  transition: all 0.7s ease;
  z-index: 2;
  border-radius: 0.1rem;
}

.adv_service_ul li.adv_service_active {
  width: 54.8%;
}

.adv_service_ul li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.1rem;
}

.adv_service_ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: -webkit-linear-gradient(top, transparent, rgb(243, 138, 37, 0.9));
  transition: all 1s ease;
  border-radius: 0.1rem;
}

.adv_service_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.4rem 0.2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adv_service_text img {
  width: 0.64rem;
  display: block;
  margin-bottom: 0.17rem;
}

.adv_service_text h3 {
  font-size: 0.18rem;
  color: #fff;
  line-height: 0.3rem;
  text-transform: capitalize;
  font-weight: bold;
  box-sizing: border-box;
  text-align: center;
}

.adv_service_text h4 {
  display: none;
  font-size: 0.16rem;
  color: #fff;
  width: 37vw;
  line-height: 1.5;
  margin-top: 0.12rem;
}

.adv_service_ul li.adv_service_active .adv_service_text {
  align-items: flex-start;
}

.adv_service_ul li.adv_service_active .adv_service_text h4 {
  display: block;
  animation: opPrevIn 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965) alternate;
}

.adv_service_ul li.adv_service_active::after {
  height: 59.5% !important;
}

@media screen and (max-width: 1600px) {
  .adv_service_text h4 {
    width: 42vw;
  }
}

@media screen and (max-width: 1440px) {
  .adv_service_text h3 {
    font-size: 0.2rem;
    line-height: 0.25rem;
  }

  .adv_service_text h4 {
    font-size: 0.14rem;

    width: 43vw;
  }

  .adv_service_ul li {
    height: 6rem;
  }
}

@media screen and (max-width: 1200px) {
  .adv_service_text h3 {
    font-size: 0.18rem;
    line-height: 0.24rem;
  }

  .adv_service_ul li {
    height: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .adv_service_ul li {
    height: 4.5rem;
  }
  .adv_service_text {
    align-items: flex-start;
  }
  .adv_service_text img {
    width: 0.4rem;
  }
  .adv_service_text h3 {
    text-align: left;
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 960px) {
  .adv_service_ul li {
    height: 4rem;
  }

  .adv_service_ul li {
    width: 100%;
  }

  .adv_service_ul {
    margin-top: 0.4rem;

    flex-wrap: wrap;
  }

  .adv_service_text h4 {
    width: 85vw;
  }

  .adv_service_text {
    padding: 0.3rem 0.2rem 0.2rem 0.2rem;
  }
}

@media screen and (max-width: 767px) {
  .adv_service_bac {
    padding: 0.6rem 0;
  }
}

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

/* 合作品牌 */

.Co_branded {
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/Brands_Ba-3.webp)
    no-repeat center;
  background-size: cover;
}

.partner_cont {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 0.6rem;
}
.partner_cont::before {
  content: "";
  display: block;
  padding-bottom: 15.35%;
}
.partner_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.partner_list .swiper-wrapper {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}
.partner_list .swiper-slide {
  flex-shrink: 0;
  height: calc((100% - 85px) / 2);
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}
.partner_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  object-fit: contain;
}

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

@media screen and (max-width: 1440px) {
  .partner_list .swiper-slide {
    height: calc((100% - 60px) / 2);
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .partner_cont {
    margin: 0 3vw;
  }
  .partner-pagination {
    margin-top: 0.3rem;
  }
  .partner_list .swiper-slide {
    height: calc((100% - 30px) / 2);
  }
  .partner_cont::before {
    padding-bottom: 20%;
  }
}
@media screen and (max-width: 768px) {
  .partner_cont::before {
    padding-bottom: 24%;
  }
}
@media screen and (max-width: 560px) {
  .partner_cont::before {
    padding-bottom: 40%;
  }
}

/* 客户照片 */
.Customer_photos {
  position: relative;
}

.Customer_photos::before {
  content: "";
  display: block;
  width: 4.86rem;
  height: 4.86rem;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.45;
  background: linear-gradient(
    140deg,
    rgba(243, 138, 37, 0.21) 0%,
    rgba(243, 138, 37, 0) 47%
  );
  z-index: -1;
}

.photo_pic {
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Customer_photos::before {
    width: 40%;
    height: 40%;
  }
}

/* 主页新闻 */

.Homepage_News {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 41%,
    rgba(243, 138, 37, 0.05) 100%
  );
}

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

.Homepage_News_left {
  width: 21.4%;
}

.Homepage_News_right {
  width: 76.5%;
}

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

.Homepage_News_list a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

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

.Homepage_News_pic p {
  box-sizing: border-box;
  padding: 0.06rem 0.16rem;
  background-color: #333333;
  border-radius: 0.08rem;
  position: absolute;
  right: 0.2rem;
  bottom: 0;
  transform: translateY(50%);
  transition: all 0.4s ease;
}

.Homepage_News_txt {
  box-sizing: border-box;
  padding: 0.33rem 0.17rem 0 0.16rem;
}

/* -------------------------- */
.Homepage_News_btns {
  display: flex;
  gap: 0 6%;
}

.Homepage_News-prev,
.Homepage_News-next {
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  z-index: 3;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.Homepage_News-prev {
  left: 0;
}
.Homepage_News-next {
  right: 0;
}
.Homepage_News-prev iconify-icon,
.Homepage_News-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.22rem;
  color: var(--i_color);
}
.Homepage_News_list .swiper-button-disabled {
  cursor: not-allowed;
}
.Homepage_News-prev:hover,
.Homepage_News-next:hover {
  background: linear-gradient(128deg, #e2572b 4%, #fc8f28 86%);
  border-color: transparent;
}
.Homepage_News-prev:hover iconify-icon,
.Homepage_News-next:hover iconify-icon {
  color: #fff;
}

.Homepage_News_btn {
  margin-top: 0.16rem;
  box-sizing: border-box;
  padding: 0.08rem 0.16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(98deg, #e45d2a 0%, #f28725 86%);
  transition: all 0.4s ease;
  opacity: 0;
}

.Homepage_News_btn iconify-icon {
  font-size: 0.26rem;
}

.Homepage_News_list .swiper-slide:hover .Homepage_News_pic p {
  background-color: var(--i_color);
}
.Homepage_News_list .swiper-slide:hover .Homepage_News_txt p {
  color: var(--i_color);
}
.Homepage_News_list .swiper-slide:hover .Homepage_News_btn {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .Homepage_News_left,
  .Homepage_News_right {
    width: 100%;
  }
  .Homepage_News_left .titleBox {
    margin-bottom: 0;
  }
  .Homepage_News_btns {
    display: none;
  }
  .Homepage_News_btn {
    opacity: 1;
  }
}

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

.footer_top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  padding-bottom: 0.23rem;
  border-bottom: 1px solid #5d5d5d;
}

.footer_top .logo {
  height: 1.03rem;
}

.ft_social_media {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
}

.fMedia {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.1rem;
}

.fMedia a {
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background-color: rgb(255, 255, 255, 15%);
  position: relative;
  transition: all 0.5s ease;
}
.fMedia iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.2rem;
  color: #fff;
}

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

@media screen and (max-width: 768px) {
  .fMedia a {
    width: 40px;
    height: 40px;
  }
  .fMedia iconify-icon {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .fMedia {
    gap: 0 20px;
  }
  .fMedia a {
    width: 34px;
    height: 34px;
  }
  .fMedia iconify-icon {
    font-size: 18px;
  }
}

.footer_box {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.footer_1 {
  width: 32.14%;
  box-sizing: border-box;
}
.footer_h3 {
  font-size: 0.28rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.26rem;
}
.footer_1 h4 {
  color: #989898;
}
.footer_2 {
  width: max-content;
  box-sizing: border-box;
}
.footer_ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer_ul li {
}
.footer_ul li a {
  font-size: 0.18rem;
  color: #666666;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}
.footer_ul li a::before {
  content: "▶";
  display: block;
  position: absolute;
  left: -0.12rem;
  top: 8%;
  font-size: 0.06rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer_ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--i_color);
  transition: all 0.3s ease;
}
.footer_ul li a:hover {
  color: var(--i_color);
}
.footer_ul li a:hover::before {
  opacity: 1;
}
.footer_ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.footer_3 {
  width: max-content;
  box-sizing: border-box;
}
.footer_4 {
  width: 22.54%;
}
.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.footer_contact li {
  display: flex;
  gap: 0.05rem;
}

.footer_contact li p {
  font-size: 0.16rem;
  color: #666;
  line-height: 120%;
}
.footer_contact li a {
  font-size: 0.16rem;
  color: #666;
  transition: all 0.3s ease;
}

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

.footer_down_bac {
}
.footer_down {
  box-sizing: border-box;
  padding: 0.25rem 0;
  border-top: 1px solid #49ab3c;
}
.footer_down p {
  font-size: 0.16rem;
  color: #333;
}
.footer_down p a {
  font-size: 0.16rem;
  color: #333;
  transition: all 0.3s ease;
}
.footer_down p a:hover {
  color: var(--i_color);
}
.footer_contact li:not(:last-child) p {
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  .footer_1,
  .footer_2,
  .footer_3 {
    display: none;
  }
  .footer_4 {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
  .footer_down {
    padding: 0.25rem 0 0.75rem 0;
  }
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 425px) {
}

.f_cr {
  border-radius: 40px 40px 0px 0px;
  background: #272727;
}

.f_cr .wrap {
}
.f_cr p,
.f_cr a {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.f_cr a:hover {
  color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .f_cr {
    border-radius: 0;
  }
}

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

/* **** 内页banner **** */

.banner_box {
  width: 100%;
  position: relative;
}

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

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

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

/* Breadcrumb */
.LocationBox {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.in_position {
  padding: 0.2rem 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 62%
  );
  position: relative;
}
.in_position .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 15px;
  color: #fff;
  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: 18px;
  height: 18px;
  background: url(static/imgs/home.webp) no-repeat center;
  background-size: contain;
}
.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #fff;
}
.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;
  }
}

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

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

.catList_aside {
  width: 21.5%;
  box-sizing: border-box;
  position: relative;
}

.catList_show {
  width: 76.4%;
}

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

  .catList_show {
    width: 100%;
  }
}

.cat_nav {
  /* padding: 0 0.2rem; */
  background: #fffcf9;
  position: relative;
}
.cat_nav_tit {
  margin-bottom: 0.1rem;
}
.cat_nav_tit h4 {
  padding: 0 0.2rem;
  font-size: 0.28rem;
  display: none;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
}
/* .cat_nav_list li {
  position: relative;
  border-top: 1px solid #ddd;
}
.cat_nav_list li:last-child {
  border-bottom: 1px solid #ddd;
}
.cat_nav_list li.active {
  border-color: transparent;
} */

.cat_fold_tit {
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.cat_fold_tit a {
  padding: 0.17rem 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.5s ease;
  transition: all 0.5s ease;
}
.cat_fold_tit a:hover,
.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: var(--i_color);
}
.active .cat_fold_tit {
  background: var(--i_color);
}
.active .cat_fold_tit a {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  color: #fff;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cat_fold_sub {
  display: none;
  padding: 0.1rem 0.2rem;
}
.cat_fold_sub a {
  display: block;
  padding: 0.1rem 0;
  padding-left: 0.16rem;
  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: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 6px;
  height: 6px;
  background: #666;
  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 {
  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;
    background: none;
  }
  .cat_nav_tit {
    margin: 0;
    padding: 14px 28px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--i_color);
  }
  .cat_nav_tit h4 {
    display: block;
    padding: 0 0;
    font-size: 20px;
    color: #fff;
  }
  .cat_nav_tit iconify-icon {
    display: block;
    margin-left: auto;
    font-size: 26px;
    color: #fff;
  }

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

  .cat_fold_sub {
    padding: 0 20px;
  }

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

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

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

.cat_info {
}

.cat_info > span {
  display: block;
  color: #666;
}

.productsList {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 3%;
}
.productsList li {
  width: 31.33%;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.productsList li:hover {
  box-shadow: 0px 4px 10px 0px rgba(243, 138, 37, 0.12);
}

@media screen and (max-width: 768px) {
  .productsList {
    gap: 40px 4%;
  }
  .productsList li {
    width: 48%;
  }
}

@media screen and (max-width: 560px) {
  .productsList li {
    width: 100%;
    box-shadow: 0px 4px 10px 0px rgba(243, 138, 37, 0.12);
  }
}

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

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

/* atlas */
.p_atlas {
  width: 42.7%;
  box-sizing: border-box;
  position: relative;
}
.p_atlas_list {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  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: 75.15%;
}
.p_atlas_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* thumbnail */
.p_thumbnail_list {
  width: calc(100% - 1.2rem);
  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 {
  box-sizing: border-box;
  border: 1px solid transparent;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.p_thumbnail_list figure {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list figure::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.5s ease;
}
.p_thumbnail_list figure::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.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::after {
  height: 0;
}
.p_thumbnail_list .swiper-slide-thumb-active {
  border-color: var(--i_color);
}

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

.thumbnail-pagination {
  position: absolute;
  bottom: 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: #666;
}
.thumbnail-pagination .swiper-pagination-current {
  font-size: 0.22rem;
  color: var(--i_color);
}

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

  .p_atlas {
    width: 100%;
    max-width: 6rem;
    margin: 0 auto 0.46rem;
  }
  .p_thumbnail_list {
    width: 100%;
  }
  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
  .thumbnail-pagination {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .p_atlas_list {
    width: 100%;
  }
  .thumbnail-prev iconify-icon,
  .thumbnail-next iconify-icon {
    font-size: 30px;
  }
}

.p_title {
  width: 55.94%;
}

.p_title h1 {
  padding-bottom: 0.14rem;
  border-bottom: 1px solid var(--i_color);
}

.p_des {
  border-bottom: 1px solid #e5e5e5;
}

.p_des article {
}

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

.Product_Advantages li {
  width: 26.58%;
  box-sizing: border-box;
  background-color: #fff8f1;
  padding: 0.2rem 0.15rem;
}

.Product_Advantages img {
  width: 0.32rem;
  display: block;
  margin-bottom: 0.16rem;
  transition: all 0.4s ease;
}

.Product_Advantages li:hover img {
  transform: scaleX(-1);
}
.Product_Advantages li:hover p {
  color: var(--i_color);
}

/* 操作 */
.Product_operate {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; */
}

.btns {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.btns .btn__ .btn__a {
  border-radius: 0;
}

.btns > .btn__:nth-child(1) {
}

.btns > .btn__:nth-child(2) .btn__a {
  background: transparent;
  border: 1px solid var(--i_color);
  color: var(--i_color);
}

.btns > .btn__:nth-child(3) .btn__a {
  background: #000000;
  gap: 0 8px;
}

.pShare {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.09rem;
}
.pShare dl {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.12rem;
}
.pShare dt a {
  display: block;
  width: 0.28rem;
  height: 0.28rem;
  background: #999999;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.pShare dt iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.14rem;
  color: #fff;
}
.pShare dt a:hover {
  background: var(--i_color);
}
.pShare dt a:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .p_title {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Product_Advantages li {
    width: 49%;
  }
  .pShare {
    width: 100%;
  }
  .pShare dt a {
    width: 30px;
    height: 30px;
  }
  .pShare dt iconify-icon {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  .Product_Advantages img {
    width: 0.24rem;
  }
  .Product_Advantages li p {
    font-size: 0.12rem;
  }
}

/* 产品详情 */
.Product_Description .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.Product_Description_left {
  width: 74.6%;
  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;
  border-bottom: 1px solid var(--border_color);
  justify-content: start;
  gap: 0 40px;
}

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

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

@media screen and (max-width: 1024px) {
  .Product_Description_left {
    width: 100%;
  }
  .Product_Description .catList_aside {
    order: -1;
  }
  .pc_left .tab-list {
    gap: 20px 4%;
  }
  .pc_left .tab {
    width: 48%;
    box-sizing: border-box;
  }

  .pc_left .tab-list {
    margin-bottom: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .pc_left .tab-list {
    gap: 14px 4%;
  }
  .pc_left .tab {
    padding: 10px 16px;
    font-size: 15px;
  }
}

/* 信息展示 */
.Information_Display {
  background-color: var(--i_color);
}

/* tags */
.p_tags {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #f8b97c;
  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;
  color: #fff;
}
.p_tags a {
  margin-right: 0.3rem;
  padding: 0.08rem 0.1rem;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
}
.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.2rem;
  height: 0.2rem;
  position: relative;
  box-sizing: border-box;
}
.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;
  color: #fff;
}
.p_view_other p b {
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;
}

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

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

/* 相关产品 */
.Related_products .Popular_Products_list .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}

.Related_products .Popular_Products_list .swiper-slide:hover {
  box-shadow: 0px 4px 10px 0px rgba(243, 138, 37, 0.12);
}

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

/* 关于我们 */
.about_Us {
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/About_Company_Ba.webp)
    no-repeat;
  background-size: contain;
}

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

.about_Us_list li {
  width: 17%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_Us_num {
  display: flex;
  align-items: baseline;
}

.about_Us_num h6 {
  font-size: 0.62rem;
  position: relative;
}
.about_Us_num h6::before {
  content: "";
  display: block;
  width: 0.98rem;
  height: 0.98rem;
  border-radius: 50%;
  background: linear-gradient(317deg, rgba(243, 138, 37, 0) 15%, #f38a25 79%);
  position: absolute;
  opacity: 0.1;
  left: -9px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -1;
}

.about_Us_list p {
  margin-top: 0.18rem;
}

@media screen and (max-width: 1024px) {
  .about_Us_list {
    gap: 0.2rem 0;
  }
  .about_Us_list li {
    width: 48%;
  }
  .about_Us_num h6 {
    font-size: 0.48rem;
  }
  .about_Us_num h6::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .about_Us .titleBox h2 {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .about_Us_num h6 {
    font-size: 0.36rem;
  }
}
@media screen and (max-width: 560px) {
  .about_Us_num h6 {
    font-size: 0.24rem;
  }
}

.homeAbout_video {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.homeAbout_video::before {
  content: "";
  display: block;
  padding-bottom: 35.74%;
}

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

.video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  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) {
  .homeAbout_video {
    -webkit-border-radius: 14px;
    border-radius: 14px;
  }
  .video_btn {
    width: 120px;
    height: 120px;
  }
  .video_btn .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .homeAbout_video::before {
    padding-bottom: 48%;
  }
}
@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;
  }
}

/* 环境展示 */
.Environmental_Display {
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/Environmental_Display_ba.webp)
    no-repeat center;
  background-size: cover;
}

.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 {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.gol_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  flex-direction: column;
  transition: width 0.3s ease;
  overflow: hidden;
  width: 20% !important;
}
.gol_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 4.8rem;
}
.gol_partner_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.gol_partner_list p {
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
  z-index: 12;
  opacity: 0;
  transition: all 0.3s ease;
}

.gol_partner_list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    rgba(86, 179, 0, 0) 30%,
    rgba(86, 179, 0, 0.8) 100%
  );
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transition: all 0.3s ease;
  display: none;
}

.gol_partner_list .swiper-slide-active {
  width: 48% !important;
}

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

.gol_partner_list .swiper-slide-active::before {
  height: 30%;
}

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

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

@media screen and (max-width: 1440px) {
  .gol_partner_list .img {
    height: 5rem;
  }
  .golbal_bac {
    padding: 0.8rem 0;
    margin-top: -0.8rem;
    border-radius: 1rem 0 0 0;
  }
}
@media screen and (max-width: 1366px) {
  .gol_partner_list .img {
    height: 4.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .gol_partner_list .img {
    height: 4.5rem;
  }
  .golbal_bac {
    padding: 0.6rem 0;
    margin-top: -0.6rem;
    border-radius: 0.8rem 0 0 0;
  }
}
@media screen and (max-width: 959px) {
  .gol_partner_list .img {
    height: 4rem;
  }
  .golbal_bac {
    border-radius: 0.6rem 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .gol_partner_box {
    margin-top: 0.4rem;
  }
  .gol_partner_list .img {
    height: 3.5rem;
  }
  .gol_partner_list li {
    width: 100% !important;
  }
  .gol_partner_list .swiper-slide-active {
    width: 100% !important;
  }
  .gol_partner_box {
    box-sizing: border-box;
    padding: 0 3%;
  }
  .golbal_bac {
    border-radius: 0.4rem 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  .gol-pagination {
    display: block;
  }

  .gol_partner_list .img {
    height: 3rem;
  }
  .gol_partner .pt-pagination {
    margin: 0.2rem auto 0;
  }
  .gol_partner .pt-pagination .swiper-pagination-bullet {
    width: 0.06rem;
    height: 0.06rem;
  }
}

/* 荣誉证书 */
.honor {
  background: linear-gradient(180deg, #ffffff 65%, #fff8f1 100%);
  padding-top: 1.9rem;
}

.zs {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.zs_left {
  width: 37.5%;
}
.zs_left_ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.zs_left_ul li {
  font-size: 0.18rem;
  color: #666;
  line-height: 166%;
}
.zs_right {
  width: 55.3%;
}

/*  */
.zs_partner_box {
}

.zs_partner {
  position: relative;
}
.zs_partner_list {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.zs_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.zs_partner_list li {
  display: flex;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.zs_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.zs_partner_list .img:before {
  content: "";
  display: block;
  padding-bottom: 150%;
}
.zs_partner_list .img img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 90%;
  object-fit: cover;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.zs_partner_list .swiper-slide-prev .img img {
  transform: translateX(-50%) translateX(20px);
}
.zs_partner_list .swiper-slide-next .img img {
  transform: translateX(-50%) translateX(-20px);
}
.zs_partner_list .swiper-slide-active .img img {
  height: 100%;
  bottom: -5px;
}

/* 指示器 */
.zs_partner .pt-pagination {
  display: none;
  text-align: center;
  margin: 0.4rem auto 0;
}
.zs_partner .pt-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  outline: none;
}
.zs_partner .pt-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--i_color);
}

/* 左右箭头 */

.zs_LR {
  display: flex;
  gap: 0 3%;
}

.pt-button-prev,
.pt-button-next {
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  z-index: 3;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.4s ease;
}
.pt-button-prev {
  left: 0;
}
.pt-button-next {
  right: 0;
}
.pt-button-prev iconify-icon,
.pt-button-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.22rem;
  color: var(--i_color);
}
.Homepage_News_list .swiper-button-disabled {
  cursor: not-allowed;
}
.pt-button-prev:hover,
.pt-button-next:hover {
  background: linear-gradient(128deg, #e2572b 4%, #fc8f28 86%);
  border-color: transparent;
}
.pt-button-prev:hover iconify-icon,
.pt-button-next:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .honor {
    padding-top: 1.6rem;
  }
  .zs_bac {
    padding: 0.8rem 0;
    border-radius: 0 0 0 0.8rem;
  }
}
@media screen and (max-width: 1366px) {
  .honor {
    padding-top: 1.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .honor {
    padding-top: 1rem;
  }
  .zs_left_ul li {
    font-size: 0.16rem;
  }
  .zs_left_ul {
    gap: 0.2rem;
    margin-top: 0.3rem;
  }
  .zs_bac {
    padding: 0.6rem 0;
    border-radius: 0 0 0 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .honor {
    padding-top: 0.5rem;
  }
  .zs_LR {
    display: none;
  }
  .zs .pt-button-prev,
  .zs .pt-button-next {
    display: none;
  }
  .zs_partner .pt-pagination {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .zs_left {
    width: 100%;
  }
  .zs_right {
    width: 100%;
    padding-left: 0%;
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .zs_bac {
    border-radius: 0 0 0 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .zs_partner .pt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* 成功案例 */
.Success_stories {
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/Success_stories_Ba.webp)
    no-repeat center;
  background-size: cover;
}

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

.Success_stories_list {
  width: 56.6%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.16rem 2%;
}

.Success_stories_list li:nth-child(1),
.Success_stories_list li:nth-child(2),
.Success_stories_list li:nth-child(3) {
  width: 32%;
}

.Success_stories_list li {
  width: 23.5%;
  position: relative;
}

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

.Success_stories_list li:nth-child(n + 4)::before {
  padding-bottom: 75.2%;
}

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

.Success_stories_right {
  width: 40%;
}

@media screen and (max-width: 1024px) {
  .Success_stories_list,
  .Success_stories_right {
    width: 100%;
  }
  .Success_stories_right {
    order: -1;
  }
}

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

/* 服务内容 */

.ServiceContent_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2%;
}

.ServiceContent_list li {
  width: 49%;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.ServiceContent_list li::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 49%;
}
.ServiceContent_list li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.Sc_txt {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 0.32rem 0.4rem;
  opacity: 1;
  transition: all 0.4s ease;
}
.Sc_txt img {
  width: 0.48rem;
}
.Sc_txt p {
  margin-top: 0.12rem;
}

.Sc_Mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(243, 138, 37, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}
.Sc_Mask img {
  width: 0.48rem;
}
.Sc_Mask p {
  margin-top: 0.12rem;
  margin-bottom: 0.16rem;
}
.Sc_Mask span {
  width: 90%;
}

.ServiceContent_list li:hover .Sc_txt {
  opacity: 0;
}
.ServiceContent_list li:hover .Sc_Mask {
  opacity: 1;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .Sc_txt img,
  .Sc_Mask img {
    width: 0.3rem;
  }
  .Sc_txt p {
    margin-top: 0.1rem;
    font-size: 0.14rem;
  }
  .Sc_Mask p {
    margin: 0.1rem 0;
    font-size: 0.14rem;
  }
  .Sc_Mask span {
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 768px) {
  .ServiceContent_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .Sc_txt {
    padding: 0.2rem;
  }
  .Sc_Mask img {
    display: none;
  }
}

/* 服务优势 */
.Service_advantages {
  background: linear-gradient(
    0deg,
    rgba(243, 138, 37, 0.05) 1%,
    rgba(255, 255, 255, 0.1) 72%
  );
}

.Service_advantages_cont {
  gap: 0.3rem 0;
}

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

.advantages_options li {
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0.27rem 0;
  position: relative;
  border-right: 2px solid #d8d8d8;
  transition: all 0.4s ease;
  cursor: pointer;
}

.advantages_options li p {
  width: 72%;
}

.advantages_btn {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(128deg, #e2572b 4%, #fc8f28 86%);
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.advantages_btn iconify-icon {
  font-size: 0.22rem;
  color: #fff;
}

.advantages_options .active {
  border-color: var(--i_color);
}
.advantages_options .active p {
  color: #333;
  font-weight: bold;
}
.advantages_options .active .advantages_btn {
  opacity: 1;
}

.advantages_exhibit {
  width: 54%;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}
.advantages_exhibit::after {
  content: "";
  display: block;
  width: 100%;
  height: 52.6%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(243, 138, 37, 0) 9%,
    rgba(243, 138, 37, 0.8) 100%
  );
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}
.advantages_exhibit::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 57.29%;
}
.advantages_exhibit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.advantages_exhibit p {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  box-sizing: border-box;
  padding: 0.22rem 0.2rem;
}

.advantages_exhibit span {
  display: none;
  font-weight: bold;
}

.advantages_exhibit.active {
  display: block;
}

.advantages_exhibit p::-webkit-scrollbar {
  width: 3px;
}

.advantages_exhibit p::-webkit-scrollbar-thumb {
  background-color: var(--i_color);
  border-radius: 3px;
}

.advantages_exhibit p::-webkit-scrollbar-track {
  background-color: #dedede;
}

@media screen and (max-width: 1024px) {
  .advantages_options {
    display: none;
  }
  .advantages_exhibit {
    width: 100%;
    display: block;
  }
  .advantages_exhibit span {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .advantages_exhibit span {
    font-size: 0.14rem;
  }
  .advantages_exhibit p {
    font-size: 0.12rem;
    max-height: 50%;
    overflow-y: auto;
    padding: 0.1rem 0.1rem;
  }
}

/* 如何购买 */

.process {
}
.process_list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.69%;
}

.process_list li {
  width: 31.54%;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
}

.process_list .btn__ {
  width: max-content;
}

.process_list li:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process_list li:not(:first-child) {
  box-sizing: border-box;
  border: 1px solid var(--i_color);
  border-radius: 8px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
}
.process_list .num {
  width: 25.47%;
  background: var(--i_color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0 0.2rem 0;
}
.process_list .num img {
  width: 0.64rem;
  display: block;
  margin-bottom: 0.65rem;
}
.process_list b {
  font-size: 0.32rem;
  color: #fff;
  font-weight: bold;
}
.process_list .txt {
  width: 66.5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* padding: 0.2rem 0.3rem; */
}
.process_list h5 {
  font-size: 0.22rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.process_list .txt p {
  width: 80%;
  font-size: 0.18rem;
  color: #666;
}

.process_list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--i_color);
  position: absolute;
  right: 0.11rem;
  top: 0.14rem;
}

@media screen and (max-width: 1024px) {
  .process_list li:first-child {
    width: 100%;
  }
  .process .titleBox {
    margin-bottom: 0.2rem;
  }

  .process_list li {
    width: 48.65%;
  }
  .process_list .num img {
    width: 0.4rem;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .process_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .process_list .num img {
    width: 0.3rem;
    margin-bottom: 0.1rem;
  }
  .process_list b {
    font-size: 0.18rem;
  }

  .process_list h5 {
    font-size: 0.16rem;
    margin-bottom: 0.06rem;
  }
  .process_list .txt p {
    font-size: 0.14rem;
  }
}

/* faq */

.faqBox {
  background: url(https://lingjuimg.com/wp-content/uploads/DaYi/2025/12/faq_ba.webp)
    no-repeat center;
  background-size: cover;
}

.FAQ_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem 2%;
}

.FAQ_list li {
  width: 49%;
  background-color: #fff;
  transition: all 0.4s ease;
  box-sizing: border-box;
  padding: 0.3rem 0.3rem 0.4rem 0.3rem;
}

.FAQ_list h3 {
  display: flex;
  align-items: center;
}

.FAQ_list h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 0.29rem;
  background-color: var(--i_color);
  margin-right: 0.24rem;
}

.FAQ_list p {
  margin-left: 5%;
}

.FAQ_list li:hover {
  background-color: var(--i_color);
}
.FAQ_list li:hover h3::before {
  background-color: #fff;
}
.FAQ_list li:hover h3 {
  color: #fff;
}
.FAQ_list li:hover p {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .FAQ_list li {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .FAQ_list li {
    padding: 0.2rem;
  }
  .FAQ_list h3::before {
    display: none;
  }
  .FAQ_list p {
    margin-left: 0;
  }
}

/* -------------------------  新闻列表页面 */
.new_list {
  display: flex;
  flex-direction: column;
  gap: 0.56rem 0;
}

.new_list li {
}

.new_list a {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #fcf9f6;
  gap: 0.2rem 0;
  transition: all 0.4s ease;
}

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

.new_list_txt {
  width: 71%;
  box-sizing: border-box;
  padding-right: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.new_list_txt_left {
  width: 92%;
  box-sizing: border-box;
  border-right: 1px solid var(--i_color);
}

.new_list_txt h5 {
  margin-top: 0.28rem;
  margin-bottom: 0.12rem;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

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

.new_list_txt_btn iconify-icon {
  font-size: 0.24rem;
  color: var(--i_color);
  transition: all 0.4s ease;
}

.new_list li:hover a {
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.new_list li:hover .new_list_img img {
  transform: scale(1.1);
}
.new_list li:hover .new_list_txt h5 {
  color: var(--i_color);
}
.new_list li:hover .new_list_txt_btn {
  background-color: var(--i_color);
}
.new_list li:hover .new_list_txt_btn iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .new_list a {
    padding: 0.2rem;
  }
  .new_list_txt_btn {
    width: 0.48rem;
    height: 0.48rem;
  }
}
@media screen and (max-width: 1024px) {
  .new_list_txt {
    width: 100%;
    padding: 0;
  }
  .new_list_txt_left {
    width: 100%;
    border: none;
  }
  .new_list_txt h5 {
    margin: 0.1rem 0;
  }
  .new_list_txt_btn {
    display: none;
  }
  .new_list_img {
    width: 35%;
  }
}

@media screen and (max-width: 560px) {
  .new_list {
    gap: 0.2rem 0;
  }
  .new_list_img {
    width: 50%;
  }
}

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

.cw_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1%;
}

.cw_box li {
  width: 24.25%;
  box-sizing: border-box;
  background-color: #fcf9f6;
  border-radius: 8px;
  transition: all 0.4s;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.cw_box li .cw_icon {
  width: 0.84rem;
  height: 0.84rem;
  border-radius: 50%;
  background-color: #fbeee1;
  margin-top: 0.44rem;
  transition: all 0.4s;
}

.cw_box li .cw_icon iconify-icon {
  color: var(--i_color);
  font-size: 0.35rem;
  transition: all 0.4s;
}

.cw_box li span {
  display: block;
  margin: 0.2rem 0;
  font-weight: bold;
}

.cw_box li a {
  color: #666;
  transition: all 0.4s ease;
}

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

.cw_box li:hover {
}

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

.cw_box li:hover .cw_icon iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .cw_box {
    gap: 0.2rem 2%;
  }
  .cw_box li {
    width: 49%;
  }
  .cw_box li .cw_icon {
    margin-top: 0.3rem;
  }
  .cw_box li p {
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .cw_box li {
    width: 100%;
  }
  .cw_box li .cw_icon {
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.2rem;
  }
  .cw_box li .cw_icon iconify-icon {
    font-size: 0.25rem;
  }
  .cw_box li span {
    margin: 0.1rem 0;
  }
}

/* 提交表单 */
.Submit_Form_box {
  gap: 0.3rem 0;
}

.Submit_Form_left {
  box-sizing: border-box;
  width: 72.8%;
  background: linear-gradient(180deg, #ffffff -13%, #fef9f4 100%);
  padding: 0.6rem 0.2rem;
}

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

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

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

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

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

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

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

#wpforms-182 .wpforms-submit-container {
  width: 300px;
  padding: 0 0;
}
#wpforms-182 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(101deg, #e35a2b 0%, #fb8d28 75%);
}
#wpforms-182 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-182 .wpforms-submit-container button:hover {
  transform: translateY(-4px);
}

.Submit_Form_right {
  width: 25.34%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.Submit_Form_right img {
  width: 100%;
}

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